diff --git a/pom.xml b/pom.xml index 4eccec8..b2ff6ee 100644 --- a/pom.xml +++ b/pom.xml @@ -1,198 +1,248 @@ - - - xdrmessagevalidator - 4.0.0 - 2014 - war - org.sitenv - 1.0 - - 2.4.0.RELEASE - 1.2.16 - xdrmessagevalidator - - - - - log4j - log4j - ${log4j.version} - - - org.apache.ws.commons.axiom - axiom-api - 1.2.14 - - - org.apache.ws.commons.axiom - axiom-impl - 1.2.14 - - - commons-codec - commons-codec - 1.9 - - - org.apache.tika - tika-core - 1.5 - - - xerces - xercesImpl - 2.11.0 - - - javax.ws.rs - jsr311-api - 0.11 - - - com.sun.xsom - xsom - 20100725 - - - com.sun.jersey - jersey-client - 1.12 - - - org.springframework - spring-core - - - org.springframework - spring-context-support - - - org.springframework - spring-beans - - - org.springframework - spring-aop - - - org.springframework - spring-aspects - - - org.springframework - spring-webmvc - - - commons-collections - commons-collections - 3.2 - - - org.springframework - spring-oxm - - - org.springframework.ws - spring-ws-core - ${spring.ws.version} - - - org.apache.ws.commons.schema - XmlSchema - 1.4.3 - - - junit - junit - 4.11 - - - commons-validator - commons-validator - 1.4.0 - - - javax.servlet - javax.servlet-api - 3.1.0 - - - org.apache.commons - commons-lang3 - 3.4 - - - - - - org.springframework - spring-framework-bom - 4.2.4.RELEASE - pom - import - - - - - - xdrmessagevalidator - - - org.apache.maven.plugins - maven-eclipse-plugin - 2.8 - - 2.0 - true - true - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.1 - - 1.7 - 1.7 - - - - org.eclipse.jetty - jetty-maven-plugin - 9.2.2.v20140723 - - 3 - -Xmx2024m -Xms2024m -XX:PermSize=256m -XX:MaxPermSize=512m - - /xdrmessagevalidator - - - - - external.atlassian.jgitflow - jgitflow-maven-plugin - 1.0-m5.1 - - true - true - true - true - - - - org.apache.tomcat.maven - tomcat7-maven-plugin - 2.2 - - ${tomcat-server} - ${tomcat-url} - /xdrmessagevalidator - true - - - - + + + xdrmessagevalidator + 4.0.0 + 2014 + war + org.sitenv + 1.0 + + 2.4.0.RELEASE + 1.2.16 + xdrmessagevalidator + + + + + log4j + log4j + ${log4j.version} + + + org.apache.ws.commons.axiom + axiom-api + 1.2.14 + + + org.apache.ws.commons.axiom + axiom-impl + 1.2.14 + + + commons-codec + commons-codec + 1.9 + + + org.apache.tika + tika-core + 1.5 + + + xerces + xercesImpl + 2.11.0 + + + javax.ws.rs + jsr311-api + 0.11 + + + com.sun.xsom + xsom + 20100725 + + + com.sun.jersey + jersey-client + 1.12 + + + org.springframework + spring-core + + + org.springframework + spring-context-support + + + org.springframework + spring-beans + + + org.springframework + spring-aop + + + org.springframework + spring-aspects + + + org.springframework + spring-webmvc + + + org.springframework.data + spring-data-jpa + 1.9.2.RELEASE + + + org.springframework + spring-websocket + + + commons-collections + commons-collections + 3.2 + + + org.springframework + spring-oxm + + + org.springframework.ws + spring-ws-core + ${spring.ws.version} + + + org.apache.ws.commons.schema + XmlSchema + 1.4.3 + + + junit + junit + 4.11 + + + commons-validator + commons-validator + 1.4.0 + + + javax.servlet + javax.servlet-api + 3.1.0 + + + org.apache.commons + commons-lang3 + 3.4 + + + commons-io + commons-io + 2.5 + + + org.springframework + spring-orm + + + org.hsqldb + hsqldb + 2.3.4 + + + org.hibernate + hibernate-entitymanager + 5.0.7.Final + + + org.hibernate.javax.persistence + hibernate-jpa-2.1-api + 1.0.0.Final + + + org.apache.commons + commons-dbcp2 + 2.1.1 + + + com.fasterxml.jackson.core + jackson-core + 2.5.3 + + + com.fasterxml.jackson.core + jackson-databind + 2.5.3 + + + javax.websocket + javax.websocket-api + 1.0 + + + + + + org.springframework + spring-framework-bom + 4.2.4.RELEASE + pom + import + + + + + + xdrmessagevalidator + + + org.apache.maven.plugins + maven-eclipse-plugin + 2.8 + + 2.0 + true + true + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.1 + + 1.7 + 1.7 + + + + org.eclipse.jetty + jetty-maven-plugin + 9.2.2.v20140723 + + 3 + -Xmx2024m -Xms2024m -XX:PermSize=256m -XX:MaxPermSize=512m + + /xdrmessagevalidator + + + + + external.atlassian.jgitflow + jgitflow-maven-plugin + 1.0-m5.1 + + true + true + true + true + + + + org.apache.tomcat.maven + tomcat7-maven-plugin + 2.2 + + ${tomcat-server} + ${tomcat-url} + /xdrmessagevalidator + true + + + + \ No newline at end of file diff --git a/src/main/java/gov/onc/xdrtesttool/controllers/MessageLogController.java b/src/main/java/gov/onc/xdrtesttool/controllers/MessageLogController.java new file mode 100644 index 0000000..45d498a --- /dev/null +++ b/src/main/java/gov/onc/xdrtesttool/controllers/MessageLogController.java @@ -0,0 +1,34 @@ +package gov.onc.xdrtesttool.controllers; + +import gov.onc.xdrtesttool.entities.MessageLog; +import gov.onc.xdrtesttool.services.MessageLogService; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RequestParam; +import org.springframework.web.bind.annotation.RestController; + +import java.util.List; + +/** + * Created by Brian on 3/9/2017. + */ +@RestController +public class MessageLogController { + private MessageLogService messageLogService; + + @Autowired + public MessageLogController(MessageLogService messageLogService) { + this.messageLogService = messageLogService; + } + + @RequestMapping(value = "/getlogsbyfromaddress", method = RequestMethod.GET) + public List getLogsByFromAddress(@RequestParam(value = "fromAddress") String fromAddress){ + return messageLogService.getLogsByFromAddress(fromAddress); + } + + @RequestMapping(value = "/getlogsbyipaddress", method = RequestMethod.GET) + public List getLogsByIpAddress(@RequestParam(value = "ipAddress") String ipAddress){ + return messageLogService.getLogsByIpAddress(ipAddress); + } +} diff --git a/src/main/java/gov/onc/xdrtesttool/entities/MessageLog.java b/src/main/java/gov/onc/xdrtesttool/entities/MessageLog.java new file mode 100644 index 0000000..4abdc8d --- /dev/null +++ b/src/main/java/gov/onc/xdrtesttool/entities/MessageLog.java @@ -0,0 +1,85 @@ +package gov.onc.xdrtesttool.entities; + +import javax.persistence.*; +import java.util.Date; + +/** + * Created by Brian on 3/9/2017. + */ +@Entity +@Table(name = "MESSAGELOG") +public class MessageLog { + @Id + @Column(name = "ID") + @GeneratedValue(strategy = GenerationType.AUTO) + private long id; + @Column(name = "REQUEST", columnDefinition = "CLOB") + private String request; + @Column(name = "RESPONSE", columnDefinition = "CLOB") + private String response; + @Column(name = "IP_ADDRESS") + private String ipAddress; + @Column(name = "FROM_ADDRESS") + private String fromAddress; + @Column(name = "DATE_LOGGED") + private String dateLogged; + @Version + @Column(name = "CREATED") + private Date created; + + public String getIpAddress() { + return ipAddress; + } + + public void setIpAddress(String ipAddress) { + this.ipAddress = ipAddress; + } + + public String getFromAddress() { + return fromAddress; + } + + public void setFromAddress(String fromAddress) { + this.fromAddress = fromAddress; + } + + public long getId() { + return id; + } + + public void setId(long id) { + this.id = id; + } + + public String getRequest() { + return request; + } + + public void setRequest(String request) { + this.request = request; + } + + public String getResponse() { + return response; + } + + public void setResponse(String response) { + this.response = response; + } + + public String getDateLogged() { + return dateLogged.toString(); + } + + public void setDateLogged(String dateLogged) { + this.dateLogged = dateLogged; + } + + public Date getCreated() { + return created; + } + + public void setCreated(Date created) { + this.created = created; + } +} diff --git a/src/main/java/gov/onc/xdrtesttool/error/MessageReader.java b/src/main/java/gov/onc/xdrtesttool/error/MessageReader.java index 3a3cb9a..54ede34 100644 --- a/src/main/java/gov/onc/xdrtesttool/error/MessageReader.java +++ b/src/main/java/gov/onc/xdrtesttool/error/MessageReader.java @@ -59,20 +59,20 @@ public StringSource buildResponse(){ } if(errorFlag) - sb.append(" status=\"urn:oasis:names:tc:ebxml-regrep:ResponseStatusType:Failure\"> "); + sb.append(" status=\"urn:oasis:names:tc:ebxml-regrep:ResponseStatusType:Failure\">\r\n "); else if(warningFlag) - sb.append(" status=\"urn:oasis:names:tc:ebxml-regrep:ResponseStatusType:PartialSuccess\"> "); + sb.append(" status=\"urn:oasis:names:tc:ebxml-regrep:ResponseStatusType:PartialSuccess\">\r\n "); else - sb.append(" status=\"urn:oasis:names:tc:ebxml-regrep:ResponseStatusType:Success\"> "); + sb.append(" status=\"urn:oasis:names:tc:ebxml-regrep:ResponseStatusType:Success\">\r\n "); if(errorStr.length() > 0) { - sb.append(""); - sb.append(errorStr.toString()); - sb.append(""); + sb.append("\r\n"); + sb.append(errorStr.toString() + "\r\n"); + sb.append("\r\n"); } - sb.append(""); - return new StringSource(sb.toString()); + sb.append("\r\n"); + return new StringSource(sb.toString() + "\r\n"); } private String buildRegistryError(MessageRecorderItem item) @@ -88,7 +88,7 @@ else if(item.getMessageType().equals(MessageType.Info)) str.append(" errorCode=\"" + item.getErrorCode() +"\""); str.append(" codeContext=\"" + StringEscapeUtils.escapeXml(XDRMessages.instance.getErrorText(item.getErrorCode())) +"\""); str.append(" location=\"" + item.getLocation() +"\""); - str.append(" />"); + str.append(" />\r\n"); return str.toString(); } } diff --git a/src/main/java/gov/onc/xdrtesttool/repositories/MessageLogRepository.java b/src/main/java/gov/onc/xdrtesttool/repositories/MessageLogRepository.java new file mode 100644 index 0000000..0bfd8ff --- /dev/null +++ b/src/main/java/gov/onc/xdrtesttool/repositories/MessageLogRepository.java @@ -0,0 +1,16 @@ +package gov.onc.xdrtesttool.repositories; + +import gov.onc.xdrtesttool.entities.MessageLog; +import org.springframework.data.jpa.repository.JpaRepository; +import org.springframework.stereotype.Repository; + +import java.util.List; + +/** + * Created by Brian on 3/9/2017. + */ +@Repository +public interface MessageLogRepository extends JpaRepository{ + ListfindByIpAddressOrderByCreatedDesc(String ipAddress); + ListfindByFromAddressOrderByCreatedDesc(String fromAddress); +} diff --git a/src/main/java/gov/onc/xdrtesttool/services/MessageLogService.java b/src/main/java/gov/onc/xdrtesttool/services/MessageLogService.java new file mode 100644 index 0000000..abc1b91 --- /dev/null +++ b/src/main/java/gov/onc/xdrtesttool/services/MessageLogService.java @@ -0,0 +1,34 @@ +package gov.onc.xdrtesttool.services; + +import gov.onc.xdrtesttool.entities.MessageLog; +import gov.onc.xdrtesttool.repositories.MessageLogRepository; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; + +import java.util.List; + +/** + * Created by Brian on 3/9/2017. + */ +@Service +public class MessageLogService { + private MessageLogRepository messageLogRepository; + + @Autowired + public MessageLogService(MessageLogRepository messageLogRepository) { + this.messageLogRepository = messageLogRepository; + } + + public MessageLog saveLog(MessageLog messageLog){ + return messageLogRepository.save(messageLog); + } + + public List getLogsByFromAddress(String fromAddress){ + return messageLogRepository.findByFromAddressOrderByCreatedDesc(fromAddress); + } + + public List getLogsByIpAddress(String ipAddress) { + return messageLogRepository.findByIpAddressOrderByCreatedDesc(ipAddress); + } + +} diff --git a/src/main/java/gov/onc/xdrtesttool/xdrservice/endpoint/XDRSeviceMessageReceiverEndpoint.java b/src/main/java/gov/onc/xdrtesttool/xdrservice/endpoint/XDRSeviceMessageReceiverEndpoint.java index 2345c77..a522d88 100644 --- a/src/main/java/gov/onc/xdrtesttool/xdrservice/endpoint/XDRSeviceMessageReceiverEndpoint.java +++ b/src/main/java/gov/onc/xdrtesttool/xdrservice/endpoint/XDRSeviceMessageReceiverEndpoint.java @@ -1,42 +1,46 @@ package gov.onc.xdrtesttool.xdrservice.endpoint; +import gov.onc.xdrtesttool.entities.MessageLog; import gov.onc.xdrtesttool.error.MessageReader; import gov.onc.xdrtesttool.error.XDRMessageRecorder; +import gov.onc.xdrtesttool.services.MessageLogService; import gov.onc.xdrtesttool.validate.XDRValidator; +import gov.onc.xdrtesttool.xml.XMLParser; +import org.apache.axiom.om.OMElement; import org.apache.log4j.Logger; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.web.context.support.SpringBeanAutowiringSupport; import org.springframework.ws.context.MessageContext; import org.springframework.ws.server.endpoint.annotation.Endpoint; import org.springframework.ws.server.endpoint.annotation.RequestPayload; import org.springframework.ws.server.endpoint.annotation.ResponsePayload; import org.springframework.ws.soap.SoapMessage; +import org.springframework.ws.transport.context.TransportContext; +import org.springframework.ws.transport.context.TransportContextHolder; +import org.springframework.ws.transport.http.HttpServletConnection; import org.springframework.xml.transform.StringSource; -import org.w3c.dom.Attr; -import org.w3c.dom.Document; -import org.w3c.dom.Node; -import org.w3c.dom.NodeList; -import org.xml.sax.InputSource; -import javax.xml.parsers.DocumentBuilder; -import javax.xml.parsers.DocumentBuilderFactory; -import javax.xml.transform.*; -import javax.xml.transform.stream.StreamResult; +import javax.servlet.http.HttpServletRequest; +import javax.ws.rs.core.UriBuilder; +import javax.xml.transform.Source; import javax.xml.ws.soap.Addressing; import javax.xml.ws.soap.SOAPBinding; -import java.io.*; +import java.io.ByteArrayOutputStream; +import java.io.IOException; import java.util.ArrayList; +import java.util.Date; +import java.util.Iterator; import java.util.List; @Endpoint(value = SOAPBinding.SOAP12HTTP_MTOM_BINDING) @Addressing(enabled=true, required=true) -public class XDRSeviceMessageReceiverEndpoint { +public class XDRSeviceMessageReceiverEndpoint extends SpringBeanAutowiringSupport{ private final Logger log = Logger.getLogger(this.getClass().toString()); private static final String NAMESPACE_RIM_URI = "urn:ihe:iti:xds-b:2007"; - public List validators = new ArrayList(); - - private Source response; - public XDRSeviceMessageReceiverEndpoint() { - } + private Source response; + @Autowired + private MessageLogService messageLogService; public List getValidators() { return validators; @@ -49,39 +53,10 @@ public void setValidators(List validators) { public @ResponsePayload Source handleProvideAndRegisterDocumentSetRequest( @RequestPayload Source source, MessageContext messageContext) throws Exception { - - String xmlFile = xmlToString(source); - - log.info("Request message content = "+ - xmlFile); - SoapMessage soapMessage = (SoapMessage) messageContext.getRequest(); + MessageLog messageLog = new MessageLog(); - DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance(); - DocumentBuilder builder = factory.newDocumentBuilder(); - InputSource is = new InputSource(new StringReader(xmlFile)); - Document doc = builder.parse(is); - NodeList nodeList = doc.getElementsByTagName("rim:Slot"); - - for (int i = 0; i < nodeList.getLength(); i++) { - Node node = nodeList.item(i); - - if (node.hasAttributes()) { - Attr attr = (Attr) node.getAttributes().getNamedItem("name"); - if (attr != null) { - String attribute = attr.getValue(); - log.info("attribute: " + attribute); - if (attribute != null - && attribute.equalsIgnoreCase("sourcePatientId")) { - String value = node.getTextContent().trim(); - log.info("value: " + value); - } - - } - } - } XDRMessageRecorder errorRecorder = new XDRMessageRecorder(); - //ValidationUtil.validateSchema(soapMessage, errorRecorder); if (validators != null && validators.size() > 0) { for (XDRValidator validator : validators) { @@ -91,72 +66,81 @@ public void setValidators(List validators) { } MessageReader reader = new MessageReader(errorRecorder); StringSource responseSource = reader.buildResponse(); - log.info("Response message content = " + responseSource.toString()); response = responseSource; - writeResponseToLog(messageContext, responseSource); - return responseSource; + messageLog.setFromAddress(this.getFromAddress(soapMessage)); + messageLog.setIpAddress(this.geIpAddress()); + messageLog.setRequest(this.getSoapRequest(soapMessage)); + messageLog.setResponse(responseSource.toString()); + messageLog.setDateLogged(new Date().toString()); + messageLogService.saveLog(messageLog); + return responseSource; } - private void writeResponseToLog(MessageContext messageContext, StringSource responseSource) - { - OutputStream os = null; - PrintStream printStream = null; - try { - String logOutputDir = (String)messageContext.getProperty("LOG_OUTPUT_DIR"); - String outputId = (String)messageContext.getProperty("LOG_OUTPUT_NAME"); - String logFileName = "Response_"+ outputId + ".xml"; - File logDir = new File(logOutputDir); - if (!logDir.exists()) logDir.mkdirs(); - os = new FileOutputStream(logDir.getAbsolutePath() +File.separatorChar - + logFileName); - printStream = new PrintStream(os); - printStream.print(responseSource); - os.flush(); - } catch (FileNotFoundException e) { - // TODO Auto-generated catch block - e.printStackTrace(); - } catch (IOException e) { - // TODO Auto-generated catch block - e.printStackTrace(); - } - finally - { - if(os != null) - { - try { - os.close(); - } catch (IOException e) { - // TODO Auto-generated catch block - e.printStackTrace(); - } - } - if(printStream != null) - printStream.close(); - } - + private String getSoapRequest(SoapMessage soapMessage) throws IOException { + ByteArrayOutputStream out = new ByteArrayOutputStream(); + soapMessage.writeTo(out); + return new String(out.toByteArray()); } - - public Source getResponse() - { - return response; + + private String geIpAddress(){ + TransportContext context = TransportContextHolder.getTransportContext(); + HttpServletConnection connection = (HttpServletConnection )context.getConnection(); + HttpServletRequest request = connection.getHttpServletRequest(); + return request.getRemoteAddr(); } - - private String xmlToString(Source source) { + private String getFromAddress(SoapMessage soapMessage) { try { - StringWriter stringWriter = new StringWriter(); - Result result = new StreamResult(stringWriter); - TransformerFactory factory = TransformerFactory.newInstance(); - Transformer transformer = factory.newTransformer(); - transformer.transform(source, result); - return stringWriter.getBuffer().toString(); - } catch (TransformerConfigurationException e) { - e.printStackTrace(); - } catch (TransformerException e) { + OMElement element = XMLParser.parseXMLSource(XMLParser + .getEnvelopeAsInputStream(soapMessage.getEnvelope())); + if(element == null) { + log.error("Invalid SOAP Request. Unable to parse."); + return null; + } + + OMElement header = null; + Iterator headerIter = element.getChildrenWithLocalName("Header"); + if (!headerIter.hasNext()) { + log.error("Header is missing from the request"); + return null; + } else + header = (OMElement) headerIter.next(); + + if(header == null) { + log.error("Header is missing from the request"); + return null; + } else { + Iterator addressIter = header.getChildrenWithLocalName("addressBlock"); + if(!addressIter.hasNext()) { + log.error("Address is missing from the Header"); + return null; + } else { + //S:Envelope/S:Header/direct:AddressBlock - Optional + OMElement addressElement = (OMElement)addressIter.next(); + + Iterator fromIter = addressElement.getChildrenWithLocalName("from"); + if(!fromIter.hasNext()) { + log.error("Address from is missing from the Header"); + return null; + } else { + OMElement fromElement = (OMElement) fromIter.next(); + String fromAddr = null; + try { + UriBuilder.fromUri(fromElement.getText()); + fromAddr = fromElement.getText(); + } catch(IllegalArgumentException e) { + log.error("Invalid from Address in the Header"); + return null; + } + return fromAddr; + } + } + } + } catch(Exception e) { e.printStackTrace(); + log.error("Failed to get from address from SOAP Header"); } return null; } - } diff --git a/src/main/java/gov/onc/xdrtesttool/xml/XMLParser.java b/src/main/java/gov/onc/xdrtesttool/xml/XMLParser.java index f17400b..31e7319 100644 --- a/src/main/java/gov/onc/xdrtesttool/xml/XMLParser.java +++ b/src/main/java/gov/onc/xdrtesttool/xml/XMLParser.java @@ -5,13 +5,17 @@ import org.apache.axiom.om.OMXMLBuilderFactory; import org.apache.axiom.om.impl.builder.StAXOMBuilder; import org.apache.axiom.soap.SOAPModelBuilder; -import org.springframework.ws.soap.SoapMessage; +import org.springframework.ws.soap.SoapEnvelope; import javax.xml.parsers.FactoryConfigurationError; import javax.xml.stream.XMLInputFactory; import javax.xml.stream.XMLStreamException; import javax.xml.stream.XMLStreamReader; +import javax.xml.transform.Result; import javax.xml.transform.Source; +import javax.xml.transform.TransformerException; +import javax.xml.transform.TransformerFactory; +import javax.xml.transform.stream.StreamResult; import java.io.*; public class XMLParser { @@ -78,10 +82,9 @@ static public OMElement parseXMLSource(InputStream stream){ } - static public InputStream getEnvelopeAsInputStream(SoapMessage soapMsg) throws IOException - { - OutputStream output = new ByteArrayOutputStream(); - soapMsg.writeTo(output); + static public InputStream getEnvelopeAsInputStream(SoapEnvelope soapMsg) throws IOException, TransformerException { + //OutputStream output = new ByteArrayOutputStream(); + //soapMsg.writeTo(output); /* String outputDir = System.getProperty("java.io.tmpdir"); Date date = new Date(); @@ -94,7 +97,11 @@ static public InputStream getEnvelopeAsInputStream(SoapMessage soapMsg) throws I soapMsg.writeTo(ofile); ofile.close(); */ - InputStream input = new ByteArrayInputStream(((ByteArrayOutputStream) output).toByteArray()); - return input; + //InputStream input = new ByteArrayInputStream(((ByteArrayOutputStream) output).toByteArray()); + ByteArrayOutputStream outputStream = new ByteArrayOutputStream(); + Source xmlSource = soapMsg.getSource(); + Result outputTarget = new StreamResult(outputStream); + TransformerFactory.newInstance().newTransformer().transform(xmlSource, outputTarget); + return new ByteArrayInputStream(outputStream.toByteArray()); } } diff --git a/src/main/java/gov/onc/xdrtesttool/xml/XdrMustUnderstandInterceptor.java b/src/main/java/gov/onc/xdrtesttool/xml/XdrMustUnderstandInterceptor.java index dbfea5e..9cbc865 100644 --- a/src/main/java/gov/onc/xdrtesttool/xml/XdrMustUnderstandInterceptor.java +++ b/src/main/java/gov/onc/xdrtesttool/xml/XdrMustUnderstandInterceptor.java @@ -1,28 +1,13 @@ package gov.onc.xdrtesttool.xml; -import org.apache.axiom.om.OMElement; import org.apache.log4j.Logger; -import org.springframework.ws.WebServiceMessage; import org.springframework.ws.context.MessageContext; import org.springframework.ws.soap.SoapHeader; import org.springframework.ws.soap.SoapHeaderElement; -import org.springframework.ws.soap.SoapMessage; import org.springframework.ws.soap.saaj.SaajSoapMessage; import org.springframework.ws.soap.server.SoapEndpointInterceptor; -import org.springframework.ws.transport.context.TransportContext; -import org.springframework.ws.transport.context.TransportContextHolder; -import org.springframework.ws.transport.http.HttpServletConnection; -import javax.servlet.http.HttpServletRequest; -import javax.ws.rs.core.UriBuilder; import javax.xml.namespace.QName; -import javax.xml.transform.*; -import javax.xml.transform.stream.StreamResult; -import java.io.*; -import java.text.SimpleDateFormat; -import java.util.Date; -import java.util.Iterator; -import java.util.UUID; public class XdrMustUnderstandInterceptor implements SoapEndpointInterceptor { private final Logger log = Logger.getLogger(this.getClass().toString()); @@ -35,156 +20,9 @@ public boolean understands(SoapHeaderElement header) { @Override public boolean handleRequest(MessageContext messageContext, Object endpoint) throws Exception { - // TODO Auto-generated method stub - TransportContext context = TransportContextHolder.getTransportContext(); - HttpServletConnection connection = (HttpServletConnection )context.getConnection(); - HttpServletRequest request = connection.getHttpServletRequest(); - String ipAddress = request.getRemoteAddr(); - SoapMessage soapMessage = (SoapMessage) messageContext.getRequest(); - OutputStream os = null; - PrintStream printStream = null; - String fromAddr = getFromAddress(soapMessage); - if(fromAddr == null) - fromAddr = ipAddress; - - try - { - UUID idOne = UUID.randomUUID(); - Date date = new Date(); - SimpleDateFormat sdf = new SimpleDateFormat("YYYYMMddHHmmss.S"); - String formattedDate = sdf.format(date); - - String outputDir = System.getProperty("xdrvalidator.log.dir"); - if(outputDir == null) - outputDir = System.getProperty("java.io.tmpdir"); - - WebServiceMessage message = messageContext.getRequest(); - Source source = message.getPayloadSource(); - String xmlFile = xmlToString(source); - if(fromAddr.indexOf("@") != -1) - { - - String userId = fromAddr.substring(0, fromAddr.indexOf("@")); - String domainName = fromAddr.substring(fromAddr.indexOf("@")+1, fromAddr.length()); - fromAddr = domainName + File.separatorChar + userId; - } - else - fromAddr = ipAddress; - - String logFileDir = outputDir + File.separatorChar + "xdrvalidator" + File.separatorChar + fromAddr.toUpperCase(); - String logFileName = "Request_"+formattedDate+".xml"; - messageContext.setProperty("LOG_OUTPUT_DIR", logFileDir); - messageContext.setProperty("LOG_OUTPUT_NAME", formattedDate); - File logDir = new File(logFileDir); - if (!logDir.exists()) logDir.mkdirs(); - os = new FileOutputStream(logDir.getAbsolutePath() +File.separatorChar - + logFileName); - printStream = new PrintStream(os); - soapMessage.writeTo(printStream); - os.flush(); - } - catch(IOException e) - { - log.error("Failed to log soap request from "+ ipAddress +" to the file system"); - } - finally - { - if(printStream != null) - printStream.close(); - - if(os != null) - os.close(); - } return true; } - private String getFromAddress(SoapMessage soapMessage) - { - try { - OMElement element = XMLParser.parseXMLSource(XMLParser - .getEnvelopeAsInputStream(soapMessage)); - if(element == null) - { - log.error("Invalid SOAP Request. Unable to parse."); - return null; - } - - OMElement header = null; - Iterator headerIter = element.getChildrenWithLocalName("Header"); - if (!headerIter.hasNext()) { - log.error("Header is missing from the request"); - return null; - } else - header = (OMElement) headerIter.next(); - - if(header == null) - { - log.error("Header is missing from the request"); - return null; - } - else - { - Iterator addressIter = header.getChildrenWithLocalName("addressBlock"); - if(!addressIter.hasNext()) - { - log.error("Address is missing from the Header"); - return null; - } - else - { - //S:Envelope/S:Header/direct:AddressBlock - Optional - OMElement addressElement = (OMElement)addressIter.next(); - - Iterator fromIter = addressElement.getChildrenWithLocalName("from"); - if(!fromIter.hasNext()) - { - log.error("Address from is missing from the Header"); - return null; - } - else - { - OMElement fromElement = (OMElement) fromIter.next(); - String fromAddr = null; - try - { - UriBuilder.fromUri(fromElement.getText()); - fromAddr = fromElement.getText(); - } - catch(IllegalArgumentException e) - { - log.error("Invalid from Address in the Header"); - return null; - } - return fromAddr; - } - - } - } - } - catch(Exception e) - { - e.printStackTrace(); - log.error("Failed to get from address from SOAP Header"); - } - return null; - } - private String xmlToString(Source source) { - try { - StringWriter stringWriter = new StringWriter(); - Result result = new StreamResult(stringWriter); - TransformerFactory factory = TransformerFactory.newInstance(); - Transformer transformer = factory.newTransformer(); - transformer.transform(source, result); - return stringWriter.getBuffer().toString(); - } catch (TransformerConfigurationException e) { - e.printStackTrace(); - } catch (TransformerException e) { - e.printStackTrace(); - } - return null; - } - - @Override public boolean handleResponse(MessageContext messageContext, Object endpoint) throws Exception { @@ -195,9 +33,6 @@ public boolean handleResponse(MessageContext messageContext, Object endpoint) QName wsaActionQName = new QName("http://www.w3.org/2005/08/addressing", "Action", "wsa"); SoapHeaderElement wsaAction = soapHeader.addHeaderElement(wsaActionQName); wsaAction.setText("urn:ihe:iti:2007:ProvideAndRegisterDocumentSet-bResponse"); - //.addAttribute(new QName("http://www.w3.org/2005/08/addressing", "Action", "wsa"), "urn:ihe:iti:2007:ProvideAndRegisterDocumentSet-bResponse"); - - //message.getSoapHeader().addHeaderElement(wsaActionQName); return true; } @@ -210,7 +45,6 @@ public boolean handleFault(MessageContext messageContext, Object endpoint) @Override public void afterCompletion(MessageContext messageContext, Object endpoint, Exception ex) throws Exception { - } } \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/Dispatcher-servlet.xml b/src/main/webapp/WEB-INF/Dispatcher-servlet.xml index a3c23da..9f4e468 100644 --- a/src/main/webapp/WEB-INF/Dispatcher-servlet.xml +++ b/src/main/webapp/WEB-INF/Dispatcher-servlet.xml @@ -26,6 +26,8 @@ + + @@ -38,7 +40,7 @@ - + diff --git a/src/main/webapp/WEB-INF/applicationContext.xml b/src/main/webapp/WEB-INF/applicationContext.xml deleted file mode 100644 index dd959f3..0000000 --- a/src/main/webapp/WEB-INF/applicationContext.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/main/webapp/WEB-INF/rest-servlet.xml b/src/main/webapp/WEB-INF/rest-servlet.xml new file mode 100644 index 0000000..d6bcb88 --- /dev/null +++ b/src/main/webapp/WEB-INF/rest-servlet.xml @@ -0,0 +1,48 @@ + + + + + + + + + org.hibernate.dialect.HSQLDialect + true + create + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/web.xml b/src/main/webapp/WEB-INF/web.xml index c9caa7b..9b9c3c7 100644 --- a/src/main/webapp/WEB-INF/web.xml +++ b/src/main/webapp/WEB-INF/web.xml @@ -3,8 +3,16 @@ xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID_XDR" version="3.0"> xdrmessagevalidator + + contextConfigLocation + + /WEB-INF/Dispatcher-servlet.xml + /WEB-INF/rest-servlet.xml + + + - org.springframework.web.util.Log4jConfigListener + org.springframework.web.context.ContextLoaderListener Dispatcher @@ -15,4 +23,15 @@ Dispatcher /Dispatcher/* + + + rest + org.springframework.web.servlet.DispatcherServlet + 1 + + + + rest + /messagelogs/* + \ No newline at end of file diff --git a/src/main/webapp/schema/AccountDetails.xsd b/src/main/webapp/schema/AccountDetails.xsd new file mode 100644 index 0000000..307ae2b --- /dev/null +++ b/src/main/webapp/schema/AccountDetails.xsd @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/main/webapp/schema/AccountDetailsServiceOperations.xsd b/src/main/webapp/schema/AccountDetailsServiceOperations.xsd new file mode 100644 index 0000000..a6fc4a2 --- /dev/null +++ b/src/main/webapp/schema/AccountDetailsServiceOperations.xsd @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/main/webapp/schema/HL7V3/NE2008/coreschemas/NarrativeBlock.xsd b/src/main/webapp/schema/HL7V3/NE2008/coreschemas/NarrativeBlock.xsd new file mode 100644 index 0000000..6c1abf5 --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/coreschemas/NarrativeBlock.xsd @@ -0,0 +1,544 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/coreschemas/datatypes-base.xsd b/src/main/webapp/schema/HL7V3/NE2008/coreschemas/datatypes-base.xsd new file mode 100644 index 0000000..7409d0e --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/coreschemas/datatypes-base.xsd @@ -0,0 +1,1859 @@ + + + + + + + Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 Health Level Seven. All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + 3. All advertising materials mentioning features or use of this software + must display the following acknowledgement: + This product includes software developed by Health Level Seven. + + THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + SUCH DAMAGE. + +Generated by $Id: datatypes-base.xsd,v 1.1 2007/03/20 02:42:09 wbeeler Exp $ + + + + $Id: datatypes-base.xsd,v 1.1 2007/03/20 02:42:09 wbeeler Exp $ +Generated by $Id: datatypes-base.xsd,v 1.1 2007/03/20 02:42:09 wbeeler Exp $ + + + + + Defines the basic properties of every data value. This + is an abstract type, meaning that no value can be just + a data value without belonging to any concrete type. + Every concrete type is a specialization of this + general abstract DataValue type. + + + + + + An exceptional value expressing missing information + and possibly the reason why the information is missing. + + + + + + + + The Boolean type stands for the values of two-valued logic. + A Boolean value can be either true or + false, or, as any other value may be NULL. + + + + + + + + + + The Boolean type stands for the values of two-valued logic. + A Boolean value can be either true or + false, or, as any other value may be NULL. + + + + + + + + + + + + + + + + + + + The BooleanNonNull type is used where a Boolean cannot + have a null value. A Boolean value can be either + true or false. + + + + + + + + The BooleanNonNull type is used where a Boolean cannot + have a null value. A Boolean value can be either + true or false. + + + + + + + + + + + + The BooleanNonNull type is used where a Boolean cannot + have a null value. A Boolean value can be either + true or false. + + + + + + + + + + + + Binary data is a raw block of bits. Binary data is a + protected type that MUST not be used outside the data + type specification. + + + + + + + + Specifies the representation of the binary data that + is the content of the binary data value. + + + + + + + + + + Binary data is a raw block of bits. Binary data is a + protected type that MUST not be used outside the data + type specification. + + + + + + + + + + + + + + Data that is primarily intended for human interpretation + or for further machine processing is outside the scope of + HL7. This includes unformatted or formatted written language, + multimedia data, or structured information as defined by a + different standard (e.g., XML-signatures.) Instead of the + data itself, an ED may contain + only a reference (see TEL.) Note + that the ST data type is a + specialization of + when the is text/plain. + + + + + + + + + A telecommunication address (TEL), such as a URL + for HTTP or FTP, which will resolve to precisely + the same binary data that could as well have been + provided as inline data. + + + + + + + + + Identifies the type of the encapsulated data and + identifies a method to interpret or render the data. + + + + + + + For character based information the language property + specifies the human language of the text. + + + + + + + Indicates whether the raw byte data is compressed, + and what compression algorithm was used. + + + + + + + The integrity check is a short binary value representing + a cryptographically strong checksum that is calculated + over the binary data. The purpose of this property, when + communicated with a reference is for anyone to validate + later whether the reference still resolved to the same + data that the reference resolved to when the encapsulated + data value with reference was created. + + + + + + + Specifies the algorithm used to compute the + integrityCheck value. + + + + + + + + + + A thumbnail is an abbreviated rendition of the full + data. A thumbnail requires significantly fewer + resources than the full data, while still maintaining + some distinctive similarity with the full data. A + thumbnail is typically used with by-reference + encapsulated data. It allows a user to select data + more efficiently before actually downloading through + the reference. + + + + + + + + + + + + + + + The character string data type stands for text data, + primarily intended for machine processing (e.g., + sorting, querying, indexing, etc.) Used for names, + symbols, and formal expressions. + + + + + + + + + + The character string data type stands for text data, + primarily intended for machine processing (e.g., + sorting, querying, indexing, etc.) Used for names, + symbols, and formal expressions. + + + + + +

Text content is only allowed in non-NULL values.

+
+
+
+
+
+ + + + + + + + + + + + + + +
+ + + + Coded data in its simplest form, consists of a code. + The code system and code system version is fixed by + the context in which the value occurs. is used + for coded attributes that have a single HL7-defined + value set. + + + + + + + + + + A concept descriptor represents any kind of concept usually + by giving a code defined in a code system. A concept + descriptor can contain the original text or phrase that + served as the basis of the coding and one or more + translations into different coding systems. A concept + descriptor can also contain qualifiers to describe, e.g., + the concept of a "left foot" as a postcoordinated term built + from the primary code "FOOT" and the qualifier "LEFT". + In exceptional cases, the concept descriptor need not + contain a code but only the original text describing + that concept. + + + + + + + + + The text or phrase used as the basis for the coding. + + + + + + + Specifies additional codes that increase the + specificity of the primary code. + + + + + + + A set of other concept descriptors that translate + this concept descriptor into other code systems. + + + + + + + + The plain code symbol defined by the code system. + For example, "784.0" is the code symbol of the ICD-9 + code "784.0" for headache. + + + + + + + Specifies the code system that defines the code. + + + + + + + A common name of the coding system. + + + + + + + If applicable, a version descriptor defined + specifically for the given code system. + + + + + + + A name or title for the code, under which the sending + system shows the code value to its users. + + + + + + + + + + Coded data, consists of a coded value (CV) + and, optionally, coded value(s) from other coding systems + that identify the same concept. Used when alternative + codes may exist. + + + + + + + + + The text or phrase used as the basis for the coding. + + + + + + + + A set of other concept descriptors that translate + this concept descriptor into other code systems. + + + + + + + + The plain code symbol defined by the code system. + For example, "784.0" is the code symbol of the ICD-9 + code "784.0" for headache. + + + + + + + Specifies the code system that defines the code. + + + + + + + A common name of the coding system. + + + + + + + If applicable, a version descriptor defined + specifically for the given code system. + + + + + + + A name or title for the code, under which the sending + system shows the code value to its users. + + + + + + + + + + Coded data, consists of a code, display name, code system, + and original text. Used when a single code value must be sent. + + + + + + + + + The text or phrase used as the basis for the coding. + + + + + + + + + The plain code symbol defined by the code system. + For example, "784.0" is the code symbol of the ICD-9 + code "784.0" for headache. + + + + + + + Specifies the code system that defines the code. + + + + + + + A common name of the coding system. + + + + + + + If applicable, a version descriptor defined + specifically for the given code system. + + + + + + + A name or title for the code, under which the sending + system shows the code value to its users. + + + + + + + + + + Coded data, consists of a code, display name, code system, + and original text. Used when a single code value must be sent. + + + + + + + + The plain code symbol defined by the code system. + For example, "784.0" is the code symbol of the ICD-9 + code "784.0" for headache. + + + + + + + + + + + + + + Coded data, where the domain from which the codeset comes + is ordered. The Coded Ordinal data type adds semantics + related to ordering so that models that make use of such + domains may introduce model elements that involve statements + about the order of the terms in a domain. + + + + + + + + + + A concept qualifier code with optionally named role. + Both qualifier role and value codes must be defined by + the coding system. For example, if SNOMED RT defines a + concept "leg", a role relation "has-laterality", and + another concept "left", the concept role relation allows + to add the qualifier "has-laterality: left" to a primary + code "leg" to construct the meaning "left leg". + + + + + +

+ A value component is required or else the + code role is NULL. +

+
+
+
+
+
+ + + + + + + Specifies the manner in which the concept role value + contributes to the meaning of a code phrase. For + example, if SNOMED RT defines a concept "leg", a role + relation "has-laterality", and another concept "left", + the concept role relation allows to add the qualifier + "has-laterality: left" to a primary code "leg" to + construct the meaning "left leg". In this example + "has-laterality" is . + + + + + + + The concept that modifies the primary code of a code + phrase through the role relation. For example, if + SNOMED RT defines a concept "leg", a role relation + "has-laterality", and another concept "left", the + concept role relation allows adding the qualifier + "has-laterality: left" to a primary code "leg" to + construct the meaning "left leg". In this example + "left" is . + + + + + + + + Indicates if the sense of the role name is inverted. + This can be used in cases where the underlying code + system defines inversion but does not provide reciprocal + pairs of role names. By default, inverted is false. + + + + + +
+ + + + An ST that optionally may have a code attached. + The text must always be present if a code is present. The + code is often a local code. + + + + + + + + The plain code symbol defined by the code system. + For example, "784.0" is the code symbol of the ICD-9 + code "784.0" for headache. + + + + + + + Specifies the code system that defines the code. + + + + + + + A common name of the coding system. + + + + + + + If applicable, a version descriptor defined + specifically for the given code system. + + + + + + + A name or title for the code, under which the sending + system shows the code value to its users. + + + + + + + + + + A unique identifier string is a character string which + identifies an object in a globally unique and timeless + manner. The allowable formats and values and procedures + of this data type are strictly controlled by HL7. At this + time, user-assigned identifiers may be certain character + representations of ISO Object Identifiers () + and DCE + Universally Unique Identifiers (). + HL7 also reserves + the right to assign other forms of UIDs (, + such as mnemonic + identifiers for code systems. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + An identifier that uniquely identifies a thing or object. + Examples are object identifier for HL7 RIM objects, + medical record number, order id, service catalog item id, + Vehicle Identification Number (VIN), etc. Instance + identifiers are defined based on ISO object identifiers. + + + + + + A root component is required or else the II value is NULL. + + + + + + + + + + + A unique identifier that guarantees the global uniqueness + of the instance identifier. The root alone may be the + entire instance identifier. + + + + + + + A character string as a unique identifier within the + scope of the identifier root. + + + + + + + A human readable name or mnemonic for the assigning + authority. This name may be provided solely for the + convenience of unaided humans interpreting an value + and can have no computational meaning. Note: no + automated processing must depend on the assigning + authority name to be present in any form. + + + + + + + Specifies if the identifier is intended for human + display and data entry (displayable = true) as + opposed to pure machine interoperation (displayable + = false). + + + + + + + + + + A telecommunications address specified according to + Internet standard RFC 1738 + [http://www.ietf.org/rfc/rfc1738.txt]. The + URL specifies the protocol and the contact point defined + by that protocol for the resource. Notable uses of the + telecommunication address data type are for telephone and + telefax numbers, e-mail addresses, Hypertext references, + FTP references, etc. + + + + + + + + A telecommunications address specified according to + Internet standard RFC 1738 + [http://www.ietf.org/rfc/rfc1738.txt]. The + URL specifies the protocol and the contact point defined + by that protocol for the resource. Notable uses of the + telecommunication address data type are for telephone and + telefax numbers, e-mail addresses, Hypertext references, + FTP references, etc. + + + + + + + + + + + + + + + + + + + A quantity specifying a point on the axis of natural time. + A point in time is most often represented as a calendar + expression. + + + + + + + + + + A quantity specifying a point on the axis of natural time. + A point in time is most often represented as a calendar + expression. + + + PQ + + + + + + + + + + + + A telephone number (voice or fax), e-mail address, or + other locator for a resource (information or service) + mediated by telecommunication equipment. The address + is specified as a URL + qualified by time specification and use codes that help + in deciding which address to use for a given time and + purpose. + + + + + + + + + Specifies the periods of time during which the + telecommunication address can be used. For a + telephone number, this can indicate the time of day + in which the party can be reached on that telephone. + For a web address, it may specify a time range in + which the web content is promised to be available + under the given address. + + + + + + + + One or more codes advising a system or user which + telecommunication address in a set of like addresses + to select for a given telecommunication need. + + + + + + + + + + A character string that may have a type-tag signifying its + role in the address. Typical parts that exist in about + every address are street, house number, or post box, + postal code, city, country but other roles may be defined + regionally, nationally, or on an enterprise level (e.g. in + military addresses). Addresses are usually broken up into + lines, which are indicated by special line-breaking + delimiter elements (e.g., DEL). + + + + + + + + Specifies whether an address part names the street, + city, country, postal code, post box, etc. If the type + is NULL the address part is unclassified and would + simply appear on an address label as is. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mailing and home or office addresses. A sequence of + address parts, such as street or post office Box, city, + postal code, country, etc. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A GTS specifying the + periods of time during which the address can be used. + This is used to specify different addresses for + different times of the year or to refer to historical + addresses. + + + + + + + + A set of codes advising a system or user which address + in a set of like addresses to select for a given purpose. + + + + + + + A boolean value specifying whether the order of the + address parts is known or not. While the address parts + are always a Sequence, the order in which they are + presented may or may not be known. Where this matters, + can be used to convey this + information. + + + + + + + + + + A character string token representing a part of a name. + May have a type code signifying the role of the part in + the whole entity name, and a qualifier code for more detail + about the name part type. Typical name parts for person + names are given names, and family names, titles, etc. + + + + + + + + Indicates whether the name part is a given name, family + name, prefix, suffix, etc. + + + + + + is a set of codes each of which specifies + a certain subcategory of the name part in addition to + the main name part type. For example, a given name may + be flagged as a nickname, a family name may be a + pseudonym or a name of public records. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A name for a person, organization, place or thing. A + sequence of name parts, such as given name or family + name, prefix, suffix, etc. Examples for entity name + values are "Jim Bob Walton, Jr.", "Health Level Seven, + Inc.", "Lake Tahoe", etc. An entity name may be as simple + as a character string or may consist of several entity name + parts, such as, "Jim", "Bob", "Walton", and "Jr.", "Health + Level Seven" and "Inc.", "Lake" and "Tahoe". + + + + + + + + + + + + + + + + An interval of time specifying the time during which + the name is or was used for the entity. This + accomodates the fact that people change names for + people, places and things. + + + + + + + + A set of codes advising a system or user which name + in a set of like names to select for a given purpose. + A name without specific use code might be a default + name useful for any purpose, but a name with a specific + use code would be preferred for that respective purpose. + + + + + + + + + + A name for a person. A sequence of name parts, such as + given name or family name, prefix, suffix, etc. PN differs + from EN because the qualifier type cannot include LS + (Legal Status). + + + + + + + + + + A name for an organization. A sequence of name parts. + + + + + + + + + + + + + + An interval of time specifying the time during which + the name is or was used for the entity. This + accomodates the fact that people change names for + people, places and things. + + + + + + + + A set of codes advising a system or user which name + in a set of like names to select for a given purpose. + A name without specific use code might be a default + name useful for any purpose, but a name with a specific + use code would be preferred for that respective purpose. + + + + + + + + + + A restriction of entity name that is effectively a simple string used + for a simple name for things and places. + + + + + + + + + An interval of time specifying the time during which + the name is or was used for the entity. This + accomodates the fact that people change names for + people, places and things. + + + + + + + + + + is an abstract generalization + for all data types (1) whose value set has an order + relation (less-or-equal) and (2) where difference is + defined in all of the data type's totally ordered value + subsets. The quantity type abstraction is needed in + defining certain other types, such as the interval and + the probability distribution. + + + QTY + + + + + + + + + + Integer numbers (-1,0,1,2, 100, 3398129, etc.) are precise + numbers that are results of counting and enumerating. + Integer numbers are discrete, the set of integers is + infinite but countable. No arbitrary limit is imposed on + the range of integer numbers. Two NULL flavors are + defined for the positive and negative infinity. + + + + + + + + Integer numbers (-1,0,1,2, 100, 3398129, etc.) are precise + numbers that are results of counting and enumerating. + Integer numbers are discrete, the set of integers is + infinite but countable. No arbitrary limit is imposed on + the range of integer numbers. Two NULL flavors are + defined for the positive and negative infinity. + + + INT + + + + + + + + + + + + + + + + + Fractional numbers. Typically used whenever quantities + are measured, estimated, or computed from other real + numbers. The typical representation is decimal, where + the number of significant decimal digits is known as the + precision. Real numbers are needed beyond integers + whenever quantities of the real world are measured, + estimated, or computed from other real numbers. The term + "Real number" in this specification is used to mean + that fractional values are covered without necessarily + implying the full set of the mathematical real numbers. + + + + + + + + Fractional numbers. Typically used whenever quantities + are measured, estimated, or computed from other real + numbers. The typical representation is decimal, where + the number of significant decimal digits is known as the + precision. Real numbers are needed beyond integers + whenever quantities of the real world are measured, + estimated, or computed from other real numbers. The term + "Real number" in this specification is used to mean + that fractional values are covered without necessarily + implying the full set of the mathematical real numbers. + + + REAL + + + + + + + + + + + + + + + + + A representation of a physical quantity in a unit from + any code system. Used to show alternative representation + for a physical quantity. + + + + + + + + The magnitude of the measurement value in terms of + the unit specified in the code. + + + + + + + + + + A dimensioned quantity expressing the result of a + measurement act. + + + PQ + + + + + + + + + An alternative representation of the same physical + quantity expressed in a different unit, of a different + unit code system and possibly with a different value. + + + + + + + + The magnitude of the quantity measured in terms of + the unit. + + + + + + + The unit of measure specified in the Unified Code for + Units of Measure (UCUM) + [http://aurora.rg.iupui.edu/UCUM]. + + + + + + + + + + A monetary amount is a quantity expressing the amount of + money in some currency. Currencies are the units in which + monetary amounts are denominated in different economic + regions. While the monetary amount is a single kind of + quantity (money) the exchange rates between the different + units are variable. This is the principle difference + between physical quantity and monetary amounts, and the + reason why currency units are not physical units. + + + MO + + + + + + + + + + + + + The magnitude of the monetary amount in terms of the + currency unit. + + + + + + + The currency unit as defined in ISO 4217. + + + + + + + + + + A quantity constructed as the quotient of a numerator + quantity divided by a denominator quantity. Common + factors in the numerator and denominator are not + automatically cancelled out. supports titers + (e.g., "1:128") and other quantities produced by + laboratories that truly represent ratios. Ratios are + not simply "structured numerics", particularly blood + pressure measurements (e.g. "120/60") are not ratios. + In many cases REAL should be used instead + of . + + + + + + + + + + The probability assigned to the value, a decimal number + between 0 (very uncertain) and 1 (certain). + + + + + + + + + + + A code for a common (periodical) activity of daily + living based on which the event related periodic + interval is specified. + + + + + + + + + + + + + + + + + + A code specifying whether the set component is included + (union) or excluded (set-difference) from the set, or + other set operations with the current set component and + the set as constructed from the representation stream + up to the current point. + + + + + + + + + + + + + + + + + + + + + + + + The low limit of the interval. + + + + + + + + The difference between high and low boundary. The + purpose of distinguishing a width property is to + handle all cases of incomplete information + symmetrically. In any interval representation only + two of the three properties high, low, and width need + to be stated and the third can be derived. + + + + + + + The high limit of the interval. + + + + + + + + + + + + + + + The difference between high and low boundary. The + purpose of distinguishing a width property is to + handle all cases of incomplete information + symmetrically. In any interval representation only + two of the three properties high, low, and width need + to be stated and the third can be derived. + + + + + + + The high limit of the interval. + + + + + + + + + The arithmetic mean of the interval (low plus high + divided by 2). The purpose of distinguishing the center + as a semantic property is for conversions of intervals + from and to point values. + + + + + + + The difference between high and low boundary. The + purpose of distinguishing a width property is to + handle all cases of incomplete information + symmetrically. In any interval representation only + two of the three properties high, low, and width need + to be stated and the third can be derived. + + + + + + + + + + + + + + + Specifies whether the limit is included in the + interval (interval is closed) or excluded from the + interval (interval is open). + + + + + + + + + + + + + RTO_QTY_QTY + + + + + + + + + The quantity that is being divided in the ratio. The + default is the integer number 1 (one). + + + + + + + The quantity that devides the numerator in the ratio. + The default is the integer number 1 (one). + The denominator must not be zero. + + + + + + + +
diff --git a/src/main/webapp/schema/HL7V3/NE2008/coreschemas/datatypes.xsd b/src/main/webapp/schema/HL7V3/NE2008/coreschemas/datatypes.xsd new file mode 100644 index 0000000..aa1eee4 --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/coreschemas/datatypes.xsd @@ -0,0 +1,1379 @@ + + + + + + Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 Health Level Seven. + All rights reserved. + + Redistribution and use in source and binary forms, with or + without modification, are permitted provided that the following + conditions are met: + 1. Redistributions of source code must retain the above + copyright notice, this list of conditions and the following + disclaimer. + 2. Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials + provided with the distribution. + 3. All advertising materials mentioning features or use of this + software must display the following acknowledgement: + + This product includes software developed by Health Level Seven. + + THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT + NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND + FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT + SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE + GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + + Generated by $Id: datatypes.xsd,v 1.1 2006/05/23 23:03:14 wbeeler Exp $ + + + + + + + + Note: because this type is defined as an extension of SXCM_T, + all of the attributes and elements accepted for T are also + accepted by this definition. However, they are NOT allowed + by the normative description of this type. Unfortunately, + we cannot write a general purpose schematron contraints to + provide that extra validation, thus applications must be + aware that instance (fragments) that pass validation with + this might might still not be legal. + + + + + + + + + A prototype of the repeating interval specifying the + duration of each occurrence and anchors the periodic + interval sequence at a certain point in time. + + + + + + + A time duration specifying a reciprocal measure of + the frequency at which the periodic interval repeats. + + + + + + + + Specifies if and how the repetitions are aligned to + the cycles of the underlying calendar (e.g., to + distinguish every 30 days from "the 5th of every + month".) A non-aligned periodic interval recurs + independently from the calendar. An aligned periodic + interval is synchronized with the calendar. + + + + + + + Indicates whether the exact timing is up to the party + executing the schedule (e.g., to distinguish "every 8 + hours" from "3 times a day".) + + + + + + + + + + Note: because this type is defined as an extension of SXCM_T, + all of the attributes and elements accepted for T are also + accepted by this definition. However, they are NOT allowed + by the normative description of this type. Unfortunately, + we cannot write a general purpose schematron contraints to + provide that extra validation, thus applications must be + aware that instance (fragments) that pass validation with + this might might still not be legal. + + + + + + + + + A code for a common (periodical) activity of daily + living based on which the event related periodic + interval is specified. + + + + + + + An interval of elapsed time (duration, not absolute + point in time) that marks the offsets for the + beginning, width and end of the event-related periodic + interval measured from the time each such event + actually occurred. + + + + + + + + + + + + + + + + The low limit of the interval. + + + + + + + + The difference between high and low boundary. The + purpose of distinguishing a width property is to + handle all cases of incomplete information + symmetrically. In any interval representation only + two of the three properties high, low, and width need + to be stated and the third can be derived. + + + + + + + The high limit of the interval. + + + + + + + + + + + + + + + The difference between high and low boundary. The + purpose of distinguishing a width property is to + handle all cases of incomplete information + symmetrically. In any interval representation only + two of the three properties high, low, and width need + to be stated and the third can be derived. + + + + + + + The high limit of the interval. + + + + + + + + + The arithmetic mean of the interval (low plus high + divided by 2). The purpose of distinguishing the center + as a semantic property is for conversions of intervals + from and to point values. + + + + + + + The difference between high and low boundary. The + purpose of distinguishing a width property is to + handle all cases of incomplete information + symmetrically. In any interval representation only + two of the three properties high, low, and width need + to be stated and the third can be derived. + + + + + + + + + + + + + + + A code specifying whether the set component is included + (union) or excluded (set-difference) from the set, or + other set operations with the current set component and + the set as constructed from the representation stream + up to the current point. + + + + + + + + + + + + + Specifies whether the limit is included in the + interval (interval is closed) or excluded from the + interval (interval is open). + + + + + + + + + + PPD_PQ + + + + + + + + + The primary measure of variance/uncertainty of the + value (the square root of the sum of the squares of + the differences between all data points and the mean). + The standard deviation is used to normalize the data + for computing the distribution function. Applications + that cannot deal with probability distributions can + still get an idea about the confidence level by looking + at the standard deviation. + + + + + + + + A code specifying the type of probability distribution. + Possible values are as shown in the attached table. + The NULL value (unknown) for the type code indicates + that the probability distribution type is unknown. In + that case, the standard deviation has the meaning of an + informal guess. + + + + + + + + + + PPD_PQ + + + + + + + + + The primary measure of variance/uncertainty of the + value (the square root of the sum of the squares of + the differences between all data points and the mean). + The standard deviation is used to normalize the data + for computing the distribution function. Applications + that cannot deal with probability distributions can + still get an idea about the confidence level by looking + at the standard deviation. + + + + + + + + A code specifying the type of probability distribution. + Possible values are as shown in the attached table. + The NULL value (unknown) for the type code indicates + that the probability distribution type is unknown. In + that case, the standard deviation has the meaning of an + informal guess. + + + + + + + + + + Note: because this type is defined as an extension of SXCM_T, + all of the attributes and elements accepted for T are also + accepted by this definition. However, they are NOT allowed + by the normative description of this type. Unfortunately, + we cannot write a general purpose schematron contraints to + provide that extra validation, thus applications must be + aware that instance (fragments) that pass validation with + this might might still not be legal. + + + + + + + + + A prototype of the repeating interval specifying the + duration of each occurrence and anchors the periodic + interval sequence at a certain point in time. + + + + + + + A time duration specifying a reciprocal measure of + the frequency at which the periodic interval repeats. + + + + + + + + Specifies if and how the repetitions are aligned to + the cycles of the underlying calendar (e.g., to + distinguish every 30 days from "the 5th of every + month".) A non-aligned periodic interval recurs + independently from the calendar. An aligned periodic + interval is synchronized with the calendar. + + + + + + + Indicates whether the exact timing is up to the party + executing the schedule (e.g., to distinguish "every 8 + hours" from "3 times a day".) + + + + + + + + + + + + + A code specifying whether the set component is included + (union) or excluded (set-difference) from the set, or + other set operations with the current set component and + the set as constructed from the representation stream + up to the current point. + + + + + + + + + + + + + + + The low limit of the interval. + + + + + + + + The difference between high and low boundary. The + purpose of distinguishing a width property is to + handle all cases of incomplete information + symmetrically. In any interval representation only + two of the three properties high, low, and width need + to be stated and the third can be derived. + + + + + + + The high limit of the interval. + + + + + + + + + + + + + + + The difference between high and low boundary. The + purpose of distinguishing a width property is to + handle all cases of incomplete information + symmetrically. In any interval representation only + two of the three properties high, low, and width need + to be stated and the third can be derived. + + + + + + + The high limit of the interval. + + + + + + + + + The arithmetic mean of the interval (low plus high + divided by 2). The purpose of distinguishing the center + as a semantic property is for conversions of intervals + from and to point values. + + + + + + + The difference between high and low boundary. The + purpose of distinguishing a width property is to + handle all cases of incomplete information + symmetrically. In any interval representation only + two of the three properties high, low, and width need + to be stated and the third can be derived. + + + + + + + + + + + + + + + Specifies whether the limit is included in the + interval (interval is closed) or excluded from the + interval (interval is open). + + + + + + + + + + Note: because this type is defined as an extension of SXCM_T, + all of the attributes and elements accepted for T are also + accepted by this definition. However, they are NOT allowed + by the normative description of this type. Unfortunately, + we cannot write a general purpose schematron contraints to + provide that extra validation, thus applications must be + aware that instance (fragments) that pass validation with + this might might still not be legal. + + + + + + + + + A code for a common (periodical) activity of daily + living based on which the event related periodic + interval is specified. + + + + + + + An interval of elapsed time (duration, not absolute + point in time) that marks the offsets for the + beginning, width and end of the event-related periodic + interval measured from the time each such event + actually occurred. + + + + + + + + + + + + + + + + The low limit of the interval. + + + + + + + + The difference between high and low boundary. The + purpose of distinguishing a width property is to + handle all cases of incomplete information + symmetrically. In any interval representation only + two of the three properties high, low, and width need + to be stated and the third can be derived. + + + + + + + The high limit of the interval. + + + + + + + + + + + + + + + The difference between high and low boundary. The + purpose of distinguishing a width property is to + handle all cases of incomplete information + symmetrically. In any interval representation only + two of the three properties high, low, and width need + to be stated and the third can be derived. + + + + + + + The high limit of the interval. + + + + + + + + + The arithmetic mean of the interval (low plus high + divided by 2). The purpose of distinguishing the center + as a semantic property is for conversions of intervals + from and to point values. + + + + + + + The difference between high and low boundary. The + purpose of distinguishing a width property is to + handle all cases of incomplete information + symmetrically. In any interval representation only + two of the three properties high, low, and width need + to be stated and the third can be derived. + + + + + + + + + + + + + + + A code specifying whether the set component is included + (union) or excluded (set-difference) from the set, or + other set operations with the current set component and + the set as constructed from the representation stream + up to the current point. + + + + + + + + + + + + + Specifies whether the limit is included in the + interval (interval is closed) or excluded from the + interval (interval is open). + + + + + + + + + + + + + + + + + + + + + + + + + + A code specifying whether the set component is included + (union) or excluded (set-difference) from the set, or + other set operations with the current set component and + the set as constructed from the representation stream + up to the current point. + + + + + + + + + + + + + A code specifying whether the set component is included + (union) or excluded (set-difference) from the set, or + other set operations with the current set component and + the set as constructed from the representation stream + up to the current point. + + + + + + + + + + + + + A code specifying whether the set component is included + (union) or excluded (set-difference) from the set, or + other set operations with the current set component and + the set as constructed from the representation stream + up to the current point. + + + + + + + + + + + + + A code specifying whether the set component is included + (union) or excluded (set-difference) from the set, or + other set operations with the current set component and + the set as constructed from the representation stream + up to the current point. + + + + + + + + + + + + + + + The low limit of the interval. + + + + + + + + The difference between high and low boundary. The + purpose of distinguishing a width property is to + handle all cases of incomplete information + symmetrically. In any interval representation only + two of the three properties high, low, and width need + to be stated and the third can be derived. + + + + + + + The high limit of the interval. + + + + + + + + + + + + + + + The difference between high and low boundary. The + purpose of distinguishing a width property is to + handle all cases of incomplete information + symmetrically. In any interval representation only + two of the three properties high, low, and width need + to be stated and the third can be derived. + + + + + + + The high limit of the interval. + + + + + + + + + The arithmetic mean of the interval (low plus high + divided by 2). The purpose of distinguishing the center + as a semantic property is for conversions of intervals + from and to point values. + + + + + + + The difference between high and low boundary. The + purpose of distinguishing a width property is to + handle all cases of incomplete information + symmetrically. In any interval representation only + two of the three properties high, low, and width need + to be stated and the third can be derived. + + + + + + + + + + + + + + + Specifies whether the limit is included in the + interval (interval is closed) or excluded from the + interval (interval is open). + + + + + + + + + + + + + + + The low limit of the interval. + + + + + + + + The difference between high and low boundary. The + purpose of distinguishing a width property is to + handle all cases of incomplete information + symmetrically. In any interval representation only + two of the three properties high, low, and width need + to be stated and the third can be derived. + + + + + + + The high limit of the interval. + + + + + + + + + + + + + + + The difference between high and low boundary. The + purpose of distinguishing a width property is to + handle all cases of incomplete information + symmetrically. In any interval representation only + two of the three properties high, low, and width need + to be stated and the third can be derived. + + + + + + + The high limit of the interval. + + + + + + + + + The arithmetic mean of the interval (low plus high + divided by 2). The purpose of distinguishing the center + as a semantic property is for conversions of intervals + from and to point values. + + + + + + + The difference between high and low boundary. The + purpose of distinguishing a width property is to + handle all cases of incomplete information + symmetrically. In any interval representation only + two of the three properties high, low, and width need + to be stated and the third can be derived. + + + + + + + + + + + + + + + Specifies whether the limit is included in the + interval (interval is closed) or excluded from the + interval (interval is open). + + + + + + + + + + + + + + + The low limit of the interval. + + + + + + + + The difference between high and low boundary. The + purpose of distinguishing a width property is to + handle all cases of incomplete information + symmetrically. In any interval representation only + two of the three properties high, low, and width need + to be stated and the third can be derived. + + + + + + + The high limit of the interval. + + + + + + + + + + + + + + + The difference between high and low boundary. The + purpose of distinguishing a width property is to + handle all cases of incomplete information + symmetrically. In any interval representation only + two of the three properties high, low, and width need + to be stated and the third can be derived. + + + + + + + The high limit of the interval. + + + + + + + + + The arithmetic mean of the interval (low plus high + divided by 2). The purpose of distinguishing the center + as a semantic property is for conversions of intervals + from and to point values. + + + + + + + The difference between high and low boundary. The + purpose of distinguishing a width property is to + handle all cases of incomplete information + symmetrically. In any interval representation only + two of the three properties high, low, and width need + to be stated and the third can be derived. + + + + + + + + + + + + + + + Specifies whether the limit is included in the + interval (interval is closed) or excluded from the + interval (interval is open). + + + + + + + + + + + + + + The time interval during which the given information + was, is, or is expected to be valid. The interval can + be open or closed, as well as infinite or undefined on + either side. + + + + + + + + + + + + + + + The time interval during which the given information + was, is, or is expected to be valid. The interval can + be open or closed, as well as infinite or undefined on + either side. + + + + + + + + + + + + + + The quantity in which the bag item occurs in its containing bag. + + + + + + + + + + + + + The quantity in which the bag item occurs in its containing bag. + + + + + + + + + + + + + + The origin of the list item value scale, i.e., the + physical quantity that a zero-digit in the sequence + would represent. + + + + + + + A ratio-scale quantity that is factored out of the + digit sequence. + + + + + + + A sequence of raw digits for the sample values. This is + typically the raw output of an A/D converter. + + + + + + + + + + + + + + + + + + The origin of the list item value scale, i.e., the + physical quantity that a zero-digit in the sequence + would represent. + + + + + + + A ratio-scale quantity that is factored out of the + digit sequence. + + + + + + + A sequence of raw digits for the sample values. This is + typically the raw output of an A/D converter. + + + + + + + + + + + + + + + This is the start-value of the generated list. + + + + + + + The difference between one value and its previous + different value. For example, to generate the sequence + (1; 4; 7; 10; 13; ...) the increment is 3; likewise to + generate the sequence (1; 1; 4; 4; 7; 7; 10; 10; 13; + 13; ...) the increment is also 3. + + + + + + + + If non-NULL, specifies that the sequence alternates, + i.e., after this many increments, the sequence item + values roll over to start from the initial sequence + item value. For example, the sequence (1; 2; 3; 1; 2; + 3; 1; 2; 3; ...) has period 3; also the sequence + (1; 1; 2; 2; 3; 3; 1; 1; 2; 2; 3; 3; ...) has period + 3 too. + + + + + + + The integer by which the index for the sequence is + divided, effectively the number of times the sequence + generates the same sequence item value before + incrementing to the next sequence item value. For + example, to generate the sequence (1; 1; 1; 2; 2; 2; 3; 3; + 3; ...) the denominator is 3. + + + + + + + + + + + + + + This is the start-value of the generated list. + + + + + + + The difference between one value and its previous + different value. For example, to generate the sequence + (1; 4; 7; 10; 13; ...) the increment is 3; likewise to + generate the sequence (1; 1; 4; 4; 7; 7; 10; 10; 13; + 13; ...) the increment is also 3. + + + + + + + + If non-NULL, specifies that the sequence alternates, + i.e., after this many increments, the sequence item + values roll over to start from the initial sequence + item value. For example, the sequence (1; 2; 3; 1; 2; + 3; 1; 2; 3; ...) has period 3; also the sequence + (1; 1; 2; 2; 3; 3; 1; 1; 2; 2; 3; 3; ...) has period + 3 too. + + + + + + + The integer by which the index for the sequence is + divided, effectively the number of times the sequence + generates the same sequence item value before + incrementing to the next sequence item value. For + example, to generate the sequence (1; 1; 1; 2; 2; 2; 3; 3; + 3; ...) the denominator is 3. + + + + + + + + + + RTO_PQ_PQ + + + + + + + + + The quantity that is being divided in the ratio. The + default is the integer number 1 (one). + + + + + + + The quantity that devides the numerator in the ratio. + The default is the integer number 1 (one). + The denominator must not be zero. + + + + + + + + + + + RTO_MO_PQ + + + + + + + + + The quantity that is being divided in the ratio. The + default is the integer number 1 (one). + + + + + + + The quantity that devides the numerator in the ratio. + The default is the integer number 1 (one). + The denominator must not be zero. + + + + + + + + + + + + + + The probability assigned to the value, a decimal number + between 0 (very uncertain) and 1 (certain). + + + + + + + diff --git a/src/main/webapp/schema/HL7V3/NE2008/coreschemas/infrastructureRoot.xsd b/src/main/webapp/schema/HL7V3/NE2008/coreschemas/infrastructureRoot.xsd new file mode 100644 index 0000000..b93e853 --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/coreschemas/infrastructureRoot.xsd @@ -0,0 +1,28 @@ + + + + Source Information + Rendered by: RoseTree 4.2.7 + Rendered on: 2008-03-22T24:01:25 +This model was rendered into XML using software provided to HL7 by Beeler Consulting LLC. + Transform: $RCSfile: RoseTreeRimToMIFStaticModel.xsl,v $ $Revision: 1.8 $ $Date: 2007/10/19 05:55:13 $ + Generated using schema builder version: 3.1.6 + RIM MIF Infrastructure Root to Schema Transform: $Id: RimInfrastructureRootToXsd.xsl,v 1.4 2007/03/20 02:48:50 wbeeler Exp $ + Static MIF to Schema Transform: $Id: StaticMifToXsd.xsl,v 1.30 2007/12/06 05:50:08 wbeeler Exp $ + Package Id Conversion: $Id: TransformPackageIds.xsl,v 1.6 2007/03/20 02:48:49 wbeeler Exp $ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/coreschemas/voc.xsd b/src/main/webapp/schema/HL7V3/NE2008/coreschemas/voc.xsd new file mode 100644 index 0000000..df3b3dd --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/coreschemas/voc.xsd @@ -0,0 +1,23472 @@ + + + + $Id: mConcept.cls,v 1.9 2007/11/26 19:28:05 wbeeler Exp $ +RoseTree XML to Schema: $Id: VocabXMLtoXSD.xsl,v 1.8 2007/03/20 02:48:50 wbeeler Exp $ + + + + + + + + vocSet: E0 (C-0-E0-cpt) + + + + + + vocSet: T155 (C-0-T155-cpt) + + + + + + + + + + vocSet: T19638 (C-0-T19638-cpt) + + + + + + + + + + + + + + + + abstDomain: A19640 (C-0-T19638-A19640-cpt) + + + + + + + + + + + + + specDomain: S22075 (C-0-T19638-S22075-cpt) + + + + + + + + + + + + + + + vocSet: T19358 (C-0-T19358-cpt) + + + + + + + + + + vocSet: D23 (C-0-D23-cpt) + + + + + + vocSet: T8 (C-0-T8-cpt) + + + + + + + + + + + + + vocSet: T11527 (C-0-T11527-cpt) + + + + + + specDomain: S13856 (C-0-T11527-S13856-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + specDomain: S18964 (C-0-T11527-S13856-S18964-cpt) + + + + + + + + + abstDomain: A19445 (C-0-T11527-S13856-A19445-cpt) + + + + + + + + + + + + specDomain: S20083 (C-0-T11527-S13856-A19445-S20083-cpt) + + + + + + + + + + + + specDomain: S18938 (C-0-T11527-S13856-A19445-S20083-S18938-cpt) + + + + + + + + + + + + specDomain: S13948 (C-0-T11527-S13856-A19445-S20083-S18938-S13948-cpt) + + + + + + + + + specDomain: S20087 (C-0-T11527-S13856-A19445-S20087-cpt) + + + + + + + + + + specDomain: S20080 (C-0-T11527-S13856-A19445-S20080-cpt) + + + + + + + + + specDomain: S20084 (C-0-T11527-S13856-A19445-S20084-cpt) + + + + + + + + + + + + specDomain: S14002 (C-0-T11527-S13856-S14002-cpt) + + + + + + + + + + + + specDomain: S14003 (C-0-T11527-S13856-S14002-S14003-cpt) + + + + + + + + + specDomain: S11534 (C-0-T11527-S13856-S11534-cpt) + + + + + + + + + + + specDomain: S21980 (C-0-T11527-S13856-S21980-cpt) + + + + + + + + + + specDomain: S11529 (C-0-T11527-S13856-S11529-cpt) + + + + + + + + + + + + + + + + + + + specDomain: S18862 (C-0-T11527-S13856-S11529-S18862-cpt) + + + + + + + + + + + + specDomain: S11530 (C-0-T11527-S13856-S11529-S18862-S11530-cpt) + + + + + + + + + specDomain: S21997 (C-0-T11527-S13856-S11529-S21997-cpt) + + + + + + + + + + + + + + + specDomain: S18875 (C-0-T11527-S13856-S11529-S18875-cpt) + + + + + + + + + specDomain: S21646 (C-0-T11527-S13856-S11529-S21646-cpt) + + + + + + + + + + abstDomain: A17893 (C-0-T11527-S13856-S11529-A17893-cpt) + + + + + + + + + abstDomain: A19796 (C-0-T11527-S13856-S11529-A19796-cpt) + + + + + + + + + + + + abstDomain: A19798 (C-0-T11527-S13856-S11529-A19796-A19798-cpt) + + + + + + + + + + + + + + + + + specDomain: S21935 (C-0-T11527-S13856-S11529-A19796-A19798-S21935-cpt) + + + + + + + + + + specDomain: S21981 (C-0-T11527-S13856-S21981-cpt) + + + + + + + + + + + + specDomain: S11532 (C-0-T11527-S13856-S11532-cpt) + + + + + + + + + specDomain: S11535 (C-0-T11527-S13856-S11535-cpt) + + + + + + + + + abstDomain: A19887 (C-0-T11527-A19887-cpt) + + + + + + + + + abstDomain: A19888 (C-0-T11527-A19888-cpt) + + + + + + + + + abstDomain: A19889 (C-0-T11527-A19889-cpt) + + + + + + + + + abstDomain: A19599 (C-0-T11527-A19599-cpt) + + + + + + + + + + + + + + + + + abstDomain: A19598 (C-0-T11527-A19598-cpt) + + + + + + + + + abstDomain: A19822 (C-0-T11527-A19822-cpt) + + + + + + + + + + + + abstDomain: A19657 (C-0-T11527-A19657-cpt) + + + + + + + + + + + + vocSet: O20195 (C-0-O20195-cpt) + + + + + + vocSet: O20193 (C-0-O20193-cpt) + + + + + + vocSet: O20194 (C-0-O20194-cpt) + + + + + + vocSet: O20198 (C-0-O20198-cpt) + + + + + + vocSet: O20196 (C-0-O20196-cpt) + + + + + + vocSet: O20200 (C-0-O20200-cpt) + + + + + + vocSet: O20247 (C-0-O20247-cpt) + + + + + + vocSet: O20248 (C-0-O20248-cpt) + + + + + + vocSet: O20242 (C-0-O20242-cpt) + + + + + + vocSet: O20201 (C-0-O20201-cpt) + + + + + + vocSet: O20202 (C-0-O20202-cpt) + + + + + + vocSet: O20203 (C-0-O20203-cpt) + + + + + + vocSet: O20209 (C-0-O20209-cpt) + + + + + + vocSet: O20204 (C-0-O20204-cpt) + + + + + + vocSet: O20205 (C-0-O20205-cpt) + + + + + + vocSet: O20206 (C-0-O20206-cpt) + + + + + + vocSet: O20207 (C-0-O20207-cpt) + + + + + + vocSet: O20230 (C-0-O20230-cpt) + + + + + + vocSet: O20208 (C-0-O20208-cpt) + + + + + + vocSet: O20199 (C-0-O20199-cpt) + + + + + + vocSet: O20210 (C-0-O20210-cpt) + + + + + + vocSet: O20211 (C-0-O20211-cpt) + + + + + + vocSet: O20212 (C-0-O20212-cpt) + + + + + + vocSet: O20213 (C-0-O20213-cpt) + + + + + + vocSet: O20214 (C-0-O20214-cpt) + + + + + + vocSet: O20215 (C-0-O20215-cpt) + + + + + + vocSet: O20216 (C-0-O20216-cpt) + + + + + + vocSet: O20217 (C-0-O20217-cpt) + + + + + + vocSet: O20218 (C-0-O20218-cpt) + + + + + + vocSet: O20197 (C-0-O20197-cpt) + + + + + + vocSet: O20263 (C-0-O20263-cpt) + + + + + + vocSet: O20219 (C-0-O20219-cpt) + + + + + + vocSet: O20220 (C-0-O20220-cpt) + + + + + + vocSet: O20222 (C-0-O20222-cpt) + + + + + + vocSet: O20221 (C-0-O20221-cpt) + + + + + + vocSet: O20224 (C-0-O20224-cpt) + + + + + + vocSet: O20223 (C-0-O20223-cpt) + + + + + + vocSet: O20225 (C-0-O20225-cpt) + + + + + + vocSet: O20227 (C-0-O20227-cpt) + + + + + + vocSet: O20228 (C-0-O20228-cpt) + + + + + + vocSet: O20229 (C-0-O20229-cpt) + + + + + + vocSet: O20231 (C-0-O20231-cpt) + + + + + + vocSet: O20232 (C-0-O20232-cpt) + + + + + + vocSet: O20243 (C-0-O20243-cpt) + + + + + + vocSet: O20234 (C-0-O20234-cpt) + + + + + + vocSet: O20235 (C-0-O20235-cpt) + + + + + + vocSet: O20236 (C-0-O20236-cpt) + + + + + + vocSet: O20237 (C-0-O20237-cpt) + + + + + + vocSet: O20238 (C-0-O20238-cpt) + + + + + + vocSet: O20239 (C-0-O20239-cpt) + + + + + + vocSet: O20244 (C-0-O20244-cpt) + + + + + + vocSet: O20240 (C-0-O20240-cpt) + + + + + + vocSet: O20241 (C-0-O20241-cpt) + + + + + + vocSet: O20246 (C-0-O20246-cpt) + + + + + + vocSet: O20249 (C-0-O20249-cpt) + + + + + + vocSet: O20250 (C-0-O20250-cpt) + + + + + + vocSet: O19666 (C-0-O19666-cpt) + + + + + + vocSet: O20251 (C-0-O20251-cpt) + + + + + + vocSet: O20252 (C-0-O20252-cpt) + + + + + + vocSet: O20254 (C-0-O20254-cpt) + + + + + + vocSet: O20255 (C-0-O20255-cpt) + + + + + + vocSet: O20253 (C-0-O20253-cpt) + + + + + + vocSet: T19664 (C-0-T19664-cpt) + + + + + + vocSet: O20245 (C-0-O20245-cpt) + + + + + + vocSet: O20256 (C-0-O20256-cpt) + + + + + + vocSet: O20258 (C-0-O20258-cpt) + + + + + + vocSet: O20260 (C-0-O20260-cpt) + + + + + + vocSet: O20257 (C-0-O20257-cpt) + + + + + + vocSet: O20261 (C-0-O20261-cpt) + + + + + + vocSet: O20259 (C-0-O20259-cpt) + + + + + + vocSet: O20262 (C-0-O20262-cpt) + + + + + + vocSet: O20226 (C-0-O20226-cpt) + + + + + + vocSet: T13953 (C-0-T13953-cpt) + + + + + + abstDomain: A19789 (C-0-T13953-A19789-cpt) + + + + + + + + + + abstDomain: A19790 (C-0-T13953-A19789-A19790-cpt) + + + + + + + + + + abstDomain: A19791 (C-0-T13953-A19789-A19790-A19791-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + abstDomain: A19792 (C-0-T13953-A19789-A19790-A19792-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + abstDomain: A19672 (C-0-T13953-A19672-cpt) + + + + + + abstDomain: A19897 (C-0-T13953-A19897-cpt) + + + + + + + + + + + + + + specDomain: S22200 (C-0-T13953-A19897-S22200-cpt) + + + + + + + + + + specDomain: S22206 (C-0-T13953-A19897-S22206-cpt) + + + + + + + + + + abstDomain: A19910 (C-0-T13953-A19910-cpt) + + + + + + + + + + + + + + + + + + abstDomain: A19752 (C-0-T13953-A19752-cpt) + + + + + + + + + + + + + + + + abstDomain: A19673 (C-0-T13953-A19673-cpt) + + + + + + + + + + + + + + + + + + + abstDomain: A19778 (C-0-T13953-A19778-cpt) + + + + + + + + + + + + abstDomain: A19846 (C-0-T13953-A19846-cpt) + + + + + + + + + + specDomain: S22048 (C-0-T13953-A19846-S22048-cpt) + + + + + + + + + + specDomain: S22067 (C-0-T13953-A19846-S22067-cpt) + + + + + + + + + + + + specDomain: S22068 (C-0-T13953-A19846-S22067-S22068-cpt) + + + + + + + + + + + + + specDomain: S22051 (C-0-T13953-A19846-S22051-cpt) + + + + + + + + + + + + + + + + + + specDomain: S22065 (C-0-T13953-A19846-S22051-S22065-cpt) + + + + + + + + + specDomain: S22053 (C-0-T13953-A19846-S22051-S22053-cpt) + + + + + + + + + specDomain: S22056 (C-0-T13953-A19846-S22051-S22056-cpt) + + + + + + + + + + specDomain: S22063 (C-0-T13953-A19846-S22051-S22063-cpt) + + + + + + + + + abstDomain: A16493 (C-0-T13953-A16493-cpt) + + + + + + + + + + abstDomain: A10871 (C-0-T13953-A16493-A10871-cpt) + + + + + + abstDomain: A10870 (C-0-T13953-A16493-A10870-cpt) + + + + + + + + + + abstDomain: A19917 (C-0-T13953-A16493-A10870-A19917-cpt) + + + + + + abstDomain: A19723 (C-0-T13953-A16493-A10870-A19723-cpt) + + + + + + abstDomain: A13954 (C-0-T13953-A13954-cpt) + + + + + + + + + + + + + abstDomain: A14809 (C-0-T13953-A13954-A14809-cpt) + + + + + + + + + + + + + + abstDomain: A14811 (C-0-T13953-A13954-A14809-A14811-cpt) + + + + + + + + + + + + abstDomain: A17616 (C-0-T13953-A13954-A17616-cpt) + + + + + + + + + + + + + specDomain: S19347 (C-0-T13953-A13954-A17616-S19347-cpt) + + + + + + + + + abstDomain: A17968 (C-0-T13953-A13954-A17968-cpt) + + + + + + + + + + + + + + + abstDomain: A19383 (C-0-T13953-A13954-A19383-cpt) + + + + + + abstDomain: A17472 (C-0-T13953-A13954-A17472-cpt) + + + + + + + + + abstDomain: A19821 (C-0-T13953-A13954-A19821-cpt) + + + + + + + + + abstDomain: A19440 (C-0-T13953-A13954-A19440-cpt) + + + + + + abstDomain: A17478 (C-0-T13953-A13954-A17478-cpt) + + + + + + + + + + + + + + + + + abstDomain: A17896 (C-0-T13953-A13954-A17896-cpt) + + + + + + + + + abstDomain: A14058 (C-0-T13953-A13954-A14058-cpt) + + + + + + + + + + + + + + abstDomain: A16857 (C-0-T13953-A13954-A16857-cpt) + + + + + + + + + + + + + + abstDomain: A19331 (C-0-T13953-A13954-A16857-A19331-cpt) + + + + + + + + + + abstDomain: A19336 (C-0-T13953-A13954-A16857-A19331-A19336-cpt) + + + + + + abstDomain: A17487 (C-0-T13953-A13954-A17487-cpt) + + + + + + + + + + abstDomain: A17491 (C-0-T13953-A13954-A17487-A17491-cpt) + + + + + + + + + abstDomain: A17488 (C-0-T13953-A13954-A17487-A17488-cpt) + + + + + + abstDomain: A17496 (C-0-T13953-A13954-A17496-cpt) + + + + + + + + + + specDomain: S22239 (C-0-T13953-A13954-A17496-S22239-cpt) + + + + + + + + + + abstDomain: A19933 (C-0-T13953-A13954-A17496-A19933-cpt) + + + + + + + + + + + + + + + + + abstDomain: A19934 (C-0-T13953-A13954-A17496-A19934-cpt) + + + + + + + + + + abstDomain: A19935 (C-0-T13953-A13954-A17496-A19934-A19935-cpt) + + + + + + abstDomain: A19855 (C-0-T13953-A13954-A19855-cpt) + + + + + + + + + + abstDomain: A19350 (C-0-T13953-A13954-A19855-A19350-cpt) + + + + + + + + + + + + + + specDomain: S19721 (C-0-T13953-A13954-A19855-A19350-S19721-cpt) + + + + + + + + + + specDomain: S19718 (C-0-T13953-A13954-A19855-A19350-S19718-cpt) + + + + + + + + + + + + + + + + + specDomain: S22133 (C-0-T13953-A13954-A19855-A19350-S19718-S22133-cpt) + + + + + + + + + + + specDomain: S22137 (C-0-T13953-A13954-A19855-A19350-S19718-S22137-cpt) + + + + + + + + + + abstDomain: A19856 (C-0-T13953-A13954-A19855-A19856-cpt) + + + + + + + + + + + + + + + + + + abstDomain: A19857 (C-0-T13953-A13954-A19855-A19856-A19857-cpt) + + + + + + + + + + + + + + + + + + + + + + + + specDomain: S22147 (C-0-T13953-A13954-A19855-A19856-A19857-S22147-cpt) + + + + + + + + + + + specDomain: S19721 (C-0-T13953-A13954-A19855-A19856-S19721-cpt) + + + + + + + + + + specDomain: S22148 (C-0-T13953-A13954-A19855-A19856-S22148-cpt) + + + + + + + + + + + abstDomain: A19858 (C-0-T13953-A13954-A19855-A19858-cpt) + + + + + + + + + + + + + + + + + + + + + + + specDomain: S19718 (C-0-T13953-A13954-A19855-A19858-S19718-cpt) + + + + + + + + + + + + + + + + + specDomain: S22133 (C-0-T13953-A13954-A19855-A19858-S19718-S22133-cpt) + + + + + + + + + + + specDomain: S22137 (C-0-T13953-A13954-A19855-A19858-S19718-S22137-cpt) + + + + + + + + + + abstDomain: A16695 (C-0-T13953-A13954-A16695-cpt) + + + + + + + + + + abstDomain: A19431 (C-0-T13953-A13954-A16695-A19431-cpt) + + + + + + + + + + abstDomain: A19619 (C-0-T13953-A13954-A16695-A19431-A19619-cpt) + + + + + + + + abstDomain: A19430 (C-0-T13953-A13954-A16695-A19430-cpt) + + + + + + specDomain: S16703 (C-0-T13953-A13954-A16695-S16703-cpt) + + + + + + + + + + + + + specDomain: S16709 (C-0-T13953-A13954-A16695-S16709-cpt) + + + + + + + + + + + + specDomain: S16696 (C-0-T13953-A13954-A16695-S16696-cpt) + + + + + + + + + + + + + + + + + specDomain: S16700 (C-0-T13953-A13954-A16695-S16696-S16700-cpt) + + + + + + + + + abstDomain: A10376 (C-0-T13953-A13954-A10376-cpt) + + + + + + + + + + + + + + + + + + + + + + + abstDomain: A19642 (C-0-T13953-A13954-A19642-cpt) + + + + + + abstDomain: A19938 (C-0-T13953-A13954-A19938-cpt) + + + + + + + + + + + + + + + + + + + + + + + + abstDomain: A14804 (C-0-T13953-A13954-A14804-cpt) + + + + + + + + + abstDomain: A16508 (C-0-T13953-A13954-A16508-cpt) + + + + + + + + + + + + + + + abstDomain: A19915 (C-0-T13953-A13954-A16508-A19915-cpt) + + + + + + abstDomain: A19928 (C-0-T13953-A13954-A19928-cpt) + + + + + + + + + + + + abstDomain: A19397 (C-0-T13953-A13954-A19397-cpt) + + + + + + + + + + abstDomain: A19412 (C-0-T13953-A13954-A19397-A19412-cpt) + + + + + + + + + + abstDomain: A19414 (C-0-T13953-A13954-A19397-A19412-A19414-cpt) + + + + + + abstDomain: A19413 (C-0-T13953-A13954-A19397-A19412-A19413-cpt) + + + + + + + + + + + + + + + + + + + abstDomain: A19401 (C-0-T13953-A13954-A19397-A19401-cpt) + + + + + + + + + + abstDomain: A19432 (C-0-T13953-A13954-A19397-A19401-A19432-cpt) + + + + + + abstDomain: A19434 (C-0-T13953-A13954-A19397-A19401-A19434-cpt) + + + + + + abstDomain: A19415 (C-0-T13953-A13954-A19397-A19401-A19415-cpt) + + + + + + + + + + abstDomain: A19404 (C-0-T13953-A13954-A19397-A19401-A19415-A19404-cpt) + + + + + + + + + + abstDomain: A19883 (C-0-T13953-A13954-A19397-A19401-A19415-A19404-A19883-cpt) + + + + + + abstDomain: A19405 (C-0-T13953-A13954-A19397-A19401-A19415-A19405-cpt) + + + + + + + + + + abstDomain: A19402 (C-0-T13953-A13954-A19397-A19401-A19415-A19402-cpt) + + + + + + + + + + abstDomain: A19885 (C-0-T13953-A13954-A19397-A19401-A19415-A19402-A19885-cpt) + + + + + + abstDomain: A19884 (C-0-T13953-A13954-A19397-A19401-A19415-A19402-A19884-cpt) + + + + + + abstDomain: A19407 (C-0-T13953-A13954-A19397-A19401-A19415-A19407-cpt) + + + + + + + + + + abstDomain: A19411 (C-0-T13953-A13954-A19397-A19401-A19415-A19407-A19411-cpt) + + + + + + + + + + + + abstDomain: A19410 (C-0-T13953-A13954-A19397-A19401-A19415-A19407-A19410-cpt) + + + + + + + + + + abstDomain: A19408 (C-0-T13953-A13954-A19397-A19401-A19415-A19407-A19408-cpt) + + + + + + + + + + + + + + + + + + + + abstDomain: A19409 (C-0-T13953-A13954-A19397-A19401-A19415-A19407-A19409-cpt) + + + + + + + + + + abstDomain: A19416 (C-0-T13953-A13954-A19397-A19401-A19416-cpt) + + + + + + + + + + abstDomain: A19406 (C-0-T13953-A13954-A19397-A19401-A19416-A19406-cpt) + + + + + + + + + + abstDomain: A19398 (C-0-T13953-A13954-A19397-A19398-cpt) + + + + + + + + + + abstDomain: A19400 (C-0-T13953-A13954-A19397-A19398-A19400-cpt) + + + + + + + + + + + + + + abstDomain: A19399 (C-0-T13953-A13954-A19397-A19398-A19399-cpt) + + + + + + + + + + + + + + + + + abstDomain: A17522 (C-0-T13953-A13954-A17522-cpt) + + + + + + + + + + abstDomain: A17530 (C-0-T13953-A13954-A17522-A17530-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + abstDomain: A17563 (C-0-T13953-A13954-A17522-A17563-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + abstDomain: A17523 (C-0-T13953-A13954-A17522-A17523-cpt) + + + + + + + + + + + + + abstDomain: A17590 (C-0-T13953-A13954-A17590-cpt) + + + + + + + + + + + + + + + + + + + + + + abstDomain: A19364 (C-0-T13953-A13954-A19364-cpt) + + + + + + + + + + specDomain: S19976 (C-0-T13953-A13954-A19364-S19976-cpt) + + + + + + + + + + + abstDomain: A19370 (C-0-T13953-A13954-A19364-A19370-cpt) + + + + + + + + + + + + + specDomain: S21322 (C-0-T13953-A13954-A19364-A19370-S21322-cpt) + + + + + + + + + + + abstDomain: A19847 (C-0-T13953-A13954-A19364-A19847-cpt) + + + + + + abstDomain: A19710 (C-0-T13953-A13954-A19364-A19710-cpt) + + + + + + + + + + abstDomain: A19788 (C-0-T13953-A13954-A19364-A19710-A19788-cpt) + + + + + + + + + + + abstDomain: A16231 (C-0-T13953-A13954-A16231-cpt) + + + + + + + + + + + + + specDomain: S16232 (C-0-T13953-A13954-A16231-S16232-cpt) + + + + + + + + + + + + abstDomain: A19254 (C-0-T13953-A13954-A16231-S16232-A19254-cpt) + + + + + + abstDomain: A19794 (C-0-T13953-A13954-A19794-cpt) + + + + + + abstDomain: A19586 (C-0-T13953-A13954-A19586-cpt) + + + + + + abstDomain: A17610 (C-0-T13953-A13954-A17610-cpt) + + + + + + + + + + + abstDomain: A16208 (C-0-T13953-A13954-A16208-cpt) + + + + + + + + + + + + + + + specDomain: S16220 (C-0-T13953-A13954-A16208-S16220-cpt) + + + + + + + + + specDomain: S16209 (C-0-T13953-A13954-A16208-S16209-cpt) + + + + + + + + + + + + + + + + specDomain: S16210 (C-0-T13953-A13954-A16208-S16209-S16210-cpt) + + + + + + + + + specDomain: S17479 (C-0-T13953-A13954-A16208-S16209-S17479-cpt) + + + + + + + + + + + specDomain: S16215 (C-0-T13953-A13954-A16208-S16215-cpt) + + + + + + + + + + + + + + + specDomain: S16216 (C-0-T13953-A13954-A16208-S16215-S16216-cpt) + + + + + + + + + specDomain: S16218 (C-0-T13953-A13954-A16208-S16215-S16218-cpt) + + + + + + + + + specDomain: S16217 (C-0-T13953-A13954-A16208-S16215-S16217-cpt) + + + + + + + + + specDomain: S16213 (C-0-T13953-A13954-A16208-S16215-S16213-cpt) + + + + + + + + + abstDomain: A19886 (C-0-T13953-A13954-A19886-cpt) + + + + + + + + abstDomain: A19725 (C-0-T13953-A13954-A19725-cpt) + + + + + + abstDomain: A17958 (C-0-T13953-A13954-A17958-cpt) + + + + + + + + + + specDomain: S17961 (C-0-T13953-A13954-A17958-S17961-cpt) + + + + + + + + + specDomain: S17959 (C-0-T13953-A13954-A17958-S17959-cpt) + + + + + + + + + abstDomain: A13957 (C-0-T13953-A13954-A13957-cpt) + + + + + + + + + + + + + specDomain: S14352 (C-0-T13953-A13954-A13957-S14352-cpt) + + + + + + + + + + + + specDomain: S14382 (C-0-T13953-A13954-A13957-S14382-cpt) + + + + + + + + + + + + specDomain: S14369 (C-0-T13953-A13954-A13957-S14369-cpt) + + + + + + + + + + + + abstDomain: A14040 (C-0-T13953-A13954-A14040-cpt) + + + + + + + + + + + + + + + abstDomain: A16621 (C-0-T13953-A13954-A16621-cpt) + + + + + + + + + + + + + specDomain: S16623 (C-0-T13953-A13954-A16621-S16623-cpt) + + + + + + + + + abstDomain: A19708 (C-0-T13953-A13954-A19708-cpt) + + + + + + + + + + + + specDomain: S21519 (C-0-T13953-A13954-A19708-S21519-cpt) + + + + + + + + + + abstDomain: A19745 (C-0-T13953-A13954-A19708-A19745-cpt) + + + + + + + + + abstDomain: A19854 (C-0-T13953-A13954-A19854-cpt) + + + + + + abstDomain: A19433 (C-0-T13953-A13954-A19433-cpt) + + + + + + abstDomain: A19427 (C-0-T13953-A13954-A19427-cpt) + + + + + + abstDomain: A16117 (C-0-T13953-A13954-A16117-cpt) + + + + + + + + + + + abstDomain: A17963 (C-0-T13953-A13954-A17963-cpt) + + + + + + + + + abstDomain: A19849 (C-0-T13953-A19849-cpt) + + + + + + abstDomain: A19850 (C-0-T13953-A19850-cpt) + + + + + + abstDomain: A19820 (C-0-T13953-A19820-cpt) + + + + + + + + + + abstDomain: A19706 (C-0-T13953-A19820-A19706-cpt) + + + + + + abstDomain: A16130 (C-0-T13953-A19820-A16130-cpt) + + + + + + + + + + abstDomain: A19865 (C-0-T13953-A19820-A16130-A19865-cpt) + + + + + + abstDomain: A19866 (C-0-T13953-A19820-A16130-A19866-cpt) + + + + + + + + + + + + abstDomain: A13955 (C-0-T13953-A19820-A13955-cpt) + + + + + + + + + + + + + + + + + specDomain: S16847 (C-0-T13953-A19820-A13955-S16847-cpt) + + + + + + + + + + abstDomain: A17449 (C-0-T13953-A19820-A13955-A17449-cpt) + + + + + + + + + + + + + + + + + + + + + + abstDomain: A19900 (C-0-T13953-A19820-A16535-A19900-cpt) + + + + + + + + + + abstDomain: A19901 (C-0-T13953-A19820-A16535-A19900-A19901-cpt) + + + + + + abstDomain: A19902 (C-0-T13953-A19820-A16535-A19900-A19902-cpt) + + + + + + abstDomain: A19882 (C-0-T13953-A19820-A16535-A19882-cpt) + + + + + + abstDomain: A19881 (C-0-T13953-A19820-A16535-A19881-cpt) + + + + + + abstDomain: A19880 (C-0-T13953-A19820-A16535-A19880-cpt) + + + + + + abstDomain: A19878 (C-0-T13953-A19820-A16535-A19878-cpt) + + + + + + abstDomain: A19879 (C-0-T13953-A19820-A16535-A19879-cpt) + + + + + + abstDomain: A19732 (C-0-T13953-A19820-A19732-cpt) + + + + + + + + + + abstDomain: A19733 (C-0-T13953-A19820-A19732-A19733-cpt) + + + + + + + + + + + + + + + specDomain: S21547 (C-0-T13953-A19820-A19732-A19733-S21547-cpt) + + + + + + + + + + + abstDomain: A16226 (C-0-T13953-A19820-A16226-cpt) + + + + + + + + + + + + + + + abstDomain: A19750 (C-0-T13953-A19820-A16226-A19750-cpt) + + + + + + abstDomain: A19916 (C-0-T13953-A19820-A16226-A19916-cpt) + + + + + + abstDomain: A19329 (C-0-T13953-A19820-A16226-A19329-cpt) + + + + + + + + + + abstDomain: A19330 (C-0-T13953-A19820-A16226-A19329-A19330-cpt) + + + + + + + + + + abstDomain: A19335 (C-0-T13953-A19820-A16226-A19329-A19330-A19335-cpt) + + + + + + abstDomain: A19715 (C-0-T13953-A19820-A16226-A19715-cpt) + + + + + + abstDomain: A19737 (C-0-T13953-A19820-A16226-A19737-cpt) + + + + + + abstDomain: A19622 (C-0-T13953-A19820-A16226-A19622-cpt) + + + + + + abstDomain: A16492 (C-0-T13953-A19820-A16226-A16492-cpt) + + + + + + abstDomain: A19751 (C-0-T13953-A19820-A16226-A19751-cpt) + + + + + + + + + + + + + + + + abstDomain: A19757 (C-0-T13953-A19820-A16226-A19757-cpt) + + + + + + + + + + abstDomain: A19758 (C-0-T13953-A19820-A16226-A19757-A19758-cpt) + + + + + + + + + + + + abstDomain: A19837 (C-0-T13953-A19820-A16226-A19757-A19837-cpt) + + + + + + abstDomain: A19801 (C-0-T13953-A19820-A16226-A19801-cpt) + + + + + + abstDomain: A19695 (C-0-T13953-A19820-A16226-A19695-cpt) + + + + + + abstDomain: A19800 (C-0-T13953-A19820-A16226-A19800-cpt) + + + + + + specDomain: S20927 (C-0-T13953-A19820-A16226-S20927-cpt) + + + + + + + + + + + + abstDomain: A19783 (C-0-T13953-A19820-A16226-A19783-cpt) + + + + + + abstDomain: A19834 (C-0-T13953-A19820-A16226-A19834-cpt) + + + + + + abstDomain: A19728 (C-0-T13953-A19820-A16226-A19728-cpt) + + + + + + specDomain: S21498 (C-0-T13953-A19820-A16226-S21498-cpt) + + + + + + + + + + + + specDomain: S21499 (C-0-T13953-A19820-A16226-S21498-S21499-cpt) + + + + + + + + + + + specDomain: S21501 (C-0-T13953-A19820-A16226-S21498-S21501-cpt) + + + + + + + + + + specDomain: S21503 (C-0-T13953-A19820-A16226-S21498-S21503-cpt) + + + + + + + + + + specDomain: S21502 (C-0-T13953-A19820-A16226-S21498-S21502-cpt) + + + + + + + + + + specDomain: S21500 (C-0-T13953-A19820-A16226-S21498-S21500-cpt) + + + + + + + + + + + abstDomain: A19712 (C-0-T13953-A19820-A16226-A19712-cpt) + + + + + + + + + + abstDomain: A19795 (C-0-T13953-A19820-A16226-A19712-A19795-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + abstDomain: A19713 (C-0-T13953-A19820-A16226-A19713-cpt) + + + + + + abstDomain: A19914 (C-0-T13953-A19820-A16226-A19914-cpt) + + + + + + abstDomain: A19325 (C-0-T13953-A19820-A16226-A19325-cpt) + + + + + + + + + + + + + abstDomain: A19328 (C-0-T13953-A19820-A16226-A19325-A19328-cpt) + + + + + + + + + + abstDomain: A19334 (C-0-T13953-A19820-A16226-A19325-A19328-A19334-cpt) + + + + + + abstDomain: A19321 (C-0-T13953-A19820-A16226-A19321-cpt) + + + + + + + + + + abstDomain: A19322 (C-0-T13953-A19820-A16226-A19321-A19322-cpt) + + + + + + + + + abstDomain: A19909 (C-0-T13953-A19820-A16226-A19909-cpt) + + + + + + abstDomain: A19714 (C-0-T13953-A19820-A16226-A19714-cpt) + + + + + + abstDomain: A19616 (C-0-T13953-A19820-A16226-A19616-cpt) + + + + + + abstDomain: A19711 (C-0-T13953-A19820-A16226-A19711-cpt) + + + + + + abstDomain: A19656 (C-0-T13953-A19656-cpt) + + + + + + + + + + abstDomain: A19659 (C-0-T13953-A19656-A19659-cpt) + + + + + + abstDomain: A19658 (C-0-T13953-A19656-A19658-cpt) + + + + + + abstDomain: A19662 (C-0-T13953-A19656-A19662-cpt) + + + + + + abstDomain: A19660 (C-0-T13953-A19656-A19660-cpt) + + + + + + abstDomain: A19661 (C-0-T13953-A19656-A19661-cpt) + + + + + + abstDomain: A19663 (C-0-T13953-A19656-A19663-cpt) + + + + + + + + + + vocSet: T19939 (C-0-T19939-cpt) + + + + + + + + + + vocSet: T19348 (C-0-T19348-cpt) + + + + + + vocSet: T17704 (C-0-T17704-cpt) + + + + + + + + + + + vocSet: T10196 (C-0-T10196-cpt) + + + + + + abstDomain: A10197 (C-0-T10196-A10197-cpt) + + + + + + + + + + + + + specDomain: S10199 (C-0-T10196-A10197-S10199-cpt) + + + + + + + + + + + + + + + + + specDomain: S16726 (C-0-T10196-A10197-S10199-S16726-cpt) + + + + + + + + + abstDomain: A10202 (C-0-T10196-A10202-cpt) + + + + + + + + + + + + + + + + + specDomain: S22042 (C-0-T10196-A10202-S22042-cpt) + + + + + + + + + abstDomain: A19375 (C-0-T10196-A19375-cpt) + + + + + + + + + abstDomain: A19762 (C-0-T10196-A19762-cpt) + + + + + + + + + + abstDomain: A19371 (C-0-T10196-A19371-cpt) + + + + + + + + + + + + abstDomain: A18943 (C-0-T10196-A18943-cpt) + + + + + + + + + + + + + + abstDomain: A18965 (C-0-T10196-A18965-cpt) + + + + + + + + + + + abstDomain: A16742 (C-0-T10196-A16742-cpt) + + + + + + + + abstDomain: A16735 (C-0-T10196-A16735-cpt) + + + + + + + + + abstDomain: A16730 (C-0-T10196-A16730-cpt) + + + + + + + + + + abstDomain: A19689 (C-0-T10196-A19689-cpt) + + + + + + + + + abstDomain: A19763 (C-0-T10196-A19763-cpt) + + + + + + + + + abstDomain: A19372 (C-0-T10196-A19372-cpt) + + + + + + + + + + + abstDomain: A19649 (C-0-T10196-A19649-cpt) + + + + + + + + + + + + + + + abstDomain: A19648 (C-0-T10196-A19648-cpt) + + + + + + + + + + + + + + abstDomain: A19644 (C-0-T10196-A19644-cpt) + + + + + + + + + + + + + + + + abstDomain: A19647 (C-0-T10196-A19647-cpt) + + + + + + + + + + + + + + + abstDomain: A19645 (C-0-T10196-A19645-cpt) + + + + + + + + + + + + abstDomain: A19646 (C-0-T10196-A19646-cpt) + + + + + + + + + abstDomain: A19458 (C-0-T10196-A19458-cpt) + + + + + + + + + + + + + + + abstDomain: A19459 (C-0-T10196-A19459-cpt) + + + + + + + + + + + + + + abstDomain: A19460 (C-0-T10196-A19460-cpt) + + + + + + + + + + + + + + + abstDomain: A19461 (C-0-T10196-A19461-cpt) + + + + + + + + + + + + vocSet: O20264 (C-0-O20264-cpt) + + + + + + vocSet: O20265 (C-0-O20265-cpt) + + + + + + vocSet: O20266 (C-0-O20266-cpt) + + + + + + vocSet: O20268 (C-0-O20268-cpt) + + + + + + vocSet: O20267 (C-0-O20267-cpt) + + + + + + vocSet: O20269 (C-0-O20269-cpt) + + + + + + vocSet: O19941 (C-0-O19941-cpt) + + + + + + vocSet: O19942 (C-0-O19942-cpt) + + + + + + vocSet: O19943 (C-0-O19943-cpt) + + + + + + vocSet: O19944 (C-0-O19944-cpt) + + + + + + vocSet: O19945 (C-0-O19945-cpt) + + + + + + vocSet: O19946 (C-0-O19946-cpt) + + + + + + vocSet: O19947 (C-0-O19947-cpt) + + + + + + vocSet: O19949 (C-0-O19949-cpt) + + + + + + vocSet: O19948 (C-0-O19948-cpt) + + + + + + vocSet: T16866 (C-0-T16866-cpt) + + + + + + + + + + + + + + + + + + + + + + + specDomain: S16871 (C-0-T16866-S16871-cpt) + + + + + + + + + + abstDomain: A19457 (C-0-T16866-A19457-cpt) + + + + + + + + + + + vocSet: T19349 (C-0-T19349-cpt) + + + + + + vocSet: T14878 (C-0-T14878-cpt) + + + + + + + + + + + + + abstDomain: A17425 (C-0-T14878-A17425-cpt) + + + + + + + + + + + abstDomain: A19385 (C-0-T14878-A19385-cpt) + + + + + + abstDomain: A19898 (C-0-T14878-A19898-cpt) + + + + + + + + + + abstDomain: A19388 (C-0-T14878-A19898-A19388-cpt) + + + + + + + + + + abstDomain: A19899 (C-0-T14878-A19898-A19388-A19899-cpt) + + + + + + abstDomain: A19894 (C-0-T14878-A19894-cpt) + + + + + + + + + + + abstDomain: A19871 (C-0-T14878-A19871-cpt) + + + + + + + + + + abstDomain: A19875 (C-0-T14878-A19871-A19875-cpt) + + + + + + abstDomain: A19876 (C-0-T14878-A19871-A19876-cpt) + + + + + + abstDomain: A19872 (C-0-T14878-A19871-A19872-cpt) + + + + + + abstDomain: A19873 (C-0-T14878-A19871-A19873-cpt) + + + + + + abstDomain: A19874 (C-0-T14878-A19871-A19874-cpt) + + + + + + abstDomain: A19694 (C-0-T14878-A19871-A19694-cpt) + + + + + + + + + + abstDomain: A19355 (C-0-T14878-A19871-A19694-A19355-cpt) + + + + + + + + + + abstDomain: A19735 (C-0-T14878-A19871-A19694-A19735-cpt) + + + + + + + + + + + + + + + + + + abstDomain: A19848 (C-0-T14878-A19848-cpt) + + + + + + abstDomain: A19717 (C-0-T14878-A19717-cpt) + + + + + + + + + + + + + + + abstDomain: A19718 (C-0-T14878-A19718-cpt) + + + + + + + + + + + + + abstDomain: A19754 (C-0-T14878-A19754-cpt) + + + + + + + + + + abstDomain: A19755 (C-0-T14878-A19754-A19755-cpt) + + + + + + + + + + + abstDomain: A19756 (C-0-T14878-A19754-A19756-cpt) + + + + + + + + + + abstDomain: A19692 (C-0-T14878-A19692-cpt) + + + + + + + + + + abstDomain: A19779 (C-0-T14878-A19692-A19779-cpt) + + + + + + + + + + + + + + + + + + + + abstDomain: A19826 (C-0-T14878-A19692-A19826-cpt) + + + + + + + + + abstDomain: A19693 (C-0-T14878-A19692-A19693-cpt) + + + + + + abstDomain: A19777 (C-0-T14878-A19692-A19777-cpt) + + + + + + + + + + abstDomain: A19781 (C-0-T14878-A19692-A19781-cpt) + + + + + + + + + + + + + + + + + + + + abstDomain: A16124 (C-0-T14878-A19692-A19781-A16124-cpt) + + + + + + + + + + abstDomain: A19429 (C-0-T14878-A19692-A19781-A16124-A19429-cpt) + + + + + + + + + + abstDomain: A19620 (C-0-T14878-A19692-A19781-A16124-A19429-A19620-cpt) + + + + + + + + + + + + specDomain: S21651 (C-0-T14878-A19692-A19781-A16124-A19429-A19620-S21651-cpt) + + + + + + + + + + + + + + + + + + + + + + specDomain: S21659 (C-0-T14878-A19692-A19781-A16124-A19429-A19620-S21651-S21659-cpt) + + + + + + + + + specDomain: S16687 (C-0-T14878-A19692-A19781-A16124-A19429-A19620-S21651-S16687-cpt) + + + + + + + + + + + + + + + + specDomain: S16688 (C-0-T14878-A19692-A19781-A16124-A19429-A19620-S21651-S16687-S16688-cpt) + + + + + + + + + + specDomain: S16680 (C-0-T14878-A19692-A19781-A16124-A19429-A19620-S21651-S16680-cpt) + + + + + + + + + + + + + + specDomain: S21656 (C-0-T14878-A19692-A19781-A16124-A19429-A19620-S21651-S21656-cpt) + + + + + + + + + + specDomain: S16664 (C-0-T14878-A19692-A19781-A16124-A19429-A19620-S21651-S16664-cpt) + + + + + + + + + + + + + + + + specDomain: S21662 (C-0-T14878-A19692-A19781-A16124-A19429-A19620-S21651-S21662-cpt) + + + + + + + + + + abstDomain: A19621 (C-0-T14878-A19692-A19781-A16124-A19429-A19621-cpt) + + + + + + + + + abstDomain: A19428 (C-0-T14878-A19692-A19781-A16124-A19428-cpt) + + + + + + abstDomain: A16656 (C-0-T14878-A19692-A19781-A16124-A16656-cpt) + + + + + + + + + + abstDomain: A16657 (C-0-T14878-A19692-A19781-A16124-A16656-A16657-cpt) + + + + + + + + + + + + + specDomain: S16688 (C-0-T14878-A19692-A19781-A16124-A16656-A16657-S16688-cpt) + + + + + + + + + + abstDomain: A16658 (C-0-T14878-A19692-A19781-A16124-A16656-A16657-A16658-cpt) + + + + + + + + + + abstDomain: A16659 (C-0-T14878-A19692-A19781-A16124-A16656-A16657-A16658-A16659-cpt) + + + + + + + + + + + + specDomain: S17807 (C-0-T14878-A19692-A19781-A16124-A16656-A16657-A16658-A16659-S17807-cpt) + + + + + + + + + + + specDomain: S16664 (C-0-T14878-A19692-A19781-A16124-A16656-A16657-A16658-S16664-cpt) + + + + + + + + + + + + + + + + specDomain: S16669 (C-0-T14878-A19692-A19781-A16124-A16656-A16657-A16658-S16664-S16669-cpt) + + + + + + + + + + specDomain: S16665 (C-0-T14878-A19692-A19781-A16124-A16656-A16657-A16658-S16664-S16665-cpt) + + + + + + + + + + + + + + abstDomain: A17795 (C-0-T14878-A19692-A19781-A16124-A16656-A16657-A16658-S16664-S16665-A17795-cpt) + + + + + + + + + abstDomain: A17794 (C-0-T14878-A19692-A19781-A16124-A16656-A16657-A16658-S16664-S16665-A17794-cpt) + + + + + + + + + specDomain: S16672 (C-0-T14878-A19692-A19781-A16124-A16656-A16657-A16658-S16664-S16672-cpt) + + + + + + + + + + specDomain: S16676 (C-0-T14878-A19692-A19781-A16124-A16656-A16657-A16658-S16664-S16676-cpt) + + + + + + + + + + + specDomain: S16687 (C-0-T14878-A19692-A19781-A16124-A16656-A16657-S16687-cpt) + + + + + + + + + + + + + + + + specDomain: S16688 (C-0-T14878-A19692-A19781-A16124-A16656-A16657-S16687-S16688-cpt) + + + + + + + + + + specDomain: S16680 (C-0-T14878-A19692-A19781-A16124-A16656-A16657-S16680-cpt) + + + + + + + + + + + + + + specDomain: S16684 (C-0-T14878-A19692-A19781-A16124-A16656-A16657-S16680-S16684-cpt) + + + + + + + + + + + + specDomain: S16686 (C-0-T14878-A19692-A19781-A16124-A16656-A16657-S16680-S16684-S16686-cpt) + + + + + + + + + specDomain: S16685 (C-0-T14878-A19692-A19781-A16124-A16656-A16657-S16680-S16684-S16685-cpt) + + + + + + + + + specDomain: S16681 (C-0-T14878-A19692-A19781-A16124-A16656-A16657-S16680-S16681-cpt) + + + + + + + + + + + + specDomain: S16683 (C-0-T14878-A19692-A19781-A16124-A16656-A16657-S16680-S16683-cpt) + + + + + + + + + specDomain: S16682 (C-0-T14878-A19692-A19781-A16124-A16656-A16657-S16680-S16682-cpt) + + + + + + + + + + + + specDomain: S21700 (C-0-T14878-A19692-A19781-A16124-A16656-A16657-S21700-cpt) + + + + + + + + + + abstDomain: A16691 (C-0-T14878-A19692-A19781-A16124-A16656-A16691-cpt) + + + + + + + + + abstDomain: A17814 (C-0-T14878-A19692-A19781-A16124-A17814-cpt) + + + + + + abstDomain: A19782 (C-0-T14878-A19692-A19782-cpt) + + + + + + + + + abstDomain: A19784 (C-0-T14878-A19692-A19784-cpt) + + + + + + + + + + + + + + + abstDomain: A19787 (C-0-T14878-A19692-A19787-cpt) + + + + + + + + + + + abstDomain: A19744 (C-0-T14878-A19744-cpt) + + + + + + abstDomain: A19785 (C-0-T14878-A19785-cpt) + + + + + + + + + + + + abstDomain: A19786 (C-0-T14878-A19786-cpt) + + + + + + + + + + + + + + + + abstDomain: A19636 (C-0-T14878-A19636-cpt) + + + + + + abstDomain: A19743 (C-0-T14878-A19743-cpt) + + + + + + abstDomain: A14879 (C-0-T14878-A14879-cpt) + + + + + + + + + + + + + + abstDomain: A19719 (C-0-T14878-A19719-cpt) + + + + + + + + + + + + abstDomain: A19377 (C-0-T14878-A19377-cpt) + + + + + + + + + + + abstDomain: A15983 (C-0-T14878-A15983-cpt) + + + + + + + + + abstDomain: A19456 (C-0-T14878-A19456-cpt) + + + + + + + + + vocSet: O19975 (C-0-O19975-cpt) + + + + + + vocSet: O19994 (C-0-O19994-cpt) + + + + + + vocSet: O19964 (C-0-O19964-cpt) + + + + + + vocSet: O19995 (C-0-O19995-cpt) + + + + + + vocSet: O19965 (C-0-O19965-cpt) + + + + + + vocSet: O19966 (C-0-O19966-cpt) + + + + + + vocSet: T10349 (C-0-T10349-cpt) + + + + + + + + + + + + vocSet: O19950 (C-0-O19950-cpt) + + + + + + vocSet: O19951 (C-0-O19951-cpt) + + + + + + vocSet: O19952 (C-0-O19952-cpt) + + + + + + vocSet: O19954 (C-0-O19954-cpt) + + + + + + vocSet: O19953 (C-0-O19953-cpt) + + + + + + vocSet: O19971 (C-0-O19971-cpt) + + + + + + vocSet: O19974 (C-0-O19974-cpt) + + + + + + vocSet: O19977 (C-0-O19977-cpt) + + + + + + vocSet: O19978 (C-0-O19978-cpt) + + + + + + vocSet: O19979 (C-0-O19979-cpt) + + + + + + vocSet: O19981 (C-0-O19981-cpt) + + + + + + vocSet: O19985 (C-0-O19985-cpt) + + + + + + vocSet: O20020 (C-0-O20020-cpt) + + + + + + vocSet: O20013 (C-0-O20013-cpt) + + + + + + vocSet: O19968 (C-0-O19968-cpt) + + + + + + vocSet: O19996 (C-0-O19996-cpt) + + + + + + vocSet: O19969 (C-0-O19969-cpt) + + + + + + vocSet: O19973 (C-0-O19973-cpt) + + + + + + vocSet: O19970 (C-0-O19970-cpt) + + + + + + vocSet: O19972 (C-0-O19972-cpt) + + + + + + vocSet: O19976 (C-0-O19976-cpt) + + + + + + vocSet: O19983 (C-0-O19983-cpt) + + + + + + vocSet: O19997 (C-0-O19997-cpt) + + + + + + vocSet: O19984 (C-0-O19984-cpt) + + + + + + vocSet: O19986 (C-0-O19986-cpt) + + + + + + vocSet: O19999 (C-0-O19999-cpt) + + + + + + vocSet: O20001 (C-0-O20001-cpt) + + + + + + vocSet: O20002 (C-0-O20002-cpt) + + + + + + vocSet: O20006 (C-0-O20006-cpt) + + + + + + vocSet: O20008 (C-0-O20008-cpt) + + + + + + vocSet: O20014 (C-0-O20014-cpt) + + + + + + vocSet: O20018 (C-0-O20018-cpt) + + + + + + vocSet: O19987 (C-0-O19987-cpt) + + + + + + vocSet: O19963 (C-0-O19963-cpt) + + + + + + vocSet: O19980 (C-0-O19980-cpt) + + + + + + vocSet: O19967 (C-0-O19967-cpt) + + + + + + vocSet: O19990 (C-0-O19990-cpt) + + + + + + vocSet: O19988 (C-0-O19988-cpt) + + + + + + vocSet: T10360 (C-0-T10360-cpt) + + + + + + + + + + + vocSet: O19955 (C-0-O19955-cpt) + + + + + + vocSet: O19958 (C-0-O19958-cpt) + + + + + + vocSet: O19956 (C-0-O19956-cpt) + + + + + + vocSet: O19957 (C-0-O19957-cpt) + + + + + + vocSet: O19989 (C-0-O19989-cpt) + + + + + + vocSet: O19993 (C-0-O19993-cpt) + + + + + + vocSet: O19992 (C-0-O19992-cpt) + + + + + + vocSet: O19998 (C-0-O19998-cpt) + + + + + + vocSet: O19982 (C-0-O19982-cpt) + + + + + + vocSet: O20003 (C-0-O20003-cpt) + + + + + + vocSet: O20004 (C-0-O20004-cpt) + + + + + + vocSet: O20000 (C-0-O20000-cpt) + + + + + + vocSet: O20005 (C-0-O20005-cpt) + + + + + + vocSet: O20009 (C-0-O20009-cpt) + + + + + + vocSet: O20007 (C-0-O20007-cpt) + + + + + + vocSet: O20012 (C-0-O20012-cpt) + + + + + + vocSet: T10355 (C-0-T10355-cpt) + + + + + + + + + + + vocSet: O19959 (C-0-O19959-cpt) + + + + + + vocSet: O19960 (C-0-O19960-cpt) + + + + + + vocSet: O19961 (C-0-O19961-cpt) + + + + + + vocSet: O19962 (C-0-O19962-cpt) + + + + + + vocSet: O20010 (C-0-O20010-cpt) + + + + + + vocSet: O20011 (C-0-O20011-cpt) + + + + + + vocSet: T19613 (C-0-T19613-cpt) + + + + + + + + + + + + + + abstDomain: A19736 (C-0-T19613-A19736-cpt) + + + + + + + + + + + + specDomain: S21368 (C-0-T19613-A19736-S21368-cpt) + + + + + + + + + + + specDomain: S21367 (C-0-T19613-S21367-cpt) + + + + + + + + + + + vocSet: O20015 (C-0-O20015-cpt) + + + + + + vocSet: O20016 (C-0-O20016-cpt) + + + + + + vocSet: O20017 (C-0-O20017-cpt) + + + + + + vocSet: O20021 (C-0-O20021-cpt) + + + + + + vocSet: T10317 (C-0-T10317-cpt) + + + + + + abstDomain: A18977 (C-0-T10317-A18977-cpt) + + + + + + + + + + + + + + specDomain: S10321 (C-0-T10317-A18977-S10321-cpt) + + + + + + + + + + + + + + + + + + specDomain: S19986 (C-0-T10317-A18977-S10321-S19986-cpt) + + + + + + + + + specDomain: S10318 (C-0-T10317-S10318-cpt) + + + + + + + + + + + specDomain: S10324 (C-0-T10317-S10324-cpt) + + + + + + + + + + + + + + abstDomain: A19617 (C-0-T10317-S10324-A19617-cpt) + + + + + + + + + specDomain: S10329 (C-0-T10317-S10329-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + + abstDomain: A14900 (C-0-T10317-S10329-A14900-cpt) + + + + + + + + + + abstDomain: A19610 (C-0-T10317-S10329-A14900-A19610-cpt) + + + + + + + + + abstDomain: A19609 (C-0-T10317-S10329-A14900-A19609-cpt) + + + + + + + + + specDomain: S10330 (C-0-T10317-S10329-S10330-cpt) + + + + + + + + + abstDomain: A19587 (C-0-T10317-S10329-A19587-cpt) + + + + + + + + + specDomain: S10337 (C-0-T10317-S10337-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + specDomain: S18660 (C-0-T10317-S10337-S18660-cpt) + + + + + + + + + specDomain: S10342 (C-0-T10317-S10337-S10342-cpt) + + + + + + + + + + + abstDomain: A11610 (C-0-T10317-A11610-cpt) + + + + + + + + + + abstDomain: A19446 (C-0-T10317-A19446-cpt) + + + + + + + + + abstDomain: A19447 (C-0-T10317-A19447-cpt) + + + + + + + + + + + + + + + + + abstDomain: A19000 (C-0-T10317-A19000-cpt) + + + + + + + + + + + + + abstDomain: A19005 (C-0-T10317-A19005-cpt) + + + + + + + + + abstDomain: A19562 (C-0-T10317-A19562-cpt) + + + + + + + + + + + + abstDomain: A19825 (C-0-T10317-A19825-cpt) + + + + + + + + + abstDomain: A19764 (C-0-T10317-A19764-cpt) + + + + + + + + + abstDomain: A19753 (C-0-T10317-A19753-cpt) + + + + + + + + + + vocSet: O20019 (C-0-O20019-cpt) + + + + + + vocSet: T16537 (C-0-T16537-cpt) + + + + + + abstDomain: A16539 (C-0-T16537-A16539-cpt) + + + + + + abstDomain: A16538 (C-0-T16537-A16538-cpt) + + + + + + + + + + abstDomain: A19439 (C-0-T16537-A16538-A19439-cpt) + + + + + + abstDomain: A19346 (C-0-T16537-A16538-A19346-cpt) + + + + + + + + + + abstDomain: A19345 (C-0-T16537-A16538-A19346-A19345-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + abstDomain: A19342 (C-0-T16537-A16538-A19346-A19342-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + abstDomain: A19344 (C-0-T16537-A16538-A19346-A19344-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + abstDomain: A19343 (C-0-T16537-A16538-A19346-A19343-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + abstDomain: A19724 (C-0-T16537-A16538-A19724-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + abstDomain: A19438 (C-0-T16537-A16538-A19438-cpt) + + + + + + vocSet: T15933 (C-0-T15933-cpt) + + + + + + + + + + + + + specDomain: S15936 (C-0-T15933-S15936-cpt) + + + + + + + + + + + + + + + abstDomain: A19890 (C-0-T15933-A19890-cpt) + + + + + + + + + abstDomain: A19891 (C-0-T15933-A19891-cpt) + + + + + + + + + abstDomain: A16916 (C-0-T15933-A16916-cpt) + + + + + + + + + + + vocSet: O20022 (C-0-O20022-cpt) + + + + + + vocSet: O20023 (C-0-O20023-cpt) + + + + + + vocSet: O20024 (C-0-O20024-cpt) + + + + + + vocSet: O20025 (C-0-O20025-cpt) + + + + + + vocSet: O20026 (C-0-O20026-cpt) + + + + + + vocSet: O20027 (C-0-O20027-cpt) + + + + + + vocSet: O20028 (C-0-O20028-cpt) + + + + + + vocSet: O20029 (C-0-O20029-cpt) + + + + + + vocSet: O20030 (C-0-O20030-cpt) + + + + + + vocSet: T16899 (C-0-T16899-cpt) + + + + + + + + + vocSet: T10642 (C-0-T10642-cpt) + + + + + + + + + + + + + + + + + + + + + specDomain: S10651 (C-0-T10642-S10651-cpt) + + + + + + + + + + specDomain: S17887 (C-0-T10642-S17887-cpt) + + + + + + + + + + + + + specDomain: S14822 (C-0-T10642-S14822-cpt) + + + + + + + + + + + + + specDomain: S10649 (C-0-T10642-S14822-S10649-cpt) + + + + + + + + + + + + + specDomain: S17882 (C-0-T10642-S14822-S10649-S17882-cpt) + + + + + + + + + specDomain: S10648 (C-0-T10642-S14822-S10648-cpt) + + + + + + + + + + vocSet: T1 (C-0-T1-cpt) + + + + + + + + + + vocSet: T18130 (C-0-T18130-cpt) + + + + + + + + + + + + + + + + abstDomain: A18131 (C-0-T18130-A18131-cpt) + + + + + + + + + + abstDomain: A18132 (C-0-T18130-A18131-A18132-cpt) + + + + + + + + + + + + + + abstDomain: A18142 (C-0-T18130-A18131-A18132-A18142-cpt) + + + + + + + + + + abstDomain: A18143 (C-0-T18130-A18131-A18132-A18142-A18143-cpt) + + + + + + + + + abstDomain: A18135 (C-0-T18130-A18131-A18132-A18135-cpt) + + + + + + + + + + abstDomain: A18136 (C-0-T18130-A18131-A18132-A18135-A18136-cpt) + + + + + + + + abstDomain: A18171 (C-0-T18130-A18131-A18132-A18171-cpt) + + + + + + + + + + + + abstDomain: A18174 (C-0-T18130-A18131-A18132-A18171-A18174-cpt) + + + + + + + + + + abstDomain: A18184 (C-0-T18130-A18131-A18132-A18171-A18184-cpt) + + + + + + + + abstDomain: A18156 (C-0-T18130-A18131-A18132-A18156-cpt) + + + + + + + + + abstDomain: A18164 (C-0-T18130-A18131-A18132-A18164-cpt) + + + + + + + + + + abstDomain: A18189 (C-0-T18130-A18131-A18189-cpt) + + + + + + + + abstDomain: A18223 (C-0-T18130-A18223-cpt) + + + + + + + + + + abstDomain: A18224 (C-0-T18130-A18223-A18224-cpt) + + + + + + + + + + abstDomain: A18233 (C-0-T18130-A18223-A18233-cpt) + + + + + + + + abstDomain: A18238 (C-0-T18130-A18238-cpt) + + + + + + + + abstDomain: A18191 (C-0-T18130-A18191-cpt) + + + + + + + + + + abstDomain: A18221 (C-0-T18130-A18191-A18221-cpt) + + + + + + + + abstDomain: A18192 (C-0-T18130-A18191-A18192-cpt) + + + + + + + + + + abstDomain: A18210 (C-0-T18130-A18191-A18192-A18210-cpt) + + + + + + + + + abstDomain: A18193 (C-0-T18130-A18191-A18192-A18193-cpt) + + + + + + + + + + abstDomain: A18241 (C-0-T18130-A18241-cpt) + + + + + + + + + + + + + abstDomain: A18274 (C-0-T18130-A18241-A18274-cpt) + + + + + + + + + + abstDomain: A18275 (C-0-T18130-A18241-A18274-A18275-cpt) + + + + + + + + + + abstDomain: A18291 (C-0-T18130-A18241-A18274-A18275-A18291-cpt) + + + + + + + + + + + + abstDomain: A18292 (C-0-T18130-A18241-A18274-A18275-A18291-A18292-cpt) + + + + + + + + abstDomain: A18276 (C-0-T18130-A18241-A18274-A18275-A18276-cpt) + + + + + + + + abstDomain: A18282 (C-0-T18130-A18241-A18274-A18275-A18282-cpt) + + + + + + + + + + abstDomain: A18248 (C-0-T18130-A18241-A18248-cpt) + + + + + + + + + abstDomain: A18253 (C-0-T18130-A18241-A18253-cpt) + + + + + + + + + + + + abstDomain: A18244 (C-0-T18130-A18241-A18244-cpt) + + + + + + + + abstDomain: A18306 (C-0-T18130-A18306-cpt) + + + + + + + + + + + + abstDomain: A18307 (C-0-T18130-A18306-A18307-cpt) + + + + + + + + + + + + + abstDomain: A18319 (C-0-T18130-A18319-cpt) + + + + + + + + + abstDomain: A18327 (C-0-T18130-A18327-cpt) + + + + + + + + + + + + + + abstDomain: A18331 (C-0-T18130-A18327-A18331-cpt) + + + + + + + + + abstDomain: A18338 (C-0-T18130-A18338-cpt) + + + + + + + + + + + + abstDomain: A18342 (C-0-T18130-A18338-A18342-cpt) + + + + + + + + + + abstDomain: A18339 (C-0-T18130-A18338-A18339-cpt) + + + + + + + + + abstDomain: A18352 (C-0-T18130-A18352-cpt) + + + + + + + + + + + + abstDomain: A18356 (C-0-T18130-A18352-A18356-cpt) + + + + + + + + + + + + abstDomain: A18358 (C-0-T18130-A18352-A18356-A18358-cpt) + + + + + + + + + + abstDomain: A18399 (C-0-T18130-A18352-A18356-A18358-A18399-cpt) + + + + + + + + + + + + abstDomain: A18407 (C-0-T18130-A18352-A18356-A18358-A18399-A18407-cpt) + + + + + + + + + abstDomain: A18400 (C-0-T18130-A18352-A18356-A18358-A18399-A18400-cpt) + + + + + + + + + + abstDomain: A18365 (C-0-T18130-A18352-A18356-A18358-A18365-cpt) + + + + + + + + + + abstDomain: A18366 (C-0-T18130-A18352-A18356-A18358-A18365-A18366-cpt) + + + + + + + + + + abstDomain: A18379 (C-0-T18130-A18352-A18356-A18358-A18365-A18379-cpt) + + + + + + + + + abstDomain: A18371 (C-0-T18130-A18352-A18356-A18358-A18365-A18371-cpt) + + + + + + + + + + + + abstDomain: A18374 (C-0-T18130-A18352-A18356-A18358-A18365-A18371-A18374-cpt) + + + + + + + + + + abstDomain: A18386 (C-0-T18130-A18352-A18356-A18358-A18386-cpt) + + + + + + + + + + abstDomain: A18391 (C-0-T18130-A18352-A18356-A18358-A18386-A18391-cpt) + + + + + + + + + abstDomain: A18387 (C-0-T18130-A18352-A18356-A18358-A18386-A18387-cpt) + + + + + + + + + abstDomain: A18359 (C-0-T18130-A18352-A18356-A18358-A18359-cpt) + + + + + + + + + abstDomain: A18413 (C-0-T18130-A18413-cpt) + + + + + + + + + + abstDomain: A18414 (C-0-T18130-A18413-A18414-cpt) + + + + + + + + + + abstDomain: A18415 (C-0-T18130-A18413-A18414-A18415-cpt) + + + + + + + + abstDomain: A18421 (C-0-T18130-A18413-A18421-cpt) + + + + + + + + abstDomain: A18435 (C-0-T18130-A18413-A18435-cpt) + + + + + + + + + + abstDomain: A18498 (C-0-T18130-A18413-A18498-cpt) + + + + + + + + + + + + + abstDomain: A18500 (C-0-T18130-A18413-A18498-A18500-cpt) + + + + + + + + + + + abstDomain: A18424 (C-0-T18130-A18413-A18424-cpt) + + + + + + + + + + abstDomain: A18425 (C-0-T18130-A18413-A18424-A18425-cpt) + + + + + + + + abstDomain: A18511 (C-0-T18130-A18413-A18511-cpt) + + + + + + + + abstDomain: A18458 (C-0-T18130-A18413-A18458-cpt) + + + + + + + + + + abstDomain: A18459 (C-0-T18130-A18413-A18458-A18459-cpt) + + + + + + + + + + abstDomain: A18463 (C-0-T18130-A18413-A18458-A18459-A18463-cpt) + + + + + + + + + + + abstDomain: A18460 (C-0-T18130-A18413-A18458-A18459-A18460-cpt) + + + + + + + + + abstDomain: A18431 (C-0-T18130-A18413-A18431-cpt) + + + + + + + + abstDomain: A18479 (C-0-T18130-A18413-A18479-cpt) + + + + + + + + + + + abstDomain: A18518 (C-0-T18130-A18518-cpt) + + + + + + + + abstDomain: A18523 (C-0-T18130-A18523-cpt) + + + + + + + + + + abstDomain: A18524 (C-0-T18130-A18523-A18524-cpt) + + + + + + + + + + abstDomain: A18540 (C-0-T18130-A18523-A18540-cpt) + + + + + + + + + + + abstDomain: A18533 (C-0-T18130-A18523-A18533-cpt) + + + + + + + + + + + abstDomain: A18552 (C-0-T18130-A18552-cpt) + + + + + + + + + + abstDomain: A18553 (C-0-T18130-A18552-A18553-cpt) + + + + + + + + + + + + abstDomain: A18562 (C-0-T18130-A18552-A18553-A18562-cpt) + + + + + + + + + + abstDomain: A18593 (C-0-T18130-A18552-A18553-A18562-A18593-cpt) + + + + + + + + + abstDomain: A18563 (C-0-T18130-A18552-A18553-A18562-A18563-cpt) + + + + + + + + + + + abstDomain: A18580 (C-0-T18130-A18552-A18553-A18562-A18580-cpt) + + + + + + + + + + + abstDomain: A18554 (C-0-T18130-A18552-A18553-A18554-cpt) + + + + + + + + + abstDomain: A18605 (C-0-T18130-A18605-cpt) + + + + + + + + + + + + + abstDomain: A18606 (C-0-T18130-A18605-A18606-cpt) + + + + + + + + + + abstDomain: A18611 (C-0-T18130-A18605-A18606-A18611-cpt) + + + + + + + + + + abstDomain: A18617 (C-0-T18130-A18605-A18606-A18617-cpt) + + + + + + + + + abstDomain: A18607 (C-0-T18130-A18605-A18606-A18607-cpt) + + + + + + + + + abstDomain: A18621 (C-0-T18130-A18605-A18621-cpt) + + + + + + + + + + abstDomain: A18624 (C-0-T18130-A18605-A18621-A18624-cpt) + + + + + + + + + + abstDomain: A18622 (C-0-T18130-A18605-A18621-A18622-cpt) + + + + + + + + abstDomain: A18636 (C-0-T18130-A18605-A18636-cpt) + + + + + + + + + + abstDomain: A18637 (C-0-T18130-A18605-A18636-A18637-cpt) + + + + + + + + abstDomain: A18629 (C-0-T18130-A18605-A18629-cpt) + + + + + + + + abstDomain: A18640 (C-0-T18130-A18640-cpt) + + + + + + + + + + abstDomain: A18641 (C-0-T18130-A18640-A18641-cpt) + + + + + + + + abstDomain: A18646 (C-0-T18130-A18646-cpt) + + + + + + + + + vocSet: D24 (C-0-D24-cpt) + + + + + + vocSet: D25 (C-0-D25-cpt) + + + + + + vocSet: D26 (C-0-D26-cpt) + + + + + + vocSet: E2 (C-0-E2-cpt) + + + + + + vocSet: E1 (C-0-E1-cpt) + + + + + + vocSet: T17422 (C-0-T17422-cpt) + + + + + + + + vocSet: T10684 (C-0-T10684-cpt) + + + + + + abstDomain: A10701 (C-0-T10684-A10701-cpt) + + + + + + + + + + + + + + + abstDomain: A10685 (C-0-T10684-A10685-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + abstDomain: A10758 (C-0-T10684-A10685-A10758-cpt) + + + + + + vocSet: T10682 (C-0-T10682-cpt) + + + + + + + + vocSet: D27 (C-0-D27-cpt) + + + + + + vocSet: D28 (C-0-D28-cpt) + + + + + + vocSet: T14853 (C-0-T14853-cpt) + + + + + + + + + + + + + + + + + vocSet: T396 (C-0-T396-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + vocSet: T19359 (C-0-T19359-cpt) + + + + + + + + + + vocSet: T19250 (C-0-T19250-cpt) + + + + + + + + + + vocSet: T16031 (C-0-T16031-cpt) + + + + + + + + + + vocSet: T10620 (C-0-T10620-cpt) + + + + + + + + + + + vocSet: T19363 (C-0-T19363-cpt) + + + + + + + + + + vocSet: T11033 (C-0-T11033-cpt) + + + + + + + + + + vocSet: T19361 (C-0-T19361-cpt) + + + + + + + + + + + + + vocSet: T19360 (C-0-T19360-cpt) + + + + + + + + + + + vocSet: T10228 (C-0-T10228-cpt) + + + + + + abstDomain: A10229 (C-0-T10228-A10229-cpt) + + + + + + + + + + + + + + abstDomain: A10240 (C-0-T10228-A10240-cpt) + + + + + + + + + + + abstDomain: A10236 (C-0-T10228-A10236-cpt) + + + + + + + + + + abstDomain: A16926 (C-0-T10228-A16926-cpt) + + + + + + + + + + abstDomain: A19738 (C-0-T10228-A19738-cpt) + + + + + + + + + vocSet: T14049 (C-0-T14049-cpt) + + + + + + + + + + + + + + + abstDomain: A16184 (C-0-T14049-A16184-cpt) + + + + + + + + + vocSet: T14054 (C-0-T14054-cpt) + + + + + + + + + vocSet: T19823 (C-0-T19823-cpt) + + + + + + + + + vocSet: T16478 (C-0-T16478-cpt) + + + + + + abstDomain: A18934 (C-0-T16478-A18934-cpt) + + + + + + + + + abstDomain: A18937 (C-0-T16478-A18937-cpt) + + + + + + + + + abstDomain: A18935 (C-0-T16478-A18935-cpt) + + + + + + + + + abstDomain: A18936 (C-0-T16478-A18936-cpt) + + + + + + + + + vocSet: O20031 (C-0-O20031-cpt) + + + + + + vocSet: O20032 (C-0-O20032-cpt) + + + + + + vocSet: O20033 (C-0-O20033-cpt) + + + + + + vocSet: O20034 (C-0-O20034-cpt) + + + + + + vocSet: T171 (C-0-T171-cpt) + + + + + + vocSet: T17388 (C-0-T17388-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + vocSet: T10774 (C-0-T10774-cpt) + + + + + + abstDomain: A10775 (C-0-T10774-A10775-cpt) + + + + + + + + + + specDomain: S10845 (C-0-T10774-A10775-S10845-cpt) + + + + + + + + + + + + specDomain: S10846 (C-0-T10774-A10775-S10845-S10846-cpt) + + + + + + + + specDomain: S10848 (C-0-T10774-A10775-S10845-S10848-cpt) + + + + + + + + specDomain: S10831 (C-0-T10774-A10775-S10831-cpt) + + + + + + + + + + + + specDomain: S10832 (C-0-T10774-A10775-S10831-S10832-cpt) + + + + + + + + specDomain: S10833 (C-0-T10774-A10775-S10831-S10833-cpt) + + + + + + + + specDomain: S10776 (C-0-T10774-A10775-S10776-cpt) + + + + + + + + specDomain: S10780 (C-0-T10774-A10775-S10780-cpt) + + + + + + + + + + + + specDomain: S10782 (C-0-T10774-A10775-S10780-S10782-cpt) + + + + + + + + specDomain: S10783 (C-0-T10774-A10775-S10780-S10783-cpt) + + + + + + + + specDomain: S10784 (C-0-T10774-A10775-S10780-S10784-cpt) + + + + + + + + specDomain: S10781 (C-0-T10774-A10775-S10781-cpt) + + + + + + + + specDomain: S10850 (C-0-T10774-A10775-S10850-cpt) + + + + + + + + + + + + specDomain: S10851 (C-0-T10774-A10775-S10850-S10851-cpt) + + + + + + + + specDomain: S10785 (C-0-T10774-A10775-S10785-cpt) + + + + + + + + specDomain: S10834 (C-0-T10774-A10775-S10834-cpt) + + + + + + + + + + + + specDomain: S10835 (C-0-T10774-A10775-S10834-S10835-cpt) + + + + + + + + specDomain: S10839 (C-0-T10774-A10775-S10834-S10839-cpt) + + + + + + + + + + + + specDomain: S10841 (C-0-T10774-A10775-S10834-S10841-cpt) + + + + + + + + + + + + specDomain: S10807 (C-0-T10774-A10775-S10834-S10841-S10807-cpt) + + + + + + + + + + + + specDomain: S10844 (C-0-T10774-A10775-S10834-S10841-S10807-S10844-cpt) + + + + + + + + specDomain: S10808 (C-0-T10774-A10775-S10834-S10841-S10807-S10808-cpt) + + + + + + + + specDomain: S10843 (C-0-T10774-A10775-S10834-S10841-S10807-S10843-cpt) + + + + + + + + specDomain: S10837 (C-0-T10774-A10775-S10834-S10837-cpt) + + + + + + + + specDomain: S10786 (C-0-T10774-A10775-S10786-cpt) + + + + + + + + abstDomain: A10794 (C-0-T10774-A10775-A10794-cpt) + + + + + + + + + + specDomain: S10795 (C-0-T10774-A10775-A10794-S10795-cpt) + + + + + + + + specDomain: S10798 (C-0-T10774-A10775-A10794-S10798-cpt) + + + + + + + + specDomain: S10864 (C-0-T10774-A10775-A10794-S10864-cpt) + + + + + + + + specDomain: S10797 (C-0-T10774-A10775-A10794-S10797-cpt) + + + + + + + + + + + + specDomain: S10866 (C-0-T10774-A10775-A10794-S10797-S10866-cpt) + + + + + + + + specDomain: S10799 (C-0-T10774-A10775-A10794-S10799-cpt) + + + + + + + + specDomain: S10800 (C-0-T10774-A10775-A10794-S10800-cpt) + + + + + + + + specDomain: S10796 (C-0-T10774-A10775-A10794-S10796-cpt) + + + + + + + + + + + + specDomain: S10865 (C-0-T10774-A10775-A10794-S10796-S10865-cpt) + + + + + + + + specDomain: S10821 (C-0-T10774-A10775-S10821-cpt) + + + + + + + + + + + + specDomain: S10822 (C-0-T10774-A10775-S10821-S10822-cpt) + + + + + + + + + + + + specDomain: S10777 (C-0-T10774-A10775-S10821-S10822-S10777-cpt) + + + + + + + + + + + + specDomain: S10778 (C-0-T10774-A10775-S10821-S10822-S10777-S10778-cpt) + + + + + + + + + + + + specDomain: S10779 (C-0-T10774-A10775-S10821-S10822-S10777-S10778-S10779-cpt) + + + + + + + + + + + + specDomain: S10792 (C-0-T10774-A10775-S10821-S10822-S10777-S10778-S10779-S10792-cpt) + + + + + + + + specDomain: S10793 (C-0-T10774-A10775-S10821-S10822-S10777-S10778-S10779-S10793-cpt) + + + + + + + + specDomain: S10790 (C-0-T10774-A10775-S10821-S10822-S10777-S10778-S10779-S10790-cpt) + + + + + + + + specDomain: S10823 (C-0-T10774-A10775-S10821-S10823-cpt) + + + + + + + + + + + + specDomain: S10824 (C-0-T10774-A10775-S10821-S10823-S10824-cpt) + + + + + + + + + + + + specDomain: S10825 (C-0-T10774-A10775-S10821-S10823-S10824-S10825-cpt) + + + + + + + + + + + + specDomain: S10826 (C-0-T10774-A10775-S10821-S10823-S10824-S10825-S10826-cpt) + + + + + + + + + + + + specDomain: S10827 (C-0-T10774-A10775-S10821-S10823-S10824-S10825-S10826-S10827-cpt) + + + + + + + + + + + + specDomain: S10828 (C-0-T10774-A10775-S10821-S10823-S10824-S10825-S10826-S10827-S10828-cpt) + + + + + + + + + + + + specDomain: S10789 (C-0-T10774-A10775-S10821-S10823-S10824-S10825-S10826-S10827-S10828-S10789-cpt) + + + + + + + + specDomain: S10829 (C-0-T10774-A10775-S10821-S10823-S10824-S10825-S10826-S10827-S10829-cpt) + + + + + + + + + + + + specDomain: S10791 (C-0-T10774-A10775-S10821-S10823-S10824-S10825-S10826-S10827-S10829-S10791-cpt) + + + + + + + + specDomain: S10801 (C-0-T10774-A10775-S10801-cpt) + + + + + + + + + + + + specDomain: S10809 (C-0-T10774-A10775-S10801-S10809-cpt) + + + + + + + + specDomain: S10802 (C-0-T10774-A10775-S10801-S10802-cpt) + + + + + + + + + + + + specDomain: S10803 (C-0-T10774-A10775-S10801-S10802-S10803-cpt) + + + + + + + + specDomain: S10804 (C-0-T10774-A10775-S10801-S10802-S10804-cpt) + + + + + + + + specDomain: S10805 (C-0-T10774-A10775-S10801-S10802-S10805-cpt) + + + + + + + + specDomain: S10867 (C-0-T10774-A10775-S10801-S10867-cpt) + + + + + + + + + specDomain: S10869 (C-0-T10774-A10775-S10801-S10869-cpt) + + + + + + + + + + + + specDomain: S10818 (C-0-T10774-A10775-S10801-S10818-cpt) + + + + + + + + specDomain: S10868 (C-0-T10774-A10775-S10801-S10868-cpt) + + + + + + + + + specDomain: S10810 (C-0-T10774-A10775-S10801-S10810-cpt) + + + + + + + + + + + + specDomain: S10811 (C-0-T10774-A10775-S10801-S10810-S10811-cpt) + + + + + + + + + + + + specDomain: S10812 (C-0-T10774-A10775-S10801-S10810-S10811-S10812-cpt) + + + + + + + + + + + + specDomain: S10813 (C-0-T10774-A10775-S10801-S10810-S10811-S10812-S10813-cpt) + + + + + + + + specDomain: S10816 (C-0-T10774-A10775-S10801-S10816-cpt) + + + + + + + + + + + + specDomain: S10862 (C-0-T10774-A10775-S10801-S10816-S10862-cpt) + + + + + + + + specDomain: S10819 (C-0-T10774-A10775-S10801-S10819-cpt) + + + + + + + + + + + + specDomain: S10863 (C-0-T10774-A10775-S10801-S10819-S10863-cpt) + + + + + + + + specDomain: S10814 (C-0-T10774-A10775-S10801-S10814-cpt) + + + + + + + + + + + + specDomain: S10815 (C-0-T10774-A10775-S10801-S10814-S10815-cpt) + + + + + + + + specDomain: S10853 (C-0-T10774-A10775-S10853-cpt) + + + + + + + + + + + + specDomain: S10854 (C-0-T10774-A10775-S10853-S10854-cpt) + + + + + + + + specDomain: S10856 (C-0-T10774-A10775-S10856-cpt) + + + + + + + + + + + + specDomain: S10857 (C-0-T10774-A10775-S10856-S10857-cpt) + + + + + + + + specDomain: S10859 (C-0-T10774-A10775-S10856-S10859-cpt) + + + + + + + + specDomain: S10788 (C-0-T10774-A10775-S10788-cpt) + + + + + + + + + + + + specDomain: S10787 (C-0-T10774-A10775-S10788-S10787-cpt) + + + + + + + + vocSet: T14066 (C-0-T14066-cpt) + + + + + + + + + + + vocSet: T15931 (C-0-T15931-cpt) + + + + + + vocSet: T271 (C-0-T271-cpt) + + + + + + + + + + + + + + vocSet: T275 (C-0-T275-cpt) + + + + + + + + + + + + + specDomain: S10584 (C-0-T275-S10584-cpt) + + + + + + + + + vocSet: E5 (C-0-E5-cpt) + + + + + + vocSet: T11040 (C-0-T11040-cpt) + + + + + + + + + + + + specDomain: S11042 (C-0-T11040-S11042-cpt) + + + + + + + + specDomain: S11044 (C-0-T11040-S11044-cpt) + + + + + + + + specDomain: S11045 (C-0-T11040-S11045-cpt) + + + + + + + + specDomain: S11043 (C-0-T11040-S11043-cpt) + + + + + + + + vocSet: T19175 (C-0-T19175-cpt) + + + + + + + + + + + + + + + + vocSet: D29 (C-0-D29-cpt) + + + + + + vocSet: D30 (C-0-D30-cpt) + + + + + + vocSet: T16036 (C-0-T16036-cpt) + + + + + + + + + + + + + + abstDomain: A19691 (C-0-T16036-A19691-cpt) + + + + + + vocSet: D31 (C-0-D31-cpt) + + + + + + vocSet: T15930 (C-0-T15930-cpt) + + + + + + vocSet: T12231 (C-0-T12231-cpt) + + + + + + vocSet: D32 (C-0-D32-cpt) + + + + + + vocSet: T12234 (C-0-T12234-cpt) + + + + + + + + + + vocSet: T19453 (C-0-T19453-cpt) + + + + + + vocSet: T19454 (C-0-T19454-cpt) + + + + + + vocSet: T12242 (C-0-T12242-cpt) + + + + + + + + + + + + vocSet: T10882 (C-0-T10882-cpt) + + + + + + specDomain: S13922 (C-0-T10882-S13922-cpt) + + + + + + + + + + + + + + specDomain: S10884 (C-0-T10882-S13922-S10884-cpt) + + + + + + + + + + + + + specDomain: S11621 (C-0-T10882-S13922-S10884-S11621-cpt) + + + + + + + + + + + specDomain: S10883 (C-0-T10882-S13922-S10883-cpt) + + + + + + + + + + + + + + specDomain: S13934 (C-0-T10882-S13922-S10883-S13934-cpt) + + + + + + + + + + + + specDomain: S11622 (C-0-T10882-S13922-S10883-S13934-S11622-cpt) + + + + + + + + + specDomain: S11623 (C-0-T10882-S13922-S10883-S13934-S11623-cpt) + + + + + + + + + + specDomain: S10889 (C-0-T10882-S13922-S10889-cpt) + + + + + + + + + + + + + specDomain: S10890 (C-0-T10882-S13922-S10889-S10890-cpt) + + + + + + + + + specDomain: S10892 (C-0-T10882-S13922-S10892-cpt) + + + + + + + + + + + + abstDomain: A19462 (C-0-T10882-A19462-cpt) + + + + + + + + + abstDomain: A19463 (C-0-T10882-A19463-cpt) + + + + + + + + vocSet: O20035 (C-0-O20035-cpt) + + + + + + vocSet: O20036 (C-0-O20036-cpt) + + + + + + vocSet: O20037 (C-0-O20037-cpt) + + + + + + vocSet: O20038 (C-0-O20038-cpt) + + + + + + vocSet: O20039 (C-0-O20039-cpt) + + + + + + vocSet: O20040 (C-0-O20040-cpt) + + + + + + vocSet: O20041 (C-0-O20041-cpt) + + + + + + vocSet: O20051 (C-0-O20051-cpt) + + + + + + vocSet: O20042 (C-0-O20042-cpt) + + + + + + vocSet: O20043 (C-0-O20043-cpt) + + + + + + vocSet: O20045 (C-0-O20045-cpt) + + + + + + vocSet: O20044 (C-0-O20044-cpt) + + + + + + vocSet: O20046 (C-0-O20046-cpt) + + + + + + vocSet: O20049 (C-0-O20049-cpt) + + + + + + vocSet: O20047 (C-0-O20047-cpt) + + + + + + vocSet: O20050 (C-0-O20050-cpt) + + + + + + vocSet: O20048 (C-0-O20048-cpt) + + + + + + vocSet: T16040 (C-0-T16040-cpt) + + + + + + abstDomain: A16041 (C-0-T16040-A16041-cpt) + + + + + + + + + + + + abstDomain: A19698 (C-0-T16040-A16041-A19698-cpt) + + + + + + + + + + abstDomain: A19699 (C-0-T16040-A16041-A19698-A19699-cpt) + + + + + + + + + + + + + + + + + + + + + + + + abstDomain: A19464 (C-0-T16040-A16041-A19464-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + abstDomain: A19867 (C-0-T16040-A16041-A19867-cpt) + + + + + + + + + + abstDomain: A16143 (C-0-T16040-A16041-A19867-A16143-cpt) + + + + + + + + + + specDomain: S16144 (C-0-T16040-A16041-A19867-A16143-S16144-cpt) + + + + + + + + + + + + specDomain: S16170 (C-0-T16040-A16041-A19867-A16143-S16144-S16170-cpt) + + + + + + + + + + + + + + + + specDomain: S16145 (C-0-T16040-A16041-A19867-A16143-S16144-S16145-cpt) + + + + + + + + + abstDomain: A16147 (C-0-T16040-A16041-A19867-A16143-S16144-A16147-cpt) + + + + + + + + + + + abstDomain: A16152 (C-0-T16040-A16041-A19867-A16143-S16144-A16152-cpt) + + + + + + + + + + specDomain: S16171 (C-0-T16040-A16041-A19867-A16143-S16144-A16152-S16171-cpt) + + + + + + + + + abstDomain: A16176 (C-0-T16040-A16041-A19867-A16143-S16144-A16152-A16176-cpt) + + + + + + + + + + + abstDomain: A16153 (C-0-T16040-A16041-A19867-A16143-S16144-A16152-A16153-cpt) + + + + + + + + + + + + + + + + + + + + + specDomain: S16155 (C-0-T16040-A16041-A19867-A16143-S16144-A16152-A16153-S16155-cpt) + + + + + + + + + + + + + + + specDomain: S16159 (C-0-T16040-A16041-A19867-A16143-S16144-A16152-A16153-S16155-S16159-cpt) + + + + + + + + + abstDomain: A19623 (C-0-T16040-A16041-A19867-A19623-cpt) + + + + + + abstDomain: A16042 (C-0-T16040-A16041-A19867-A16042-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + abstDomain: A16188 (C-0-T16040-A16041-A19867-A16188-cpt) + + + + + + + + + + abstDomain: A16200 (C-0-T16040-A16041-A19867-A16188-A16200-cpt) + + + + + + + + + + specDomain: S16201 (C-0-T16040-A16041-A19867-A16188-A16200-S16201-cpt) + + + + + + + + + + abstDomain: A16189 (C-0-T16040-A16041-A19867-A16188-A16189-cpt) + + + + + + + + + + + + + specDomain: S16196 (C-0-T16040-A16041-A19867-A16188-A16189-S16196-cpt) + + + + + + + + + + + abstDomain: A16191 (C-0-T16040-A16041-A19867-A16188-A16189-A16191-cpt) + + + + + + + + + + abstDomain: A19394 (C-0-T16040-A16041-A19867-A19357-A19394-cpt) + + + + + + abstDomain: A19827 (C-0-T16040-A16041-A19867-A19357-A19827-cpt) + + + + + + + + + + abstDomain: A19828 (C-0-T16040-A16041-A19867-A19357-A19827-A19828-cpt) + + + + + + abstDomain: A19829 (C-0-T16040-A16041-A19867-A19357-A19827-A19829-cpt) + + + + + + abstDomain: A19870 (C-0-T16040-A19870-cpt) + + + + + + abstDomain: A19608 (C-0-T16040-A19608-cpt) + + + + + + + + + + + + abstDomain: A19624 (C-0-T16040-A19608-A19624-cpt) + + + + + + abstDomain: A19749 (C-0-T16040-A19608-A19749-cpt) + + + + + + abstDomain: A16100 (C-0-T16040-A16100-cpt) + + + + + + + + + + + + + + + + abstDomain: A19675 (C-0-T16040-A16100-A19675-cpt) + + + + + + abstDomain: A19652 (C-0-T16040-A19652-cpt) + + + + + + + + abstDomain: A19667 (C-0-T16040-A19667-cpt) + + + + + + + + + + + + abstDomain: A19668 (C-0-T16040-A19667-A19668-cpt) + + + + + + + + + + + + abstDomain: A16530 (C-0-T16040-A19667-A19668-A16530-cpt) + + + + + + + + + + abstDomain: A16205 (C-0-T16040-A19667-A19668-A16530-A16205-cpt) + + + + + + + + + + abstDomain: A19721 (C-0-T16040-A19667-A19668-A16530-A16205-A19721-cpt) + + + + + + abstDomain: A16206 (C-0-T16040-A19667-A19668-A16530-A16205-A16206-cpt) + + + + + + + + + + abstDomain: A19618 (C-0-T16040-A19667-A19668-A16530-A16205-A16206-A19618-cpt) + + + + + + specDomain: S21458 (C-0-T16040-A19667-A19668-S21458-cpt) + + + + + + + + vocSet: T10878 (C-0-T10878-cpt) + + + + + + + + + + + + specDomain: S10879 (C-0-T10878-S10879-cpt) + + + + + + + + + abstDomain: A19670 (C-0-T10878-A19670-cpt) + + + + + + + + + + vocSet: O20053 (C-0-O20053-cpt) + + + + + + vocSet: O20052 (C-0-O20052-cpt) + + + + + + vocSet: T13988 (C-0-T13988-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + vocSet: T15888 (C-0-T15888-cpt) + + + + + + abstDomain: A15889 (C-0-T15888-A15889-cpt) + + + + + + + + abstDomain: A10659 (C-0-T15888-A10659-cpt) + + + + + + + + + + + + + abstDomain: A10666 (C-0-T15888-A10659-A10666-cpt) + + + + + + + + + + + abstDomain: A10660 (C-0-T15888-A10659-A10660-cpt) + + + + + + + + + + abstDomain: A10671 (C-0-T15888-A10659-A10671-cpt) + + + + + + + + vocSet: T15880 (C-0-T15880-cpt) + + + + + + + + + + + + + + + + abstDomain: A15881 (C-0-T15880-A15881-cpt) + + + + + + + + + + abstDomain: A10653 (C-0-T15880-A10653-cpt) + + + + + + + + + + + + vocSet: T15913 (C-0-T15913-cpt) + + + + + + + + + + + + specDomain: S10176 (C-0-T15913-S10176-cpt) + + + + + + + + + abstDomain: A15914 (C-0-T15913-A15914-cpt) + + + + + + + + + + + + specDomain: S10176 (C-0-T15913-A15914-S10176-cpt) + + + + + + + + + abstDomain: A200 (C-0-T15913-A200-cpt) + + + + + + + + + + + + + + + specDomain: S21363 (C-0-T15913-A200-S21363-cpt) + + + + + + + + + + specDomain: S10176 (C-0-T15913-A200-S10176-cpt) + + + + + + + + + specDomain: S21321 (C-0-T15913-A200-S21321-cpt) + + + + + + + + + vocSet: T10405 (C-0-T10405-cpt) + + + + + + + + + + + + + + + + + + specDomain: S10407 (C-0-T10405-S10407-cpt) + + + + + + + + + specDomain: S10412 (C-0-T10405-S10412-cpt) + + + + + + + + + vocSet: T16005 (C-0-T16005-cpt) + + + + + + + + + + + + specDomain: S16006 (C-0-T16005-S16006-cpt) + + + + + + + + + + vocSet: O20054 (C-0-O20054-cpt) + + + + + + vocSet: O20055 (C-0-O20055-cpt) + + + + + + vocSet: O20056 (C-0-O20056-cpt) + + + + + + vocSet: T10896 (C-0-T10896-cpt) + + + + + + + + + + + vocSet: T15836 (C-0-T15836-cpt) + + + + + + + + + + + + specDomain: S15837 (C-0-T15836-S15837-cpt) + + + + + + + + + + + + + + + + specDomain: S15854 (C-0-T15836-S15837-S15854-cpt) + + + + + + + + + + + + + + + + specDomain: S15848 (C-0-T15836-S15837-S15848-cpt) + + + + + + + + + + + + + specDomain: S15863 (C-0-T15836-S15837-S15863-cpt) + + + + + + + + + + + + + + + + + + + specDomain: S15838 (C-0-T15836-S15837-S15838-cpt) + + + + + + + + + + + + + + + + + vocSet: T19940 (C-0-T19940-cpt) + + + + + + + + + + + vocSet: T10720 (C-0-T10720-cpt) + + + + + + + + + + + + + + + + + + specDomain: S10725 (C-0-T10720-S10725-cpt) + + + + + + + + + + + + abstDomain: A10726 (C-0-T10720-S10725-A10726-cpt) + + + + + + + + + + + + + specDomain: S10733 (C-0-T10720-S10725-S10733-cpt) + + + + + + + + + + + + + + + + + + + + + vocSet: T11523 (C-0-T11523-cpt) + + + + + + + + + vocSet: T10034 (C-0-T10034-cpt) + + + + + + + + + + + + + + + + + + vocSet: T10010 (C-0-T10010-cpt) + + + + + + + + + + + + abstDomain: A10012 (C-0-T10010-A10012-cpt) + + + + + + + + + + + + + specDomain: S10015 (C-0-T10010-A10012-S10015-cpt) + + + + + + + + + + vocSet: T10083 (C-0-T10083-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + vocSet: T19449 (C-0-T19449-cpt) + + + + + + + + vocSet: T19373 (C-0-T19373-cpt) + + + + + + + + + + + + + + + + + + + + + vocSet: T10018 (C-0-T10018-cpt) + + + + + + + + + + + + + + + + abstDomain: A10024 (C-0-T10018-A10024-cpt) + + + + + + + + + + + vocSet: E6 (C-0-E6-cpt) + + + + + + vocSet: T13129 (C-0-T13129-cpt) + + + + + + abstDomain: A13130 (C-0-T13129-A13130-cpt) + + + + + + + + + + abstDomain: A13174 (C-0-T13129-A13130-A13174-cpt) + + + + + + + + + + specDomain: S13175 (C-0-T13129-A13130-A13174-S13175-cpt) + + + + + + + + + + + + + + + + abstDomain: A13131 (C-0-T13129-A13130-A13131-cpt) + + + + + + + + + + + + + specDomain: S13132 (C-0-T13129-A13130-A13131-S13132-cpt) + + + + + + + + + + + + + abstDomain: A13147 (C-0-T13129-A13130-A13131-A13147-cpt) + + + + + + + + specDomain: S13149 (C-0-T13129-A13130-A13131-S13149-cpt) + + + + + + + + + + specDomain: S13152 (C-0-T13129-A13130-A13131-S13152-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + specDomain: S13171 (C-0-T13129-A13130-A13131-S13171-cpt) + + + + + + + + + + abstDomain: A16460 (C-0-T13129-A13130-A16460-cpt) + + + + + + + + + + + + + + specDomain: S13188 (C-0-T13129-A13130-A16460-S13188-cpt) + + + + + + + + + + + + + + + + + + + abstDomain: A13195 (C-0-T13129-A13130-A16460-S13188-A13195-cpt) + + + + + + + + abstDomain: A13197 (C-0-T13129-A13130-A13197-cpt) + + + + + + + + + + + + abstDomain: A13198 (C-0-T13129-A13130-A13197-A13198-cpt) + + + + + + specDomain: S13205 (C-0-T13129-A13130-A13197-S13205-cpt) + + + + + + + + + specDomain: S13201 (C-0-T13129-A13130-A13197-S13201-cpt) + + + + + + + + + + + abstDomain: A13207 (C-0-T13129-A13130-A13207-cpt) + + + + + + + + + + abstDomain: A13211 (C-0-T13129-A13130-A13211-cpt) + + + + + + + + + + abstDomain: A13219 (C-0-T13129-A13130-A13211-A13219-cpt) + + + + + + + + + + + + + + + + specDomain: S13212 (C-0-T13129-A13130-A13211-S13212-cpt) + + + + + + + + + + + + + + abstDomain: A13229 (C-0-T13129-A13130-A13229-cpt) + + + + + + + + + + + + + specDomain: S13232 (C-0-T13129-A13130-A13229-S13232-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + specDomain: S13134 (C-0-T13129-A13130-S13134-cpt) + + + + + + + + + + + + abstDomain: A13134 (C-0-T13129-A13130-S13134-A13134-cpt) + + + + + + + + abstDomain: A13578 (C-0-T13129-A13130-A13578-cpt) + + + + + + + + + + abstDomain: A13579 (C-0-T13129-A13130-A13578-A13579-cpt) + + + + + + + + + abstDomain: A13136 (C-0-T13129-A13130-A13136-cpt) + + + + + + + + + + + + + + + + + + abstDomain: A13139 (C-0-T13129-A13130-A13136-A13139-cpt) + + + + + + + + abstDomain: A13347 (C-0-T13129-A13130-A13136-A13347-cpt) + + + + + + + + + + + abstDomain: A13352 (C-0-T13129-A13130-A13136-A13352-cpt) + + + + + + + + abstDomain: A13644 (C-0-T13129-A13130-A13644-cpt) + + + + + + + + + + abstDomain: A13660 (C-0-T13129-A13130-A13644-A13660-cpt) + + + + + + + + + + + + + + + abstDomain: A13669 (C-0-T13129-A13130-A13644-A13669-cpt) + + + + + + + + + + abstDomain: A13703 (C-0-T13129-A13130-A13644-A13703-cpt) + + + + + + + + abstDomain: A13673 (C-0-T13129-A13130-A13644-A13673-cpt) + + + + + + + + + + + + + + + + + + + + + abstDomain: A13705 (C-0-T13129-A13130-A13644-A13705-cpt) + + + + + + + + + + + + abstDomain: A13688 (C-0-T13129-A13130-A13644-A13688-cpt) + + + + + + + + + + + + + + + + + + abstDomain: A13711 (C-0-T13129-A13130-A13644-A13711-cpt) + + + + + + + + + + abstDomain: A13645 (C-0-T13129-A13130-A13644-A13645-cpt) + + + + + + + + + + + + + + + + + + + + + abstDomain: A13354 (C-0-T13129-A13130-A13354-cpt) + + + + + + + + + + specDomain: S13355 (C-0-T13129-A13130-A13354-S13355-cpt) + + + + + + + + + + + + + abstDomain: A13361 (C-0-T13129-A13130-A13354-A13361-cpt) + + + + + + + + abstDomain: A13363 (C-0-T13129-A13130-A13363-cpt) + + + + + + + + + + + + + specDomain: S13364 (C-0-T13129-A13130-A13363-S13364-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + specDomain: S13402 (C-0-T13129-A13130-A13363-S13402-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + specDomain: S13422 (C-0-T13129-A13130-A13363-S13422-cpt) + + + + + + + + + + abstDomain: A13425 (C-0-T13129-A13130-A13425-cpt) + + + + + + + + + + specDomain: S13426 (C-0-T13129-A13130-A13425-S13426-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + abstDomain: A13582 (C-0-T13129-A13130-A13582-cpt) + + + + + + + + + + + + specDomain: S13584 (C-0-T13129-A13130-A13582-S13584-cpt) + + + + + + + + + + + + + + + abstDomain: A13592 (C-0-T13129-A13130-A13592-cpt) + + + + + + + + + + + + + + + + + + + + + + + + specDomain: S13598 (C-0-T13129-A13130-A13592-S13598-cpt) + + + + + + + + + + + + + + + specDomain: S13609 (C-0-T13129-A13130-A13592-S13609-cpt) + + + + + + + + + + + + + + + + + + + specDomain: S13625 (C-0-T13129-A13130-A13592-S13625-cpt) + + + + + + + + + abstDomain: A13631 (C-0-T13129-A13130-A13592-A13631-cpt) + + + + + + + + + specDomain: S13629 (C-0-T13129-A13130-A13592-S13629-cpt) + + + + + + + + + abstDomain: A13634 (C-0-T13129-A13130-A13634-cpt) + + + + + + + + + + + + + + specDomain: S13635 (C-0-T13129-A13130-A13634-S13635-cpt) + + + + + + + + + + + + + + abstDomain: A13637 (C-0-T13129-A13130-A13634-S13635-A13637-cpt) + + + + + + + + + + abstDomain: A13700 (C-0-T13129-A13130-A13634-S13635-A13637-A13700-cpt) + + + + + + + + + abstDomain: A13640 (C-0-T13129-A13130-A13634-A13640-cpt) + + + + + + + + + abstDomain: A13715 (C-0-T13129-A13715-cpt) + + + + + + + + + + abstDomain: A13716 (C-0-T13129-A13715-A13716-cpt) + + + + + + + + + + abstDomain: A13717 (C-0-T13129-A13715-A13716-A13717-cpt) + + + + + + + + + + + + + + abstDomain: A13725 (C-0-T13129-A13715-A13725-cpt) + + + + + + + + + + abstDomain: A13726 (C-0-T13129-A13715-A13725-A13726-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + abstDomain: A13808 (C-0-T13129-A13715-A13808-cpt) + + + + + + + + + + abstDomain: A13812 (C-0-T13129-A13715-A13812-cpt) + + + + + + + + + + + abstDomain: A13833 (C-0-T13129-A13715-A13833-cpt) + + + + + + + + + + + + + + + + + + + + specDomain: S13835 (C-0-T13129-A13715-A13833-S13835-cpt) + + + + + + + + + + + + + abstDomain: A13849 (C-0-T13129-A13715-A13849-cpt) + + + + + + + + + + + + + abstDomain: A13850 (C-0-T13129-A13715-A13849-A13850-cpt) + + + + + + + + + + vocSet: T11017 (C-0-T11017-cpt) + + + + + + + + + + + + + + + + + + + + + + vocSet: T11526 (C-0-T11526-cpt) + + + + + + vocSet: E7 (C-0-E7-cpt) + + + + + + vocSet: E3 (C-0-E3-cpt) + + + + + + vocSet: E20 (C-0-E20-cpt) + + + + + + vocSet: E9 (C-0-E9-cpt) + + + + + + vocSet: T19797 (C-0-T19797-cpt) + + + + + + vocSet: T16039 (C-0-T16039-cpt) + + + + + + vocSet: T17385 (C-0-T17385-cpt) + + + + + + + + + vocSet: D33 (C-0-D33-cpt) + + + + + + vocSet: D34 (C-0-D34-cpt) + + + + + + vocSet: E10 (C-0-E10-cpt) + + + + + + vocSet: T12249 (C-0-T12249-cpt) + + + + + + + + + + + + + vocSet: T12199 (C-0-T12199-cpt) + + + + + + + + + + + vocSet: D35 (C-0-D35-cpt) + + + + + + vocSet: T220 (C-0-T220-cpt) + + + + + + specDomain: S22193 (C-0-T220-S22193-cpt) + + + + + + + + + + specDomain: S10189 (C-0-T220-S10189-cpt) + + + + + + + + + + + + specDomain: S22190 (C-0-T220-S22190-cpt) + + + + + + + + + + + vocSet: T10975 (C-0-T10975-cpt) + + + + + + + + + vocSet: T10893 (C-0-T10893-cpt) + + + + + + + + + vocSet: E8 (C-0-E8-cpt) + + + + + + vocSet: T10045 (C-0-T10045-cpt) + + + + + + + + + + + + + + + + + + + + + + + + vocSet: T10029 (C-0-T10029-cpt) + + + + + + + + + + + vocSet: E11 (C-0-E11-cpt) + + + + + + vocSet: T15992 (C-0-T15992-cpt) + + + + + + + + + + + + specDomain: S15993 (C-0-T15992-S15993-cpt) + + + + + + + + + + + + vocSet: O20057 (C-0-O20057-cpt) + + + + + + vocSet: O20058 (C-0-O20058-cpt) + + + + + + vocSet: O20059 (C-0-O20059-cpt) + + + + + + vocSet: O20060 (C-0-O20060-cpt) + + + + + + vocSet: O20061 (C-0-O20061-cpt) + + + + + + vocSet: D36 (C-0-D36-cpt) + + + + + + vocSet: T11052 (C-0-T11052-cpt) + + + + + + + + + + vocSet: T12212 (C-0-T12212-cpt) + + + + + + + + + + + + + + + + + + + + abstDomain: A15929 (C-0-T12212-A15929-cpt) + + + + + + vocSet: T19651 (C-0-T19651-cpt) + + + + + + abstDomain: A14411 (C-0-T19651-A14411-cpt) + + + + + + + + + + abstDomain: A14570 (C-0-T19651-A14411-A14570-cpt) + + + + + + + + + + + + + + + abstDomain: A14412 (C-0-T19651-A14411-A14412-cpt) + + + + + + + + + + abstDomain: A14568 (C-0-T19651-A14411-A14412-A14568-cpt) + + + + + + + + abstDomain: A14545 (C-0-T19651-A14411-A14412-A14545-cpt) + + + + + + + + + + + + + + specDomain: S14551 (C-0-T19651-A14411-A14412-A14545-S14551-cpt) + + + + + + + + + + + + specDomain: S14546 (C-0-T19651-A14411-A14412-A14545-S14546-cpt) + + + + + + + + + + + + + + specDomain: S14549 (C-0-T19651-A14411-A14412-A14545-S14546-S14549-cpt) + + + + + + + + + abstDomain: A14559 (C-0-T19651-A14411-A14412-A14559-cpt) + + + + + + + + + + + + + specDomain: S14560 (C-0-T19651-A14411-A14412-A14559-S14560-cpt) + + + + + + + + + + + + + abstDomain: A14413 (C-0-T19651-A14411-A14412-A14413-cpt) + + + + + + + + + + specDomain: S14414 (C-0-T19651-A14411-A14412-A14413-S14414-cpt) + + + + + + + + + + specDomain: S14417 (C-0-T19651-A14411-A14412-A14413-S14417-cpt) + + + + + + + + + specDomain: S14419 (C-0-T19651-A14411-A14412-A14413-S14419-cpt) + + + + + + + + + + + + + + + specDomain: S14420 (C-0-T19651-A14411-A14412-A14413-S14419-S14420-cpt) + + + + + + + + + + + + specDomain: S14427 (C-0-T19651-A14411-A14412-A14413-S14419-S14427-cpt) + + + + + + + + + + + specDomain: S14431 (C-0-T19651-A14411-A14412-A14413-S14419-S14431-cpt) + + + + + + + + + + + + specDomain: S14437 (C-0-T19651-A14411-A14412-A14413-S14419-S14437-cpt) + + + + + + + + + + + abstDomain: A14463 (C-0-T19651-A14411-A14412-A14463-cpt) + + + + + + + + + + specDomain: S14466 (C-0-T19651-A14411-A14412-A14463-S14466-cpt) + + + + + + + + + + + + + + + + + + specDomain: S14473 (C-0-T19651-A14411-A14412-A14463-S14466-S14473-cpt) + + + + + + + + + specDomain: S14464 (C-0-T19651-A14411-A14412-A14463-S14464-cpt) + + + + + + + + + specDomain: S14475 (C-0-T19651-A14411-A14412-A14463-S14475-cpt) + + + + + + + + + + + + + + + + + + specDomain: S14482 (C-0-T19651-A14411-A14412-A14463-S14475-S14482-cpt) + + + + + + + + + abstDomain: A14441 (C-0-T19651-A14411-A14412-A14441-cpt) + + + + + + + + + + specDomain: S14442 (C-0-T19651-A14411-A14412-A14441-S14442-cpt) + + + + + + + + + + + + + + + + + + specDomain: S14449 (C-0-T19651-A14411-A14412-A14441-S14442-S14449-cpt) + + + + + + + + + specDomain: S14451 (C-0-T19651-A14411-A14412-A14441-S14451-cpt) + + + + + + + + + + specDomain: S14454 (C-0-T19651-A14411-A14412-A14441-S14454-cpt) + + + + + + + + + + + + + + + + specDomain: S14457 (C-0-T19651-A14411-A14412-A14441-S14454-S14457-cpt) + + + + + + + + + + + + specDomain: S14458 (C-0-T19651-A14411-A14412-A14441-S14454-S14457-S14458-cpt) + + + + + + + + + + abstDomain: A14484 (C-0-T19651-A14411-A14412-A14484-cpt) + + + + + + + + + + + + + + + + + + + + + specDomain: S14485 (C-0-T19651-A14411-A14412-A14484-S14485-cpt) + + + + + + + + + + + + + specDomain: S14486 (C-0-T19651-A14411-A14412-A14484-S14485-S14486-cpt) + + + + + + + + + specDomain: S14497 (C-0-T19651-A14411-A14412-A14484-S14497-cpt) + + + + + + + + + specDomain: S14499 (C-0-T19651-A14411-A14412-A14484-S14499-cpt) + + + + + + + + + + + + specDomain: S14500 (C-0-T19651-A14411-A14412-A14484-S14499-S14500-cpt) + + + + + + + + + + + + + specDomain: S14506 (C-0-T19651-A14411-A14412-A14484-S14506-cpt) + + + + + + + + + + + + specDomain: S14507 (C-0-T19651-A14411-A14412-A14484-S14506-S14507-cpt) + + + + + + + + + + + + specDomain: S14508 (C-0-T19651-A14411-A14412-A14484-S14506-S14507-S14508-cpt) + + + + + + + + + + + + specDomain: S14509 (C-0-T19651-A14411-A14412-A14484-S14506-S14507-S14508-S14509-cpt) + + + + + + + + + specDomain: S14511 (C-0-T19651-A14411-A14412-A14484-S14506-S14507-S14508-S14511-cpt) + + + + + + + + + + + specDomain: S14515 (C-0-T19651-A14411-A14412-A14484-S14506-S14515-cpt) + + + + + + + + + + + + + specDomain: S14516 (C-0-T19651-A14411-A14412-A14484-S14506-S14515-S14516-cpt) + + + + + + + + + + + + + + + + + + + specDomain: S14518 (C-0-T19651-A14411-A14412-A14484-S14506-S14515-S14516-S14518-cpt) + + + + + + + + + specDomain: S14524 (C-0-T19651-A14411-A14412-A14484-S14506-S14515-S14516-S14524-cpt) + + + + + + + + + specDomain: S14526 (C-0-T19651-A14411-A14412-A14484-S14506-S14515-S14516-S14526-cpt) + + + + + + + + + + + specDomain: S14534 (C-0-T19651-A14411-A14412-A14484-S14534-cpt) + + + + + + + + + + + + specDomain: S14535 (C-0-T19651-A14411-A14412-A14484-S14534-S14535-cpt) + + + + + + + + + + specDomain: S14538 (C-0-T19651-A14411-A14412-A14484-S14538-cpt) + + + + + + + + + + + specDomain: S14542 (C-0-T19651-A14411-A14412-A14484-S14542-cpt) + + + + + + + + + vocSet: T10444 (C-0-T10444-cpt) + + + + + + vocSet: T10076 (C-0-T10076-cpt) + + + + + + + + + + + + + vocSet: T10069 (C-0-T10069-cpt) + + + + + + + + + + + + + vocSet: T10063 (C-0-T10063-cpt) + + + + + + + + + + + + vocSet: T14824 (C-0-T14824-cpt) + + + + + + abstDomain: A14832 (C-0-T14824-A14832-cpt) + + + + + + + + + + abstDomain: A14835 (C-0-T14824-A14835-cpt) + + + + + + + + + + abstDomain: A14839 (C-0-T14824-A14839-cpt) + + + + + + + + + + + + abstDomain: A14848 (C-0-T14824-A14848-cpt) + + + + + + + + abstDomain: A14850 (C-0-T14824-A14850-cpt) + + + + + + + + abstDomain: A14825 (C-0-T14824-A14825-cpt) + + + + + + + + + + + + + abstDomain: A14845 (C-0-T14824-A14845-cpt) + + + + + + + + + vocSet: T357 (C-0-T357-cpt) + + + + + + + + + + + + + + + + + + + + vocSet: T19581 (C-0-T19581-cpt) + + + + + + + + + + vocSet: T395 (C-0-T395-cpt) + + + + + + + + + vocSet: E14 (C-0-E14-cpt) + + + + + + vocSet: E12 (C-0-E12-cpt) + + + + + + vocSet: E15 (C-0-E15-cpt) + + + + + + vocSet: E13 (C-0-E13-cpt) + + + + + + vocSet: T10609 (C-0-T10609-cpt) + + + + + + specDomain: S10610 (C-0-T10609-S10610-cpt) + + + + + + + + + + + + + + + specDomain: S10616 (C-0-T10609-S10610-S10616-cpt) + + + + + + + + + + specDomain: S10612 (C-0-T10609-S10610-S10612-cpt) + + + + + + + + + + + + + + + specDomain: S10614 (C-0-T10609-S10610-S10612-S10614-cpt) + + + + + + + + + vocSet: T78 (C-0-T78-cpt) + + + + + + abstDomain: A10214 (C-0-T78-A10214-cpt) + + + + + + + + + + + abstDomain: A10225 (C-0-T78-A10225-cpt) + + + + + + + + + abstDomain: A10206 (C-0-T78-A10206-cpt) + + + + + + + + + + + + specDomain: S10208 (C-0-T78-A10206-S10208-cpt) + + + + + + + + + + + + specDomain: S10211 (C-0-T78-A10206-S10208-S10211-cpt) + + + + + + + + + + specDomain: S10210 (C-0-T78-A10206-S10208-S10210-cpt) + + + + + + + + + specDomain: S10209 (C-0-T78-A10206-S10208-S10209-cpt) + + + + + + + + + abstDomain: A19759 (C-0-T78-A19759-cpt) + + + + + + + + + + specDomain: S21634 (C-0-T78-A19759-S21634-cpt) + + + + + + + + + + abstDomain: A10219 (C-0-T78-A10219-cpt) + + + + + + + + + + + + vocSet: T14079 (C-0-T14079-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + abstDomain: A19802 (C-0-T14079-A19802-cpt) + + + + + + abstDomain: A19803 (C-0-T14079-A19803-cpt) + + + + + + abstDomain: A19378 (C-0-T14079-A19378-cpt) + + + + + + + + + + + + specDomain: S19992 (C-0-T14079-A19378-S19992-cpt) + + + + + + + + + abstDomain: A19707 (C-0-T14079-A19707-cpt) + + + + + + + + + + + specDomain: S21445 (C-0-T14079-S21445-cpt) + + + + + + + + + + specDomain: S21449 (C-0-T14079-S21449-cpt) + + + + + + + + specDomain: S21454 (C-0-T14079-S21454-cpt) + + + + + + + + + + + + + + + + + + + + abstDomain: A19380 (C-0-T14079-A19380-cpt) + + + + + + + + + + vocSet: T16614 (C-0-T16614-cpt) + + + + + + abstDomain: A19918 (C-0-T16614-A19918-cpt) + + + + + + + + + + abstDomain: A19924 (C-0-T16614-A19918-A19924-cpt) + + + + + + + + + + specDomain: S22316 (C-0-T16614-A19918-A19924-S22316-cpt) + + + + + + + + + + + + specDomain: S22307 (C-0-T16614-A19918-A19924-S22307-cpt) + + + + + + + + + + + + + + + + specDomain: S22321 (C-0-T16614-A19918-A19924-S22321-cpt) + + + + + + + + + + + + + + + + + + specDomain: S22295 (C-0-T16614-A19918-S22295-cpt) + + + + + + + + + + + + + + + + + + specDomain: S22290 (C-0-T16614-A19918-S22290-cpt) + + + + + + + + + + + + specDomain: S22286 (C-0-T16614-A19918-S22286-cpt) + + + + + + + + + + + specDomain: S22277 (C-0-T16614-A19918-S22277-cpt) + + + + + + + + + + + + + + + + specDomain: S22269 (C-0-T16614-A19918-S22269-cpt) + + + + + + + + + + + + + + + abstDomain: A19696 (C-0-T16614-A19696-cpt) + + + + + + abstDomain: A19332 (C-0-T16614-A19332-cpt) + + + + + + + + + + abstDomain: A19333 (C-0-T16614-A19332-A19333-cpt) + + + + + + + + + + abstDomain: A19337 (C-0-T16614-A19332-A19333-A19337-cpt) + + + + + + abstDomain: A19341 (C-0-T16614-A19332-A19333-A19341-cpt) + + + + + + abstDomain: A19340 (C-0-T16614-A19332-A19333-A19340-cpt) + + + + + + abstDomain: A19339 (C-0-T16614-A19332-A19333-A19339-cpt) + + + + + + abstDomain: A19338 (C-0-T16614-A19332-A19333-A19338-cpt) + + + + + + abstDomain: A19436 (C-0-T16614-A19436-cpt) + + + + + + abstDomain: A19437 (C-0-T16614-A19437-cpt) + + + + + + abstDomain: A19804 (C-0-T16614-A19804-cpt) + + + + + + + + + + abstDomain: A19912 (C-0-T16614-A19804-A19912-cpt) + + + + + + abstDomain: A19913 (C-0-T16614-A19804-A19913-cpt) + + + + + + abstDomain: A19908 (C-0-T16614-A19908-cpt) + + + + + + abstDomain: A19729 (C-0-T16614-A19729-cpt) + + + + + + + + + + abstDomain: A16615 (C-0-T16614-A19729-A16615-cpt) + + + + + + abstDomain: A19731 (C-0-T16614-A19729-A19731-cpt) + + + + + + + + + + abstDomain: A19730 (C-0-T16614-A19729-A19730-cpt) + + + + + + abstDomain: A19625 (C-0-T16614-A19625-cpt) + + + + + + + + + + abstDomain: A19626 (C-0-T16614-A19625-A19626-cpt) + + + + + + abstDomain: A19633 (C-0-T16614-A19625-A19633-cpt) + + + + + + abstDomain: A19634 (C-0-T16614-A19625-A19634-cpt) + + + + + + abstDomain: A19632 (C-0-T16614-A19625-A19632-cpt) + + + + + + abstDomain: A19629 (C-0-T16614-A19625-A19629-cpt) + + + + + + abstDomain: A19628 (C-0-T16614-A19625-A19628-cpt) + + + + + + abstDomain: A19635 (C-0-T16614-A19625-A19635-cpt) + + + + + + abstDomain: A19627 (C-0-T16614-A19625-A19627-cpt) + + + + + + abstDomain: A19631 (C-0-T16614-A19625-A19631-cpt) + + + + + + abstDomain: A19630 (C-0-T16614-A19625-A19630-cpt) + + + + + + abstDomain: A19390 (C-0-T16614-A19390-cpt) + + + + + + abstDomain: A19697 (C-0-T16614-A19697-cpt) + + + + + + abstDomain: A19716 (C-0-T16614-A19716-cpt) + + + + + + abstDomain: A18120 (C-0-T16614-A18120-cpt) + + + + + + + + + + + + + abstDomain: A16643 (C-0-T16614-A16643-cpt) + + + + + + + + + + abstDomain: A19793 (C-0-T16614-A19793-cpt) + + + + + + + + + + + + + + vocSet: T19298 (C-0-T19298-cpt) + + + + + + vocSet: T204 (C-0-T204-cpt) + + + + + + + + + + vocSet: E17 (C-0-E17-cpt) + + + + + + vocSet: T10759 (C-0-T10759-cpt) + + + + + + specDomain: S10763 (C-0-T10759-S10763-cpt) + + + + + + + + specDomain: S10762 (C-0-T10759-S10762-cpt) + + + + + + + + specDomain: S10761 (C-0-T10759-S10761-cpt) + + + + + + + + + + + + specDomain: S10766 (C-0-T10759-S10761-S10766-cpt) + + + + + + + + specDomain: S10764 (C-0-T10759-S10761-S10764-cpt) + + + + + + + + specDomain: S10765 (C-0-T10759-S10761-S10765-cpt) + + + + + + + + specDomain: S10760 (C-0-T10759-S10760-cpt) + + + + + + + + + + + + specDomain: S10767 (C-0-T10759-S10760-S10767-cpt) + + + + + + + + specDomain: S10768 (C-0-T10759-S10760-S10768-cpt) + + + + + + + + specDomain: S10771 (C-0-T10759-S10760-S10771-cpt) + + + + + + + + specDomain: S10772 (C-0-T10759-S10760-S10772-cpt) + + + + + + + + specDomain: S10769 (C-0-T10759-S10760-S10769-cpt) + + + + + + + + specDomain: S10770 (C-0-T10759-S10760-S10770-cpt) + + + + + + + + vocSet: O20062 (C-0-O20062-cpt) + + + + + + vocSet: O20063 (C-0-O20063-cpt) + + + + + + vocSet: O20065 (C-0-O20065-cpt) + + + + + + vocSet: O20064 (C-0-O20064-cpt) + + + + + + vocSet: O20066 (C-0-O20066-cpt) + + + + + + vocSet: O20067 (C-0-O20067-cpt) + + + + + + vocSet: O20069 (C-0-O20069-cpt) + + + + + + vocSet: O20068 (C-0-O20068-cpt) + + + + + + vocSet: O20070 (C-0-O20070-cpt) + + + + + + vocSet: O20072 (C-0-O20072-cpt) + + + + + + vocSet: O20071 (C-0-O20071-cpt) + + + + + + vocSet: O20073 (C-0-O20073-cpt) + + + + + + vocSet: O20079 (C-0-O20079-cpt) + + + + + + vocSet: O20077 (C-0-O20077-cpt) + + + + + + vocSet: O20074 (C-0-O20074-cpt) + + + + + + vocSet: O20075 (C-0-O20075-cpt) + + + + + + vocSet: O20076 (C-0-O20076-cpt) + + + + + + vocSet: O20078 (C-0-O20078-cpt) + + + + + + vocSet: O20080 (C-0-O20080-cpt) + + + + + + vocSet: O20081 (C-0-O20081-cpt) + + + + + + vocSet: O20083 (C-0-O20083-cpt) + + + + + + vocSet: O20082 (C-0-O20082-cpt) + + + + + + vocSet: T10267 (C-0-T10267-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + abstDomain: A19929 (C-0-T10267-A19929-cpt) + + + + + + + + + + abstDomain: A19932 (C-0-T10267-A19929-A19932-cpt) + + + + + + abstDomain: A19930 (C-0-T10267-A19929-A19930-cpt) + + + + + + abstDomain: A19931 (C-0-T10267-A19929-A19931-cpt) + + + + + + abstDomain: A19903 (C-0-T10267-A19903-cpt) + + + + + + + + + + abstDomain: A19906 (C-0-T10267-A19903-A19906-cpt) + + + + + + + + + + + + + abstDomain: A19905 (C-0-T10267-A19903-A19905-cpt) + + + + + + + + + abstDomain: A19904 (C-0-T10267-A19903-A19904-cpt) + + + + + + + + + + + + vocSet: O20084 (C-0-O20084-cpt) + + + + + + vocSet: O20085 (C-0-O20085-cpt) + + + + + + vocSet: O20086 (C-0-O20086-cpt) + + + + + + vocSet: O20087 (C-0-O20087-cpt) + + + + + + vocSet: T16543 (C-0-T16543-cpt) + + + + + + + + + + + + + specDomain: S16554 (C-0-T16543-S16554-cpt) + + + + + + + + specDomain: S16544 (C-0-T16543-S16544-cpt) + + + + + + + + + + + + specDomain: S16549 (C-0-T16543-S16549-cpt) + + + + + + + + + + + + abstDomain: A19739 (C-0-T16543-A19739-cpt) + + + + + + + + + vocSet: O20089 (C-0-O20089-cpt) + + + + + + vocSet: O20090 (C-0-O20090-cpt) + + + + + + vocSet: O20092 (C-0-O20092-cpt) + + + + + + vocSet: O20091 (C-0-O20091-cpt) + + + + + + vocSet: O20093 (C-0-O20093-cpt) + + + + + + vocSet: O20095 (C-0-O20095-cpt) + + + + + + vocSet: O20094 (C-0-O20094-cpt) + + + + + + vocSet: O20098 (C-0-O20098-cpt) + + + + + + vocSet: O20099 (C-0-O20099-cpt) + + + + + + vocSet: O20097 (C-0-O20097-cpt) + + + + + + vocSet: O20101 (C-0-O20101-cpt) + + + + + + vocSet: O20100 (C-0-O20100-cpt) + + + + + + vocSet: O20096 (C-0-O20096-cpt) + + + + + + vocSet: O20103 (C-0-O20103-cpt) + + + + + + vocSet: T10282 (C-0-T10282-cpt) + + + + + + + + + + vocSet: O20102 (C-0-O20102-cpt) + + + + + + vocSet: O20104 (C-0-O20104-cpt) + + + + + + vocSet: T10901 (C-0-T10901-cpt) + + + + + + specDomain: S21573 (C-0-T10901-S21573-cpt) + + + + + + + + + + + + + + abstDomain: A10247 (C-0-T10901-S21573-A10247-cpt) + + + + + + + + + + + + + + specDomain: S19032 (C-0-T10901-S21573-S19032-cpt) + + + + + + + + + + + + + + + abstDomain: A10251 (C-0-T10901-S21573-A10251-cpt) + + + + + + + + + + + + + + specDomain: S21463 (C-0-T10901-S21573-A10251-S21463-cpt) + + + + + + + + + specDomain: S10263 (C-0-T10901-S21573-S10263-cpt) + + + + + + + + + + + + + specDomain: S10248 (C-0-T10901-S21573-S10248-cpt) + + + + + + + + + + + specDomain: S10286 (C-0-T10901-S21573-S10286-cpt) + + + + + + + + + + + + + + + + + specDomain: S21978 (C-0-T10901-S21573-S10286-S21978-cpt) + + + + + + + + + + specDomain: S10298 (C-0-T10901-S21573-S10286-S10298-cpt) + + + + + + + + + + specDomain: S10287 (C-0-T10901-S21573-S10286-S10287-cpt) + + + + + + + + + specDomain: S10302 (C-0-T10901-S21573-S10302-cpt) + + + + + + + + + + + + + specDomain: S10259 (C-0-T10901-S21573-S10259-cpt) + + + + + + + + + + abstDomain: A19600 (C-0-T10901-A19600-cpt) + + + + + + + + + + + + abstDomain: A16764 (C-0-T10901-A16764-cpt) + + + + + + + + + + abstDomain: A19366 (C-0-T10901-A19366-cpt) + + + + + + + + + abstDomain: A19080 (C-0-T10901-A19080-cpt) + + + + + + + + + abstDomain: A19588 (C-0-T10901-A19588-cpt) + + + + + + + + + abstDomain: A19589 (C-0-T10901-A19589-cpt) + + + + + + + + + + abstDomain: A19083 (C-0-T10901-A19083-cpt) + + + + + + + + + + + abstDomain: A19601 (C-0-T10901-A19601-cpt) + + + + + + + + + vocSet: O20088 (C-0-O20088-cpt) + + + + + + vocSet: O20105 (C-0-O20105-cpt) + + + + + + vocSet: O20106 (C-0-O20106-cpt) + + + + + + vocSet: T19265 (C-0-T19265-cpt) + + + + + + + + + + + + + + + + vocSet: T14908 (C-0-T14908-cpt) + + + + + + + + + + + vocSet: I16 (C-0-I16-cpt) + + + + + + vocSet: T295 (C-0-T295-cpt) + + + + + + + + + + + + + + + specDomain: S10186 (C-0-T295-S10186-cpt) + + + + + + + + + + + + + vocSet: T10637 (C-0-T10637-cpt) + + + + + + + + + + + + + abstDomain: A17860 (C-0-T10637-A17860-cpt) + + + + + + + + + + vocSet: T10747 (C-0-T10747-cpt) + + + + + + + + + + + + + + + + vocSet: T16541 (C-0-T16541-cpt) + + + + + + vocSet: T103 (C-0-T103-cpt) + + + + + + + + + + vocSet: T207 (C-0-T207-cpt) + + + + + + + + + + + vocSet: T19435 (C-0-T19435-cpt) + + + + + + vocSet: T19465 (C-0-T19465-cpt) + + + + + + specDomain: S20669 (C-0-T19465-S20669-cpt) + + + + + + + + + + + + + + + + specDomain: S20096 (C-0-T19465-S20096-cpt) + + + + + + + + + + + + + + + + + + + + + + + specDomain: S20097 (C-0-T19465-S20096-S20097-cpt) + + + + + + + + + + specDomain: S20100 (C-0-T19465-S20096-S20100-cpt) + + + + + + + + + + + specDomain: S20106 (C-0-T19465-S20096-S20106-cpt) + + + + + + + + + + + + + specDomain: S20112 (C-0-T19465-S20096-S20112-cpt) + + + + + + + + + + + + + specDomain: S20118 (C-0-T19465-S20096-S20118-cpt) + + + + + + + + + + + + + specDomain: S20126 (C-0-T19465-S20096-S20126-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + specDomain: S20149 (C-0-T19465-S20096-S20149-cpt) + + + + + + + + + + + + + + specDomain: S20159 (C-0-T19465-S20096-S20159-cpt) + + + + + + + + + + + specDomain: S20163 (C-0-T19465-S20096-S20163-cpt) + + + + + + + + + + + + + + specDomain: S20172 (C-0-T19465-S20096-S20172-cpt) + + + + + + + + + + + + + + specDomain: S20179 (C-0-T19465-S20096-S20179-cpt) + + + + + + + + + + + + + + specDomain: S20186 (C-0-T19465-S20096-S20186-cpt) + + + + + + + + + + specDomain: S20189 (C-0-T19465-S20096-S20189-cpt) + + + + + + + + + + + + + + + + + + + + + + specDomain: S20204 (C-0-T19465-S20096-S20204-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + specDomain: S20223 (C-0-T19465-S20096-S20223-cpt) + + + + + + + + + + + + specDomain: S20228 (C-0-T19465-S20096-S20228-cpt) + + + + + + + + + + specDomain: S20231 (C-0-T19465-S20096-S20231-cpt) + + + + + + + + + + + + + + + specDomain: S20239 (C-0-T19465-S20096-S20239-cpt) + + + + + + + + + + + + + + + + + + + + + specDomain: S20253 (C-0-T19465-S20096-S20253-cpt) + + + + + + + + + + + + + + + + + + specDomain: S20264 (C-0-T19465-S20096-S20264-cpt) + + + + + + + + + + + + + + + + + specDomain: S20678 (C-0-T19465-S20678-cpt) + + + + + + + + + + + + specDomain: S20679 (C-0-T19465-S20678-S20679-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + specDomain: S20275 (C-0-T19465-S20275-cpt) + + + + + + + + + + + + + specDomain: S20276 (C-0-T19465-S20275-S20276-cpt) + + + + + + + + + + + + + specDomain: S20283 (C-0-T19465-S20275-S20283-cpt) + + + + + + + + + specDomain: S20285 (C-0-T19465-S20275-S20285-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + specDomain: S20305 (C-0-T19465-S20275-S20305-cpt) + + + + + + + + + + specDomain: S20308 (C-0-T19465-S20308-cpt) + + + + + + + + + + + + specDomain: S20309 (C-0-T19465-S20308-S20309-cpt) + + + + + + + + + + + + + + + + specDomain: S20318 (C-0-T19465-S20318-cpt) + + + + + + + + + + + + + + + + specDomain: S20322 (C-0-T19465-S20318-S20322-cpt) + + + + + + + + + + + + + + + + + + specDomain: S20334 (C-0-T19465-S20334-cpt) + + + + + + + + + + + + + + specDomain: S20337 (C-0-T19465-S20334-S20337-cpt) + + + + + + + + + + + specDomain: S20341 (C-0-T19465-S20334-S20341-cpt) + + + + + + + + + specDomain: S20343 (C-0-T19465-S20343-cpt) + + + + + + + + + + + + specDomain: S20348 (C-0-T19465-S20348-cpt) + + + + + + + + + + + + specDomain: S20349 (C-0-T19465-S20348-S20349-cpt) + + + + + + + + + + + + + + specDomain: S20356 (C-0-T19465-S20348-S20356-cpt) + + + + + + + + + + + + + + + + + specDomain: S20800 (C-0-T19465-S20800-cpt) + + + + + + + + + + specDomain: S20728 (C-0-T19465-S20728-cpt) + + + + + + + + + + + + specDomain: S20733 (C-0-T19465-S20733-cpt) + + + + + + + + + + + + + + + specDomain: S20735 (C-0-T19465-S20733-S20735-cpt) + + + + + + + + + specDomain: S20737 (C-0-T19465-S20733-S20737-cpt) + + + + + + + + + + + + specDomain: S20741 (C-0-T19465-S20733-S20741-cpt) + + + + + + + + + + + specDomain: S20746 (C-0-T19465-S20733-S20746-cpt) + + + + + + + + + specDomain: S20749 (C-0-T19465-S20749-cpt) + + + + + + + + + + + specDomain: S20753 (C-0-T19465-S20753-cpt) + + + + + + + + + + + + specDomain: S20366 (C-0-T19465-S20366-cpt) + + + + + + + + + + + + + + + specDomain: S20370 (C-0-T19465-S20366-S20370-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + specDomain: S20425 (C-0-T19465-S20425-cpt) + + + + + + + + + + + + + + + + + + + + specDomain: S20432 (C-0-T19465-S20425-S20432-cpt) + + + + + + + + + + specDomain: S20758 (C-0-T19465-S20758-cpt) + + + + + + + + + + + + + + + + + + specDomain: S20820 (C-0-T19465-S20758-S20820-cpt) + + + + + + + + + + specDomain: S20761 (C-0-T19465-S20758-S20761-cpt) + + + + + + + + + specDomain: S20765 (C-0-T19465-S20758-S20765-cpt) + + + + + + + + + specDomain: S20434 (C-0-T19465-S20434-cpt) + + + + + + + + + + + + + + + + + + + + + + specDomain: S20436 (C-0-T19465-S20434-S20436-cpt) + + + + + + + + + + specDomain: S20448 (C-0-T19465-S20434-S20448-cpt) + + + + + + + + + + + + + + + + specDomain: S20453 (C-0-T19465-S20434-S20448-S20453-cpt) + + + + + + + + + specDomain: S20455 (C-0-T19465-S20455-cpt) + + + + + + + + + + + + + specDomain: S20456 (C-0-T19465-S20455-S20456-cpt) + + + + + + + + + + + + + specDomain: S20463 (C-0-T19465-S20463-cpt) + + + + + + + + + + + + + + + specDomain: S20465 (C-0-T19465-S20463-S20465-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + specDomain: S20501 (C-0-T19465-S20463-S20501-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + specDomain: S20519 (C-0-T19465-S20463-S20501-S20519-cpt) + + + + + + + + + + specDomain: S20522 (C-0-T19465-S20522-cpt) + + + + + + + + + + + + + specDomain: S20524 (C-0-T19465-S20522-S20524-cpt) + + + + + + + + + + + + + + + specDomain: S20766 (C-0-T19465-S20766-cpt) + + + + + + + + + + + + + + + + + + specDomain: S20769 (C-0-T19465-S20766-S20769-cpt) + + + + + + + + + specDomain: S20532 (C-0-T19465-S20532-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + specDomain: S20538 (C-0-T19465-S20532-S20538-cpt) + + + + + + + + + + + + + + specDomain: S20548 (C-0-T19465-S20532-S20548-cpt) + + + + + + + + + + + + + + + + + + specDomain: S20563 (C-0-T19465-S20532-S20563-cpt) + + + + + + + + + + specDomain: S20567 (C-0-T19465-S20532-S20567-cpt) + + + + + + + + + + + + + + + + + + + + + specDomain: S20581 (C-0-T19465-S20532-S20581-cpt) + + + + + + + + + + + + + + + + + + + + + specDomain: S20595 (C-0-T19465-S20532-S20595-cpt) + + + + + + + + + + specDomain: S20770 (C-0-T19465-S20770-cpt) + + + + + + + + + + + + specDomain: S20771 (C-0-T19465-S20770-S20771-cpt) + + + + + + + + + + + + specDomain: S20598 (C-0-T19465-S20598-cpt) + + + + + + + + + + + + + + + specDomain: S20599 (C-0-T19465-S20598-S20599-cpt) + + + + + + + + + + specDomain: S20604 (C-0-T19465-S20598-S20604-cpt) + + + + + + + + + + specDomain: S20772 (C-0-T19465-S20772-cpt) + + + + + + + + + + + + + + + + + + + + + specDomain: S20774 (C-0-T19465-S20772-S20774-cpt) + + + + + + + + + + + + + specDomain: S20608 (C-0-T19465-S20608-cpt) + + + + + + + + + + + + + specDomain: S20609 (C-0-T19465-S20608-S20609-cpt) + + + + + + + + + + + + + + + + + + + + + specDomain: S20623 (C-0-T19465-S20608-S20623-cpt) + + + + + + + + + + + specDomain: S20627 (C-0-T19465-S20608-S20627-cpt) + + + + + + + + + + + specDomain: S20631 (C-0-T19465-S20608-S20631-cpt) + + + + + + + + + + + + + + + + + + + + specDomain: S20644 (C-0-T19465-S20608-S20644-cpt) + + + + + + + + + + + + + + + + + + + specDomain: S20657 (C-0-T19465-S20608-S20657-cpt) + + + + + + + + + specDomain: S20659 (C-0-T19465-S20608-S20659-cpt) + + + + + + + + + + + + + specDomain: S20665 (C-0-T19465-S20608-S20665-cpt) + + + + + + + + + + + specDomain: S20788 (C-0-T19465-S20788-cpt) + + + + + + + + + + + + + + + + + + + specDomain: S20789 (C-0-T19465-S20788-S20789-cpt) + + + + + + + + + + + vocSet: T19726 (C-0-T19726-cpt) + + + + + + abstDomain: A19819 (C-0-T19726-A19819-cpt) + + + + + + + + + + abstDomain: A19727 (C-0-T19726-A19727-cpt) + + + + + + + + + + vocSet: T91 (C-0-T91-cpt) + + + + + + + + + vocSet: T126 (C-0-T126-cpt) + + + + + + + + + + + vocSet: T19911 (C-0-T19911-cpt) + + + + + + + + vocSet: T208 (C-0-T208-cpt) + + + + + + + + + + + vocSet: T18899 (C-0-T18899-cpt) + + + + + + + + + + + + vocSet: E18 (C-0-E18-cpt) + + + + + + vocSet: E21 (C-0-E21-cpt) + + + + + + vocSet: E22 (C-0-E22-cpt) + + + + + + vocSet: T14914 (C-0-T14914-cpt) + + + + + + + + + + + + specDomain: S15743 (C-0-T14914-S15743-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + specDomain: S15768 (C-0-T14914-S15768-cpt) + + + + + + + + + + + + + + + + + + + + + + + specDomain: S15771 (C-0-T14914-S15768-S15771-cpt) + + + + + + + + + + + + + + specDomain: S15787 (C-0-T14914-S15787-cpt) + + + + + + + + + + + + + specDomain: S15808 (C-0-T14914-S15787-S15808-cpt) + + + + + + + + + + + + specDomain: S15794 (C-0-T14914-S15787-S15794-cpt) + + + + + + + + + + + + + + + + + + + + + specDomain: S15788 (C-0-T14914-S15787-S15788-cpt) + + + + + + + + + + + + + specDomain: S14915 (C-0-T14914-S14915-cpt) + + + + + + + + + + + + specDomain: S15470 (C-0-T14914-S14915-S15470-cpt) + + + + + + + + + + + + specDomain: S15471 (C-0-T14914-S14915-S15470-S15471-cpt) + + + + + + + + + + + + specDomain: S15472 (C-0-T14914-S14915-S15470-S15471-S15472-cpt) + + + + + + + + + specDomain: S15543 (C-0-T14914-S14915-S15470-S15471-S15543-cpt) + + + + + + + + + + + + specDomain: S15544 (C-0-T14914-S14915-S15470-S15471-S15543-S15544-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + specDomain: S15567 (C-0-T14914-S14915-S15470-S15471-S15543-S15567-cpt) + + + + + + + + + specDomain: S15690 (C-0-T14914-S14915-S15470-S15690-cpt) + + + + + + + + + + + + + + + specDomain: S15691 (C-0-T14914-S14915-S15470-S15690-S15691-cpt) + + + + + + + + + + specDomain: S16466 (C-0-T14914-S14915-S15470-S15690-S16466-cpt) + + + + + + + + + + + + + + + + + + specDomain: S15705 (C-0-T14914-S14915-S15470-S15690-S15705-cpt) + + + + + + + + + + + + specDomain: S15711 (C-0-T14914-S14915-S15470-S15690-S15711-cpt) + + + + + + + + + + + + + + + + specDomain: S15722 (C-0-T14914-S14915-S15470-S15690-S15722-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + + specDomain: S15569 (C-0-T14914-S14915-S15470-S15569-cpt) + + + + + + + + + + + + + specDomain: S15571 (C-0-T14914-S14915-S15470-S15569-S15571-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + specDomain: S15617 (C-0-T14914-S14915-S15470-S15569-S15617-cpt) + + + + + + + + + + + specDomain: S15621 (C-0-T14914-S14915-S15470-S15569-S15621-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + specDomain: S14916 (C-0-T14914-S14915-S14916-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + specDomain: S14972 (C-0-T14914-S14915-S14916-S14972-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + specDomain: S14919 (C-0-T14914-S14915-S14916-S14919-cpt) + + + + + + + + + + + + + + + + + specDomain: S14929 (C-0-T14914-S14915-S14916-S14929-cpt) + + + + + + + + + + + specDomain: S14935 (C-0-T14914-S14915-S14916-S14935-cpt) + + + + + + + + + specDomain: S14941 (C-0-T14914-S14915-S14916-S14941-cpt) + + + + + + + + + specDomain: S14943 (C-0-T14914-S14915-S14916-S14943-cpt) + + + + + + + + + + + + + + + specDomain: S14951 (C-0-T14914-S14915-S14916-S14951-cpt) + + + + + + + + + + + + + + + + + + + + + specDomain: S14975 (C-0-T14914-S14915-S14916-S14975-cpt) + + + + + + + + + + specDomain: S14979 (C-0-T14914-S14915-S14916-S14979-cpt) + + + + + + + + + + + + + + + + + + specDomain: S14991 (C-0-T14914-S14915-S14916-S14991-cpt) + + + + + + + + + + specDomain: S14995 (C-0-T14914-S14915-S14916-S14995-cpt) + + + + + + + + + + specDomain: S14999 (C-0-T14914-S14915-S14916-S14999-cpt) + + + + + + + + + + + + + + + specDomain: S15007 (C-0-T14914-S14915-S14916-S15007-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + specDomain: S15033 (C-0-T14914-S14915-S14916-S15033-cpt) + + + + + + + + + specDomain: S15036 (C-0-T14914-S14915-S14916-S15036-cpt) + + + + + + + + + + + + + specDomain: S15042 (C-0-T14914-S14915-S14916-S15042-cpt) + + + + + + + + + specDomain: S15049 (C-0-T14914-S14915-S14916-S15049-cpt) + + + + + + + + + specDomain: S15055 (C-0-T14914-S14915-S14916-S15055-cpt) + + + + + + + + + specDomain: S15059 (C-0-T14914-S14915-S14916-S15059-cpt) + + + + + + + + + + + + + + + + + + + + specDomain: S15074 (C-0-T14914-S14915-S14916-S15074-cpt) + + + + + + + + + specDomain: S15076 (C-0-T14914-S14915-S14916-S15076-cpt) + + + + + + + + + + + + + + specDomain: S15083 (C-0-T14914-S14915-S14916-S15083-cpt) + + + + + + + + + + + + + + + + + specDomain: S15093 (C-0-T14914-S14915-S14916-S15093-cpt) + + + + + + + + + + + + + + + + + + + + + + + specDomain: S15116 (C-0-T14914-S14915-S14916-S15116-cpt) + + + + + + + + + specDomain: S15120 (C-0-T14914-S14915-S14916-S15120-cpt) + + + + + + + + + + specDomain: S15126 (C-0-T14914-S14915-S14916-S15126-cpt) + + + + + + + + + + specDomain: S15129 (C-0-T14914-S14915-S14916-S15129-cpt) + + + + + + + + + + + + + + + + + + specDomain: S15144 (C-0-T14914-S14915-S14916-S15144-cpt) + + + + + + + + + + specDomain: S15147 (C-0-T14914-S14915-S14916-S15147-cpt) + + + + + + + + + specDomain: S15149 (C-0-T14914-S14915-S14916-S15149-cpt) + + + + + + + + + + + specDomain: S15157 (C-0-T14914-S14915-S14916-S15157-cpt) + + + + + + + + + + + + specDomain: S15162 (C-0-T14914-S14915-S14916-S15162-cpt) + + + + + + + + + + + + + + + specDomain: S15172 (C-0-T14914-S14915-S14916-S15172-cpt) + + + + + + + + + + specDomain: S15180 (C-0-T14914-S14915-S14916-S15180-cpt) + + + + + + + + + + + specDomain: S15185 (C-0-T14914-S14915-S14916-S15185-cpt) + + + + + + + + + specDomain: S15194 (C-0-T14914-S14915-S14916-S15194-cpt) + + + + + + + + + + + specDomain: S15200 (C-0-T14914-S14915-S14916-S15200-cpt) + + + + + + + + + + + + + + + + + + specDomain: S15215 (C-0-T14914-S14915-S14916-S15215-cpt) + + + + + + + + + + + specDomain: S15219 (C-0-T14914-S14915-S14916-S15219-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + specDomain: S15242 (C-0-T14914-S14915-S14916-S15242-cpt) + + + + + + + + + + specDomain: S15245 (C-0-T14914-S14915-S14916-S15245-cpt) + + + + + + + + + specDomain: S15248 (C-0-T14914-S14915-S14916-S15248-cpt) + + + + + + + + + specDomain: S15250 (C-0-T14914-S14915-S14916-S15250-cpt) + + + + + + + + + specDomain: S15252 (C-0-T14914-S14915-S14916-S15252-cpt) + + + + + + + + + + specDomain: S15257 (C-0-T14914-S14915-S14916-S15257-cpt) + + + + + + + + + + + + + + + + specDomain: S15266 (C-0-T14914-S14915-S14916-S15266-cpt) + + + + + + + + + + specDomain: S15269 (C-0-T14914-S14915-S14916-S15269-cpt) + + + + + + + + + + + + + + + specDomain: S15278 (C-0-T14914-S14915-S14916-S15278-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + specDomain: S15306 (C-0-T14914-S14915-S14916-S15306-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + specDomain: S15333 (C-0-T14914-S14915-S14916-S15333-cpt) + + + + + + + + + + + specDomain: S15342 (C-0-T14914-S14915-S14916-S15342-cpt) + + + + + + + + + + + + + specDomain: S15348 (C-0-T14914-S14915-S14916-S15348-cpt) + + + + + + + + + specDomain: S15351 (C-0-T14914-S14915-S14916-S15351-cpt) + + + + + + + + + + specDomain: S15356 (C-0-T14914-S14915-S14916-S15356-cpt) + + + + + + + + + + + + + + + + + + + + + + specDomain: S15371 (C-0-T14914-S14915-S14916-S15371-cpt) + + + + + + + + + + + specDomain: S15376 (C-0-T14914-S14915-S14916-S15376-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + specDomain: S15414 (C-0-T14914-S14915-S14916-S15414-cpt) + + + + + + + + + + + + specDomain: S15423 (C-0-T14914-S14915-S14916-S15423-cpt) + + + + + + + + + specDomain: S15425 (C-0-T14914-S14915-S14916-S15425-cpt) + + + + + + + + + + + specDomain: S15431 (C-0-T14914-S14915-S14916-S15431-cpt) + + + + + + + + + + specDomain: S15436 (C-0-T14914-S14915-S14916-S15436-cpt) + + + + + + + + + + + specDomain: S15442 (C-0-T14914-S14915-S14916-S15442-cpt) + + + + + + + + + + specDomain: S15460 (C-0-T14914-S14915-S14916-S15460-cpt) + + + + + + + + + + + + + + + specDomain: S15468 (C-0-T14914-S14915-S14916-S15468-cpt) + + + + + + + + + specDomain: S14965 (C-0-T14914-S14915-S14916-S14965-cpt) + + + + + + + + + + + + + specDomain: S15447 (C-0-T14914-S14915-S14916-S15447-cpt) + + + + + + + + + specDomain: S15451 (C-0-T14914-S14915-S14916-S15451-cpt) + + + + + + + + + + specDomain: S15455 (C-0-T14914-S14915-S14916-S15455-cpt) + + + + + + + + + + + specDomain: S15814 (C-0-T14914-S15814-cpt) + + + + + + + + + + + + specDomain: S15834 (C-0-T14914-S15814-S15834-cpt) + + + + + + + + specDomain: S15815 (C-0-T14914-S15814-S15815-cpt) + + + + + + + + + + + + + + + + specDomain: S15824 (C-0-T14914-S15814-S15824-cpt) + + + + + + + + + + + + + + + + + vocSet: D37 (C-0-D37-cpt) + + + + + + vocSet: D38 (C-0-D38-cpt) + + + + + + vocSet: T209 (C-0-T209-cpt) + + + + + + + + + + + + + + + vocSet: T10365 (C-0-T10365-cpt) + + + + + + + + + + vocSet: T19185 (C-0-T19185-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + vocSet: T14761 (C-0-T14761-cpt) + + + + + + + + + + + + + + vocSet: T394 (C-0-T394-cpt) + + + + + + + + + + vocSet: T19650 (C-0-T19650-cpt) + + + + + + + + + + vocSet: T11555 (C-0-T11555-cpt) + + + + + + specDomain: S13940 (C-0-T11555-S13940-cpt) + + + + + + + + + + + + abstDomain: A19313 (C-0-T11555-S13940-A19313-cpt) + + + + + + + + + + abstDomain: A19316 (C-0-T11555-S13940-A19313-A19316-cpt) + + + + + + + + + + + + + abstDomain: A10416 (C-0-T11555-S13940-A19313-A19316-A10416-cpt) + + + + + + + + + + + + + + + + + + + + + + + + specDomain: S14006 (C-0-T11555-S13940-A19313-A19316-A10416-S14006-cpt) + + + + + + + + + + + + + specDomain: S11595 (C-0-T11555-S13940-A19313-A19316-A10416-S14006-S11595-cpt) + + + + + + + + + + + + + + specDomain: S12205 (C-0-T11555-S13940-A19313-A19316-A10416-S14006-S11595-S12205-cpt) + + + + + + + + + + specDomain: S14011 (C-0-T11555-S13940-A19313-A19316-A10416-S14011-cpt) + + + + + + + + + + + + + + specDomain: S21957 (C-0-T11555-S13940-A19313-A19316-A10416-S14011-S21957-cpt) + + + + + + + + + + + specDomain: S11569 (C-0-T11555-S13940-A19313-A19316-A10416-S11569-cpt) + + + + + + + + + specDomain: S21464 (C-0-T11555-S13940-A19313-A19316-A10416-S21464-cpt) + + + + + + + + + + specDomain: S16773 (C-0-T11555-S13940-A19313-A19316-A10416-S16773-cpt) + + + + + + + + + + abstDomain: A19105 (C-0-T11555-S13940-A19313-A19105-cpt) + + + + + + + + + + + + + + + + + + + + + + + + specDomain: S10418 (C-0-T11555-S13940-A19313-A19105-S10418-cpt) + + + + + + + + + specDomain: S11580 (C-0-T11555-S13940-A19313-A19105-S11580-cpt) + + + + + + + + + specDomain: S16927 (C-0-T11555-S13940-A19313-A19105-S16927-cpt) + + + + + + + + + + abstDomain: A10428 (C-0-T11555-S13940-A10428-cpt) + + + + + + + + + + + + + specDomain: S10441 (C-0-T11555-S13940-A10428-S10441-cpt) + + + + + + + + + specDomain: S22399 (C-0-T11555-S13940-A10428-S22399-cpt) + + + + + + + + + + abstDomain: A10429 (C-0-T11555-S13940-A10429-cpt) + + + + + + + + + + + + + specDomain: S22350 (C-0-T11555-S13940-A10429-S22350-cpt) + + + + + + + + + + specDomain: S10430 (C-0-T11555-S13940-A10429-S10430-cpt) + + + + + + + + + + + + + + specDomain: S19089 (C-0-T11555-S13940-A10429-S10430-S19089-cpt) + + + + + + + + + + + + specDomain: S10433 (C-0-T11555-S13940-A10429-S10430-S10433-cpt) + + + + + + + + + + + specDomain: S16815 (C-0-T11555-S13940-A10429-S16815-cpt) + + + + + + + + + specDomain: S19102 (C-0-T11555-S13940-A10429-S19102-cpt) + + + + + + + + + specDomain: S11591 (C-0-T11555-S13940-A10429-S11591-cpt) + + + + + + + + + + abstDomain: A19352 (C-0-T11555-A19352-cpt) + + + + + + + + + + + abstDomain: A19367 (C-0-T11555-A19367-cpt) + + + + + + + + + + abstDomain: A19368 (C-0-T11555-A19368-cpt) + + + + + + + + + abstDomain: A16772 (C-0-T11555-A16772-cpt) + + + + + + + + + abstDomain: A19382 (C-0-T11555-A19382-cpt) + + + + + + + + + + + abstDomain: A14008 (C-0-T11555-A14008-cpt) + + + + + + + + + + + abstDomain: A14013 (C-0-T11555-A14013-cpt) + + + + + + + + + abstDomain: A16930 (C-0-T11555-A16930-cpt) + + + + + + + + + abstDomain: A19395 (C-0-T11555-A19395-cpt) + + + + + + + + + + + + vocSet: O20107 (C-0-O20107-cpt) + + + + + + vocSet: O20108 (C-0-O20108-cpt) + + + + + + vocSet: O20272 (C-0-O20272-cpt) + + + + + + vocSet: O20271 (C-0-O20271-cpt) + + + + + + vocSet: O20273 (C-0-O20273-cpt) + + + + + + vocSet: O20109 (C-0-O20109-cpt) + + + + + + vocSet: O20111 (C-0-O20111-cpt) + + + + + + vocSet: O20110 (C-0-O20110-cpt) + + + + + + vocSet: O20112 (C-0-O20112-cpt) + + + + + + vocSet: O20113 (C-0-O20113-cpt) + + + + + + vocSet: O20114 (C-0-O20114-cpt) + + + + + + vocSet: O20115 (C-0-O20115-cpt) + + + + + + vocSet: O20116 (C-0-O20116-cpt) + + + + + + vocSet: O20117 (C-0-O20117-cpt) + + + + + + vocSet: O20118 (C-0-O20118-cpt) + + + + + + vocSet: O20119 (C-0-O20119-cpt) + + + + + + vocSet: O20120 (C-0-O20120-cpt) + + + + + + vocSet: O20125 (C-0-O20125-cpt) + + + + + + vocSet: O20126 (C-0-O20126-cpt) + + + + + + vocSet: O20121 (C-0-O20121-cpt) + + + + + + vocSet: O20122 (C-0-O20122-cpt) + + + + + + vocSet: O20123 (C-0-O20123-cpt) + + + + + + vocSet: O20170 (C-0-O20170-cpt) + + + + + + vocSet: O20124 (C-0-O20124-cpt) + + + + + + vocSet: O20129 (C-0-O20129-cpt) + + + + + + vocSet: O20128 (C-0-O20128-cpt) + + + + + + vocSet: O20130 (C-0-O20130-cpt) + + + + + + vocSet: O20270 (C-0-O20270-cpt) + + + + + + + + + vocSet: O20131 (C-0-O20131-cpt) + + + + + + vocSet: O20132 (C-0-O20132-cpt) + + + + + + vocSet: O20133 (C-0-O20133-cpt) + + + + + + vocSet: O20134 (C-0-O20134-cpt) + + + + + + vocSet: O20136 (C-0-O20136-cpt) + + + + + + vocSet: O20137 (C-0-O20137-cpt) + + + + + + vocSet: O20135 (C-0-O20135-cpt) + + + + + + vocSet: O20139 (C-0-O20139-cpt) + + + + + + vocSet: O20161 (C-0-O20161-cpt) + + + + + + vocSet: O20138 (C-0-O20138-cpt) + + + + + + vocSet: O20140 (C-0-O20140-cpt) + + + + + + vocSet: O20143 (C-0-O20143-cpt) + + + + + + vocSet: O20141 (C-0-O20141-cpt) + + + + + + vocSet: O20142 (C-0-O20142-cpt) + + + + + + vocSet: O20157 (C-0-O20157-cpt) + + + + + + vocSet: O20144 (C-0-O20144-cpt) + + + + + + vocSet: O20147 (C-0-O20147-cpt) + + + + + + vocSet: O20145 (C-0-O20145-cpt) + + + + + + vocSet: O20146 (C-0-O20146-cpt) + + + + + + vocSet: O20148 (C-0-O20148-cpt) + + + + + + vocSet: O20149 (C-0-O20149-cpt) + + + + + + vocSet: O20151 (C-0-O20151-cpt) + + + + + + vocSet: O20150 (C-0-O20150-cpt) + + + + + + vocSet: O20152 (C-0-O20152-cpt) + + + + + + vocSet: O20154 (C-0-O20154-cpt) + + + + + + vocSet: O20155 (C-0-O20155-cpt) + + + + + + vocSet: O20156 (C-0-O20156-cpt) + + + + + + vocSet: O20162 (C-0-O20162-cpt) + + + + + + vocSet: O20158 (C-0-O20158-cpt) + + + + + + vocSet: O20153 (C-0-O20153-cpt) + + + + + + vocSet: O20127 (C-0-O20127-cpt) + + + + + + vocSet: O20159 (C-0-O20159-cpt) + + + + + + vocSet: O20163 (C-0-O20163-cpt) + + + + + + vocSet: O20160 (C-0-O20160-cpt) + + + + + + vocSet: O20164 (C-0-O20164-cpt) + + + + + + vocSet: O20167 (C-0-O20167-cpt) + + + + + + vocSet: O20165 (C-0-O20165-cpt) + + + + + + vocSet: O20166 (C-0-O20166-cpt) + + + + + + vocSet: O20168 (C-0-O20168-cpt) + + + + + + vocSet: O20169 (C-0-O20169-cpt) + + + + + + vocSet: O20171 (C-0-O20171-cpt) + + + + + + vocSet: O20173 (C-0-O20173-cpt) + + + + + + vocSet: O20172 (C-0-O20172-cpt) + + + + + + vocSet: O20175 (C-0-O20175-cpt) + + + + + + vocSet: O20176 (C-0-O20176-cpt) + + + + + + vocSet: O20174 (C-0-O20174-cpt) + + + + + + vocSet: O20177 (C-0-O20177-cpt) + + + + + + vocSet: O20178 (C-0-O20178-cpt) + + + + + + vocSet: O20179 (C-0-O20179-cpt) + + + + + + vocSet: O20180 (C-0-O20180-cpt) + + + + + + vocSet: T12206 (C-0-T12206-cpt) + + + + + + abstDomain: A19678 (C-0-T12206-A19678-cpt) + + + + + + abstDomain: A19690 (C-0-T12206-A19690-cpt) + + + + + + + + + + abstDomain: A19877 (C-0-T12206-A19690-A19877-cpt) + + + + + + + + + abstDomain: A19853 (C-0-T12206-A19690-A19853-cpt) + + + + + + + + + + specDomain: S22030 (C-0-T12206-A19690-S22030-cpt) + + + + + + + + + + + + + + + specDomain: S22034 (C-0-T12206-A19690-S22030-S22034-cpt) + + + + + + + + + + + abstDomain: A19679 (C-0-T12206-A19679-cpt) + + + + + + + + + + abstDomain: A19869 (C-0-T12206-A19679-A19869-cpt) + + + + + + + + + + + + + + + specDomain: S22157 (C-0-T12206-A19679-A19869-S22157-cpt) + + + + + + + + + + abstDomain: A19748 (C-0-T12206-A19679-A19748-cpt) + + + + + + + + + + + + + + abstDomain: A16501 (C-0-T12206-A16501-cpt) + + + + + + abstDomain: A19680 (C-0-T12206-A19680-cpt) + + + + + + abstDomain: A15920 (C-0-T12206-A15920-cpt) + + + + + + + + + + + + + abstDomain: A17622 (C-0-T12206-A15920-A17622-cpt) + + + + + + + + + + abstDomain: A19637 (C-0-T12206-A19637-cpt) + + + + + + abstDomain: A19681 (C-0-T12206-A19681-cpt) + + + + + + abstDomain: A19682 (C-0-T12206-A19682-cpt) + + + + + + abstDomain: A20274 (C-0-T12206-A20274-cpt) + + + + + + abstDomain: A19683 (C-0-T12206-A19683-cpt) + + + + + + abstDomain: A16368 (C-0-T12206-A16368-cpt) + + + + + + + + + + + + + + + + + + + + + + + + abstDomain: A19720 (C-0-T12206-A19720-cpt) + + + + + + + + + + + + abstDomain: A15925 (C-0-T12206-A15925-cpt) + + + + + + + + abstDomain: A19263 (C-0-T12206-A19263-cpt) + + + + + + abstDomain: A19684 (C-0-T12206-A19684-cpt) + + + + + + abstDomain: A19563 (C-0-T12206-A19563-cpt) + + + + + + + + + + + + + specDomain: S17926 (C-0-T12206-A19563-S17926-cpt) + + + + + + + + + + + + + + specDomain: S16360 (C-0-T12206-A19563-S17926-S16360-cpt) + + + + + + + + + + + + specDomain: S11564 (C-0-T12206-A19563-S17926-S16360-S11564-cpt) + + + + + + + + + + specDomain: S11563 (C-0-T12206-A19563-S17926-S16360-S11563-cpt) + + + + + + + + + + specDomain: S11565 (C-0-T12206-A19563-S17926-S16360-S11565-cpt) + + + + + + + + + + specDomain: S17930 (C-0-T12206-A19563-S17926-S16360-S17930-cpt) + + + + + + + + + + specDomain: S11562 (C-0-T12206-A19563-S17926-S16360-S11562-cpt) + + + + + + + + + + specDomain: S19748 (C-0-T12206-A19563-S17926-S19748-cpt) + + + + + + + + + + specDomain: S19749 (C-0-T12206-A19563-S17926-S19749-cpt) + + + + + + + + + + specDomain: S19753 (C-0-T12206-A19563-S17926-S19753-cpt) + + + + + + + + + + specDomain: S19745 (C-0-T12206-A19563-S17926-S19745-cpt) + + + + + + + + + + specDomain: S16349 (C-0-T12206-A19563-S17926-S16349-cpt) + + + + + + + + + + + + + + + + specDomain: S19739 (C-0-T12206-A19563-S17926-S19739-cpt) + + + + + + + + + + + + + + + + specDomain: S19750 (C-0-T12206-A19563-S17926-S19750-cpt) + + + + + + + + + + specDomain: S16346 (C-0-T12206-A19563-S17926-S16346-cpt) + + + + + + + + + + + + + + specDomain: S19764 (C-0-T12206-A19563-S17926-S16346-S19764-cpt) + + + + + + + + + + + + + specDomain: S19765 (C-0-T12206-A19563-S17926-S16346-S19764-S19765-cpt) + + + + + + + + + specDomain: S19770 (C-0-T12206-A19563-S17926-S16346-S19770-cpt) + + + + + + + + + + specDomain: S19767 (C-0-T12206-A19563-S17926-S16346-S19767-cpt) + + + + + + + + + + specDomain: S11567 (C-0-T12206-A19563-S17926-S11567-cpt) + + + + + + + + + + + + + + specDomain: S19776 (C-0-T12206-A19563-S17926-S11567-S19776-cpt) + + + + + + + + + + specDomain: S19773 (C-0-T12206-A19563-S17926-S11567-S19773-cpt) + + + + + + + + + + specDomain: S19782 (C-0-T12206-A19563-S17926-S11567-S19782-cpt) + + + + + + + + + + specDomain: S19779 (C-0-T12206-A19563-S17926-S11567-S19779-cpt) + + + + + + + + + + specDomain: S19755 (C-0-T12206-A19563-S17926-S19755-cpt) + + + + + + + + + + + + specDomain: S19742 (C-0-T12206-A19563-S17926-S19755-S19742-cpt) + + + + + + + + + + abstDomain: A19809 (C-0-T12206-A19809-cpt) + + + + + + + + + + abstDomain: A18877 (C-0-T12206-A19809-A18877-cpt) + + + + + + + + + + + + + + + + abstDomain: A19805 (C-0-T12206-A19809-A19805-cpt) + + + + + + + + + + abstDomain: A19810 (C-0-T12206-A19809-A19805-A19810-cpt) + + + + + + + + + + abstDomain: A19815 (C-0-T12206-A19809-A19805-A19815-cpt) + + + + + + + + + + + + + + abstDomain: A19813 (C-0-T12206-A19809-A19805-A19813-cpt) + + + + + + + + + + + + + specDomain: S21318 (C-0-T12206-A19809-A19805-A19813-S21318-cpt) + + + + + + + + + + abstDomain: A19811 (C-0-T12206-A19809-A19805-A19811-cpt) + + + + + + + + + + + + + + + + abstDomain: A19814 (C-0-T12206-A19809-A19805-A19814-cpt) + + + + + + + + + + + + + specDomain: S21968 (C-0-T12206-A19809-A19805-A19814-S21968-cpt) + + + + + + + + + + + abstDomain: A19851 (C-0-T12206-A19851-cpt) + + + + + + abstDomain: A19836 (C-0-T12206-A19836-cpt) + + + + + + abstDomain: A19685 (C-0-T12206-A19685-cpt) + + + + + + abstDomain: A19417 (C-0-T12206-A19417-cpt) + + + + + + + + + abstDomain: A17660 (C-0-T12206-A17660-cpt) + + + + + + + + + + abstDomain: A19450 (C-0-T12206-A17660-A19450-cpt) + + + + + + + + + + abstDomain: A10588 (C-0-T12206-A17660-A19450-A10588-cpt) + + + + + + + + + + specDomain: S10902 (C-0-T12206-A17660-A19450-A10588-S10902-cpt) + + + + + + + + + + + + specDomain: S10903 (C-0-T12206-A17660-A19450-A10588-S10902-S10903-cpt) + + + + + + + + + + specDomain: S10906 (C-0-T12206-A17660-A19450-A10588-S10902-S10906-cpt) + + + + + + + + + + specDomain: S10908 (C-0-T12206-A17660-A19450-A10588-S10902-S10908-cpt) + + + + + + + + + + + specDomain: S10602 (C-0-T12206-A17660-A19450-A10588-S10602-cpt) + + + + + + + + + + + + + specDomain: S13792 (C-0-T12206-A17660-A19450-A10588-S10602-S13792-cpt) + + + + + + + + + specDomain: S10603 (C-0-T12206-A17660-A19450-A10588-S10602-S10603-cpt) + + + + + + + + + + + + + + specDomain: S13798 (C-0-T12206-A17660-A19450-A10588-S10602-S10603-S13798-cpt) + + + + + + + + + + + specDomain: S13799 (C-0-T12206-A17660-A19450-A10588-S10602-S13799-cpt) + + + + + + + + specDomain: S10604 (C-0-T12206-A17660-A19450-A10588-S10602-S10604-cpt) + + + + + + + + + specDomain: S10596 (C-0-T12206-A17660-A19450-A10588-S10596-cpt) + + + + + + + + + + + + + + + + + + + + + + + + specDomain: S10598 (C-0-T12206-A17660-A19450-A10588-S10596-S10598-cpt) + + + + + + + + + specDomain: S10599 (C-0-T12206-A17660-A19450-A10588-S10596-S10599-cpt) + + + + + + + + + + + + specDomain: S10920 (C-0-T12206-A17660-A19450-A10588-S10596-S10920-cpt) + + + + + + + + + + + + specDomain: S10916 (C-0-T12206-A17660-A19450-A10588-S10596-S10920-S10916-cpt) + + + + + + + + + specDomain: S10605 (C-0-T12206-A17660-A19450-A10588-S10605-cpt) + + + + + + + + + + specDomain: S10589 (C-0-T12206-A17660-A19450-A10588-S10589-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + specDomain: S10590 (C-0-T12206-A17660-A19450-A10588-S10589-S10590-cpt) + + + + + + + + + specDomain: S10931 (C-0-T12206-A17660-A19450-A10588-S10589-S10931-cpt) + + + + + + + + + specDomain: S10934 (C-0-T12206-A17660-A19450-A10588-S10589-S10934-cpt) + + + + + + + + + specDomain: S10936 (C-0-T12206-A17660-A19450-A10588-S10589-S10936-cpt) + + + + + + + + + specDomain: S10939 (C-0-T12206-A17660-A19450-A10588-S10589-S10939-cpt) + + + + + + + + + specDomain: S10947 (C-0-T12206-A17660-A19450-A10588-S10589-S10947-cpt) + + + + + + + + + specDomain: S10943 (C-0-T12206-A17660-A19450-A10588-S10589-S10943-cpt) + + + + + + + + + specDomain: S10949 (C-0-T12206-A17660-A19450-A10588-S10589-S10949-cpt) + + + + + + + + + specDomain: S10953 (C-0-T12206-A17660-A19450-A10588-S10589-S10953-cpt) + + + + + + + + + + + + + + + + specDomain: S10593 (C-0-T12206-A17660-A19450-A10588-S10589-S10593-cpt) + + + + + + + + + specDomain: S10968 (C-0-T12206-A17660-A19450-A10588-S10589-S10968-cpt) + + + + + + + + + + specDomain: S10607 (C-0-T12206-A17660-A19450-A10588-S10607-cpt) + + + + + + + + + + + abstDomain: A19452 (C-0-T12206-A17660-A19450-A19452-cpt) + + + + + + + + + + + + + specDomain: S18100 (C-0-T12206-A17660-A19450-A19452-S18100-cpt) + + + + + + + + + abstDomain: A19451 (C-0-T12206-A17660-A19451-cpt) + + + + + + + + + + + + abstDomain: A16515 (C-0-T12206-A16515-cpt) + + + + + + + + + + + + + + + + specDomain: S16521 (C-0-T12206-A16515-S16521-cpt) + + + + + + + + + + + + + abstDomain: A18105 (C-0-T12206-A18105-cpt) + + + + + + + + + + + vocSet: O20182 (C-0-O20182-cpt) + + + + + + vocSet: O20184 (C-0-O20184-cpt) + + + + + + vocSet: O20185 (C-0-O20185-cpt) + + + + + + vocSet: O20183 (C-0-O20183-cpt) + + + + + + vocSet: O20181 (C-0-O20181-cpt) + + + + + + vocSet: O20186 (C-0-O20186-cpt) + + + + + + vocSet: T11603 (C-0-T11603-cpt) + + + + + + specDomain: S21429 (C-0-T11603-S21429-cpt) + + + + + + + + + + + + + + vocSet: T15999 (C-0-T15999-cpt) + + + + + + + + + + + + specDomain: S16000 (C-0-T15999-S16000-cpt) + + + + + + + + + + + + + vocSet: O20187 (C-0-O20187-cpt) + + + + + + vocSet: O20188 (C-0-O20188-cpt) + + + + + + vocSet: O20189 (C-0-O20189-cpt) + + + + + + vocSet: O20190 (C-0-O20190-cpt) + + + + + + vocSet: O20191 (C-0-O20191-cpt) + + + + + + vocSet: O20192 (C-0-O20192-cpt) + + + + + + vocSet: T14581 (C-0-T14581-cpt) + + + + + + abstDomain: A16931 (C-0-T14581-A16931-cpt) + + + + + + + + + + + + + + + + + + abstDomain: A14582 (C-0-T14581-A16931-A14582-cpt) + + + + + + + + abstDomain: A14584 (C-0-T14581-A16931-A14584-cpt) + + + + + + + + + + abstDomain: A14586 (C-0-T14581-A16931-A14586-cpt) + + + + + + + + + abstDomain: A14589 (C-0-T14581-A16931-A14589-cpt) + + + + + + + + abstDomain: A17019 (C-0-T14581-A16931-A17019-cpt) + + + + + + + + abstDomain: A14591 (C-0-T14581-A16931-A14591-cpt) + + + + + + + + + abstDomain: A14594 (C-0-T14581-A16931-A14594-cpt) + + + + + + + + abstDomain: A14598 (C-0-T14581-A16931-A14598-cpt) + + + + + + + + + + abstDomain: A16935 (C-0-T14581-A16931-A16935-cpt) + + + + + + abstDomain: A14602 (C-0-T14581-A16931-A14602-cpt) + + + + + + + + + + + + + + + + + + + specDomain: S14609 (C-0-T14581-A16931-A14602-S14609-cpt) + + + + + + + + + + + + abstDomain: A14615 (C-0-T14581-A16931-A14615-cpt) + + + + + + + + + + + + + + + specDomain: S14619 (C-0-T14581-A16931-A14615-S14619-cpt) + + + + + + + + + + abstDomain: A14628 (C-0-T14581-A16931-A14628-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + abstDomain: A14687 (C-0-T14581-A16931-A14687-cpt) + + + + + + + + + + + + + + + abstDomain: A14696 (C-0-T14581-A16931-A14696-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + abstDomain: A16990 (C-0-T14581-A16931-A16990-cpt) + + + + + + + + abstDomain: A14721 (C-0-T14581-A16931-A14721-cpt) + + + + + + + + + + + + + + + + abstDomain: A16995 (C-0-T14581-A16931-A16995-cpt) + + + + + + + + abstDomain: A16997 (C-0-T14581-A16931-A16997-cpt) + + + + + + + + + + abstDomain: A14728 (C-0-T14581-A16931-A14728-cpt) + + + + + + + + abstDomain: A14730 (C-0-T14581-A16931-A14730-cpt) + + + + + + + + + abstDomain: A17003 (C-0-T14581-A16931-A17003-cpt) + + + + + + + + abstDomain: A14736 (C-0-T14581-A16931-A14736-cpt) + + + + + + + + + abstDomain: A17006 (C-0-T14581-A16931-A17006-cpt) + + + + + + + + abstDomain: A14739 (C-0-T14581-A16931-A14739-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + abstDomain: A17021 (C-0-T14581-A17021-cpt) + + + + + + + + + + abstDomain: A17022 (C-0-T14581-A17021-A17022-cpt) + + + + + + + + abstDomain: A17024 (C-0-T14581-A17021-A17024-cpt) + + + + + + + + + abstDomain: A17027 (C-0-T14581-A17021-A17027-cpt) + + + + + + + + + + + + + abstDomain: A17034 (C-0-T14581-A17021-A17034-cpt) + + + + + + + + abstDomain: A17036 (C-0-T14581-A17021-A17036-cpt) + + + + + + + + abstDomain: A17038 (C-0-T14581-A17021-A17038-cpt) + + + + + + + + + + + + abstDomain: A17042 (C-0-T14581-A17021-A17042-cpt) + + + + + + abstDomain: A17045 (C-0-T14581-A17021-A17045-cpt) + + + + + + + + + abstDomain: A17048 (C-0-T14581-A17021-A17048-cpt) + + + + + + + + + abstDomain: A17051 (C-0-T14581-A17021-A17051-cpt) + + + + + + + + + + + abstDomain: A17059 (C-0-T14581-A17021-A17059-cpt) + + + + + + + + abstDomain: A17056 (C-0-T14581-A17021-A17056-cpt) + + + + + + + + + abstDomain: A17061 (C-0-T14581-A17021-A17061-cpt) + + + + + + + + + + + abstDomain: A17066 (C-0-T14581-A17021-A17066-cpt) + + + + + + + + abstDomain: A17068 (C-0-T14581-A17021-A17068-cpt) + + + + + + + + + abstDomain: A17071 (C-0-T14581-A17021-A17071-cpt) + + + + + + + + + abstDomain: A17074 (C-0-T14581-A17021-A17074-cpt) + + + + + + + + abstDomain: A17076 (C-0-T14581-A17021-A17076-cpt) + + + + + + + + abstDomain: A17078 (C-0-T14581-A17021-A17078-cpt) + + + + + + + + abstDomain: A17080 (C-0-T14581-A17021-A17080-cpt) + + + + + + + + + + + + specDomain: S14639 (C-0-T14581-A17021-A17080-S14639-cpt) + + + + + + + + + + abstDomain: A17085 (C-0-T14581-A17021-A17085-cpt) + + + + + + + + abstDomain: A17087 (C-0-T14581-A17021-A17087-cpt) + + + + + + + + abstDomain: A17089 (C-0-T14581-A17021-A17089-cpt) + + + + + + + + abstDomain: A17091 (C-0-T14581-A17021-A17091-cpt) + + + + + + + + + + + + specDomain: S14644 (C-0-T14581-A17021-A17091-S14644-cpt) + + + + + + + + + + + abstDomain: A17097 (C-0-T14581-A17021-A17097-cpt) + + + + + + + + abstDomain: A17099 (C-0-T14581-A17021-A17099-cpt) + + + + + + + + abstDomain: A17101 (C-0-T14581-A17021-A17101-cpt) + + + + + + + + abstDomain: A17103 (C-0-T14581-A17021-A17103-cpt) + + + + + + + + abstDomain: A17105 (C-0-T14581-A17021-A17105-cpt) + + + + + + + + abstDomain: A17107 (C-0-T14581-A17021-A17107-cpt) + + + + + + + + abstDomain: A17109 (C-0-T14581-A17021-A17109-cpt) + + + + + + + + abstDomain: A17111 (C-0-T14581-A17021-A17111-cpt) + + + + + + + + abstDomain: A17113 (C-0-T14581-A17021-A17113-cpt) + + + + + + + + abstDomain: A17115 (C-0-T14581-A17021-A17115-cpt) + + + + + + + + + + + + specDomain: S14650 (C-0-T14581-A17021-A17115-S14650-cpt) + + + + + + + + + abstDomain: A17119 (C-0-T14581-A17021-A17119-cpt) + + + + + + + + abstDomain: A17123 (C-0-T14581-A17021-A17123-cpt) + + + + + + + + + abstDomain: A17126 (C-0-T14581-A17021-A17126-cpt) + + + + + + + + abstDomain: A17128 (C-0-T14581-A17021-A17128-cpt) + + + + + + + + abstDomain: A17130 (C-0-T14581-A17021-A17130-cpt) + + + + + + + + + abstDomain: A17133 (C-0-T14581-A17021-A17133-cpt) + + + + + + + + abstDomain: A17135 (C-0-T14581-A17021-A17135-cpt) + + + + + + + + abstDomain: A17137 (C-0-T14581-A17021-A17137-cpt) + + + + + + + + abstDomain: A17139 (C-0-T14581-A17021-A17139-cpt) + + + + + + + + + abstDomain: A17142 (C-0-T14581-A17021-A17142-cpt) + + + + + + + + + + abstDomain: A17146 (C-0-T14581-A17021-A17146-cpt) + + + + + + + + + abstDomain: A17149 (C-0-T14581-A17021-A17149-cpt) + + + + + + + + + + abstDomain: A17153 (C-0-T14581-A17021-A17153-cpt) + + + + + + + + + abstDomain: A17156 (C-0-T14581-A17021-A17156-cpt) + + + + + + + + abstDomain: A17158 (C-0-T14581-A17021-A17158-cpt) + + + + + + + + abstDomain: A17160 (C-0-T14581-A17021-A17160-cpt) + + + + + + + + + + specDomain: S14657 (C-0-T14581-A17021-A17160-S14657-cpt) + + + + + + + + + + abstDomain: A17164 (C-0-T14581-A17021-A17164-cpt) + + + + + + + + + + + + abstDomain: A17170 (C-0-T14581-A17021-A17170-cpt) + + + + + + + + + abstDomain: A17173 (C-0-T14581-A17021-A17173-cpt) + + + + + + + + abstDomain: A17175 (C-0-T14581-A17021-A17175-cpt) + + + + + + + + abstDomain: A17177 (C-0-T14581-A17021-A17177-cpt) + + + + + + + + + + + abstDomain: A17182 (C-0-T14581-A17021-A17182-cpt) + + + + + + + + + abstDomain: A17185 (C-0-T14581-A17021-A17185-cpt) + + + + + + + + abstDomain: A17187 (C-0-T14581-A17021-A17187-cpt) + + + + + + + + + abstDomain: A17190 (C-0-T14581-A17021-A17190-cpt) + + + + + + + + abstDomain: A17192 (C-0-T14581-A17021-A17192-cpt) + + + + + + + + abstDomain: A17194 (C-0-T14581-A17021-A17194-cpt) + + + + + + + + abstDomain: A17196 (C-0-T14581-A17021-A17196-cpt) + + + + + + + + abstDomain: A17121 (C-0-T14581-A17021-A17121-cpt) + + + + + + + + abstDomain: A17198 (C-0-T14581-A17021-A17198-cpt) + + + + + + + + abstDomain: A17200 (C-0-T14581-A17021-A17200-cpt) + + + + + + + + + abstDomain: A17203 (C-0-T14581-A17021-A17203-cpt) + + + + + + + + abstDomain: A17205 (C-0-T14581-A17021-A17205-cpt) + + + + + + + + + abstDomain: A17208 (C-0-T14581-A17021-A17208-cpt) + + + + + + + + abstDomain: A17210 (C-0-T14581-A17021-A17210-cpt) + + + + + + + + abstDomain: A17212 (C-0-T14581-A17021-A17212-cpt) + + + + + + + + abstDomain: A17214 (C-0-T14581-A17021-A17214-cpt) + + + + + + + + + + + abstDomain: A17219 (C-0-T14581-A17021-A17219-cpt) + + + + + + + + + + + abstDomain: A17224 (C-0-T14581-A17021-A17224-cpt) + + + + + + + + + + + + specDomain: S14670 (C-0-T14581-A17021-A17224-S14670-cpt) + + + + + + + + + + + + abstDomain: A17235 (C-0-T14581-A17021-A17235-cpt) + + + + + + + + abstDomain: A17237 (C-0-T14581-A17021-A17237-cpt) + + + + + + + + abstDomain: A17239 (C-0-T14581-A17021-A17239-cpt) + + + + + + + + abstDomain: A17241 (C-0-T14581-A17021-A17241-cpt) + + + + + + + + + + abstDomain: A17245 (C-0-T14581-A17021-A17245-cpt) + + + + + + + + abstDomain: A17247 (C-0-T14581-A17021-A17247-cpt) + + + + + + + + + abstDomain: A17250 (C-0-T14581-A17021-A17250-cpt) + + + + + + + + abstDomain: A17252 (C-0-T14581-A17021-A17252-cpt) + + + + + + + + abstDomain: A17254 (C-0-T14581-A17021-A17254-cpt) + + + + + + + + abstDomain: A17256 (C-0-T14581-A17021-A17256-cpt) + + + + + + + + + + + + + + specDomain: S14617 (C-0-T14581-A17021-A17256-S14617-cpt) + + + + + + + + + + abstDomain: A17264 (C-0-T14581-A17021-A17264-cpt) + + + + + + + + abstDomain: A17266 (C-0-T14581-A17021-A17266-cpt) + + + + + + + + + + + + + + + + abstDomain: A17276 (C-0-T14581-A17021-A17276-cpt) + + + + + + + + + + + + abstDomain: A17282 (C-0-T14581-A17021-A17282-cpt) + + + + + + + + abstDomain: A17284 (C-0-T14581-A17021-A17284-cpt) + + + + + + + + abstDomain: A17286 (C-0-T14581-A17021-A17286-cpt) + + + + + + + + + abstDomain: A17289 (C-0-T14581-A17021-A17289-cpt) + + + + + + + + abstDomain: A17291 (C-0-T14581-A17021-A17291-cpt) + + + + + + + + abstDomain: A17293 (C-0-T14581-A17021-A17293-cpt) + + + + + + + + abstDomain: A17298 (C-0-T14581-A17021-A17298-cpt) + + + + + + + + abstDomain: A17300 (C-0-T14581-A17021-A17300-cpt) + + + + + + + + abstDomain: A17302 (C-0-T14581-A17021-A17302-cpt) + + + + + + + + abstDomain: A17295 (C-0-T14581-A17021-A17295-cpt) + + + + + + + + + abstDomain: A17304 (C-0-T14581-A17021-A17304-cpt) + + + + + + + + + + + + + abstDomain: A17311 (C-0-T14581-A17021-A17311-cpt) + + + + + + + + + + + + + + + + specDomain: S14715 (C-0-T14581-A17021-A17311-S14715-cpt) + + + + + + + + + abstDomain: A17319 (C-0-T14581-A17021-A17319-cpt) + + + + + + + + + + specDomain: S14622 (C-0-T14581-A17021-A17319-S14622-cpt) + + + + + + + + + + abstDomain: A17321 (C-0-T14581-A17021-A17321-cpt) + + + + + + + + abstDomain: A17323 (C-0-T14581-A17021-A17323-cpt) + + + + + + + + abstDomain: A17325 (C-0-T14581-A17021-A17325-cpt) + + + + + + + + + abstDomain: A17328 (C-0-T14581-A17021-A17328-cpt) + + + + + + + + + abstDomain: A17331 (C-0-T14581-A17021-A17331-cpt) + + + + + + + + + abstDomain: A17334 (C-0-T14581-A17021-A17334-cpt) + + + + + + + + abstDomain: A17336 (C-0-T14581-A17021-A17336-cpt) + + + + + + + + + abstDomain: A17339 (C-0-T14581-A17021-A17339-cpt) + + + + + + + + + + + + abstDomain: A17345 (C-0-T14581-A17021-A17345-cpt) + + + + + + + + abstDomain: A17347 (C-0-T14581-A17021-A17347-cpt) + + + + + + + + abstDomain: A17349 (C-0-T14581-A17021-A17349-cpt) + + + + + + + + + abstDomain: A17352 (C-0-T14581-A17021-A17352-cpt) + + + + + + + + + abstDomain: A17356 (C-0-T14581-A17021-A17356-cpt) + + + + + + + + abstDomain: A17357 (C-0-T14581-A17021-A17357-cpt) + + + + + + + + abstDomain: A17359 (C-0-T14581-A17021-A17359-cpt) + + + + + + + + abstDomain: A17361 (C-0-T14581-A17021-A17361-cpt) + + + + + + + + abstDomain: A17363 (C-0-T14581-A17021-A17363-cpt) + + + + + + + + + abstDomain: A17366 (C-0-T14581-A17021-A17366-cpt) + + + + + + + + abstDomain: A17368 (C-0-T14581-A17021-A17368-cpt) + + + + + + + + + + + abstDomain: A17373 (C-0-T14581-A17021-A17373-cpt) + + + + + + + + + + + + specDomain: S14725 (C-0-T14581-A17021-A17373-S14725-cpt) + + + + + + + + + + abstDomain: A17378 (C-0-T14581-A17021-A17378-cpt) + + + + + + + + abstDomain: A17380 (C-0-T14581-A17021-A17380-cpt) + + + + + + + + + + abstDomain: A17384 (C-0-T14581-A17021-A17384-cpt) + + + + + + + + vocSet: E19 (C-0-E19-cpt) + + + + + + vocSet: D41 (C-0-D41-cpt) + + + + + + vocSet: T390 (C-0-T390-cpt) + + + + + + + + + + vocSet: T17416 (C-0-T17416-cpt) + + + + + + + + + + + + + vocSet: D39 (C-0-D39-cpt) + + + + + + vocSet: D40 (C-0-D40-cpt) + + + + + + vocSet: T19602 (C-0-T19602-cpt) + + + + + + abstDomain: A19603 (C-0-T19602-A19603-cpt) + + + + + + + + + + + abstDomain: A19605 (C-0-T19602-A19605-cpt) + + + + + + + + + + abstDomain: A19606 (C-0-T19602-A19605-A19606-cpt) + + + + + + + + + + + + abstDomain: A19607 (C-0-T19602-A19605-A19607-cpt) + + + + + + + + + + abstDomain: A19604 (C-0-T19602-A19604-cpt) + + + + + + + + + + + vocSet: T17719 (C-0-T17719-cpt) + + + + + + + + + + + + + abstDomain: A17720 (C-0-T17719-A17720-cpt) + + + + + + + + + abstDomain: A19740 (C-0-T17719-A19740-cpt) + + + + + + + + + vocSet: T10981 (C-0-T10981-cpt) + + + + + + + + + + + + vocSet: T11012 (C-0-T11012-cpt) + + + + + + + + + + + vocSet: T10987 (C-0-T10987-cpt) + + + + + + + + + + + vocSet: T10992 (C-0-T10992-cpt) + + + + + + + + + + + + + + + + vocSet: T11002 (C-0-T11002-cpt) + + + + + + + + + + + + vocSet: T10310 (C-0-T10310-cpt) + + + + + + + + + + + + + vocSet: T201 (C-0-T201-cpt) + + + + + + + + + + + + + + + abstDomain: A190 (C-0-T201-A190-cpt) + + + + + + + + + + + + + specDomain: S10628 (C-0-T201-A190-S10628-cpt) + + + + + + + + + + specDomain: S10631 (C-0-T201-A190-S10631-cpt) + + + + + + + + + + vocSet: T10706 (C-0-T10706-cpt) + + + + + + + + + + + + + + + + + + + + vocSet: T19833 (C-0-T19833-cpt) + + + + + + + + vocSet: T11631 (C-0-T11631-cpt) + + + + + + abstDomain: A11969 (C-0-T11631-A11969-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + abstDomain: A12548 (C-0-T11631-A12548-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + vocSet: T14866 (C-0-T14866-cpt) + + + + + + + + + + + + + + + + + + + + + abstDomain: A19741 (C-0-T14866-A19741-cpt) + + + + + + + + + + abstDomain: A19742 (C-0-T14866-A19742-cpt) + + + + + + + + + vocSet: T12549 (C-0-T12549-cpt) + + + + + + abstDomain: A12550 (C-0-T12549-A12550-cpt) + + + + + + + + + + + + + + abstDomain: A12558 (C-0-T12549-A12558-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + abstDomain: A12814 (C-0-T12549-A12814-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + vocSet: T12839 (C-0-T12839-cpt) + + + + + + abstDomain: A12840 (C-0-T12839-A12840-cpt) + + + + + + + + + + + + + + abstDomain: A12848 (C-0-T12839-A12848-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + abstDomain: A13104 (C-0-T12839-A13104-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + vocSet: T227 (C-0-T227-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + vocSet: T228 (C-0-T228-cpt) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + vocSet: T11037 (C-0-T11037-cpt) + + + + + + + + + vocSet: T19362 (C-0-T19362-cpt) + + + + + + + + + + vocSet: T19360-1 (C-0-T19360-1-cpt) + + + + + + + + + + + vocSet: T11046 (C-0-T11046-cpt) + + + + + + abstDomain: A11047 (C-0-T11046-A11047-cpt) + + + + + + + + + abstDomain: A11050 (C-0-T11046-A11050-cpt) + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT030000UV04.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT030000UV04.xsd new file mode 100644 index 0000000..dd4c868 --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT030000UV04.xsd @@ -0,0 +1,336 @@ + + + Generated using schema builder version 3.1.6. Stylesheets: + +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT030007UV.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT030007UV.xsd new file mode 100644 index 0000000..10809d9 --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT030007UV.xsd @@ -0,0 +1,324 @@ + + + Generated using schema builder version 3.1.6. Stylesheets: + +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT030202UV01.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT030202UV01.xsd new file mode 100644 index 0000000..5ded655 --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT030202UV01.xsd @@ -0,0 +1,87 @@ + + + Generated using schema builder version 3.1.6. Stylesheets: + +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT030203UV02.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT030203UV02.xsd new file mode 100644 index 0000000..58bfd91 --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT030203UV02.xsd @@ -0,0 +1,75 @@ + + + Generated using schema builder version 3.1.6. Stylesheets: + +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT030207UV.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT030207UV.xsd new file mode 100644 index 0000000..5b49f96 --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT030207UV.xsd @@ -0,0 +1,77 @@ + + + Generated using schema builder version 3.1.6. Stylesheets: + +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT040008UV.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT040008UV.xsd new file mode 100644 index 0000000..c3b814a --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT040008UV.xsd @@ -0,0 +1,79 @@ + + + Generated using schema builder version 3.1.6. Stylesheets: + +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT040203UV01.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT040203UV01.xsd new file mode 100644 index 0000000..916d3fc --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT040203UV01.xsd @@ -0,0 +1,70 @@ + + + Generated using schema builder version 3.1.6. Stylesheets: + +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT050000UV01.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT050000UV01.xsd new file mode 100644 index 0000000..0785cd6 --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT050000UV01.xsd @@ -0,0 +1,78 @@ + + + Generated using schema builder version 3.1.6. Stylesheets: + +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT060000UV01.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT060000UV01.xsd new file mode 100644 index 0000000..6f4062a --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT060000UV01.xsd @@ -0,0 +1,142 @@ + + + Generated using schema builder version 3.1.6. Stylesheets: + +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT070000UV01.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT070000UV01.xsd new file mode 100644 index 0000000..96fd2c8 --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT070000UV01.xsd @@ -0,0 +1,63 @@ + + + Generated using schema builder version 3.1.6. Stylesheets: + +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT080000UV.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT080000UV.xsd new file mode 100644 index 0000000..1e92ec4 --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT080000UV.xsd @@ -0,0 +1,627 @@ + + + Generated using schema builder version 3.1.6. Stylesheets: + +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT090000UV01.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT090000UV01.xsd new file mode 100644 index 0000000..980ea89 --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT090000UV01.xsd @@ -0,0 +1,225 @@ + + + Generated using schema builder version 3.1.6. Stylesheets: + +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT090002UV01.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT090002UV01.xsd new file mode 100644 index 0000000..bbea124 --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT090002UV01.xsd @@ -0,0 +1,107 @@ + + + Generated using schema builder version 3.1.6. Stylesheets: + +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT090003UV01.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT090003UV01.xsd new file mode 100644 index 0000000..31d1037 --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT090003UV01.xsd @@ -0,0 +1,108 @@ + + + Generated using schema builder version 3.1.6. Stylesheets: + +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT090100UV01.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT090100UV01.xsd new file mode 100644 index 0000000..6b15a52 --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT090100UV01.xsd @@ -0,0 +1,166 @@ + + + Generated using schema builder version 3.1.6. Stylesheets: + +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT090102UV02.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT090102UV02.xsd new file mode 100644 index 0000000..813eefa --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT090102UV02.xsd @@ -0,0 +1,78 @@ + + + Generated using schema builder version 3.1.6. Stylesheets: + +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT090108UV.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT090108UV.xsd new file mode 100644 index 0000000..60c9923 --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT090108UV.xsd @@ -0,0 +1,80 @@ + + + Generated using schema builder version 3.1.6. Stylesheets: + +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT090300UV01.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT090300UV01.xsd new file mode 100644 index 0000000..332003d --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT090300UV01.xsd @@ -0,0 +1,167 @@ + + + Generated using schema builder version 3.1.6. Stylesheets: + +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT090303UV01.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT090303UV01.xsd new file mode 100644 index 0000000..b915af2 --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT090303UV01.xsd @@ -0,0 +1,81 @@ + + + Generated using schema builder version 3.1.6. Stylesheets: + +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT140007UV.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT140007UV.xsd new file mode 100644 index 0000000..caf1770 --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT140007UV.xsd @@ -0,0 +1,60 @@ + + + Generated using schema builder version 3.1.6. Stylesheets: + +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT150000UV02.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT150000UV02.xsd new file mode 100644 index 0000000..91d49ac --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT150000UV02.xsd @@ -0,0 +1,134 @@ + + + Generated using schema builder version 3.1.6. Stylesheets: + +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT150002UV01.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT150002UV01.xsd new file mode 100644 index 0000000..06d95fb --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT150002UV01.xsd @@ -0,0 +1,60 @@ + + + Generated using schema builder version 3.1.6. Stylesheets: + +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT150003UV03.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT150003UV03.xsd new file mode 100644 index 0000000..829fffe --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT150003UV03.xsd @@ -0,0 +1,87 @@ + + + Generated using schema builder version 3.1.6. Stylesheets: + +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT150007UV.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT150007UV.xsd new file mode 100644 index 0000000..d354207 --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT150007UV.xsd @@ -0,0 +1,87 @@ + + + Generated using schema builder version 3.1.6. Stylesheets: + +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT230100UV.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT230100UV.xsd new file mode 100644 index 0000000..fd184ff --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT230100UV.xsd @@ -0,0 +1,574 @@ + + + Generated using schema builder version 3.1.6. Stylesheets: + +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT240000UV01.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT240000UV01.xsd new file mode 100644 index 0000000..dd58ab9 --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT240000UV01.xsd @@ -0,0 +1,69 @@ + + + Generated using schema builder version 3.1.6. Stylesheets: + +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT240003UV02.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT240003UV02.xsd new file mode 100644 index 0000000..268444a --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT240003UV02.xsd @@ -0,0 +1,67 @@ + + + Generated using schema builder version 3.1.6. Stylesheets: + +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT260003UV.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT260003UV.xsd new file mode 100644 index 0000000..6912335 --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT260003UV.xsd @@ -0,0 +1,249 @@ + + + Generated using schema builder version 3.1.6. Stylesheets: + +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT280000UV04.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT280000UV04.xsd new file mode 100644 index 0000000..f331dee --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT280000UV04.xsd @@ -0,0 +1,63 @@ + + + Generated using schema builder version 3.1.6. Stylesheets: + +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT290000UV06.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT290000UV06.xsd new file mode 100644 index 0000000..ceb6338 --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT290000UV06.xsd @@ -0,0 +1,719 @@ + + + Generated using schema builder version 3.1.6. Stylesheets: + +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT300000UV04.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT300000UV04.xsd new file mode 100644 index 0000000..17299b4 --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT300000UV04.xsd @@ -0,0 +1,359 @@ + + + Generated using schema builder version 3.1.6. Stylesheets: + +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT310000UV04.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT310000UV04.xsd new file mode 100644 index 0000000..e842234 --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT310000UV04.xsd @@ -0,0 +1,205 @@ + + + Generated using schema builder version 3.1.6. Stylesheets: + +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT440001UV.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT440001UV.xsd new file mode 100644 index 0000000..0297f92 --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT440001UV.xsd @@ -0,0 +1,62 @@ + + + Generated using schema builder version 3.1.6. Stylesheets: + +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT490000UV04.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT490000UV04.xsd new file mode 100644 index 0000000..7318451 --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT490000UV04.xsd @@ -0,0 +1,281 @@ + + + Generated using schema builder version 3.1.6. Stylesheets: + +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT500000UV04.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT500000UV04.xsd new file mode 100644 index 0000000..66fd75a --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT500000UV04.xsd @@ -0,0 +1,227 @@ + + + Generated using schema builder version 3.1.6. Stylesheets: + +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT510000UV06.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT510000UV06.xsd new file mode 100644 index 0000000..72d2bbd --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT510000UV06.xsd @@ -0,0 +1,929 @@ + + + Generated using schema builder version 3.1.6. Stylesheets: + +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT530000UV.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT530000UV.xsd new file mode 100644 index 0000000..808f934 --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT530000UV.xsd @@ -0,0 +1,1238 @@ + + + Generated using schema builder version 3.1.6. Stylesheets: + +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT600000UV06.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT600000UV06.xsd new file mode 100644 index 0000000..d219f66 --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT600000UV06.xsd @@ -0,0 +1,322 @@ + + + Generated using schema builder version 3.1.6. Stylesheets: + +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT670000UV04.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT670000UV04.xsd new file mode 100644 index 0000000..7238367 --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT670000UV04.xsd @@ -0,0 +1,144 @@ + + + Generated using schema builder version 3.1.6. Stylesheets: + +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT710000UV01.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT710000UV01.xsd new file mode 100644 index 0000000..5a47266 --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT710000UV01.xsd @@ -0,0 +1,94 @@ + + + Generated using schema builder version 3.1.6. Stylesheets: + +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT710007UV.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT710007UV.xsd new file mode 100644 index 0000000..5ccf909 --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT710007UV.xsd @@ -0,0 +1,74 @@ + + + Generated using schema builder version 3.1.6. Stylesheets: + +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT740000UV04.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT740000UV04.xsd new file mode 100644 index 0000000..fe43c63 --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT740000UV04.xsd @@ -0,0 +1,226 @@ + + + Generated using schema builder version 3.1.6. Stylesheets: + +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT810000UV.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT810000UV.xsd new file mode 100644 index 0000000..3a00bb7 --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT810000UV.xsd @@ -0,0 +1,142 @@ + + + Generated using schema builder version 3.1.6. Stylesheets: + +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT820000UV.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT820000UV.xsd new file mode 100644 index 0000000..037bf88 --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT820000UV.xsd @@ -0,0 +1,142 @@ + + + Generated using schema builder version 3.1.6. Stylesheets: + +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT960000UV05.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT960000UV05.xsd new file mode 100644 index 0000000..9e51cac --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/COCT_MT960000UV05.xsd @@ -0,0 +1,165 @@ + + + Generated using schema builder version 3.1.6. Stylesheets: + +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/MCAI_MT900001UV01.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/MCAI_MT900001UV01.xsd new file mode 100644 index 0000000..91bdebc --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/MCAI_MT900001UV01.xsd @@ -0,0 +1,152 @@ + + + Generated using schema builder version 3.1.6. Stylesheets: +HMD was rendered into XML using software provided to HL7 by Beeler Consulting LLC. + HMD to MIF Transform: $Id: RoseTreeHmdToMIFStaticModel.xsl,v 1.15 2007/10/19 05:55:13 wbeeler Exp $ + Base transform: $Id: ConvertBase.xsl,v 1.5 2007/10/19 05:55:13 wbeeler Exp $ + Package Id Conversion: $Id: TransformPackageIds.xsl,v 1.6 2007/03/20 02:48:49 wbeeler Exp $ + HTML To MIF markup: $Id: HtmlToMIFMarkup.xsl,v 1.4 2007/03/20 02:48:49 wbeeler Exp $ + Flat to Serialization Transform: $Id: MIFStaticModelFlatToSerialization.xsl,v 1.5 2007/03/20 02:48:50 wbeeler Exp $ + Fix Names Transform: $Id: FixMifNames.xsl,v 1.8 2007/03/20 02:48:49 wbeeler Exp $ + Base transform: $Id: ConvertBase.xsl,v 1.5 2007/10/19 05:55:13 wbeeler Exp $ + Package Id Conversion: $Id: TransformPackageIds.xsl,v 1.6 2007/03/20 02:48:49 wbeeler Exp $ +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/MCCI_IN000002UV01.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/MCCI_IN000002UV01.xsd new file mode 100644 index 0000000..5d69dac --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/MCCI_IN000002UV01.xsd @@ -0,0 +1,31 @@ + + + + Source Information + Rendered by: RoseTree 4.2.7 + Rendered on: +This document was rendered into XML using software provided to HL7 by Beeler Consulting LLC. + PubDB to MIF Transform: $RCSfile: PubDbXmlToMIF.xsl,v $ $Revision: 1.11 $ $Date: 2007/10/19 05:55:13 $ + Fix names transform: $Id: FixMifNames.xsl,v 1.8 2007/03/20 02:48:49 wbeeler Exp $ + HTML to MIF Markup transform: $Id: HtmlToMIFMarkup.xsl,v 1.4 2007/03/20 02:48:49 wbeeler Exp $ + Base transform: $Id: ConvertBase.xsl,v 1.5 2007/10/19 05:55:13 wbeeler Exp $ + Package Id Conversion: $Id: TransformPackageIds.xsl,v 1.6 2007/03/20 02:48:49 wbeeler Exp $ + Generated using schema builder version: 3.1.6 and DynamicMifToXSD.xsl version: 1.4 + Dynamic MIF to Schema Transform: $Id: DynamicMifToXsd.xsl,v 1.12 2007/10/19 05:55:13 wbeeler Exp $ + Static MIF to Schema Transform: $Id: StaticMifToXsd.xsl,v 1.30 2007/12/06 05:50:08 wbeeler Exp $ + Package Id Conversion: $Id: TransformPackageIds.xsl,v 1.6 2007/03/20 02:48:49 wbeeler Exp $ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/MCCI_MT000100UV01.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/MCCI_MT000100UV01.xsd new file mode 100644 index 0000000..cfa86c1 --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/MCCI_MT000100UV01.xsd @@ -0,0 +1,215 @@ + + + Generated using schema builder version 3.1.6. Stylesheets: +HMD was rendered into XML using software provided to HL7 by Beeler Consulting LLC. + HMD to MIF Transform: $Id: RoseTreeHmdToMIFStaticModel.xsl,v 1.15 2007/10/19 05:55:13 wbeeler Exp $ + Base transform: $Id: ConvertBase.xsl,v 1.5 2007/10/19 05:55:13 wbeeler Exp $ + Package Id Conversion: $Id: TransformPackageIds.xsl,v 1.6 2007/03/20 02:48:49 wbeeler Exp $ + HTML To MIF markup: $Id: HtmlToMIFMarkup.xsl,v 1.4 2007/03/20 02:48:49 wbeeler Exp $ + Flat to Serialization Transform: $Id: MIFStaticModelFlatToSerialization.xsl,v 1.5 2007/03/20 02:48:50 wbeeler Exp $ + Fix Names Transform: $Id: FixMifNames.xsl,v 1.8 2007/03/20 02:48:49 wbeeler Exp $ + Base transform: $Id: ConvertBase.xsl,v 1.5 2007/10/19 05:55:13 wbeeler Exp $ + Package Id Conversion: $Id: TransformPackageIds.xsl,v 1.6 2007/03/20 02:48:49 wbeeler Exp $ +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/MCCI_MT000200UV01.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/MCCI_MT000200UV01.xsd new file mode 100644 index 0000000..60fc9dd --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/MCCI_MT000200UV01.xsd @@ -0,0 +1,254 @@ + + + Generated using schema builder version 3.1.6. Stylesheets: +HMD was rendered into XML using software provided to HL7 by Beeler Consulting LLC. + HMD to MIF Transform: $Id: RoseTreeHmdToMIFStaticModel.xsl,v 1.15 2007/10/19 05:55:13 wbeeler Exp $ + Base transform: $Id: ConvertBase.xsl,v 1.5 2007/10/19 05:55:13 wbeeler Exp $ + Package Id Conversion: $Id: TransformPackageIds.xsl,v 1.6 2007/03/20 02:48:49 wbeeler Exp $ + HTML To MIF markup: $Id: HtmlToMIFMarkup.xsl,v 1.4 2007/03/20 02:48:49 wbeeler Exp $ + Flat to Serialization Transform: $Id: MIFStaticModelFlatToSerialization.xsl,v 1.5 2007/03/20 02:48:50 wbeeler Exp $ + Fix Names Transform: $Id: FixMifNames.xsl,v 1.8 2007/03/20 02:48:49 wbeeler Exp $ + Base transform: $Id: ConvertBase.xsl,v 1.5 2007/10/19 05:55:13 wbeeler Exp $ + Package Id Conversion: $Id: TransformPackageIds.xsl,v 1.6 2007/03/20 02:48:49 wbeeler Exp $ +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/MFMI_MT700701UV01.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/MFMI_MT700701UV01.xsd new file mode 100644 index 0000000..3f64194 --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/MFMI_MT700701UV01.xsd @@ -0,0 +1,388 @@ + + + Generated using schema builder version 3.1.6. Stylesheets: +HMD was rendered into XML using software provided to HL7 by Beeler Consulting LLC. + HMD to MIF Transform: $Id: RoseTreeHmdToMIFStaticModel.xsl,v 1.15 2007/10/19 05:55:13 wbeeler Exp $ + Base transform: $Id: ConvertBase.xsl,v 1.5 2007/10/19 05:55:13 wbeeler Exp $ + Package Id Conversion: $Id: TransformPackageIds.xsl,v 1.6 2007/03/20 02:48:49 wbeeler Exp $ + HTML To MIF markup: $Id: HtmlToMIFMarkup.xsl,v 1.4 2007/03/20 02:48:49 wbeeler Exp $ + Flat to Serialization Transform: $Id: MIFStaticModelFlatToSerialization.xsl,v 1.5 2007/03/20 02:48:50 wbeeler Exp $ + Fix Names Transform: $Id: FixMifNames.xsl,v 1.8 2007/03/20 02:48:49 wbeeler Exp $ + Base transform: $Id: ConvertBase.xsl,v 1.5 2007/10/19 05:55:13 wbeeler Exp $ + Package Id Conversion: $Id: TransformPackageIds.xsl,v 1.6 2007/03/20 02:48:49 wbeeler Exp $ +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/PRPA_IN201301UV02.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/PRPA_IN201301UV02.xsd new file mode 100644 index 0000000..2d96641 --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/PRPA_IN201301UV02.xsd @@ -0,0 +1,152 @@ + + + + Source Information + Rendered by: RoseTree 4.2.7 + Rendered on: +This document was rendered into XML using software provided to HL7 by Beeler Consulting LLC. + PubDB to MIF Transform: $RCSfile: PubDbXmlToMIF.xsl,v $ $Revision: 1.11 $ $Date: 2007/10/19 05:55:13 $ + Fix names transform: $Id: FixMifNames.xsl,v 1.8 2007/03/20 02:48:49 wbeeler Exp $ + HTML to MIF Markup transform: $Id: HtmlToMIFMarkup.xsl,v 1.4 2007/03/20 02:48:49 wbeeler Exp $ + Base transform: $Id: ConvertBase.xsl,v 1.5 2007/10/19 05:55:13 wbeeler Exp $ + Package Id Conversion: $Id: TransformPackageIds.xsl,v 1.6 2007/03/20 02:48:49 wbeeler Exp $ + Generated using schema builder version: 3.1.6 and DynamicMifToXSD.xsl version: 1.4 + Dynamic MIF to Schema Transform: $Id: DynamicMifToXsd.xsl,v 1.12 2007/10/19 05:55:13 wbeeler Exp $ + Static MIF to Schema Transform: $Id: StaticMifToXsd.xsl,v 1.30 2007/12/06 05:50:08 wbeeler Exp $ + Package Id Conversion: $Id: TransformPackageIds.xsl,v 1.6 2007/03/20 02:48:49 wbeeler Exp $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/PRPA_IN201302UV02.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/PRPA_IN201302UV02.xsd new file mode 100644 index 0000000..f9c375c --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/PRPA_IN201302UV02.xsd @@ -0,0 +1,152 @@ + + + + Source Information + Rendered by: RoseTree 4.2.7 + Rendered on: +This document was rendered into XML using software provided to HL7 by Beeler Consulting LLC. + PubDB to MIF Transform: $RCSfile: PubDbXmlToMIF.xsl,v $ $Revision: 1.11 $ $Date: 2007/10/19 05:55:13 $ + Fix names transform: $Id: FixMifNames.xsl,v 1.8 2007/03/20 02:48:49 wbeeler Exp $ + HTML to MIF Markup transform: $Id: HtmlToMIFMarkup.xsl,v 1.4 2007/03/20 02:48:49 wbeeler Exp $ + Base transform: $Id: ConvertBase.xsl,v 1.5 2007/10/19 05:55:13 wbeeler Exp $ + Package Id Conversion: $Id: TransformPackageIds.xsl,v 1.6 2007/03/20 02:48:49 wbeeler Exp $ + Generated using schema builder version: 3.1.6 and DynamicMifToXSD.xsl version: 1.4 + Dynamic MIF to Schema Transform: $Id: DynamicMifToXsd.xsl,v 1.12 2007/10/19 05:55:13 wbeeler Exp $ + Static MIF to Schema Transform: $Id: StaticMifToXsd.xsl,v 1.30 2007/12/06 05:50:08 wbeeler Exp $ + Package Id Conversion: $Id: TransformPackageIds.xsl,v 1.6 2007/03/20 02:48:49 wbeeler Exp $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/PRPA_IN201304UV02.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/PRPA_IN201304UV02.xsd new file mode 100644 index 0000000..6fd55d8 --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/PRPA_IN201304UV02.xsd @@ -0,0 +1,152 @@ + + + + Source Information + Rendered by: RoseTree 4.2.7 + Rendered on: +This document was rendered into XML using software provided to HL7 by Beeler Consulting LLC. + PubDB to MIF Transform: $RCSfile: PubDbXmlToMIF.xsl,v $ $Revision: 1.11 $ $Date: 2007/10/19 05:55:13 $ + Fix names transform: $Id: FixMifNames.xsl,v 1.8 2007/03/20 02:48:49 wbeeler Exp $ + HTML to MIF Markup transform: $Id: HtmlToMIFMarkup.xsl,v 1.4 2007/03/20 02:48:49 wbeeler Exp $ + Base transform: $Id: ConvertBase.xsl,v 1.5 2007/10/19 05:55:13 wbeeler Exp $ + Package Id Conversion: $Id: TransformPackageIds.xsl,v 1.6 2007/03/20 02:48:49 wbeeler Exp $ + Generated using schema builder version: 3.1.6 and DynamicMifToXSD.xsl version: 1.4 + Dynamic MIF to Schema Transform: $Id: DynamicMifToXsd.xsl,v 1.12 2007/10/19 05:55:13 wbeeler Exp $ + Static MIF to Schema Transform: $Id: StaticMifToXsd.xsl,v 1.30 2007/12/06 05:50:08 wbeeler Exp $ + Package Id Conversion: $Id: TransformPackageIds.xsl,v 1.6 2007/03/20 02:48:49 wbeeler Exp $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/PRPA_MT201301UV02.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/PRPA_MT201301UV02.xsd new file mode 100644 index 0000000..ddbc19a --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/PRPA_MT201301UV02.xsd @@ -0,0 +1,497 @@ + + + Generated using schema builder version 3.1.6. Stylesheets: + +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/PRPA_MT201302UV02.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/PRPA_MT201302UV02.xsd new file mode 100644 index 0000000..fb0d6a5 --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/PRPA_MT201302UV02.xsd @@ -0,0 +1,614 @@ + + + + + Generated using schema builder version 3.1.6. Stylesheets: + +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/PRPA_MT201303UV02.xsd b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/PRPA_MT201303UV02.xsd new file mode 100644 index 0000000..8d1c746 --- /dev/null +++ b/src/main/webapp/schema/HL7V3/NE2008/multicacheschemas/PRPA_MT201303UV02.xsd @@ -0,0 +1,497 @@ + + + Generated using schema builder version 3.1.6. Stylesheets: + +StaticMifToXsd.xsl version 2.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/IHE/XDS.b_DocumentRepository.xsd b/src/main/webapp/schema/IHE/XDS.b_DocumentRepository.xsd new file mode 100644 index 0000000..9caea06 --- /dev/null +++ b/src/main/webapp/schema/IHE/XDS.b_DocumentRepository.xsd @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + This corresponds to the home attribute of the Identifiable class in regrep RIM (regrep-rim-3.0-os.pdf, page 20) + + + + + This is the XDSDocumentEntry.repositoryUniqueId attribute in the XDS metadata + + + + + This is the XDSDocumentEntry.uniqueId attribute in the XDS metadata + + + + + + + + + + + + + + + + + This corresponds to the home attribute of the Identifiable class in regrep RIM (regrep-rim-3.0-os.pdf, page 20) + + + + + This is the XDSDocumentEntry.repositoryUniqueId attribute in the XDS metadata + + + + + This is the XDSDocumentEntry.uniqueId attribute in the XDS metadata + + + + + This identifies the Document Repository that will support retrieval of the document created as a result of retrieval of the On-Demand Document. This is required when the On-Demand Document Source supports the Persistence of Retrieved Documents Option. + + + + + This identifies the document returned in the response when retrieval is of an On-Demand Document. This is required when retrieval is of an On-Demand Document. + + + + + + + + + + + + + + + + + + + + + + + This corresponds to the ExtrinsicObject id in the eb RIM metadata a provides a linkage between the actual document data and its metadata + + + + + + + + + + + diff --git a/src/main/webapp/schema/ebRS/cms.xsd b/src/main/webapp/schema/ebRS/cms.xsd new file mode 100644 index 0000000..880e642 --- /dev/null +++ b/src/main/webapp/schema/ebRS/cms.xsd @@ -0,0 +1,89 @@ + + + + + + + + + + Base type for all Content Management Service requests. + + + + + + + + + + + + + + Base type for all Content Management Service responses + + + + + + + + + + Request to validate specified metadata and content. + + + + + + + + + + + + Response to request to validate specified metadata and content. + + + + + + + + + + + + Request to catalog specified metadata and content. + + + + + + + + + + + + Response to request to catalog specified metadata and content. + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/schema/ebRS/lcm.xsd b/src/main/webapp/schema/ebRS/lcm.xsd new file mode 100644 index 0000000..cb7c147 --- /dev/null +++ b/src/main/webapp/schema/ebRS/lcm.xsd @@ -0,0 +1,144 @@ + + + + + + The schema for OASIS ebXML Registry Services + + + + + + + + The SubmitObjectsRequest allows one to submit a list of RegistryObject elements. Each RegistryEntry element provides metadata for a single submitted object. Note that the repository item being submitted is in a separate document that is not in this DTD. The ebXML Messaging Services Specfication defines packaging, for submission, of the metadata of a repository item with the repository item itself. The value of the id attribute of the ExtrinsicObject element must be the same as the xlink:href attribute within the Reference element within the Manifest element of the MessageHeader. + + + + + + + + + + + + + + The UpdateObjectsRequest allows one to update a list of RegistryObject elements. Each RegistryEntry element provides metadata for a single submitted object. Note that the repository item being submitted is in a separate document that is not in this DTD. The ebXML Messaging Services Specfication defines packaging, for submission, of the metadata of a repository item with the repository item itself. The value of the id attribute of the ExtrinsicObject element must be the same as the xlink:href attribute within the Reference element within the Manifest element of the MessageHeader. + + + + + + + + + + + + + + + The ObjectRefList and AdhocQuery identify the list of + objects being approved. + + + + + + + + + + + + + + + + + The ObjectRefList and AdhocQuery identify the list of + objects being deprecated. + + + + + + + + + + + + + + + + + The ObjectRefList is the list of + refs to the registry entrys being un-deprecated. + + + + + + + + + + + + + + + + + The ObjectRefList is the list of + refs to the registry entrys being removed + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/webapp/schema/ebRS/query.xsd b/src/main/webapp/schema/ebRS/query.xsd new file mode 100644 index 0000000..b54d107 --- /dev/null +++ b/src/main/webapp/schema/ebRS/query.xsd @@ -0,0 +1,446 @@ + + + + + + + + + + + + + + + + + + + + + + + An Ad hoc query request specifies an ad hoc query. + + + + + + + + + + + + + + + + + + + + The response includes a RegistryObjectList which has zero or more + RegistryObjects that match the query specified in AdhocQueryRequest. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/webapp/schema/ebRS/rim.xsd b/src/main/webapp/schema/ebRS/rim.xsd new file mode 100644 index 0000000..4164e54 --- /dev/null +++ b/src/main/webapp/schema/ebRS/rim.xsd @@ -0,0 +1,586 @@ + + + + + + The schema for OASIS ebXML Registry Information Model + + + + + + + + referenceURI is used by reference attributes within RIM. + Each attribute of type referenceURI references a RegistryObject with + specified URI as id. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Common base type for all types that have unique identity. + If id is provided and is not in proper URN syntax then it is used for + linkage within document and is ignored by the registry. In this case the + registry generates a UUID URN for id attribute. + id must not be null when object is retrieved from the registry. + + + + + + + + + + + + + + + Use to reference an Object by its id. + Specifies the id attribute of the object as its id attribute. + id attribute in ObjectAttributes is exactly the same syntax and semantics as + id attribute in RegistryObject. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Association is the mapping of the same named interface in ebRIM. + It extends RegistryObject. + An Association specifies references to two previously submitted + registry entrys. + The sourceObject is id of the sourceObject in association + The targetObject is id of the targetObject in association + + + + + + + + + + + + + + An Event that forms an audit trail in ebXML Registry. + + + + + + + + + + + + + + + + + + + Classification is the mapping of the same named interface in ebRIM. + It extends RegistryObject. + A Classification specifies references to two registry entrys. + The classifiedObject is id of the Object being classified. + The classificationNode is id of the ClassificationNode classying the object + + + + + + + + + + + + + + + + ClassificationNode is the mapping of the same named interface in ebRIM. + It extends RegistryObject. + ClassificationNode is used to submit a Classification tree to the Registry. + The parent attribute is the id to the parent node. code is an optional code value for a ClassificationNode + often defined by an external taxonomy (e.g. NAICS) + + + + + + + + + + + + + + + + + + ClassificationScheme is the mapping of the same named interface in ebRIM. + It extends RegistryObject. + + + + + + + + + + + + + + + + + ExternalIdentifier is the mapping of the same named interface in ebRIM. + It extends RegistryObject. + + + + + + + + + + + + + + + ExternalLink is the mapping of the same named interface in ebRIM. + It extends RegistryObject. + + + + + + + + + + + + + ExtrinsicObject is the mapping of the same named interface in ebRIM. + It extends RegistryObject. + + + + + + + + + + + + + + + + + + Mapping of the same named interface in ebRIM. + + + + + + + + + + + + + + + + + Mapping of the same named interface in ebRIM. + + + + + + + + + Mapping of the same named interface in ebRIM. + + + + + + + + Mapping of the same named interface in ebRIM. + + + + + + + + + + + + + + + + + + + RegistryPackage is the mapping of the same named interface in ebRIM. + It extends RegistryObject. + A RegistryPackage is a named collection of objects. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + TelephoneNumber is the mapping of the same named interface in ebRIM. + + + + + + + + + + + + + + + + Mapping of the same named interface in ebRIM. + + + + + + + + + + + + + + + + + Mapping of the same named interface in ebRIM. + + + + + + + + + + Mapping of the same named interface in ebRIM. + + + + + + + + + + + + + + + + + + + + + + Mapping of the same named interface in ebRIM. + + + + + + + + + + + + + A registry query. + A QueryExpression child element is not required when invoking a stored query. + + + + + + + + + + + + + + + + + + + + + + + + Notification of registry events. + + + + + + + + + + + + + + + + + A Subscription for specified Events in an ebXML V3+ registry. + + + + + + + + + + + + + + + + + + Abstract Base type for all types of Actions. + + + + + Abstract Base type for all types of Notify Actions + + + + + + + + + + diff --git a/src/main/webapp/schema/ebRS/rs.xsd b/src/main/webapp/schema/ebRS/rs.xsd new file mode 100644 index 0000000..0e5bd1f --- /dev/null +++ b/src/main/webapp/schema/ebRS/rs.xsd @@ -0,0 +1,66 @@ + + + + + + The schema for OASIS ebXML Registry Services + + + + + + Base type for all ebXML Registry requests + + + + + + + + + + + + + The RegistryErrorList is derived from the ErrorList element from the ebXML Message Service Specification + + + + + + + + + + + + + + + + + + + + + + + Base type for all ebXML Registry responses + + + + + + + + + + + + diff --git a/src/main/webapp/schema/ebRS/test.xml b/src/main/webapp/schema/ebRS/test.xml new file mode 100644 index 0000000..139597f --- /dev/null +++ b/src/main/webapp/schema/ebRS/test.xml @@ -0,0 +1,2 @@ + +