From 7915f66dd65678ca486fdcc5b897da7043c913c1 Mon Sep 17 00:00:00 2001 From: Arno Kaimbacher Date: Tue, 3 Oct 2023 21:11:02 +0200 Subject: [PATCH] - added earliestPublicationDate for App/Models/Dataset.ts - new classes TokenWorkerService.ts, TokenWorker.ts and ResumptionToken.ts for using REDIS with paging OAI results - deletd public/asstes2/langCodeMap.xml: integrated it directly in datasetxml2oai-pmh.xslt - added redis npm package - added TokenWorkerProvider.ts for using singleton of TokenWorkerService inside OaiController.ts - added config/oai.ts for oai related configs from .env-file - adapted XmlModel.ts for grting domDocument from database --- .adonisrc.json | 3 +- app/Controllers/Http/Oai/OaiController.ts | 334 +++++++++++++++++++--- app/Library/Oai/ResumptionToken.ts | 51 ++++ app/Library/Oai/TokenWorker.ts | 10 + app/Library/Oai/TokenWorkerSerice.ts | 95 ++++++ app/Library/XmlModel.ts | 14 +- app/Models/Dataset.ts | 8 + app/Utils/utility-functions.ts | 5 + config/oai.ts | 18 ++ package-lock.json | 138 +++++++-- package.json | 2 + providers/TokenWorkerProvider.ts | 61 ++++ public/assets/manifest.json | 4 +- public/assets2/datasetxml2oai-pmh.xslt | 27 +- public/assets2/datasetxml2oai.sef.json | 2 +- public/assets2/langCodeMap.xml | 8 - 16 files changed, 691 insertions(+), 89 deletions(-) create mode 100644 app/Library/Oai/ResumptionToken.ts create mode 100644 app/Library/Oai/TokenWorker.ts create mode 100644 app/Library/Oai/TokenWorkerSerice.ts create mode 100644 config/oai.ts create mode 100644 providers/TokenWorkerProvider.ts delete mode 100644 public/assets2/langCodeMap.xml diff --git a/.adonisrc.json b/.adonisrc.json index 5db2c02..b4c9320 100644 --- a/.adonisrc.json +++ b/.adonisrc.json @@ -40,7 +40,8 @@ "@adonisjs/lucid", "@adonisjs/auth", "@eidellev/adonis-stardust", - "./providers/QueryBuilderProvider" + "./providers/QueryBuilderProvider", + "./providers/TokenWorkerProvider" ], "metaFiles": [ { diff --git a/app/Controllers/Http/Oai/OaiController.ts b/app/Controllers/Http/Oai/OaiController.ts index dbe0991..2c66f21 100644 --- a/app/Controllers/Http/Oai/OaiController.ts +++ b/app/Controllers/Http/Oai/OaiController.ts @@ -13,8 +13,15 @@ import { OaiErrorCodes, OaiModelError } from 'App/Exceptions/OaiErrorCodes'; import { OaiModelException, BadOaiModelException } from 'App/Exceptions/OaiModelException'; import Dataset from 'App/Models/Dataset'; import Collection from 'App/Models/Collection'; -import { getDomain } from 'App/Utils/utility-functions'; +import { getDomain, preg_match } from 'App/Utils/utility-functions'; import XmlModel from 'App/Library/XmlModel'; +import Logger from '@ioc:Adonis/Core/Logger'; +import ResumptionToken from 'App/Library/Oai/ResumptionToken'; +import { ModelQueryBuilderContract } from '@ioc:Adonis/Lucid/Orm'; +import Config from '@ioc:Adonis/Core/Config'; +import { inject } from '@adonisjs/fold'; +// import { TokenWorkerContract } from "MyApp/Models/TokenWorker"; +import TokenWorkerContract from 'App/Library/Oai/TokenWorker'; interface XslTParameter { [key: string]: any; @@ -24,12 +31,19 @@ interface Dictionary { [index: string]: string; } +interface ListParameter { + cursor: number; + totalIds: number; + start: number; + reldocIds: (number | null)[]; + metadataPrefix: string; +} + +@inject(['App/Library/Oai/TokenWorkerContract']) export default class OaiController { private deliveringDocumentStates = ['published', 'deleted']; - // private sampleRegEx = /^[A-Za-zäüÄÜß0-9\-_.!~]+$/; + private sampleRegEx = /^[A-Za-zäüÄÜß0-9\-_.!~]+$/; private xsltParameter: XslTParameter; - // private configuration: Configuration; - // private tokenWorker: TokenWorker; /** * Holds xml representation of document information to be processed. @@ -39,13 +53,9 @@ export default class OaiController { private xml: XMLBuilder; private proc; - constructor() { + constructor(public tokenWorker: TokenWorkerContract) { // Load the XSLT file this.proc = readFileSync('public/assets2/datasetxml2oai.sef.json'); - // tests - // const xslPath = 'assets/datasetxml2oai-pmh.xslt'; // Replace with the actual path to your XSLT file - // this.proc = readFileSync(xslPath, 'utf-8'); - // this.configuration = new Configuration(); dayjs.extend(utc); dayjs.extend(timezone); } @@ -66,8 +76,15 @@ export default class OaiController { xsltParameter['oai_error_code'] = 'unknown'; xsltParameter['oai_error_message'] = 'Only POST and GET methods are allowed for OAI-PMH.'; } + + let earliestDateFromDb; // const oaiRequest: OaiParameter = request.body; try { + const firstPublishedDataset: Dataset | null = await Dataset.earliestPublicationDate(); + firstPublishedDataset != null && + (earliestDateFromDb = firstPublishedDataset.server_date_published.toFormat("yyyy-MM-dd'T'HH:mm:ss'Z'")); + this.xsltParameter['earliestDatestamp'] = earliestDateFromDb; + // start the request await this.handleRequest(oaiRequest, request); } catch (error) { if (error instanceof OaiModelException) { @@ -87,7 +104,7 @@ export default class OaiController { const xmlString = this.xml.end({ prettyPrint: true }); - let xmlOutput; + let xmlOutput; // = xmlString; try { const result = await transform({ // stylesheetFileName: `${config.TMP_BASE_DIR}/data-quality/rules/iati.sef.json`, @@ -123,7 +140,7 @@ export default class OaiController { this.xsltParameter['unixTimestamp'] = now.unix(); // set OAI base url - const baseDomain = process.env.BASE_DOMAIN || 'localhost'; + const baseDomain = process.env.OAI_BASE_DOMAIN || 'localhost'; this.xsltParameter['baseURL'] = baseDomain + '/oai'; this.xsltParameter['repURL'] = request.protocol() + '://' + request.hostname(); this.xsltParameter['downloadLink'] = request.protocol() + '://' + request.hostname() + '/file/download/'; @@ -139,13 +156,11 @@ export default class OaiController { this.handleListMetadataFormats(); } else if (verb == 'GetRecord') { await this.handleGetRecord(oaiRequest); - } - // else if (verb == "ListRecords") { - // await this.handleListRecords(oaiRequest); - // } else if (verb == "ListIdentifiers") { - // await this.handleListIdentifiers(oaiRequest); - // } - else if (verb == 'ListSets') { + } else if (verb == 'ListRecords') { + await this.handleListRecords(oaiRequest); + } else if (verb == 'ListIdentifiers') { + await this.handleListIdentifiers(oaiRequest); + } else if (verb == 'ListSets') { await this.handleListSets(); } else { this.handleIllegalVerb(); @@ -197,7 +212,7 @@ export default class OaiController { const sets: { [key: string]: string } = { 'open_access': 'Set for open access licenses', 'doc-type:ResearchData': 'Set for document type ResearchData', - // ...(await this.getSetsForDatasetTypes()), + ...(await this.getSetsForDatasetTypes()), ...(await this.getSetsForCollections()), // ... await this.getSetsForProjects(), } as Dictionary; @@ -214,7 +229,13 @@ export default class OaiController { this.xsltParameter['repIdentifier'] = repIdentifier; const dataId = this.validateAndGetIdentifier(oaiRequest); - const dataset = await Dataset.query().where('publish_id', dataId).preload('xmlCache').preload('collections').first(); + const dataset = await Dataset.query() + .where('publish_id', dataId) + .preload('xmlCache') + .preload('collections', (builder) => { + builder.preload('collectionRole'); + }) + .first(); if (!dataset || !dataset.publish_id) { throw new OaiModelException( @@ -234,6 +255,229 @@ export default class OaiController { await this.createXmlRecord(dataset, datasetNode); } + protected async handleListIdentifiers(oaiRequest: Dictionary) { + !this.tokenWorker.isConnected && (await this.tokenWorker.connect()); + + const maxIdentifier: number = Config.get('oai.max.listidentifiers', 100); + await this.handleLists(oaiRequest, maxIdentifier); + } + + protected async handleListRecords(oaiRequest) { + !this.tokenWorker.isConnected && (await this.tokenWorker.connect()); + + const maxRecords: number = Config.get('oai.max.listrecords', 100); + await this.handleLists(oaiRequest, maxRecords); + } + + private async handleLists(oaiRequest: Dictionary, maxRecords: number) { + maxRecords = maxRecords || 100; + const repIdentifier = 'tethys.at'; + this.xsltParameter['repIdentifier'] = repIdentifier; + const datasetNode = this.xml.root().ele('Datasets'); + + // list initialisation + const numWrapper: ListParameter = { + cursor: 0, + totalIds: 0, + start: maxRecords + 1, + reldocIds: [], + metadataPrefix: '', + }; + + // resumptionToken is defined + if ('resumptionToken' in oaiRequest) { + await this.handleResumptionToken(oaiRequest, maxRecords, numWrapper); + } else { + // no resumptionToken is given + await this.handleNoResumptionToken(oaiRequest, numWrapper); + } + + // handling of document ids + const restIds = numWrapper.reldocIds as number[]; + const workIds = restIds.splice(0, maxRecords) as number[]; // array_splice(restIds, 0, maxRecords); + + // no records returned + if (workIds.length == 0) { + throw new OaiModelException( + StatusCodes.INTERNAL_SERVER_ERROR, + 'The combination of the given values results in an empty list.', + OaiErrorCodes.NORECORDSMATCH, + ); + } + + const datasets: Dataset[] = await Dataset.query() + .whereIn('publish_id', workIds) + .preload('xmlCache') + .preload('collections', (builder) => { + builder.preload('collectionRole'); + }) + .orderBy('publish_id'); + + for (const dataset of datasets) { + await this.createXmlRecord(dataset, datasetNode); + } + + // store the further Ids in a resumption-file + const countRestIds = restIds.length; //84 + if (countRestIds > 0) { + const token = new ResumptionToken(); + token.startPosition = numWrapper.start; //101 + token.totalIds = numWrapper.totalIds; //184 + token.documentIds = restIds; //101 -184 + token.metadataPrefix = numWrapper.metadataPrefix; + + // $tokenWorker->storeResumptionToken($token); + const res: string = await this.tokenWorker.set(token); + + // set parameters for the resumptionToken-node + // const res = token.ResumptionId; + this.setParamResumption(res, numWrapper.cursor, numWrapper.totalIds); + } + } + + private async handleResumptionToken(oaiRequest: Dictionary, maxRecords: number, numWrapper) { + const resParam = oaiRequest['resumptionToken']; //e.g. "158886496600000" + const token = await this.tokenWorker.get(resParam); + + if (!token) { + throw new OaiModelException(StatusCodes.INTERNAL_SERVER_ERROR, 'cache is outdated.', OaiErrorCodes.BADRESUMPTIONTOKEN); + } + + numWrapper.cursor = token.startPosition - 1; //startet dann bei Index 10 + numWrapper.start = token.startPosition + maxRecords; + numWrapper.totalIds = token.totalIds; + numWrapper.reldocIds = token.documentIds; + numWrapper.metadataPrefix = token.metadataPrefix; + + this.xsltParameter['oai_metadataPrefix'] = numWrapper.metadataPrefix; + } + + private async handleNoResumptionToken(oaiRequest: Dictionary, numWrapper) { + // no resumptionToken is given + if ('metadataPrefix' in oaiRequest) { + numWrapper.metadataPrefix = oaiRequest['metadataPrefix']; + } else { + throw new OaiModelException( + StatusCodes.INTERNAL_SERVER_ERROR, + 'The prefix of the metadata argument is unknown.', + OaiErrorCodes.BADARGUMENT, + ); + } + this.xsltParameter['oai_metadataPrefix'] = numWrapper.metadataPrefix; + + let finder: ModelQueryBuilderContract = Dataset.query(); + // add server state restrictions + finder.whereIn('server_state', this.deliveringDocumentStates); + if ('set' in oaiRequest) { + const set = oaiRequest['set'] as string; + const setArray = set.split(':'); + + if (setArray[0] == 'data-type') { + if (setArray.length == 2 && setArray[1]) { + finder.where('type', setArray[1]); + } + } else if (setArray[0] == 'open_access') { + const openAccessLicences = ['CC-BY-4.0', 'CC-BY-SA-4.0']; + finder.andWhereHas('licenses', (query) => { + query.whereIn('name', openAccessLicences); + }); + } else if (setArray[0] == 'ddc') { + if (setArray.length == 2 && setArray[1] != '') { + finder.andWhereHas('collections', (query) => { + query.where('number', setArray[1]); + }); + } + } + } + + // const timeZone = "Europe/Vienna"; // Canonical time zone name + // &from=2020-09-03&until2020-09-03 + // &from=2020-09-11&until=2021-05-11 + if ('from' in oaiRequest && 'until' in oaiRequest) { + const from = oaiRequest['from'] as string; + let fromDate = dayjs(from); //.tz(timeZone); + const until = oaiRequest['until'] as string; + let untilDate = dayjs(until); //.tz(timeZone); + if (!fromDate.isValid() || !untilDate.isValid()) { + throw new OaiModelException(StatusCodes.INTERNAL_SERVER_ERROR, 'Date Parameter is not valid.', OaiErrorCodes.BADARGUMENT); + } + fromDate = dayjs.tz(from, 'Europe/Vienna'); + untilDate = dayjs.tz(until, 'Europe/Vienna'); + + if (from.length != until.length) { + throw new OaiModelException( + StatusCodes.INTERNAL_SERVER_ERROR, + 'The request has different granularities for the from and until parameters.', + OaiErrorCodes.BADARGUMENT, + ); + } + fromDate.hour() == 0 && (fromDate = fromDate.startOf('day')); + untilDate.hour() == 0 && (untilDate = untilDate.endOf('day')); + + finder.whereBetween('server_date_published', [fromDate.format('YYYY-MM-DD HH:mm:ss'), untilDate.format('YYYY-MM-DD HH:mm:ss')]); + } else if ('from' in oaiRequest && !('until' in oaiRequest)) { + const from = oaiRequest['from'] as string; + let fromDate = dayjs(from); + if (!fromDate.isValid()) { + throw new OaiModelException( + StatusCodes.INTERNAL_SERVER_ERROR, + 'From date parameter is not valid.', + OaiErrorCodes.BADARGUMENT, + ); + } + fromDate = dayjs.tz(from, 'Europe/Vienna'); + fromDate.hour() == 0 && (fromDate = fromDate.startOf('day')); + + const now = dayjs(); + if (fromDate.isAfter(now)) { + throw new OaiModelException( + StatusCodes.INTERNAL_SERVER_ERROR, + 'Given from date is greater than now. The given values results in an empty list.', + OaiErrorCodes.NORECORDSMATCH, + ); + } else { + finder.andWhere('server_date_published', '>=', fromDate.format('YYYY-MM-DD HH:mm:ss')); + } + } else if (!('from' in oaiRequest) && 'until' in oaiRequest) { + const until = oaiRequest['until'] as string; + let untilDate = dayjs(until); + if (!untilDate.isValid()) { + throw new OaiModelException( + StatusCodes.INTERNAL_SERVER_ERROR, + 'Until date parameter is not valid.', + OaiErrorCodes.BADARGUMENT, + ); + } + untilDate = dayjs.tz(until, 'Europe/Vienna'); + untilDate.hour() == 0 && (untilDate = untilDate.endOf('day')); + + const firstPublishedDataset: Dataset = (await Dataset.earliestPublicationDate()) as Dataset; + const earliestPublicationDate = dayjs(firstPublishedDataset.server_date_published.toISO()); //format("YYYY-MM-DDThh:mm:ss[Z]")); + if (earliestPublicationDate.isAfter(untilDate)) { + throw new OaiModelException( + StatusCodes.INTERNAL_SERVER_ERROR, + `earliestDatestamp is greater than given until date. + The given values results in an empty list.`, + OaiErrorCodes.NORECORDSMATCH, + ); + } else { + finder.andWhere('server_date_published', '<=', untilDate.format('YYYY-MM-DD HH:mm:ss')); + } + } + + let reldocIdsDocs = await finder.select('publish_id').orderBy('publish_id'); + numWrapper.reldocIds = reldocIdsDocs.map((dat) => dat.publish_id); + numWrapper.totalIds = numWrapper.reldocIds.length; //212 + } + + private setParamResumption(res: string, cursor: number, totalIds: number) { + const tomorrow = dayjs().add(1, 'day').format('YYYY-MM-DDThh:mm:ss[Z]'); + this.xsltParameter['dateDelete'] = tomorrow; + this.xsltParameter['res'] = res; + this.xsltParameter['cursor'] = cursor; + this.xsltParameter['totalIds'] = totalIds; + } + private validateAndGetIdentifier(oaiRequest: Dictionary): number { // Identifier references metadata Urn, not plain Id! // Currently implemented as 'oai:foo.bar.de:{docId}' or 'urn:nbn...-123' @@ -283,12 +527,12 @@ export default class OaiController { dataset.publish_id && this.addLandingPageAttribute(domNode, dataset.publish_id.toString()); this.addSpecInformation(domNode, 'data-type:' + dataset.type); - // if (dataset.collections) { - // for (const coll of dataset.collections) { - // const collRole = await coll.getCollectionRole(); - // this.addSpecInformation(domNode, collRole.oai_name + ':' + coll.number); - // } - // } + if (dataset.collections) { + for (const coll of dataset.collections) { + const collRole = coll.collectionRole; + this.addSpecInformation(domNode, collRole.oai_name + ':' + coll.number); + } + } datasetNode.import(domNode); } @@ -315,7 +559,7 @@ export default class OaiController { } private addLandingPageAttribute(domNode: XMLBuilder, dataid: string) { - const baseDomain = process.env.BASE_DOMAIN || 'localhost'; + const baseDomain = process.env.OAI_BASE_DOMAIN || 'localhost'; const url = 'https://' + getDomain(baseDomain) + '/dataset/' + dataid; // add attribute du dataset xml element domNode.att('landingpage', url); @@ -368,26 +612,24 @@ export default class OaiController { return sets; } - // private async getSetsForDatasetTypes(): Promise { - // const sets: { [key: string]: string } = {} as IDictionary; + private async getSetsForDatasetTypes(): Promise { + const sets: { [key: string]: string } = {} as Dictionary; - // const datasets: Array = await Dataset.findAll({ - // attributes: ["type"], - // where: { server_state: { [Sequelize.Op.eq]: "published" } }, - // }); - // datasets.forEach((dataset) => { - // if (dataset.type && false == preg_match(this.sampleRegEx, dataset.type)) { - // const msg = `Invalid SetSpec (data-type='${dataset.type}'). - // Allowed characters are [${this.sampleRegEx}].`; - // Logger.err(`OAI: ${msg}`); - // // Log::error("OAI-PMH: $msg"); - // return; - // } - // const setSpec = "data-type:" + dataset.type; - // sets[setSpec] = `Set for document type '${dataset.type}'`; - // }); - // return sets; - // } + const datasets: Array = await Dataset.query().select('type').where('server_state', 'published'); + + datasets.forEach((dataset) => { + if (dataset.type && false == preg_match(this.sampleRegEx, dataset.type)) { + const msg = `Invalid SetSpec (data-type='${dataset.type}'). + Allowed characters are [${this.sampleRegEx}].`; + // Log::error("OAI-PMH: $msg"); + Logger.error(`OAI-PMH: ${msg}`); + return; + } + const setSpec = 'data-type:' + dataset.type; + sets[setSpec] = `Set for document type '${dataset.type}'`; + }); + return sets; + } private handleIllegalVerb() { this.xsltParameter['oai_error_code'] = 'badVerb'; diff --git a/app/Library/Oai/ResumptionToken.ts b/app/Library/Oai/ResumptionToken.ts new file mode 100644 index 0000000..5eca661 --- /dev/null +++ b/app/Library/Oai/ResumptionToken.ts @@ -0,0 +1,51 @@ +export default class ResumptionToken { + private _documentIds: number[] = []; + private _metadataPrefix = ''; + private _resumptionId = ''; + private _startPosition = 0; + private _totalIds = 0; + + get key(): string { + return this.metadataPrefix + this.startPosition + this.totalIds; + } + + get documentIds(): number[] { + return this._documentIds; + } + + set documentIds(idsToStore: number | number[]) { + this._documentIds = Array.isArray(idsToStore) ? idsToStore : [idsToStore]; + } + + get metadataPrefix(): string { + return this._metadataPrefix; + } + + set metadataPrefix(value: string) { + this._metadataPrefix = value; + } + + get resumptionId(): string { + return this._resumptionId; + } + + set resumptionId(resumptionId: string) { + this._resumptionId = resumptionId; + } + + get startPosition(): number { + return this._startPosition; + } + + set startPosition(startPosition: number) { + this._startPosition = startPosition; + } + + get totalIds(): number { + return this._totalIds; + } + + set totalIds(totalIds: number) { + this._totalIds = totalIds; + } +} diff --git a/app/Library/Oai/TokenWorker.ts b/app/Library/Oai/TokenWorker.ts new file mode 100644 index 0000000..6555b5c --- /dev/null +++ b/app/Library/Oai/TokenWorker.ts @@ -0,0 +1,10 @@ +import ResumptionToken from './ResumptionToken'; + +export default interface TokenWorkerContract { + ttl: number; + isConnected: boolean; + connect(); + close(); + get(key: string): Promise; + set(token: ResumptionToken): Promise; +} diff --git a/app/Library/Oai/TokenWorkerSerice.ts b/app/Library/Oai/TokenWorkerSerice.ts new file mode 100644 index 0000000..0ca701b --- /dev/null +++ b/app/Library/Oai/TokenWorkerSerice.ts @@ -0,0 +1,95 @@ +import ResumptionToken from './ResumptionToken'; +import { createClient, RedisClientType } from 'redis'; +import InternalServerErrorException from 'App/Exceptions/InternalServerException'; +import { sprintf } from 'sprintf-js'; +import dayjs from 'dayjs'; +import TokenWorkerContract from './TokenWorker'; + +export default class TokenWorkerService implements TokenWorkerContract { + protected filePrefix = 'rs_'; + protected fileExtension = 'txt'; + + private cache: RedisClientType; + public ttl: number; + private url: string; + private connected = false; + + constructor(ttl: number) { + this.ttl = ttl; // time to live + this.url = process.env.REDIS_URL || 'redis://127.0.0.1:6379'; + } + + public async connect() { + this.cache = createClient({ url: this.url }); + this.cache.on('error', (err) => { + this.connected = false; + console.log('[Redis] Redis Client Error: ', err); + }); + this.cache.on('connect', () => { + this.connected = true; + }); + await this.cache.connect(); + } + + public get isConnected(): boolean { + return this.connected; + } + + public async has(key: string): Promise { + const result = await this.cache.get(key); + return result !== undefined && result !== null; + } + + public async set(token: ResumptionToken): Promise { + const uniqueName = await this.generateUniqueName(); + + const serialToken = JSON.stringify(token); + await this.cache.setEx(uniqueName, this.ttl, serialToken); + return uniqueName; + } + + private async generateUniqueName(): Promise { + let fc = 0; + const uniqueId = dayjs().unix().toString(); + let uniqueName: string; + let cacheKeyExists: boolean; + do { + // format values + // %s - String + // %d - Signed decimal number (negative, zero or positive) + // [0-9] (Specifies the minimum width held of to the variable value) + uniqueName = sprintf('%s%05d', uniqueId, fc++); + cacheKeyExists = await this.has(uniqueName); + } while (cacheKeyExists); + return uniqueName; + } + + public async get(key: string): Promise { + if (!this.cache) { + throw new InternalServerErrorException('Dataset is not available for OAI export!'); + } + + const result = await this.cache.get(key); + return result ? this.parseToken(result) : null; + } + + private parseToken(result: string): ResumptionToken { + const rToken: ResumptionToken = new ResumptionToken(); + const parsed = JSON.parse(result); + Object.assign(rToken, parsed); + return rToken; + } + + public del(key: string) { + this.cache.del(key); + } + + public flush() { + this.cache.flushAll(); + } + + public async close() { + await this.cache.disconnect(); + this.connected = false; + } +} diff --git a/app/Library/XmlModel.ts b/app/Library/XmlModel.ts index 54feb2d..df15916 100644 --- a/app/Library/XmlModel.ts +++ b/app/Library/XmlModel.ts @@ -3,6 +3,7 @@ import { XMLBuilder } from 'xmlbuilder2/lib/interfaces'; import Dataset from 'App/Models/Dataset'; import Strategy from './Strategy'; import { DateTime } from 'luxon'; +import { builder } from 'xmlbuilder2'; /** * This is the description of the interface @@ -84,10 +85,21 @@ export default class XmlModel { this.cache = this.cache || new DocumentXmlCache(); this.cache.document_id = dataset.id; this.cache.xml_version = 1; // (int)$this->strategy->getVersion(); - // this.cache.server_date_modified = dataset.server_date_modified.toFormat("yyyy-MM-dd HH:mm:ss"); + this.cache.server_date_modified = dataset.server_date_modified.toFormat("yyyy-MM-dd HH:mm:ss"); this.cache.xml_data = domDocument.end(); await this.cache.save(); } + const node = domDocument.find( + (n) => { + const test = n.node.nodeName == 'Rdr_Dataset'; + return test; + }, + false, + true, + )?.node; + if(node != undefined) { + domDocument = builder({ version: '1.0', encoding: 'UTF-8', standalone: true }, node); + } } return domDocument; } diff --git a/app/Models/Dataset.ts b/app/Models/Dataset.ts index 85f7e7c..c70824d 100644 --- a/app/Models/Dataset.ts +++ b/app/Models/Dataset.ts @@ -214,4 +214,12 @@ export default class Dataset extends DatasetExtension { foreignKey: 'document_id', }) public xmlCache: HasOne; + + static async earliestPublicationDate(): Promise { + const serverState = 'published'; + + const model = await this.query().where('server_state', serverState).orderBy('server_date_published', 'asc').first(); + + return model || null; + } } diff --git a/app/Utils/utility-functions.ts b/app/Utils/utility-functions.ts index d1b7ccd..6afb2a0 100644 --- a/app/Utils/utility-functions.ts +++ b/app/Utils/utility-functions.ts @@ -19,3 +19,8 @@ export function getDomain(host: string): string { myHost = myHost.replace(new RegExp(/^.*:\/\//i, 'g'), ''); return myHost; } + +export function preg_match(regex: RegExp, str: string) { + const result: boolean = regex.test(str); + return result; +} diff --git a/config/oai.ts b/config/oai.ts new file mode 100644 index 0000000..3cdf28f --- /dev/null +++ b/config/oai.ts @@ -0,0 +1,18 @@ +import Env from '@ioc:Adonis/Core/Env'; + +interface OaiConfig { + max: { listidentifiers: number; listrecords: number }; + workspacePath: string; + redis: { ttl: number }; +} +const config: OaiConfig = { + max: { + listidentifiers: parseInt(Env.get('OAI_LIST_SIZE', 100), 10), + listrecords: parseInt(Env.get('OAI_LIST_SIZE', 100), 10), + }, + workspacePath: 'workspace', + redis: { + ttl: 86400, //sec 1 day + }, +}; +export default config; diff --git a/package-lock.json b/package-lock.json index 88534aa..b092ca3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -31,6 +31,7 @@ "notiwind": "^2.0.0", "pg": "^8.9.0", "proxy-addr": "^2.0.7", + "redis": "^4.6.10", "reflect-metadata": "^0.1.13", "saxon-js": "^2.5.0", "source-map-support": "^0.5.21", @@ -2778,9 +2779,9 @@ } }, "node_modules/@fontsource/archivo-black": { - "version": "5.0.12", - "resolved": "https://registry.npmjs.org/@fontsource/archivo-black/-/archivo-black-5.0.12.tgz", - "integrity": "sha512-zHsdUkz1ax+OEGAJadV5Jglzd7qhCZevOGjWPeuYo8Oh1JhHwKPocPXYU32rVBRWu1rRuvHNYg82+1tYJYZXbA==" + "version": "5.0.13", + "resolved": "https://registry.npmjs.org/@fontsource/archivo-black/-/archivo-black-5.0.13.tgz", + "integrity": "sha512-zFAxd0j3XrVBqSHMLdA0A7ZExGhgM7EO0Sx7MewQdRcYGJ45PBojGIp22f5Deb8DuZB9nESz+qAHABUF1XKpFA==" }, "node_modules/@fontsource/inter": { "version": "5.0.8", @@ -3524,6 +3525,64 @@ "truncatise": "0.0.8" } }, + "node_modules/@redis/bloom": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@redis/bloom/-/bloom-1.2.0.tgz", + "integrity": "sha512-HG2DFjYKbpNmVXsa0keLHp/3leGJz1mjh09f2RLGGLQZzSHpkmZWuwJbAvo3QcRY8p80m5+ZdXZdYOSBLlp7Cg==", + "peerDependencies": { + "@redis/client": "^1.0.0" + } + }, + "node_modules/@redis/client": { + "version": "1.5.11", + "resolved": "https://registry.npmjs.org/@redis/client/-/client-1.5.11.tgz", + "integrity": "sha512-cV7yHcOAtNQ5x/yQl7Yw1xf53kO0FNDTdDU6bFIMbW6ljB7U7ns0YRM+QIkpoqTAt6zK5k9Fq0QWlUbLcq9AvA==", + "dependencies": { + "cluster-key-slot": "1.1.2", + "generic-pool": "3.9.0", + "yallist": "4.0.0" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/@redis/client/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/@redis/graph": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@redis/graph/-/graph-1.1.0.tgz", + "integrity": "sha512-16yZWngxyXPd+MJxeSr0dqh2AIOi8j9yXKcKCwVaKDbH3HTuETpDVPcLujhFYVPtYrngSco31BUcSa9TH31Gqg==", + "peerDependencies": { + "@redis/client": "^1.0.0" + } + }, + "node_modules/@redis/json": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@redis/json/-/json-1.0.6.tgz", + "integrity": "sha512-rcZO3bfQbm2zPRpqo82XbW8zg4G/w4W3tI7X8Mqleq9goQjAGLL7q/1n1ZX4dXEAmORVZ4s1+uKLaUOg7LrUhw==", + "peerDependencies": { + "@redis/client": "^1.0.0" + } + }, + "node_modules/@redis/search": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/@redis/search/-/search-1.1.5.tgz", + "integrity": "sha512-hPP8w7GfGsbtYEJdn4n7nXa6xt6hVZnnDktKW4ArMaFQ/m/aR7eFvsLQmG/mn1Upq99btPJk+F27IQ2dYpCoUg==", + "peerDependencies": { + "@redis/client": "^1.0.0" + } + }, + "node_modules/@redis/time-series": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@redis/time-series/-/time-series-1.0.5.tgz", + "integrity": "sha512-IFjIgTusQym2B5IZJG3XKr5llka7ey84fw/NOYqESP5WUfQs9zz1ww/9+qoz4ka/S6KcGBodzlCeZ5UImKbscg==", + "peerDependencies": { + "@redis/client": "^1.0.0" + } + }, "node_modules/@sinclair/typebox": { "version": "0.27.8", "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", @@ -4043,9 +4102,9 @@ "dev": true }, "node_modules/@types/node": { - "version": "20.7.1", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.7.1.tgz", - "integrity": "sha512-LT+OIXpp2kj4E2S/p91BMe+VgGX2+lfO+XTpfXhh+bCk2LkQtHZSub8ewFBMGP5ClysPjTDFa4sMI8Q3n4T0wg==" + "version": "20.8.0", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.8.0.tgz", + "integrity": "sha512-LzcWltT83s1bthcvjBmiBvGJiiUe84NWRHkw+ZV6Fr41z2FbIzvc815dk2nQ3RAKMuN2fkenM/z3Xv2QzEpYxQ==" }, "node_modules/@types/pino": { "version": "6.3.12", @@ -6085,9 +6144,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001541", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001541.tgz", - "integrity": "sha512-bLOsqxDgTqUBkzxbNlSBt8annkDpQB9NdzdTbO2ooJ+eC/IQcvDspDc058g84ejCelF7vHUx57KIOjEecOHXaw==", + "version": "1.0.30001542", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001542.tgz", + "integrity": "sha512-UrtAXVcj1mvPBFQ4sKd38daP8dEcXXr5sQe6QNNinaPd0iA/cxg9/l3VrSdL73jgw5sKyuQ6jNgiKO12W3SsVA==", "dev": true, "funding": [ { @@ -6472,6 +6531,14 @@ "node": ">=6" } }, + "node_modules/cluster-key-slot": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/cluster-key-slot/-/cluster-key-slot-1.1.2.tgz", + "integrity": "sha512-RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA==", + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/co-compose": { "version": "7.0.3", "resolved": "https://registry.npmjs.org/co-compose/-/co-compose-7.0.3.tgz", @@ -6739,12 +6806,12 @@ } }, "node_modules/core-js-compat": { - "version": "3.32.2", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.32.2.tgz", - "integrity": "sha512-+GjlguTDINOijtVRUxrQOv3kfu9rl+qPNdX2LTbJ/ZyVTuxK+ksVSAGX1nHstu4hrv1En/uPTtWgq2gI5wt4AQ==", + "version": "3.33.0", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.33.0.tgz", + "integrity": "sha512-0w4LcLXsVEuNkIqwjjf9rjCoPhK8uqA4tMRh4Ge26vfLtUutshn+aRJU21I9LCJlh2QQHfisNToLjw1XEJLTWw==", "dev": true, "dependencies": { - "browserslist": "^4.21.10" + "browserslist": "^4.22.1" }, "funding": { "type": "opencollective", @@ -7973,9 +8040,9 @@ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "node_modules/electron-to-chromium": { - "version": "1.4.535", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.535.tgz", - "integrity": "sha512-4548PpR4S5X5dlvX8NUIw0njH7btQtBoJWcgzpq7n2F9NQ5gMXOPP/6p6iVx6+YT3FVioNhEGa14WJj1k+2SfA==", + "version": "1.4.537", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.537.tgz", + "integrity": "sha512-W1+g9qs9hviII0HAwOdehGYkr+zt7KKdmCcJcjH0mYg6oL8+ioT3Skjmt7BLoAQqXhjf40AXd+HlR4oAWMlXjA==", "dev": true }, "node_modules/emittery": { @@ -9206,6 +9273,14 @@ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" }, + "node_modules/generic-pool": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/generic-pool/-/generic-pool-3.9.0.tgz", + "integrity": "sha512-hymDOu5B53XvN4QT9dBmZxPX4CWhBPPLguTZ9MMFeFa/Kg0xWVfylOVNlJji/E7yTZWFd/q9GO5TxDLq156D7g==", + "engines": { + "node": ">= 4" + } + }, "node_modules/gensync": { "version": "1.0.0-beta.2", "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", @@ -10805,9 +10880,9 @@ } }, "node_modules/jest-util/node_modules/@types/yargs": { - "version": "17.0.25", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.25.tgz", - "integrity": "sha512-gy7iPgwnzNvxgAEi2bXOHWCVOG6f7xsprVJH4MjlAWeBmJ7vh/Y1kwMtUrs64ztf24zVIRCpr3n/z6gm9QIkgg==", + "version": "17.0.26", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.26.tgz", + "integrity": "sha512-Y3vDy2X6zw/ZCumcwLpdhM5L7jmyGpmBCTYMHDLqT2IKVMYRRLdv6ZakA+wxhra6Z/3bwhNbNl9bDGXaFU+6rw==", "dev": true, "dependencies": { "@types/yargs-parser": "*" @@ -11365,9 +11440,9 @@ "integrity": "sha512-QS9p+Q20YBxpE0dJBnF6CPURP7p1GUsxnhTxTWH5nG3A1F5w8Rg3T4Xyh5UlrFSbHp88oOciVP/0agsNLhkHdQ==" }, "node_modules/magic-string": { - "version": "0.30.3", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.3.tgz", - "integrity": "sha512-B7xGbll2fG/VjP+SWg4sX3JynwIU0mjoTc6MPpKNuIvftk6u6vqhDnk1R80b8C2GBR6ywqy+1DcKBrevBg+bmw==", + "version": "0.30.4", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.4.tgz", + "integrity": "sha512-Q/TKtsC5BPm0kGqgBIF9oXAs/xEf2vRKiIB4wCRQTJOQIByZ1d+NnUOotvJOvNpi5RNIgVOMC3pOuaP1ZTDlVg==", "dependencies": { "@jridgewell/sourcemap-codec": "^1.4.15" }, @@ -13176,9 +13251,9 @@ } }, "node_modules/postcss": { - "version": "8.4.30", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.30.tgz", - "integrity": "sha512-7ZEao1g4kd68l97aWG/etQKPKq07us0ieSZ2TnFDk11i0ZfDW2AwKHYU8qv4MZKqN2fdBfg+7q0ES06UA73C1g==", + "version": "8.4.31", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", + "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", "funding": [ { "type": "opencollective", @@ -14193,6 +14268,19 @@ "esprima": "~4.0.0" } }, + "node_modules/redis": { + "version": "4.6.10", + "resolved": "https://registry.npmjs.org/redis/-/redis-4.6.10.tgz", + "integrity": "sha512-mmbyhuKgDiJ5TWUhiKhBssz+mjsuSI/lSZNPI9QvZOYzWvYGejtb+W3RlDDf8LD6Bdl5/mZeG8O1feUGhXTxEg==", + "dependencies": { + "@redis/bloom": "1.2.0", + "@redis/client": "1.5.11", + "@redis/graph": "1.1.0", + "@redis/json": "1.0.6", + "@redis/search": "1.1.5", + "@redis/time-series": "1.0.5" + } + }, "node_modules/reflect-metadata": { "version": "0.1.13", "resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.1.13.tgz", diff --git a/package.json b/package.json index 8adc18e..e7c4397 100644 --- a/package.json +++ b/package.json @@ -5,6 +5,7 @@ "scripts": { "type-check": "tsc --noEmit", "dev": "node ace serve --watch", + "compress:xslt": "./node_modules/xslt3/xslt3.js -xsl:public/assets2/datasetxml2oai-pmh.xslt -export:public/assets2/datasetxml2oai.sef.json -t -nogo '-ns:##html5'", "build": "node ace build --production", "start": "node server.js", "lint": "eslint . --ext=.ts", @@ -86,6 +87,7 @@ "notiwind": "^2.0.0", "pg": "^8.9.0", "proxy-addr": "^2.0.7", + "redis": "^4.6.10", "reflect-metadata": "^0.1.13", "saxon-js": "^2.5.0", "source-map-support": "^0.5.21", diff --git a/providers/TokenWorkerProvider.ts b/providers/TokenWorkerProvider.ts new file mode 100644 index 0000000..88a1523 --- /dev/null +++ b/providers/TokenWorkerProvider.ts @@ -0,0 +1,61 @@ +import type { ApplicationContract } from '@ioc:Adonis/Core/Application'; + +/* +|-------------------------------------------------------------------------- +| Provider +|-------------------------------------------------------------------------- +| +| Your application is not ready when this file is loaded by the framework. +| Hence, the top level imports relying on the IoC container will not work. +| You must import them inside the life-cycle methods defined inside +| the provider class. +| +| @example: +| +| public async ready () { +| const Database = this.app.container.resolveBinding('Adonis/Lucid/Database') +| const Event = this.app.container.resolveBinding('Adonis/Core/Event') +| Event.on('db:query', Database.prettyPrint) +| } +| +*/ +export default class TokenWorkerProvider { + public static needsApplication = true; + private tokenWorkerInstance; //: TokenWorkerService | null = null; + + constructor(protected app: ApplicationContract) {} + + public register() { + // Register your own bindings + // Bind TokenWorker to the IoC container + this.app.container.singleton('App/Library/Oai/TokenWorkerContract', () => { + // 1. import the oai configuration + const ttl: number = 86400; + + // 2. import our REDIS wrapper class + const TokenWorkerService = require('App/Library/Oai/TokenWorkerSerice').default; + this.tokenWorkerInstance = new TokenWorkerService(ttl); + + // 3. return a new instance + return this.tokenWorkerInstance; + }); + } + + // public async boot() { + // // All bindings are ready, feel free to use them + // // optionally do some initial setup + // } + + // public async ready() { + // // App is ready + // } + + public async shutdown() { + console.log('TokenServerProvider shutdown()'); + // Cleanup, since app is going down + if (this.tokenWorkerInstance) { + // Call the disconnect method when the application is shutting down + await this.tokenWorkerInstance.close(); + } + } +} diff --git a/public/assets/manifest.json b/public/assets/manifest.json index 4fd69a0..69e9ae0 100644 --- a/public/assets/manifest.json +++ b/public/assets/manifest.json @@ -8,10 +8,10 @@ "assets/fonts/inter-latin-400-normal.woff2": "http://localhost:8080/assets/fonts/inter-latin-400-normal.be7cb18d.woff2", "assets/fonts/archivo-black-latin-ext-400-normal.woff2": "http://localhost:8080/assets/fonts/archivo-black-latin-ext-400-normal.21761451.woff2", "assets/fonts/inter-cyrillic-ext-400-normal.woff": "http://localhost:8080/assets/fonts/inter-cyrillic-ext-400-normal.3c63e274.woff", - "assets/fonts/archivo-black-latin-400-normal.woff": "http://localhost:8080/assets/fonts/archivo-black-latin-400-normal.58a301a6.woff", + "assets/fonts/archivo-black-latin-400-normal.woff": "http://localhost:8080/assets/fonts/archivo-black-latin-400-normal.583e4fc9.woff", "assets/fonts/inter-greek-400-normal.woff": "http://localhost:8080/assets/fonts/inter-greek-400-normal.b31b8612.woff", "assets/fonts/inter-cyrillic-ext-400-normal.woff2": "http://localhost:8080/assets/fonts/inter-cyrillic-ext-400-normal.fcc125c4.woff2", - "assets/fonts/archivo-black-latin-ext-400-normal.woff": "http://localhost:8080/assets/fonts/archivo-black-latin-ext-400-normal.5ab5ba92.woff", + "assets/fonts/archivo-black-latin-ext-400-normal.woff": "http://localhost:8080/assets/fonts/archivo-black-latin-ext-400-normal.ce39b04f.woff", "assets/fonts/inter-cyrillic-400-normal.woff": "http://localhost:8080/assets/fonts/inter-cyrillic-400-normal.3862a5ab.woff", "assets/fonts/inter-greek-400-normal.woff2": "http://localhost:8080/assets/fonts/inter-greek-400-normal.0278a49f.woff2", "assets/fonts/inter-greek-ext-400-normal.woff": "http://localhost:8080/assets/fonts/inter-greek-ext-400-normal.61350b97.woff", diff --git a/public/assets2/datasetxml2oai-pmh.xslt b/public/assets2/datasetxml2oai-pmh.xslt index 87ade63..6ed8fe3 100644 --- a/public/assets2/datasetxml2oai-pmh.xslt +++ b/public/assets2/datasetxml2oai-pmh.xslt @@ -43,7 +43,6 @@ --> - @@ -739,12 +738,30 @@ - - - + + + + + + + + + - + + + diff --git a/public/assets2/datasetxml2oai.sef.json b/public/assets2/datasetxml2oai.sef.json index 1dd07ce..5a9e83a 100644 --- a/public/assets2/datasetxml2oai.sef.json +++ b/public/assets2/datasetxml2oai.sef.json @@ -1 +1 @@ -{"N":"package","version":"30","packageVersion":"1","saxonVersion":"SaxonJS 2.5","target":"JS","targetVersion":"2","name":"TOP-LEVEL","relocatable":"false","buildDateTime":"2023-07-14T13:46:35.021+02:00","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"co","id":"0","uniform":"true","binds":"26","C":[{"N":"template","flags":"os","module":"oai_datacite.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","name":"Q{}RdrDate2","line":"147","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","expand-text":"false","sType":"* ","C":[{"N":"sequence","role":"body","sType":"* ","C":[{"N":"choose","sType":"? ","line":"148","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"148","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]"},{"N":"gc","op":"<","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}unixTimestamp","bSlot":"0"}]},{"N":"data","diag":"1|1||gc","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}UnixTimestamp"}]}]}]}]},{"N":"elem","name":"date","sType":"1NE nQ{http://datacite.org/schema/kernel-4}date ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"149","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"dateType","sType":"1NA ","line":"150","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Available"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"let","var":"Q{}embargoDate","slot":"0","sType":"*NT ","line":"155","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"155","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Month"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Day"}]}]}]}]},{"N":"str","val":"00"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"156","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}embargoDate","slot":"0","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"156"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","line":"159","C":[{"N":"docOrder","sType":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]","line":"159","C":[{"N":"slash","role":"select","simple":"1","sType":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]","C":[{"N":"treat","as":"N","diag":"13|0|XTTE0510|","C":[{"N":"dot"}]},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]","sType":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "}]}]},{"N":"elem","name":"date","sType":"1NE nQ{http://datacite.org/schema/kernel-4}date ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"160","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"dateType","sType":"1NA ","line":"161","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"created"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"let","var":"Q{}createdAt","slot":"0","sType":"*NT ","line":"166","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"166","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Month"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Day"}]}]}]}]},{"N":"str","val":"00"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"167","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}createdAt","slot":"0","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"167"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"co","binds":"","id":"1","uniform":"true","C":[{"N":"template","flags":"os","module":"oai_datacite.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","name":"Q{}CamelCaseWord","line":"225","ns":"xml=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","expand-text":"false","sType":"* ","C":[{"N":"sequence","role":"body","sType":"* ","C":[{"N":"param","name":"Q{}text","slot":"0","sType":"* ","as":"* ","flags":"","line":"226","C":[{"N":"str","sType":"1AS ","val":"","role":"select"},{"N":"supplied","role":"conversion","slot":"0","sType":"* "}]},{"N":"param","name":"Q{}firstLower","slot":"1","sType":"* ","as":"* ","flags":"","line":"227","C":[{"N":"true","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"227"},{"N":"supplied","role":"conversion","slot":"1","sType":"* "}]},{"N":"let","var":"Q{}Upper","slot":"2","sType":"*NT ","line":"228","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","role":"select","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"ABCDEFGHIJKLMNOPQRSTUVQXYZ"}]}]},{"N":"let","var":"Q{}Lower","slot":"3","sType":"*NT ","line":"229","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","role":"select","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"abcdefghijklmnopqrstuvwxyz"}]}]},{"N":"forEach","sType":"*NT ","line":"230","C":[{"N":"fn","name":"tokenize","sType":"*AS","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"230","C":[{"N":"treat","as":"AS","diag":"0|0||tokenize","C":[{"N":"check","card":"?","diag":"0|0||tokenize","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||tokenize","C":[{"N":"check","card":"?","diag":"0|0||tokenize","C":[{"N":"data","diag":"0|0||tokenize","C":[{"N":"varRef","name":"Q{}text","slot":"0"}]}]}]}]}]},{"N":"str","val":"_"}]},{"N":"sequence","sType":"*NT ","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"231","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"232","C":[{"N":"compareToInt","op":"eq","val":"1","C":[{"N":"fn","name":"position"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}firstLower","slot":"1"}]},{"N":"true"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"233","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"substring","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"233","C":[{"N":"dot"},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"1"}]},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"1"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"236","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"translate","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"236","C":[{"N":"fn","name":"substring","C":[{"N":"dot"},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"1"}]},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"1"}]}]},{"N":"treat","as":"AS","diag":"0|1||translate","C":[{"N":"check","card":"1","diag":"0|1||translate","C":[{"N":"cvUntyped","to":"AS","diag":"0|1||translate","C":[{"N":"check","card":"1","diag":"0|1||translate","C":[{"N":"data","diag":"0|1||translate","C":[{"N":"varRef","name":"Q{}Lower","slot":"3"}]}]}]}]}]},{"N":"treat","as":"AS","diag":"0|2||translate","C":[{"N":"check","card":"1","diag":"0|2||translate","C":[{"N":"cvUntyped","to":"AS","diag":"0|2||translate","C":[{"N":"check","card":"1","diag":"0|2||translate","C":[{"N":"data","diag":"0|2||translate","C":[{"N":"varRef","name":"Q{}Upper","slot":"2"}]}]}]}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"239","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"substring","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"239","C":[{"N":"dot"},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"2"}]},{"N":"convert","to":"AO","flags":"","C":[{"N":"fn","name":"string-length","C":[{"N":"dot"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]}]},{"N":"co","binds":"","id":"2","uniform":"true","C":[{"N":"template","flags":"os","module":"oai_datacite.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","name":"Q{}AlternateIdentifier","line":"309","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","expand-text":"false","sType":"1NE nQ{http://datacite.org/schema/kernel-4}alternateIdentifier ","C":[{"N":"elem","name":"alternateIdentifier","sType":"1NE nQ{http://datacite.org/schema/kernel-4}alternateIdentifier ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"body","line":"310","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"alternateIdentifierType","sType":"1NA ","line":"311","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"url"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"315","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"docOrder","sType":"*NA nQ{}landingpage","role":"select","line":"315","C":[{"N":"slash","role":"select","simple":"1","sType":"*NA nQ{}landingpage","C":[{"N":"treat","as":"N","diag":"13|0|XTTE0510|","C":[{"N":"dot"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}landingpage","sType":"*NA nQ{}landingpage","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]},{"N":"co","binds":"","id":"3","uniform":"true","C":[{"N":"template","flags":"os","module":"oai_2_iso19139.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","name":"Q{}datestamp","line":"385","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}dateStamp ","C":[{"N":"elem","name":"gmd:dateStamp","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}dateStamp ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","role":"body","line":"386","C":[{"N":"let","var":"Q{}theDate","slot":"0","sType":"*NE ","line":"388","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"389","C":[{"N":"docOrder","sType":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]","line":"390","C":[{"N":"slash","role":"select","simple":"1","sType":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]","C":[{"N":"treat","as":"N","diag":"13|0|XTTE0510|","C":[{"N":"dot"}]},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]","sType":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco "}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"395","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"395","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Month"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Day"}]}]}]}]},{"N":"str","val":"00"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"402","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"402","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Month"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Day"}]}]}]}]},{"N":"str","val":"00"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gco:Date","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Date ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"406","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"407","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"407","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"varRef","name":"Q{}theDate","slot":"0"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]},{"N":"co","binds":"","id":"4","uniform":"true","C":[{"N":"template","flags":"os","module":"oai_2_iso19139.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","name":"Q{}title","line":"413","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}title ","C":[{"N":"elem","name":"gmd:title","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}title ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","role":"body","line":"414","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"415","C":[{"N":"forEach","sType":"* ","line":"416","C":[{"N":"filter","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"416","C":[{"N":"axis","name":"child","nodeTest":"*NE"},{"N":"or","C":[{"N":"compareToString","op":"eq","val":"TitleMain","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"name","C":[{"N":"dot"}]}]},{"N":"compareToString","op":"eq","val":"TitleAdditional","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"name","C":[{"N":"dot"}]}]}]}]},{"N":"choose","sType":"? ","type":"item()*","line":"417","C":[{"N":"compareToString","op":"eq","val":"Main","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"418","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"419","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"419"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"421","C":[{"N":"compareToString","op":"eq","val":"Sub","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Value"},{"N":"str","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"422","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"422","C":[{"N":"str","val":"; Subtitle: "},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"attVal","name":"Q{}Value"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"424","C":[{"N":"compareToString","op":"eq","val":"Translated","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Value"},{"N":"str","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"425","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"425","C":[{"N":"str","val":"; Translated title: "},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"attVal","name":"Q{}Value"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"427","C":[{"N":"compareToString","op":"eq","val":"Other","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Value"},{"N":"str","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"428","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"428","C":[{"N":"str","val":"; Other title: "},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"attVal","name":"Q{}Value"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]}]}]},{"N":"co","binds":"","id":"5","uniform":"true","C":[{"N":"template","flags":"os","module":"oai_2_iso19139.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","name":"Q{}abstract","line":"663","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}abstract ","C":[{"N":"elem","name":"gmd:abstract","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}abstract ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","role":"body","line":"664","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"665","C":[{"N":"forEach","sType":"* ","line":"666","C":[{"N":"filter","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"666","C":[{"N":"axis","name":"child","nodeTest":"*NE"},{"N":"or","C":[{"N":"compareToString","op":"eq","val":"TitleAbstract","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"name","C":[{"N":"dot"}]}]},{"N":"compareToString","op":"eq","val":"TitleAbstractAdditional","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"name","C":[{"N":"dot"}]}]}]}]},{"N":"choose","sType":"? ","type":"item()*","line":"668","C":[{"N":"compareToString","op":"eq","val":"Abstract","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"669","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"671","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"671","C":[{"N":"str","val":"\nAbstract: "},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"compareToString","op":"eq","val":"Translated","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"673","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"674","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"674","C":[{"N":"str","val":"\nTranslated Description: "},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"676","C":[{"N":"compareToString","op":"eq","val":"SeriesInformation","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Value"},{"N":"str","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"677","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"677","C":[{"N":"str","val":"\nSeries Information: "},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"679","C":[{"N":"compareToString","op":"eq","val":"TableOfContents","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Value"},{"N":"str","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"680","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"680","C":[{"N":"str","val":"\nTable of Contents: "},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"682","C":[{"N":"compareToString","op":"eq","val":"TechnicalInfo","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Value"},{"N":"str","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"683","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"683","C":[{"N":"str","val":"\nTechnical Info: "},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"685","C":[{"N":"compareToString","op":"eq","val":"Methods","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Value"},{"N":"str","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"686","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"686","C":[{"N":"str","val":"\nMethods: "},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"688","C":[{"N":"compareToString","op":"eq","val":"Other","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Value"},{"N":"str","val":""}]}]},{"N":"choose","sType":"? ","line":"689","C":[{"N":"fn","name":"not","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"689","C":[{"N":"fn","name":"contains","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]},{"N":"str","val":"Related publications:"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"690","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"690","C":[{"N":"str","val":"\nOther Description: "},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]}]}]},{"N":"co","id":"6","uniform":"true","binds":"48 46 47 49 6","C":[{"N":"template","flags":"os","module":"datasetxml2oai-pmh.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","name":"Q{}url-encode","line":"56","expand-text":"false","sType":"* ","C":[{"N":"sequence","role":"body","sType":"* ","C":[{"N":"param","name":"Q{}str","slot":"0","sType":"* ","as":"* ","flags":"","line":"57","C":[{"N":"str","sType":"1AS ","val":"","role":"select"},{"N":"supplied","role":"conversion","slot":"0","sType":"* "}]},{"N":"choose","sType":"* ","line":"58","C":[{"N":"varRef","name":"Q{}str","slot":"0","sType":"*","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"58"},{"N":"let","var":"Q{}first-char","slot":"1","sType":"* ","line":"59","C":[{"N":"fn","name":"substring","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"59","C":[{"N":"treat","as":"AS","diag":"0|0||substring","C":[{"N":"check","card":"?","diag":"0|0||substring","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||substring","C":[{"N":"check","card":"?","diag":"0|0||substring","C":[{"N":"data","diag":"0|0||substring","C":[{"N":"varRef","name":"Q{}str","slot":"0"}]}]}]}]}]},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"1"}]},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"1"}]}]},{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"*NT ","type":"item()*","line":"60","C":[{"N":"fn","name":"contains","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"61","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||contains","C":[{"N":"atomSing","diag":"0|0||contains","card":"?","C":[{"N":"gVarRef","name":"Q{}safe","bSlot":"0"}]}]},{"N":"treat","as":"AS","diag":"0|1||contains","C":[{"N":"check","card":"?","diag":"0|1||contains","C":[{"N":"cvUntyped","to":"AS","diag":"0|1||contains","C":[{"N":"check","card":"?","diag":"0|1||contains","C":[{"N":"data","diag":"0|1||contains","C":[{"N":"varRef","name":"Q{}first-char","slot":"1"}]}]}]}]}]},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"62","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}first-char","slot":"1","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"62"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"let","var":"Q{}codepoint","slot":"2","sType":"*NT ","line":"65","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","role":"select","C":[{"N":"choose","sType":"* ","type":"item()*","line":"66","C":[{"N":"fn","name":"contains","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"67","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||contains","C":[{"N":"atomSing","diag":"0|0||contains","card":"?","C":[{"N":"gVarRef","name":"Q{}ascii","bSlot":"1"}]}]},{"N":"treat","as":"AS","diag":"0|1||contains","C":[{"N":"check","card":"?","diag":"0|1||contains","C":[{"N":"cvUntyped","to":"AS","diag":"0|1||contains","C":[{"N":"check","card":"?","diag":"0|1||contains","C":[{"N":"data","diag":"0|1||contains","C":[{"N":"varRef","name":"Q{}first-char","slot":"1"}]}]}]}]}]},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"68","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"arith","sType":"1ADI","op":"+","calc":"i+i","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"68","C":[{"N":"fn","name":"string-length","C":[{"N":"fn","name":"substring-before","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||substring-before","C":[{"N":"atomSing","diag":"0|0||substring-before","card":"?","C":[{"N":"gVarRef","name":"Q{}ascii","bSlot":"1"}]}]},{"N":"treat","as":"AS","diag":"0|1||substring-before","C":[{"N":"check","card":"?","diag":"0|1||substring-before","C":[{"N":"cvUntyped","to":"AS","diag":"0|1||substring-before","C":[{"N":"check","card":"?","diag":"0|1||substring-before","C":[{"N":"data","diag":"0|1||substring-before","C":[{"N":"varRef","name":"Q{}first-char","slot":"1"}]}]}]}]}]},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]}]},{"N":"int","val":"32"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"fn","name":"contains","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"70","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||contains","C":[{"N":"atomSing","diag":"0|0||contains","card":"?","C":[{"N":"gVarRef","name":"Q{}latin1","bSlot":"2"}]}]},{"N":"treat","as":"AS","diag":"0|1||contains","C":[{"N":"check","card":"?","diag":"0|1||contains","C":[{"N":"cvUntyped","to":"AS","diag":"0|1||contains","C":[{"N":"check","card":"?","diag":"0|1||contains","C":[{"N":"data","diag":"0|1||contains","C":[{"N":"varRef","name":"Q{}first-char","slot":"1"}]}]}]}]}]},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"71","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"arith","sType":"1ADI","op":"+","calc":"i+i","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"71","C":[{"N":"fn","name":"string-length","C":[{"N":"fn","name":"substring-before","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||substring-before","C":[{"N":"atomSing","diag":"0|0||substring-before","card":"?","C":[{"N":"gVarRef","name":"Q{}latin1","bSlot":"2"}]}]},{"N":"treat","as":"AS","diag":"0|1||substring-before","C":[{"N":"check","card":"?","diag":"0|1||substring-before","C":[{"N":"cvUntyped","to":"AS","diag":"0|1||substring-before","C":[{"N":"check","card":"?","diag":"0|1||substring-before","C":[{"N":"data","diag":"0|1||substring-before","C":[{"N":"varRef","name":"Q{}first-char","slot":"1"}]}]}]}]}]},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]}]},{"N":"int","val":"160"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"sequence","sType":"* ","C":[{"N":"message","sType":"0 ","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"valueOf","sType":"1NT ","role":"select","C":[{"N":"str","sType":"1AS ","val":"Warning: string contains a character that is out of range! Substituting \"?\"."}]},{"N":"str","sType":"1AS ","val":"false","role":"terminate"},{"N":"str","sType":"1AS ","val":"Q{http://www.w3.org/2005/xqt-errors}XTMM9000","role":"error"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"63"}]}]}]}]},{"N":"let","var":"Q{}hex-digit1","slot":"3","sType":"*NT ","line":"79","C":[{"N":"fn","name":"substring","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"79","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||substring","C":[{"N":"atomSing","diag":"0|0||substring","card":"?","C":[{"N":"gVarRef","name":"Q{}hex","bSlot":"3"}]}]},{"N":"check","card":"1","diag":"0|1||substring","C":[{"N":"convert","to":"AO","flags":"","C":[{"N":"cvUntyped","to":"AO","diag":"0|1||substring","C":[{"N":"arith","op":"+","calc":"a+a","C":[{"N":"fn","name":"floor","C":[{"N":"treat","as":"A m[AO,AD,AF]","diag":"0|0||floor","C":[{"N":"check","card":"?","diag":"0|0||floor","C":[{"N":"cvUntyped","to":"AO","diag":"0|0||floor","C":[{"N":"arith","op":"div","calc":"a/a","C":[{"N":"check","card":"?","diag":"1|0||arith","C":[{"N":"data","diag":"1|0||arith","C":[{"N":"varRef","name":"Q{}codepoint","slot":"2"}]}]},{"N":"int","val":"16"}]}]}]}]}]},{"N":"int","val":"1"}]}]}]}]},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"1"}]}]},{"N":"let","var":"Q{}hex-digit2","slot":"4","sType":"*NT ","line":"80","C":[{"N":"fn","name":"substring","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"80","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||substring","C":[{"N":"atomSing","diag":"0|0||substring","card":"?","C":[{"N":"gVarRef","name":"Q{}hex","bSlot":"3"}]}]},{"N":"check","card":"1","diag":"0|1||substring","C":[{"N":"convert","to":"AO","flags":"","C":[{"N":"cvUntyped","to":"AO","diag":"0|1||substring","C":[{"N":"arith","op":"+","calc":"a+a","C":[{"N":"arith","op":"mod","calc":"a%a","C":[{"N":"check","card":"?","diag":"1|0||arith","C":[{"N":"data","diag":"1|0||arith","C":[{"N":"varRef","name":"Q{}codepoint","slot":"2"}]}]},{"N":"int","val":"16"}]},{"N":"int","val":"1"}]}]}]}]},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"1"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"81","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"81","C":[{"N":"str","val":"%"},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"data","diag":"0|1||concat","C":[{"N":"varRef","name":"Q{}hex-digit1","slot":"3"}]}]},{"N":"check","card":"?","diag":"0|2||concat","C":[{"N":"data","diag":"0|2||concat","C":[{"N":"varRef","name":"Q{}hex-digit2","slot":"4"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]},{"N":"choose","sType":"* ","line":"84","C":[{"N":"compareToInt","op":"gt","val":"1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"84","C":[{"N":"fn","name":"string-length","C":[{"N":"treat","as":"AS","diag":"0|0||string-length","C":[{"N":"check","card":"?","diag":"0|0||string-length","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||string-length","C":[{"N":"check","card":"?","diag":"0|0||string-length","C":[{"N":"data","diag":"0|0||string-length","C":[{"N":"varRef","name":"Q{}str","slot":"0"}]}]}]}]}]}]}]},{"N":"callT","bSlot":"4","sType":"* ","name":"Q{}url-encode","line":"85","C":[{"N":"withParam","name":"Q{}str","slot":"0","sType":"1AS","C":[{"N":"fn","name":"substring","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"86","C":[{"N":"treat","as":"AS","diag":"0|0||substring","C":[{"N":"check","card":"?","diag":"0|0||substring","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||substring","C":[{"N":"check","card":"?","diag":"0|0||substring","C":[{"N":"data","diag":"0|0||substring","C":[{"N":"varRef","name":"Q{}str","slot":"0"}]}]}]}]}]},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"2"}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"co","id":"7","uniform":"true","binds":"30 58 37 38 67 59 60","C":[{"N":"template","flags":"os","module":"datasetxml2oai-pmh.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","name":"Q{}Rdr_Dataset_Data","line":"331","expand-text":"false","sType":"* ","C":[{"N":"sequence","role":"body","sType":"* ","C":[{"N":"elem","name":"header","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}header ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"332","C":[{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"? ","line":"333","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"333","C":[{"N":"attVal","name":"Q{}ServerState"},{"N":"str","val":"deleted"}]},{"N":"att","name":"status","sType":"1NA ","line":"334","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"deleted"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"elem","name":"identifier","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}identifier ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"338","C":[{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"oai:"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"340","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}repIdentifier","bSlot":"0","role":"select","line":"340"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":":"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"342","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"docOrder","sType":"*NA nQ{}PublishId","role":"select","line":"342","C":[{"N":"slash","role":"select","simple":"1","sType":"*NA nQ{}PublishId","C":[{"N":"treat","as":"N","diag":"13|0|XTTE0510|","C":[{"N":"dot"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}PublishId","sType":"*NA nQ{}PublishId","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"datestamp","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}datestamp ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"344","C":[{"N":"choose","sType":"*NT ","type":"item()*","line":"345","C":[{"N":"docOrder","sType":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]","line":"346","C":[{"N":"slash","role":"select","simple":"1","sType":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]","C":[{"N":"treat","as":"N","diag":"13|0|XTTE0510|","C":[{"N":"dot"}]},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]","sType":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "}]}]},{"N":"let","var":"Q{}dateModified","slot":"0","sType":"*NT ","line":"354","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"354","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Month"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Day"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"T"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Hour"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":":"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Minute"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":":"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Second"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"Z"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"355","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}dateModified","slot":"0","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"355"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"true"},{"N":"let","var":"Q{}datePublished","slot":"0","sType":"*NT ","line":"365","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"365","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Month"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Day"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"T"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Hour"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":":"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Minute"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":":"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Second"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"Z"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"366","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}datePublished","slot":"0","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"366"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"applyT","sType":"* ","line":"374","mode":"#unnamed","bSlot":"1","C":[{"N":"docOrder","sType":"*NE u[NE nQ{}SetSpec,NE nQ{http://www.w3.org/1999/xhtml}SetSpec]","role":"select","line":"374","C":[{"N":"slash","role":"select","simple":"1","sType":"*NE u[NE nQ{}SetSpec,NE nQ{http://www.w3.org/1999/xhtml}SetSpec]","C":[{"N":"treat","as":"N","diag":"13|0|XTTE0510|","C":[{"N":"dot"}]},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}SetSpec,NE nQ{http://www.w3.org/1999/xhtml}SetSpec]","sType":"*NE u[NE nQ{}SetSpec,NE nQ{http://www.w3.org/1999/xhtml}SetSpec]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "}]}]}]},{"N":"elem","name":"setSpec","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}setSpec ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"375","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"open_access"}]}]},{"N":"elem","name":"setSpec","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}setSpec ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"378","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"doc-type:ResearchData"}]}]}]}]},{"N":"choose","sType":"? ","type":"item()*","line":"382","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"384","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_verb","bSlot":"2"}]},{"N":"str","val":"ListIdentifiers"}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}ServerState"},{"N":"str","val":"deleted"}]}]},{"N":"elem","name":"metadata","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}metadata ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"386","C":[{"N":"choose","sType":"* ","type":"item()*","line":"388","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"389","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_metadataPrefix","bSlot":"3"}]},{"N":"str","val":"oai_dc"}]},{"N":"applyT","sType":"* ","line":"390","mode":"Q{}oai_dc","bSlot":"4","C":[{"N":"dot","sType":"1","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"390"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"392","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_metadataPrefix","bSlot":"3"}]},{"N":"str","val":"oai_datacite"}]},{"N":"applyT","sType":"* ","line":"393","mode":"Q{}oai_datacite","bSlot":"5","C":[{"N":"dot","sType":"1","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"393"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"395","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_metadataPrefix","bSlot":"3"}]},{"N":"str","val":"iso19139"}]},{"N":"applyT","sType":"* ","line":"396","mode":"Q{}iso19139","bSlot":"6","C":[{"N":"dot","sType":"1","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"396"}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"co","binds":"","id":"8","uniform":"true","C":[{"N":"template","flags":"os","module":"datasetxml2oai-pmh.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","name":"Q{}citation","line":"490","expand-text":"false","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}source ","C":[{"N":"elem","name":"dc:source","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}source ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"body","line":"491","C":[{"N":"let","var":"Q{}creatorName","slot":"0","sType":"*NT ","line":"492","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","role":"select","C":[{"N":"forEach","sType":"* ","line":"493","C":[{"N":"filter","sType":"*NE","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"493","C":[{"N":"axis","name":"child","nodeTest":"*NE"},{"N":"compareToString","op":"eq","val":"PersonAuthor","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"name","C":[{"N":"dot"}]}]}]},{"N":"let","var":"Q{}person","slot":"0","sType":"* ","line":"494","C":[{"N":"dot","sType":"1NE","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"494"},{"N":"let","var":"Q{}uppercase","slot":"1","sType":"* ","line":"495","C":[{"N":"str","val":"ABC..XYZ","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"495"},{"N":"let","var":"Q{}lowercase","slot":"2","sType":"* ","line":"496","C":[{"N":"str","val":"abc..zyz","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"496"},{"N":"let","var":"Q{}authorName","slot":"3","sType":"* ","line":"497","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","role":"select","C":[{"N":"choose","sType":"*NT ","type":"item()*","line":"498","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"499","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}person","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}FirstName"}]}]}]}]},{"N":"let","var":"Q{}name","slot":"3","sType":"*NT ","line":"502","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"502","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}person","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}LastName"}]}]}]}]},{"N":"str","val":", "},{"N":"fn","name":"concat","C":[{"N":"fn","name":"translate","C":[{"N":"fn","name":"substring","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||substring","C":[{"N":"check","card":"?","diag":"0|0||substring","C":[{"N":"data","diag":"0|0||substring","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}person","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}FirstName"}]}]}]}]}]},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"1"}]},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"1"}]}]},{"N":"treat","as":"AS","diag":"0|1||translate","C":[{"N":"check","card":"1","diag":"0|1||translate","C":[{"N":"cvUntyped","to":"AS","diag":"0|1||translate","C":[{"N":"check","card":"1","diag":"0|1||translate","C":[{"N":"data","diag":"0|1||translate","C":[{"N":"varRef","name":"Q{}lowercase","slot":"2"}]}]}]}]}]},{"N":"treat","as":"AS","diag":"0|2||translate","C":[{"N":"check","card":"1","diag":"0|2||translate","C":[{"N":"cvUntyped","to":"AS","diag":"0|2||translate","C":[{"N":"check","card":"1","diag":"0|2||translate","C":[{"N":"data","diag":"0|2||translate","C":[{"N":"varRef","name":"Q{}uppercase","slot":"1"}]}]}]}]}]}]},{"N":"str","val":"."}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"503","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}name","slot":"3","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"503"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"506","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"docOrder","sType":"*NA nQ{}LastName","role":"select","line":"506","C":[{"N":"docOrder","sType":"*NA nQ{}LastName","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}person","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}LastName"}]}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"sequence","sType":"? ","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"510","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"510","C":[{"N":"treat","as":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"data","diag":"0|0||normalize-space","C":[{"N":"varRef","name":"Q{}authorName","slot":"3"}]}]}]}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"choose","sType":"? ","type":"item()*","line":"511","C":[{"N":"vc","op":"ne","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"512","C":[{"N":"fn","name":"position"},{"N":"fn","name":"last"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":","}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]}]}]}]}]},{"N":"let","var":"Q{}year","slot":"1","sType":"*NT ","line":"516","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"516","C":[{"N":"str","val":" ("},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]},{"N":"str","val":"): "}]},{"N":"let","var":"Q{}mainTitle","slot":"2","sType":"*NT ","line":"517","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"517","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}TitleMain,NE nQ{http://www.w3.org/1999/xhtml}TitleMain]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"let","var":"Q{}creatingCorporation","slot":"3","sType":"*NT ","line":"518","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"518","C":[{"N":"str","val":"."},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}CreatingCorporation"}]}]},{"N":"str","val":", "}]},{"N":"let","var":"Q{}publisherName","slot":"4","sType":"*NT ","line":"519","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"519","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}PublisherName"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"520","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"520","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"varRef","name":"Q{}creatorName","slot":"0"}]}]},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"data","diag":"0|1||concat","C":[{"N":"varRef","name":"Q{}year","slot":"1"}]}]},{"N":"check","card":"?","diag":"0|2||concat","C":[{"N":"data","diag":"0|2||concat","C":[{"N":"varRef","name":"Q{}mainTitle","slot":"2"}]}]},{"N":"check","card":"?","diag":"0|3||concat","C":[{"N":"data","diag":"0|3||concat","C":[{"N":"varRef","name":"Q{}creatingCorporation","slot":"3"}]}]},{"N":"check","card":"?","diag":"0|4||concat","C":[{"N":"data","diag":"0|4||concat","C":[{"N":"varRef","name":"Q{}publisherName","slot":"4"}]}]},{"N":"str","val":", Wien"}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]}]}]},{"N":"co","binds":"","id":"9","uniform":"true","C":[{"N":"template","flags":"os","module":"datasetxml2oai-pmh.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","name":"Q{}RdrDate","line":"657","expand-text":"false","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}date ","C":[{"N":"elem","name":"dc:date","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}date ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"body","line":"658","C":[{"N":"choose","sType":"*NT ","type":"item()*","line":"659","C":[{"N":"docOrder","sType":"*NE u[NE nQ{}PublishedDate,NE nQ{http://www.w3.org/1999/xhtml}PublishedDate]","line":"660","C":[{"N":"slash","role":"select","simple":"1","sType":"*NE u[NE nQ{}PublishedDate,NE nQ{http://www.w3.org/1999/xhtml}PublishedDate]","C":[{"N":"treat","as":"N","diag":"13|0|XTTE0510|","C":[{"N":"dot"}]},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}PublishedDate,NE nQ{http://www.w3.org/1999/xhtml}PublishedDate]","sType":"*NE u[NE nQ{}PublishedDate,NE nQ{http://www.w3.org/1999/xhtml}PublishedDate]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "}]}]},{"N":"let","var":"Q{}publishedDate","slot":"0","sType":"*NT ","line":"665","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"665","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}PublishedDate,NE nQ{http://www.w3.org/1999/xhtml}PublishedDate]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}PublishedDate,NE nQ{http://www.w3.org/1999/xhtml}PublishedDate]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Month"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}PublishedDate,NE nQ{http://www.w3.org/1999/xhtml}PublishedDate]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Day"}]}]}]}]},{"N":"str","val":"00"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"666","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}publishedDate","slot":"0","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"666"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"true"},{"N":"let","var":"Q{}serverDatePublished","slot":"0","sType":"*NT ","line":"673","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"673","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Month"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Day"}]}]}]}]},{"N":"str","val":"00"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"674","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}serverDatePublished","slot":"0","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"674"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]},{"N":"co","id":"10","uniform":"true","binds":"52 51","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","name":"Q{}hierarchylevel","line":"60","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}hierarchyLevel ","C":[{"N":"elem","name":"gmd:hierarchyLevel","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}hierarchyLevel ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","role":"body","line":"61","C":[{"N":"elem","name":"gmd:MD_ScopeCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_ScopeCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"62","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","sType":"1NA ","line":"63","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"64","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"?ND ","name":"Q{}MDScopelist","bSlot":"0","role":"select","line":"64"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"att","name":"codeListValue","sType":"1NA ","line":"66","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"67","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"?ND ","name":"Q{}MDScopecode","bSlot":"1","role":"select","line":"67"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"69","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"?ND ","name":"Q{}MDScopecode","bSlot":"1","role":"select","line":"69"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]},{"N":"co","binds":"","id":"11","uniform":"true","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","name":"Q{}metadatacontact","line":"75","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}contact ","C":[{"N":"elem","name":"gmd:contact","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}contact ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","role":"body","line":"76","C":[{"N":"elem","name":"gmd:CI_ResponsibleParty","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_ResponsibleParty ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"77","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:individualName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}individualName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"78","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"79","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Tethys RDR"}]}]}]},{"N":"elem","name":"gmd:organisationName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}organisationName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"81","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"82","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Tethys RDR"}]}]}]},{"N":"elem","name":"gmd:positionName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}positionName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"84","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"85","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Research Data Repository"}]}]}]},{"N":"elem","name":"gmd:contactInfo","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}contactInfo ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"87","C":[{"N":"elem","name":"gmd:CI_Contact","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Contact ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"88","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:address","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}address ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"89","C":[{"N":"elem","name":"gmd:CI_Address","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Address ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"90","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:deliveryPoint","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}deliveryPoint ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"91","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"92","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Neulinggasse 38"}]}]}]},{"N":"elem","name":"gmd:city","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}city ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"94","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"95","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Vienna"}]}]}]},{"N":"elem","name":"gmd:administrativeArea","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}administrativeArea ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"97","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"98","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Vienna"}]}]}]},{"N":"elem","name":"gmd:postalCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}postalCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"100","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"101","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"1030"}]}]}]},{"N":"elem","name":"gmd:country","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}country ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"103","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"104","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"AT"}]}]}]},{"N":"elem","name":"gmd:electronicMailAddress","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}electronicMailAddress ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"106","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"107","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"repository@geologie.ac.at"}]}]}]}]}]}]},{"N":"elem","name":"gmd:onlineResource","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}onlineResource ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"112","C":[{"N":"elem","name":"gmd:CI_OnlineResource","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_OnlineResource ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"113","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:linkage","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}linkage ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"114","C":[{"N":"elem","name":"gmd:URL","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}URL ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"115","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"https://tethys.at"}]}]}]},{"N":"elem","name":"gmd:function","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}function ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"117","C":[{"N":"elem","name":"gmd:CI_OnLineFunctionCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_OnLineFunctionCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"118","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_OnLineFunctionCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"information"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"information"}]}]}]}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:role","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}role ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"124","C":[{"N":"elem","name":"gmd:CI_RoleCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_RoleCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"125","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"pointOfContact"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"pointOfContact"}]}]}]}]}]}]}]}]}]},{"N":"co","binds":"","id":"12","uniform":"true","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","name":"Q{}resourcedates","line":"134","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"* ","C":[{"N":"sequence","role":"body","sType":"* ","C":[{"N":"choose","sType":"? ","line":"135","C":[{"N":"filter","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"135","C":[{"N":"axis","name":"child","nodeTest":"*NE"},{"N":"compareToString","op":"eq","val":"CreatedAt","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"name","C":[{"N":"dot"}]}]}]},{"N":"elem","name":"gmd:date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"136","C":[{"N":"elem","name":"gmd:CI_Date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"137","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"138","C":[{"N":"let","var":"Q{}theDate","slot":"0","sType":"*N ","line":"140","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/functions.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"148","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"148","C":[{"N":"fn","name":"concat","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Month"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Day"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"T"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Hour"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":":"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Minute"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":":"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Second"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"Z"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"choose","sType":"?N ","type":"item()*","line":"151","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"152","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}theDate","slot":"0"}]},{"N":"str","val":""}]},{"N":"choose","sType":"?NE ","type":"item()*","line":"153","C":[{"N":"fn","name":"contains","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"154","C":[{"N":"treat","as":"AS","diag":"0|0||contains","C":[{"N":"check","card":"?","diag":"0|0||contains","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||contains","C":[{"N":"check","card":"?","diag":"0|0||contains","C":[{"N":"data","diag":"0|0||contains","C":[{"N":"varRef","name":"Q{}theDate","slot":"0"}]}]}]}]}]},{"N":"str","val":"T"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"elem","name":"gco:DateTime","sType":"1NE nQ{http://www.isotc211.org/2005/gco}DateTime ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"155","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"156","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}theDate","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"156"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"fn","name":"contains","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"159","C":[{"N":"treat","as":"AS","diag":"0|0||contains","C":[{"N":"check","card":"?","diag":"0|0||contains","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||contains","C":[{"N":"check","card":"?","diag":"0|0||contains","C":[{"N":"data","diag":"0|0||contains","C":[{"N":"varRef","name":"Q{}theDate","slot":"0"}]}]}]}]}]},{"N":"str","val":" "},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"elem","name":"gco:DateTime","sType":"1NE nQ{http://www.isotc211.org/2005/gco}DateTime ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"160","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"161","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"translate","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"161","C":[{"N":"treat","as":"AS","diag":"0|0||translate","C":[{"N":"check","card":"?","diag":"0|0||translate","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||translate","C":[{"N":"check","card":"?","diag":"0|0||translate","C":[{"N":"data","diag":"0|0||translate","C":[{"N":"varRef","name":"Q{}theDate","slot":"0"}]}]}]}]}]},{"N":"str","val":" "},{"N":"str","val":"T"}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"true"},{"N":"elem","name":"gco:Date","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Date ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"165","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"166","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}theDate","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"166"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"true"},{"N":"att","name":"gco:nilReason","sType":"1NA ","nsuri":"http://www.isotc211.org/2005/gco","line":"173","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"174","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"174","C":[{"N":"str","val":"created date missing"}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]}]}]}]},{"N":"elem","name":"gmd:dateType","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}dateType ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"179","C":[{"N":"elem","name":"gmd:CI_DateTypeCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_DateTypeCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"180","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_DateTypeCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"creation"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"creation"}]}]}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"?NE ","type":"item()*","line":"185","C":[{"N":"filter","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"187","C":[{"N":"axis","name":"child","nodeTest":"*NE"},{"N":"compareToString","op":"eq","val":"EmbargoDate","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"local-name","C":[{"N":"dot"}]}]}]},{"N":"elem","name":"gmd:date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"188","C":[{"N":"elem","name":"gmd:CI_Date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"189","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"190","C":[{"N":"let","var":"Q{}embargoDate","slot":"0","sType":"*NE ","line":"195","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"195","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Month"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Day"}]}]}]}]},{"N":"str","val":"00"}]}]},{"N":"elem","name":"gco:Date","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Date ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"196","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"197","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}embargoDate","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"197"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"elem","name":"gmd:dateType","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}dateType ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"200","C":[{"N":"elem","name":"gmd:CI_DateTypeCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_DateTypeCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"201","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_DateTypeCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"publication"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"publication"}]}]}]}]}]}]}]},{"N":"filter","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"206","C":[{"N":"axis","name":"child","nodeTest":"*NE"},{"N":"compareToString","op":"eq","val":"ServerDatePublished","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"local-name","C":[{"N":"dot"}]}]}]},{"N":"elem","name":"gmd:date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"207","C":[{"N":"elem","name":"gmd:CI_Date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"208","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"209","C":[{"N":"let","var":"Q{}publicationDate","slot":"0","sType":"*NE ","line":"217","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"217","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Month"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Day"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"T"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Hour"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":":"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Minute"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":":"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Second"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"Z"}]},{"N":"elem","name":"gco:DateTime","sType":"1NE nQ{http://www.isotc211.org/2005/gco}DateTime ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"218","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"219","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}publicationDate","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"219"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"elem","name":"gmd:dateType","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}dateType ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"222","C":[{"N":"elem","name":"gmd:CI_DateTypeCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_DateTypeCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"223","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_DateTypeCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"publication"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"publication"}]}]}]}]}]}]}]},{"N":"true"},{"N":"elem","name":"gmd:date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"229","C":[{"N":"att","name":"gco:nilReason","nsuri":"http://www.isotc211.org/2005/gco","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"missing"}]}]}]},{"N":"choose","sType":"? ","line":"234","C":[{"N":"docOrder","sType":"*NA nQ{}ServerDateModified","line":"234","C":[{"N":"slash","role":"select","simple":"1","sType":"*NA nQ{}ServerDateModified","C":[{"N":"treat","as":"N","diag":"13|0|XTTE0510|","C":[{"N":"dot"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}ServerDateModified","sType":"*NA nQ{}ServerDateModified","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco "}]}]},{"N":"elem","name":"gmd:date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"235","C":[{"N":"elem","name":"gmd:CI_Date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"236","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"237","C":[{"N":"let","var":"Q{}updateDate","slot":"0","sType":"*N ","line":"238","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"238","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}ServerDateModified"}]}]}]},{"N":"choose","sType":"?N ","type":"item()*","line":"240","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"241","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}updateDate","slot":"0"}]},{"N":"str","val":""}]},{"N":"choose","sType":"?NE ","type":"item()*","line":"242","C":[{"N":"fn","name":"contains","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"243","C":[{"N":"treat","as":"AS","diag":"0|0||contains","C":[{"N":"check","card":"?","diag":"0|0||contains","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||contains","C":[{"N":"check","card":"?","diag":"0|0||contains","C":[{"N":"data","diag":"0|0||contains","C":[{"N":"varRef","name":"Q{}updateDate","slot":"0"}]}]}]}]}]},{"N":"str","val":"T"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"elem","name":"gco:DateTime","sType":"1NE nQ{http://www.isotc211.org/2005/gco}DateTime ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"244","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"245","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}updateDate","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"245"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"fn","name":"contains","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"248","C":[{"N":"treat","as":"AS","diag":"0|0||contains","C":[{"N":"check","card":"?","diag":"0|0||contains","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||contains","C":[{"N":"check","card":"?","diag":"0|0||contains","C":[{"N":"data","diag":"0|0||contains","C":[{"N":"varRef","name":"Q{}updateDate","slot":"0"}]}]}]}]}]},{"N":"str","val":" "},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"elem","name":"gco:DateTime","sType":"1NE nQ{http://www.isotc211.org/2005/gco}DateTime ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"249","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"250","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"translate","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"250","C":[{"N":"treat","as":"AS","diag":"0|0||translate","C":[{"N":"check","card":"?","diag":"0|0||translate","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||translate","C":[{"N":"check","card":"?","diag":"0|0||translate","C":[{"N":"data","diag":"0|0||translate","C":[{"N":"varRef","name":"Q{}updateDate","slot":"0"}]}]}]}]}]},{"N":"str","val":" "},{"N":"str","val":"T"}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"true"},{"N":"elem","name":"gco:Date","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Date ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"254","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"255","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}updateDate","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"255"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"true"},{"N":"att","name":"gco:nilReason","sType":"1NA ","nsuri":"http://www.isotc211.org/2005/gco","line":"261","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"262","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"262","C":[{"N":"str","val":"missing"}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]}]}]}]},{"N":"elem","name":"gmd:dateType","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}dateType ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"267","C":[{"N":"elem","name":"gmd:CI_DateTypeCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_DateTypeCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"268","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_DateTypeCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"revision"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"revision"}]}]}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"co","binds":"","id":"13","uniform":"true","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","name":"Q{}ci_responsibleparty","line":"275","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"* ","C":[{"N":"sequence","role":"body","sType":"* ","C":[{"N":"param","name":"Q{}individual","slot":"0","sType":"* ","as":"* ","flags":"","line":"276","C":[{"N":"str","sType":"1AS ","val":"","role":"select"},{"N":"supplied","role":"conversion","slot":"0","sType":"* "}]},{"N":"param","name":"Q{}httpuri","slot":"1","sType":"* ","as":"* ","flags":"","line":"277","C":[{"N":"str","sType":"1AS ","val":"","role":"select"},{"N":"supplied","role":"conversion","slot":"1","sType":"* "}]},{"N":"param","name":"Q{}personidtype","slot":"2","sType":"* ","as":"* ","flags":"","line":"278","C":[{"N":"str","sType":"1AS ","val":"","role":"select"},{"N":"supplied","role":"conversion","slot":"2","sType":"* "}]},{"N":"param","name":"Q{}organisation","slot":"3","sType":"* ","as":"* ","flags":"","line":"279","C":[{"N":"str","sType":"1AS ","val":"","role":"select"},{"N":"supplied","role":"conversion","slot":"3","sType":"* "}]},{"N":"param","name":"Q{}position","slot":"4","sType":"* ","as":"* ","flags":"","line":"280","C":[{"N":"str","sType":"1AS ","val":"","role":"select"},{"N":"supplied","role":"conversion","slot":"4","sType":"* "}]},{"N":"param","name":"Q{}role","slot":"5","sType":"* ","as":"* ","flags":"","line":"281","C":[{"N":"str","sType":"1AS ","val":"","role":"select"},{"N":"supplied","role":"conversion","slot":"5","sType":"* "}]},{"N":"param","name":"Q{}email","slot":"6","sType":"* ","as":"* ","flags":"","line":"282","C":[{"N":"str","sType":"1AS ","val":"","role":"select"},{"N":"supplied","role":"conversion","slot":"6","sType":"* "}]},{"N":"param","name":"Q{}datacite-creatorname","slot":"7","sType":"* ","as":"* ","flags":"","line":"283","C":[{"N":"str","sType":"1AS ","val":"","role":"select"},{"N":"supplied","role":"conversion","slot":"7","sType":"* "}]},{"N":"elem","name":"gmd:CI_ResponsibleParty","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_ResponsibleParty ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"285","C":[{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"? ","line":"287","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"287","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}individual","slot":"0"}]},{"N":"str","val":""}]},{"N":"choose","sType":"?NE ","type":"item()*","line":"288","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"289","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}individual","slot":"0"}]},{"N":"str","val":"missing"}]},{"N":"elem","name":"gmd:individualName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}individualName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"290","C":[{"N":"att","name":"gco:nilReason","nsuri":"http://www.isotc211.org/2005/gco","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"missing"}]}]},{"N":"true"},{"N":"elem","name":"gmd:individualName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}individualName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"293","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"294","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"295","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}individual","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"295"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","line":"302","C":[{"N":"or","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"302","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}individual","slot":"0"}]},{"N":"str","val":"missing"}]},{"N":"str","val":""}]},{"N":"elem","name":"gmd:organisationName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}organisationName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"303","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"304","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"305","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}datacite-creatorname","slot":"7","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"305"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","line":"310","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"310","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}organisation","slot":"3"}]},{"N":"str","val":""}]},{"N":"elem","name":"gmd:organisationName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}organisationName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"311","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"312","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"313","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}organisation","slot":"3","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"313"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","line":"318","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"318","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}position","slot":"4"}]},{"N":"str","val":""}]},{"N":"elem","name":"gmd:positionName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}positionName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"319","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"320","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"321","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}position","slot":"4","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"321"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"elem","name":"gmd:contactInfo","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}contactInfo ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"326","C":[{"N":"elem","name":"gmd:CI_Contact","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Contact ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"327","C":[{"N":"sequence","sType":"* ","C":[{"N":"elem","name":"gmd:address","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}address ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"329","C":[{"N":"elem","name":"gmd:CI_Address","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Address ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"330","C":[{"N":"elem","name":"gmd:electronicMailAddress","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}electronicMailAddress ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"331","C":[{"N":"choose","sType":"?NE ","type":"item()*","line":"332","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"333","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}email","slot":"6"}]},{"N":"str","val":""}]},{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"334","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"335","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}email","slot":"6","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"335"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"true"},{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"340","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"341","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"341","C":[{"N":"str","val":"repository@geologie.ac.at"}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]},{"N":"choose","sType":"? ","line":"348","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"348","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}httpuri","slot":"1"}]},{"N":"str","val":""}]},{"N":"elem","name":"gmd:onlineResource","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}onlineResource ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"349","C":[{"N":"elem","name":"gmd:CI_OnlineResource","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_OnlineResource ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"350","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:linkage","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}linkage ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"351","C":[{"N":"elem","name":"gmd:URL","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}URL ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"352","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"353","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}httpuri","slot":"1","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"353"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:protocol","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}protocol ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"356","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"357","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"358","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}personidtype","slot":"2","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"358"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"elem","name":"gmd:role","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}role ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"368","C":[{"N":"elem","name":"gmd:CI_RoleCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_RoleCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"369","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","sType":"1NA ","line":"370","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"att","name":"codeListValue","sType":"1NA ","line":"371","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"372","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}role","slot":"5","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"372"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"374","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}role","slot":"5","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"374"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]}]}]},{"N":"co","binds":"","id":"14","uniform":"true","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","name":"Q{}pointofcontact_custodian","line":"381","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}pointOfContact ","C":[{"N":"elem","name":"gmd:pointOfContact","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}pointOfContact ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","role":"body","line":"382","C":[{"N":"elem","name":"gmd:CI_ResponsibleParty","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_ResponsibleParty ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"383","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:individualName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}individualName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"384","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"385","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Tethys RDR"}]}]}]},{"N":"elem","name":"gmd:organisationName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}organisationName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"387","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"388","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Tethys RDR"}]}]}]},{"N":"elem","name":"gmd:contactInfo","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}contactInfo ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"390","C":[{"N":"elem","name":"gmd:CI_Contact","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Contact ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"391","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:address","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}address ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"392","C":[{"N":"elem","name":"gmd:CI_Address","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Address ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"393","C":[{"N":"elem","name":"gmd:electronicMailAddress","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}electronicMailAddress ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"394","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"395","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"repository@geologie.ac.at"}]}]}]}]}]},{"N":"elem","name":"gmd:onlineResource","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}onlineResource ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"399","C":[{"N":"elem","name":"gmd:CI_OnlineResource","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_OnlineResource ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"400","C":[{"N":"elem","name":"gmd:linkage","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}linkage ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"401","C":[{"N":"elem","name":"gmd:URL","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}URL ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"402","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"https://www.tethys.at/"}]}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:role","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}role ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"411","C":[{"N":"elem","name":"gmd:CI_RoleCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_RoleCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"412","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://standards.iso.org/ittf/PubliclyAvailableStandards/ISO_19139_Schemas/resources/Codelist/gmxCodelists.xml#CI_RoleCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"custodian"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"custodian"}]}]}]}]}]}]}]}]}]},{"N":"co","binds":"","id":"15","uniform":"true","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","name":"Q{}pointofcontact_originator","line":"419","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}pointOfContact ","C":[{"N":"elem","name":"gmd:pointOfContact","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}pointOfContact ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","role":"body","line":"420","C":[{"N":"elem","name":"gmd:CI_ResponsibleParty","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_ResponsibleParty ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"421","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:individualName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}individualName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"422","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"423","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Tethys RDR"}]}]}]},{"N":"elem","name":"gmd:organisationName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}organisationName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"425","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"426","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Tethys RDR"}]}]}]},{"N":"elem","name":"gmd:contactInfo","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}contactInfo ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"428","C":[{"N":"elem","name":"gmd:CI_Contact","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Contact ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"429","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:address","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}address ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"430","C":[{"N":"elem","name":"gmd:CI_Address","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Address ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"431","C":[{"N":"elem","name":"gmd:electronicMailAddress","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}electronicMailAddress ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"432","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"433","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"repository@geologie.ac.at"}]}]}]}]}]},{"N":"elem","name":"gmd:onlineResource","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}onlineResource ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"437","C":[{"N":"elem","name":"gmd:CI_OnlineResource","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_OnlineResource ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"438","C":[{"N":"elem","name":"gmd:linkage","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}linkage ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"439","C":[{"N":"elem","name":"gmd:URL","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}URL ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"440","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"https://www.tethys.at/"}]}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:role","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}role ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"449","C":[{"N":"elem","name":"gmd:CI_RoleCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_RoleCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"450","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://standards.iso.org/ittf/PubliclyAvailableStandards/ISO_19139_Schemas/resources/Codelist/gmxCodelists.xml#CI_RoleCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"originator"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"originator"}]}]}]}]}]}]}]}]}]},{"N":"co","binds":"","id":"16","uniform":"true","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","name":"Q{}browseGraphictethys","line":"457","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}graphicOverview ","C":[{"N":"elem","name":"gmd:graphicOverview","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}graphicOverview ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","role":"body","line":"458","C":[{"N":"elem","name":"gmd:MD_BrowseGraphic","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_BrowseGraphic ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"459","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:fileName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}fileName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"460","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"461","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"https://tethys.at/assets/TETHYS-Logo.svg"}]}]}]},{"N":"elem","name":"gmd:fileDescription","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}fileDescription ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"463","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"464","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"TETHYS RDR"}]}]}]}]}]}]}]}]},{"N":"co","binds":"","id":"17","uniform":"false","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","name":"Q{}freekeywords","line":"471","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"? ","C":[{"N":"choose","sType":"? ","role":"body","line":"472","C":[{"N":"docOrder","sType":"*NE","line":"472","C":[{"N":"docOrder","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","C":[{"N":"slash","op":"/","C":[{"N":"slash","op":"/","C":[{"N":"root"},{"N":"axis","name":"descendant-or-self","nodeTest":"*N"}]},{"N":"filter","C":[{"N":"axis","name":"child","nodeTest":"*NE"},{"N":"and","C":[{"N":"compareToString","op":"eq","val":"Subject","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"name","C":[{"N":"dot"}]}]},{"N":"compareToString","op":"eq","val":"Uncontrolled","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"normalize-space","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}Type"}]}]}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:descriptiveKeywords","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}descriptiveKeywords ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"473","C":[{"N":"elem","name":"gmd:MD_Keywords","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_Keywords ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"474","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"forEach","sType":"*NE nQ{http://www.isotc211.org/2005/gmd}keyword ","line":"475","C":[{"N":"filter","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"475","C":[{"N":"axis","name":"child","nodeTest":"*NE"},{"N":"and","C":[{"N":"compareToString","op":"eq","val":"Subject","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"name","C":[{"N":"dot"}]}]},{"N":"compareToString","op":"eq","val":"Uncontrolled","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"normalize-space","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}Type"}]}]}]}]}]}]},{"N":"elem","name":"gmd:keyword","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}keyword ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"476","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"477","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"478","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"478","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}Value"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"elem","name":"gmd:type","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}type ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"482","C":[{"N":"elem","name":"gmd:MD_KeywordTypeCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_KeywordTypeCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","ns":"xml=~ =http://www.isotc211.org/2005/gmd xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"483","C":[{"N":"sequence","ns":"xml=~ =http://www.isotc211.org/2005/gmd xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"https://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_KeywordTypeCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"theme"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"theme"}]}]}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]},{"N":"co","id":"18","uniform":"true","binds":"43","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","name":"Q{}datacenter_keyword","line":"491","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}descriptiveKeywords ","C":[{"N":"elem","name":"gmd:descriptiveKeywords","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}descriptiveKeywords ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","role":"body","line":"492","C":[{"N":"elem","name":"gmd:MD_Keywords","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_Keywords ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"493","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:keyword","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}keyword ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"494","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"495","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"496","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"?ND ","name":"Q{}datacentre","bSlot":"0","role":"select","line":"496"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:type","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}type ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"499","C":[{"N":"elem","name":"gmd:MD_KeywordTypeCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_KeywordTypeCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"500","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.ngdc.noaa.gov/metadata/published/xsd/schema/resources/Codelist/gmxCodelists.xml#MD_KeywordTypeCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"dataCentre"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Tethys RDR"}]}]}]}]}]}]}]}]}]},{"N":"co","binds":"","id":"19","uniform":"true","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","name":"Q{}spatialcoverage","line":"507","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}extent ","C":[{"N":"elem","name":"gmd:extent","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}extent ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","role":"body","line":"508","C":[{"N":"elem","name":"gmd:EX_Extent","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}EX_Extent ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"509","C":[{"N":"choose","sType":"* ","line":"510","C":[{"N":"docOrder","sType":"*NE","line":"510","C":[{"N":"docOrder","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","C":[{"N":"slash","op":"/","C":[{"N":"slash","op":"/","C":[{"N":"root"},{"N":"axis","name":"descendant-or-self","nodeTest":"*N"}]},{"N":"filter","C":[{"N":"axis","name":"child","nodeTest":"*NE"},{"N":"compareToString","op":"eq","val":"Coverage","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"name","C":[{"N":"dot"}]}]}]}]}]}]},{"N":"let","var":"Q{}sLat","slot":"0","sType":"* ","line":"512","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/functions.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"513","C":[{"N":"compareToString","op":"ne","val":"","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"514","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}YMin"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"515","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"fn","sType":"1AO","name":"number","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"515","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}YMin"}]}]}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"518","C":[{"N":"str","role":"select","val":"","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"518"}]}]}]},{"N":"let","var":"Q{}wLong","slot":"1","sType":"* ","line":"522","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/functions.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"523","C":[{"N":"compareToString","op":"ne","val":"","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"524","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}XMin"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"525","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"fn","sType":"1AO","name":"number","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"525","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}XMin"}]}]}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"528","C":[{"N":"str","role":"select","val":"","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"528"}]}]}]},{"N":"let","var":"Q{}nLat","slot":"2","sType":"* ","line":"532","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/functions.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"533","C":[{"N":"compareToString","op":"ne","val":"","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"534","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}YMax"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"535","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"fn","sType":"1AO","name":"number","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"535","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}YMax"}]}]}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"538","C":[{"N":"str","role":"select","val":"","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"538"}]}]}]},{"N":"let","var":"Q{}eLong","slot":"3","sType":"* ","line":"542","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/functions.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"543","C":[{"N":"compareToString","op":"ne","val":"","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"544","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}XMax"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"545","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"fn","sType":"1AO","name":"number","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"545","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}XMax"}]}]}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"548","C":[{"N":"str","role":"select","val":"","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"548"}]}]}]},{"N":"choose","sType":"* ","line":"554","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"554","C":[{"N":"and","C":[{"N":"and","C":[{"N":"compareToString","op":"ne","val":"NaN","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"varRef","name":"Q{}nLat","slot":"2"}]}]}]},{"N":"compareToString","op":"ne","val":"NaN","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"varRef","name":"Q{}wLong","slot":"1"}]}]}]}]},{"N":"compareToString","op":"ne","val":"NaN","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"varRef","name":"Q{}sLat","slot":"0"}]}]}]}]},{"N":"compareToString","op":"ne","val":"NaN","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"varRef","name":"Q{}eLong","slot":"3"}]}]}]}]},{"N":"choose","sType":"*NE ","type":"item()*","line":"556","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"558","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}nLat","slot":"2"}]},{"N":"data","diag":"1|1||gc","C":[{"N":"varRef","name":"Q{}sLat","slot":"0"}]}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}eLong","slot":"3"}]},{"N":"data","diag":"1|1||gc","C":[{"N":"varRef","name":"Q{}wLong","slot":"1"}]}]}]},{"N":"elem","name":"gmd:geographicElement","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}geographicElement ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"559","C":[{"N":"elem","name":"gmd:EX_BoundingPolygon","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}EX_BoundingPolygon ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"560","C":[{"N":"elem","name":"gmd:polygon","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}polygon ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"561","C":[{"N":"elem","name":"gml:Point","sType":"1NE nQ{http://www.opgeris.net/gml/3.2}Point ","nsuri":"http://www.opgeris.net/gml/3.2","namespaces":"","line":"562","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"gml:id","sType":"1NA ","nsuri":"http://www.opgeris.net/gml/3.2","line":"564","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"565","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"generate-id","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"565","C":[{"N":"treat","as":"N","diag":"0|0||generate-id","C":[{"N":"check","card":"?","diag":"0|0||generate-id","C":[{"N":"dot"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"elem","name":"gml:pos","sType":"1NE nQ{http://www.opgeris.net/gml/3.2}pos ","nsuri":"http://www.opgeris.net/gml/3.2","namespaces":"","line":"567","C":[{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"568","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}sLat","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"568"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":" "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"570","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}wLong","slot":"1","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"570"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]}]},{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"579","C":[{"N":"gc","op":">","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}wLong","slot":"1"}]},{"N":"int","val":"0"}]},{"N":"gc","op":"<","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}eLong","slot":"3"}]},{"N":"int","val":"0"}]}]},{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:geographicElement","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}geographicElement ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"581","C":[{"N":"elem","name":"gmd:EX_GeographicBoundingBox","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}EX_GeographicBoundingBox ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"582","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:westBoundLongitude","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}westBoundLongitude ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"583","C":[{"N":"elem","name":"gco:Decimal","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Decimal ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"584","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"585","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}wLong","slot":"1","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"585"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:eastBoundLongitude","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}eastBoundLongitude ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"588","C":[{"N":"elem","name":"gco:Decimal","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Decimal ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"589","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"590","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"int","sType":"1ADI","val":"180","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"590"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:southBoundLatitude","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}southBoundLatitude ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"593","C":[{"N":"elem","name":"gco:Decimal","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Decimal ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"594","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"595","C":[{"N":"vc","op":"lt","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"596","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"varRef","name":"Q{}sLat","slot":"0"}]}]}]},{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"varRef","name":"Q{}nLat","slot":"2"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"597","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}sLat","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"597"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"600","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}nLat","slot":"2","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"600"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"elem","name":"gmd:northBoundLatitude","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}northBoundLatitude ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"605","C":[{"N":"elem","name":"gco:Decimal","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Decimal ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"606","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"607","C":[{"N":"vc","op":"lt","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"608","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"varRef","name":"Q{}sLat","slot":"0"}]}]}]},{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"varRef","name":"Q{}nLat","slot":"2"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"609","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}nLat","slot":"2","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"609"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"612","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}sLat","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"612"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:geographicElement","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}geographicElement ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"619","C":[{"N":"elem","name":"gmd:EX_GeographicBoundingBox","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}EX_GeographicBoundingBox ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"620","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:westBoundLongitude","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}westBoundLongitude ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"621","C":[{"N":"elem","name":"gco:Decimal","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Decimal ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"622","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"623","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"int","sType":"1ADI","val":"-180","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"623"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:eastBoundLongitude","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}eastBoundLongitude ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"626","C":[{"N":"elem","name":"gco:Decimal","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Decimal ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"627","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"628","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}eLong","slot":"3","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"628"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:southBoundLatitude","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}southBoundLatitude ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"631","C":[{"N":"elem","name":"gco:Decimal","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Decimal ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"632","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"633","C":[{"N":"vc","op":"lt","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"634","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"varRef","name":"Q{}sLat","slot":"0"}]}]}]},{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"varRef","name":"Q{}nLat","slot":"2"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"635","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}sLat","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"635"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"638","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}nLat","slot":"2","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"638"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"elem","name":"gmd:northBoundLatitude","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}northBoundLatitude ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"643","C":[{"N":"elem","name":"gco:Decimal","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Decimal ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"644","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"645","C":[{"N":"vc","op":"lt","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"646","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"varRef","name":"Q{}sLat","slot":"0"}]}]}]},{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"varRef","name":"Q{}nLat","slot":"2"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"647","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}nLat","slot":"2","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"647"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"650","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}sLat","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"650"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]}]},{"N":"true"},{"N":"elem","name":"gmd:geographicElement","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}geographicElement ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"659","C":[{"N":"elem","name":"gmd:EX_GeographicBoundingBox","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}EX_GeographicBoundingBox ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"660","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:extentTypeCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}extentTypeCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"661","C":[{"N":"elem","name":"gco:Boolean","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Boolean ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"662","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"true"}]}]}]},{"N":"elem","name":"gmd:westBoundLongitude","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}westBoundLongitude ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"664","C":[{"N":"elem","name":"gco:Decimal","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Decimal ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"665","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"666","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}wLong","slot":"1","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"666"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:eastBoundLongitude","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}eastBoundLongitude ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"669","C":[{"N":"elem","name":"gco:Decimal","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Decimal ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"670","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"671","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}eLong","slot":"3","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"671"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:southBoundLatitude","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}southBoundLatitude ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"674","C":[{"N":"elem","name":"gco:Decimal","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Decimal ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"675","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"676","C":[{"N":"vc","op":"lt","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"677","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"varRef","name":"Q{}sLat","slot":"0"}]}]}]},{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"varRef","name":"Q{}nLat","slot":"2"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"678","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}sLat","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"678"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"681","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}nLat","slot":"2","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"681"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"elem","name":"gmd:northBoundLatitude","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}northBoundLatitude ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"686","C":[{"N":"elem","name":"gco:Decimal","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Decimal ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"687","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"688","C":[{"N":"vc","op":"lt","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"689","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"varRef","name":"Q{}sLat","slot":"0"}]}]}]},{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"varRef","name":"Q{}nLat","slot":"2"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"690","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}nLat","slot":"2","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"690"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"693","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}sLat","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"693"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]}]},{"N":"co","binds":"","id":"20","uniform":"true","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","name":"Q{}datacite_identifier","line":"709","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"* ","C":[{"N":"forEach","sType":"* ","role":"body","line":"710","C":[{"N":"filter","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"710","C":[{"N":"axis","name":"child","nodeTest":"*NE"},{"N":"compareToString","op":"eq","val":"Identifier","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"name","C":[{"N":"dot"}]}]}]},{"N":"let","var":"Q{}identifier","slot":"0","sType":"* ","line":"711","C":[{"N":"dot","sType":"1NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"711"},{"N":"choose","sType":"? ","line":"712","C":[{"N":"or","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"712","C":[{"N":"or","C":[{"N":"fn","name":"starts-with","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||starts-with","C":[{"N":"check","card":"?","diag":"0|0||starts-with","C":[{"N":"data","diag":"0|0||starts-with","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}identifier","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]}]},{"N":"str","val":"doi:"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}identifier","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"str","val":"Doi"}]}]},{"N":"fn","name":"starts-with","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||starts-with","C":[{"N":"check","card":"?","diag":"0|0||starts-with","C":[{"N":"data","diag":"0|0||starts-with","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}identifier","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]}]},{"N":"str","val":"http://"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]}]},{"N":"elem","name":"gmd:onLine","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}onLine ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"713","C":[{"N":"elem","name":"gmd:CI_OnlineResource","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_OnlineResource ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"714","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:linkage","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}linkage ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"715","C":[{"N":"elem","name":"gmd:URL","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}URL ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"716","C":[{"N":"choose","sType":"? ","type":"item()*","line":"717","C":[{"N":"fn","name":"starts-with","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"718","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||starts-with","C":[{"N":"check","card":"?","diag":"0|0||starts-with","C":[{"N":"data","diag":"0|0||starts-with","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}identifier","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]}]},{"N":"str","val":"doi:"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"720","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"720","C":[{"N":"str","val":"http://dx.doi.org/"},{"N":"fn","name":"substring-after","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||substring-after","C":[{"N":"check","card":"?","diag":"0|0||substring-after","C":[{"N":"data","diag":"0|0||substring-after","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}identifier","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]}]},{"N":"str","val":"doi:"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"722","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}identifier","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"str","val":"Doi"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"723","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"723","C":[{"N":"str","val":"http://dx.doi.org/"},{"N":"fn","name":"normalize-space","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"data","diag":"0|0||normalize-space","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}identifier","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"fn","name":"starts-with","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"725","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||starts-with","C":[{"N":"check","card":"?","diag":"0|0||starts-with","C":[{"N":"data","diag":"0|0||starts-with","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}identifier","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]}]},{"N":"str","val":"http://"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"726","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"726","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"data","diag":"0|0||normalize-space","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}identifier","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]},{"N":"elem","name":"gmd:protocol","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}protocol ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"731","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"732","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"WWW:LINK-1.0-http--link"}]}]}]},{"N":"elem","name":"gmd:name","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}name ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"734","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"735","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Landing Page"}]}]}]},{"N":"elem","name":"gmd:description","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}description ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"737","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"738","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"740","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"740","C":[{"N":"fn","name":"string","C":[{"N":"str","val":"Link to DOI landing page or data facility landing page if no DOI is assigned."}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:function","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}function ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"743","C":[{"N":"elem","name":"gmd:CI_OnLineFunctionCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_OnLineFunctionCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"744","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_OnLineFunctionCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"information"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"information"}]}]}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]}]},{"N":"co","binds":"","id":"21","uniform":"true","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","name":"Q{}alternate_identifier","line":"753","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"? ","C":[{"N":"choose","sType":"? ","role":"body","line":"754","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"754","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}landingpage"},{"N":"str","val":""}]},{"N":"fn","name":"starts-with","C":[{"N":"fn","name":"normalize-space","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}landingpage"}]}]}]},{"N":"str","val":"http"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]}]},{"N":"elem","name":"gmd:onLine","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}onLine ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"755","C":[{"N":"elem","name":"gmd:CI_OnlineResource","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_OnlineResource ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"756","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:linkage","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}linkage ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"757","C":[{"N":"elem","name":"gmd:URL","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}URL ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"758","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"759","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"759","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}landingpage"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:protocol","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}protocol ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"762","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"763","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"WWW:LINK-1.0-http--link"}]}]}]},{"N":"elem","name":"gmd:name","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}name ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"765","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"766","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"767","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"767","C":[{"N":"str","val":"url"}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:description","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}description ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"770","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"771","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Link to a web page related to the resource."}]}]}]},{"N":"elem","name":"gmd:function","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}function ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"773","C":[{"N":"elem","name":"gmd:CI_OnLineFunctionCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_OnLineFunctionCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"774","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_OnLineFunctionCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"information"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"information"}]}]}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]},{"N":"co","binds":"","id":"22","uniform":"false","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","name":"Q{}data_quality","line":"782","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}dataQualityInfo ","C":[{"N":"elem","name":"gmd:dataQualityInfo","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}dataQualityInfo ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","role":"body","line":"783","C":[{"N":"elem","name":"gmd:DQ_DataQuality","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}DQ_DataQuality ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"784","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:scope","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}scope ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"785","C":[{"N":"elem","name":"gmd:DQ_Scope","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}DQ_Scope ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"786","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:level","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}level ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"787","C":[{"N":"elem","name":"gmd:MD_ScopeCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_ScopeCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","ns":"xml=~ =http://www.isotc211.org/2005/gmd xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"788","C":[{"N":"sequence","ns":"xml=~ =http://www.isotc211.org/2005/gmd xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","sType":"*NA ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"dataset"}]}]}]}]},{"N":"elem","name":"gmd:levelDescription","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}levelDescription ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"790","C":[{"N":"att","name":"gco:nilReason","nsuri":"http://www.isotc211.org/2005/gco","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"inapplicable"}]}]}]}]}]},{"N":"elem","name":"gmd:report","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}report ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"793","C":[{"N":"elem","name":"gmd:DQ_DomainConsistency","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}DQ_DomainConsistency ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"794","C":[{"N":"elem","name":"gmd:result","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}result ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"795","C":[{"N":"elem","name":"gmd:DQ_ConformanceResult","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}DQ_ConformanceResult ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"796","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:specification","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}specification ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"797","C":[{"N":"elem","name":"gmd:CI_Citation","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Citation ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"798","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:title","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}title ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"799","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"800","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"VERORDNUNG (EG) Nr. 1089/2010 DER KOMMISSION vom 23. November 2010 zur Durchführung der Richtlinie 2007/2/EG des Europäischen Parlaments und des Rates hinsichtlich der Interoperabilität von Geodatensätzen und -diensten"}]}]}]},{"N":"elem","name":"gmd:date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"802","C":[{"N":"elem","name":"gmd:CI_Date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"803","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"804","C":[{"N":"elem","name":"gco:Date","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Date ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"805","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"2010-12-08"}]}]}]},{"N":"elem","name":"gmd:dateType","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}dateType ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"807","C":[{"N":"elem","name":"gmd:CI_DateTypeCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_DateTypeCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","ns":"xml=~ =http://www.isotc211.org/2005/gmd xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"808","C":[{"N":"sequence","ns":"xml=~ =http://www.isotc211.org/2005/gmd xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","sType":"*NA ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"https://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"publication"}]}]}]}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:explanation","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}explanation ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"814","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"815","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Datenstruktur entspricht INSPIRE"}]}]}]},{"N":"elem","name":"gmd:pass","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}pass ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"817","C":[{"N":"elem","name":"gco:Boolean","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Boolean ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"818","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"true"}]}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:lineage","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}lineage ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"824","C":[{"N":"elem","name":"gmd:LI_Lineage","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}LI_Lineage ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"825","C":[{"N":"elem","name":"gmd:statement","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}statement ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"826","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"827","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Digitalisierung"}]}]}]}]}]}]}]}]}]}]},{"N":"co","id":"23","uniform":"true","binds":"53 54","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","name":"Q{}distributor","line":"838","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}distributor ","C":[{"N":"elem","name":"gmd:distributor","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}distributor ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","role":"body","line":"839","C":[{"N":"elem","name":"gmd:MD_Distributor","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_Distributor ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"840","C":[{"N":"elem","name":"gmd:distributorContact","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}distributorContact ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"841","C":[{"N":"elem","name":"gmd:CI_ResponsibleParty","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_ResponsibleParty ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"842","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:organisationName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}organisationName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"843","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"844","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"845","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"gVarRef","name":"Q{}distributorOrganisation","bSlot":"0","sType":"1AS","role":"select","line":"845"},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:contactInfo","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}contactInfo ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"848","C":[{"N":"elem","name":"gmd:CI_Contact","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Contact ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"849","C":[{"N":"elem","name":"gmd:address","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}address ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"850","C":[{"N":"elem","name":"gmd:CI_Address","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Address ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"851","C":[{"N":"elem","name":"gmd:electronicMailAddress","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}electronicMailAddress ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"852","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"853","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"854","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"gVarRef","name":"Q{}distributorContactEmail","bSlot":"1","sType":"1AS","role":"select","line":"854"},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:role","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}role ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"861","C":[{"N":"elem","name":"gmd:CI_RoleCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_RoleCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"862","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"distributor"}]},{"N":"att","name":"codeSpace","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"ISOTC211/19115"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"distributor"}]}]}]}]}]}]}]}]}]}]}]},{"N":"co","id":"24","uniform":"true","binds":"55 56 57","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","name":"Q{}metadata_maintenance","line":"874","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}metadataMaintenance ","C":[{"N":"elem","name":"gmd:metadataMaintenance","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}metadataMaintenance ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","role":"body","line":"875","C":[{"N":"elem","name":"gmd:MD_MaintenanceInformation","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_MaintenanceInformation ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"876","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:maintenanceAndUpdateFrequency","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}maintenanceAndUpdateFrequency ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"877","C":[{"N":"elem","name":"gmd:MD_MaintenanceFrequencyCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_MaintenanceFrequencyCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"878","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://schemas.opengis.net/iso/19139/20070417/resources/codelist/gmxCodelists.xml#MD_MaintenanceFrequencyCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"asNeeded"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"asNeeded"}]}]}]}]},{"N":"elem","name":"gmd:contact","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}contact ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"880","C":[{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"? ","line":"881","C":[{"N":"compareToString","op":"ne","val":"","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"881","C":[{"N":"gVarRef","name":"Q{}maintenanceContactID","bSlot":"0"}]},{"N":"att","name":"xlink:href","sType":"1NA ","nsuri":"http://www.w3.org/1999/xlink","line":"882","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"883","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"gVarRef","name":"Q{}maintenanceContactID","bSlot":"0","sType":"1AS","role":"select","line":"883"},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"elem","name":"gmd:CI_ResponsibleParty","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_ResponsibleParty ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"886","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:individualName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}individualName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"887","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"888","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"889","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"gVarRef","name":"Q{}maintenanceContactName","bSlot":"1","sType":"1AS","role":"select","line":"889"},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:contactInfo","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}contactInfo ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"892","C":[{"N":"elem","name":"gmd:CI_Contact","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Contact ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"893","C":[{"N":"elem","name":"gmd:address","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}address ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"894","C":[{"N":"elem","name":"gmd:CI_Address","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Address ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"895","C":[{"N":"elem","name":"gmd:electronicMailAddress","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}electronicMailAddress ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"896","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"897","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"898","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"gVarRef","name":"Q{}maintenanceContactEmail","bSlot":"2","sType":"1AS","role":"select","line":"898"},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:role","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}role ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"905","C":[{"N":"elem","name":"gmd:CI_RoleCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_RoleCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"906","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"processor"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"processor"}]}]}]}]}]}]}]}]}]}]}]}]}]},{"N":"co","binds":"","id":"25","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}responseDate","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"26","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}unixTimestamp","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"27","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}email","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"28","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}earliestDatestamp","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"29","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}repositoryName","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"30","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}repIdentifier","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"31","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}doiPrefix","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"32","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}sampleIdentifier","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"33","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}dateDelete","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"34","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}totalIds","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"35","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}res","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"36","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}cursor","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"37","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}oai_verb","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"38","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}oai_metadataPrefix","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"39","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}oai_error_code","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"40","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}oai_error_message","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"41","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}baseURL","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"42","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}fileIdentifierPrefix","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","module":"oai_2_iso19139.xslt","slots":"200","sType":"1AS","baseUri":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"41","C":[{"N":"str","val":"at.tethys.dataset"}]}]}]},{"N":"co","binds":"","id":"43","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}datacentre","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","module":"oai_2_iso19139.xslt","slots":"200","sType":"?ND ","baseUri":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"43","C":[{"N":"compareToInt","op":"gt","val":"0","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"44","C":[{"N":"fn","name":"string-length","C":[{"N":"fn","name":"normalize-space","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}CreatingCorporation"}]}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"45","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"45","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}CreatingCorporation"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"48","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"48","C":[{"N":"str","val":"Tethys RDR"}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]},{"N":"co","binds":"","id":"44","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}nl","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","module":"oai_2_iso19139.xslt","slots":"200","sType":"1AS","baseUri":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"661","C":[{"N":"str","val":"\n"}]}]}]},{"N":"co","binds":"","id":"45","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}langCodes","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","module":"datasetxml2oai-pmh.xslt","slots":"200","sType":"*NE","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","C":[{"N":"docOrder","sType":"*NE","role":"select","line":"46","C":[{"N":"docOrder","sType":"*NE","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","C":[{"N":"slash","op":"/","C":[{"N":"slash","op":"/","C":[{"N":"fn","name":"document","C":[{"N":"str","val":"langCodeMap.xml"}]},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}langCodeMap,NE nQ{http://www.w3.org/1999/xhtml}langCodeMap]"}]},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}langCode,NE nQ{http://www.w3.org/1999/xhtml}langCode]"}]}]}]}]}]},{"N":"co","binds":"","id":"46","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}ascii","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","module":"datasetxml2oai-pmh.xslt","slots":"200","sType":"?ND ","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","role":"select","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":" !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~"}]}]}]}]},{"N":"co","binds":"","id":"47","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}latin1","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","module":"datasetxml2oai-pmh.xslt","slots":"200","sType":"?ND ","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","role":"select","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":" ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ"}]}]}]}]},{"N":"co","binds":"","id":"48","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}safe","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","module":"datasetxml2oai-pmh.xslt","slots":"200","sType":"?ND ","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","role":"select","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"!'()*-.0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz~"}]}]}]}]},{"N":"co","binds":"","id":"49","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}hex","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","module":"datasetxml2oai-pmh.xslt","slots":"200","sType":"?ND ","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","role":"select","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"0123456789ABCDEF"}]}]}]}]},{"N":"co","binds":"","id":"50","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}resourcetype","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","module":"functions.xslt","slots":"200","sType":"?ND ","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/functions.xslt","role":"select","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Dataset"}]}]}]}]},{"N":"co","id":"51","vis":"PUBLIC","ex:uniform":"true","binds":"50","C":[{"N":"globalVariable","name":"Q{}MDScopecode","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","module":"functions.xslt","slots":"200","sType":"?ND ","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/functions.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"19","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"20","C":[{"N":"atomSing","diag":"1|0||gc","card":"?","C":[{"N":"gVarRef","name":"Q{}resourcetype","bSlot":"0"}]},{"N":"str","val":"Dataset"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"dataset"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"21","C":[{"N":"atomSing","diag":"1|0||gc","card":"?","C":[{"N":"gVarRef","name":"Q{}resourcetype","bSlot":"0"}]},{"N":"str","val":"Software"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"software"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"22","C":[{"N":"atomSing","diag":"1|0||gc","card":"?","C":[{"N":"gVarRef","name":"Q{}resourcetype","bSlot":"0"}]},{"N":"str","val":"Service"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"service"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"23","C":[{"N":"atomSing","diag":"1|0||gc","card":"?","C":[{"N":"gVarRef","name":"Q{}resourcetype","bSlot":"0"}]},{"N":"str","val":"Model"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"model"}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"25","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"?ND ","name":"Q{}resourcetype","bSlot":"0","role":"select","line":"25"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]},{"N":"co","id":"52","vis":"PUBLIC","ex:uniform":"true","binds":"50","C":[{"N":"globalVariable","name":"Q{}MDScopelist","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","module":"functions.xslt","slots":"200","sType":"?ND ","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/functions.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"30","C":[{"N":"or","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"31","C":[{"N":"or","C":[{"N":"or","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"atomSing","diag":"1|0||gc","card":"?","C":[{"N":"gVarRef","name":"Q{}resourcetype","bSlot":"0"}]},{"N":"str","val":"Dataset"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"atomSing","diag":"1|0||gc","card":"?","C":[{"N":"gVarRef","name":"Q{}resourcetype","bSlot":"0"}]},{"N":"str","val":"Software"}]}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"atomSing","diag":"1|0||gc","card":"?","C":[{"N":"gVarRef","name":"Q{}resourcetype","bSlot":"0"}]},{"N":"str","val":"Service"}]}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"atomSing","diag":"1|0||gc","card":"?","C":[{"N":"gVarRef","name":"Q{}resourcetype","bSlot":"0"}]},{"N":"str","val":"Model"}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_ScopeCode"}]},{"N":"true"},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"http://datacite.org/schema/kernel-4"}]}]}]}]}]},{"N":"co","binds":"","id":"53","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}distributorOrganisation","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","module":"functions.xslt","slots":"200","sType":"1AS","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"836","C":[{"N":"str","val":"Geological Survey of Austria"}]}]}]},{"N":"co","binds":"","id":"54","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}distributorContactEmail","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","module":"functions.xslt","slots":"200","sType":"1AS","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"837","C":[{"N":"str","val":"repository@geologie.ac.at"}]}]}]},{"N":"co","binds":"","id":"55","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}maintenanceContactID","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","module":"functions.xslt","slots":"200","sType":"1AS","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"871","C":[{"N":"str","val":"https://www.re3data.org/repository/r3d100013400"}]}]}]},{"N":"co","binds":"","id":"56","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}maintenanceContactName","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","module":"functions.xslt","slots":"200","sType":"1AS","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"872","C":[{"N":"str","val":"Tethys RDR"}]}]}]},{"N":"co","binds":"","id":"57","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}maintenanceContactEmail","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","module":"functions.xslt","slots":"200","sType":"1AS","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"873","C":[{"N":"str","val":"repository@geologie.ac.at"}]}]}]},{"N":"co","id":"58","binds":"25 37 38 41 39 40 66 61 64 62 65 63 7","C":[{"N":"mode","onNo":"SC","flags":"","patternSlots":"0","prec":"","C":[{"N":"templateRule","rank":"0","prec":"1","seq":"22","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"94","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"/root","prio":"0.5","matches":"NE u[NE nQ{}root,NE nQ{http://www.w3.org/1999/xhtml}root]","C":[{"N":"p.withUpper","role":"match","axis":"parent","sType":"1NE u[NE nQ{}root,NE nQ{http://www.w3.org/1999/xhtml}root]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","C":[{"N":"p.nodeTest","test":"NE u[NE nQ{}root,NE nQ{http://www.w3.org/1999/xhtml}root]"},{"N":"p.nodeTest","test":"ND"}]},{"N":"sequence","role":"action","sType":"*N ","C":[{"N":"procInst","sType":"1NP ","C":[{"N":"str","sType":"1AS ","val":"xml-stylesheet"},{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"type=\"text/xsl\" href=\"assets2/oai2_style.xslt\""}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"elem","name":"OAI-PMH","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}OAI-PMH ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"100","C":[{"N":"sequence","sType":"* ","C":[{"N":"att","name":"xsi:schemaLocation","nsuri":"http://www.w3.org/2001/XMLSchema-instance","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.openarchives.org/OAI/2.0/ http://www.openarchives.org/OAI/2.0/OAI-PMH.xsd"}]},{"N":"elem","name":"responseDate","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}responseDate ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"101","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"102","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}responseDate","bSlot":"0","role":"select","line":"102"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"request","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}request ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"104","C":[{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"? ","line":"105","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"105","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_verb","bSlot":"1"}]},{"N":"str","val":""}]},{"N":"att","name":"verb","sType":"1NA ","line":"106","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"107","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}oai_verb","bSlot":"1","role":"select","line":"107"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","line":"110","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"110","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_metadataPrefix","bSlot":"2"}]},{"N":"str","val":""}]},{"N":"att","name":"metadataPrefix","sType":"1NA ","line":"111","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"112","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}oai_metadataPrefix","bSlot":"2","role":"select","line":"112"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"115","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}baseURL","bSlot":"3","role":"select","line":"115"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"choose","sType":"? ","line":"117","C":[{"N":"compareToString","op":"ne","val":"","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"117","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"gVarRef","name":"Q{}oai_error_code","bSlot":"4"}]}]}]},{"N":"elem","name":"error","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}error ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"118","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"code","sType":"1NA ","line":"119","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"120","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"120","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"gVarRef","name":"Q{}oai_error_code","bSlot":"4"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"122","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}oai_error_message","bSlot":"5","role":"select","line":"122"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"* ","type":"item()*","line":"127","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"128","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_verb","bSlot":"1"}]},{"N":"str","val":"GetRecord"}]},{"N":"applyT","sType":"* ","line":"129","mode":"Q{}GetRecord","bSlot":"6","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","sType":"*NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"129"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"131","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_verb","bSlot":"1"}]},{"N":"str","val":"Identify"}]},{"N":"applyT","sType":"* ","line":"132","mode":"Q{}Identify","bSlot":"7","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","sType":"*NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"132"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"134","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_verb","bSlot":"1"}]},{"N":"str","val":"ListIdentifiers"}]},{"N":"applyT","sType":"* ","line":"135","mode":"Q{}ListIdentifiers","bSlot":"8","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","sType":"*NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"135"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"137","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_verb","bSlot":"1"}]},{"N":"str","val":"ListMetadataFormats"}]},{"N":"applyT","sType":"* ","line":"138","mode":"Q{}ListMetadataFormats","bSlot":"9","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","sType":"*NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"138"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"140","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_verb","bSlot":"1"}]},{"N":"str","val":"ListRecords"}]},{"N":"applyT","sType":"* ","line":"141","mode":"Q{}ListRecords","bSlot":"10","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","sType":"*NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"141"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"143","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_verb","bSlot":"1"}]},{"N":"str","val":"ListSets"}]},{"N":"applyT","sType":"* ","line":"144","mode":"Q{}ListSets","bSlot":"11","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","sType":"*NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"144"}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]}]},{"N":"templateRule","rank":"1","prec":"1","seq":"31","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"405","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"SetSpec","prio":"0","matches":"NE u[NE nQ{}SetSpec,NE nQ{http://www.w3.org/1999/xhtml}SetSpec]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}SetSpec,NE nQ{http://www.w3.org/1999/xhtml}SetSpec]","sType":"1NE u[NE nQ{}SetSpec,NE nQ{http://www.w3.org/1999/xhtml}SetSpec]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"setSpec","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}setSpec ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"406","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"407","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"407"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"templateRule","rank":"2","prec":"1","seq":"30","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"318","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Rdr_Dataset","prio":"0","matches":"NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","sType":"1NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"choose","sType":"* ","type":"item()*","role":"action","line":"319","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"320","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_verb","bSlot":"1"}]},{"N":"str","val":"ListIdentifiers"}]},{"N":"callT","bSlot":"12","sType":"* ","name":"Q{}Rdr_Dataset_Data","line":"321"},{"N":"true"},{"N":"elem","name":"record","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}record ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"324","C":[{"N":"callT","bSlot":"12","sType":"* ","name":"Q{}Rdr_Dataset_Data","line":"325"}]}]}]},{"N":"templateRule","rank":"3","prec":"1","seq":"26","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"257","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Rdr_Sets","prio":"0","matches":"NE u[NE nQ{}Rdr_Sets,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Sets]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Rdr_Sets,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Sets]","sType":"1NE u[NE nQ{}Rdr_Sets,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Sets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"set","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}set ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"258","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"setSpec","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}setSpec ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"259","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"260","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Type","name":"attribute","nodeTest":"*NA nQ{}Type","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"260"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"setName","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}setName ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"262","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"263","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}TypeName","name":"attribute","nodeTest":"*NA nQ{}TypeName","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"263"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]},{"N":"co","id":"59","binds":"1 59 30 0 2","C":[{"N":"mode","onNo":"TC","flags":"","patternSlots":"0","name":"Q{}oai_datacite","prec":"","C":[{"N":"templateRule","rank":"0","prec":"1","seq":"12","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","line":"395","module":"oai_datacite.xslt","expand-text":"false","match":"File/@MimeType","prio":"0.5","matches":"NA nQ{}MimeType","C":[{"N":"p.withUpper","role":"match","axis":"parent","sType":"1NA nQ{}MimeType","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","C":[{"N":"p.nodeTest","test":"NA nQ{}MimeType"},{"N":"p.nodeTest","test":"NE u[NE nQ{}File,NE nQ{http://www.w3.org/1999/xhtml}File]"}]},{"N":"elem","name":"format","sType":"1NE nQ{http://datacite.org/schema/kernel-4}format ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"396","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"397","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"398","C":[{"N":"atomSing","diag":"1|0||gc","card":"?","C":[{"N":"dot"}]},{"N":"str","val":"application/x-sqlite3"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"application/geopackage+sqlite3"}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"402","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"dot","sType":"1NA nQ{}MimeType","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"402"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"1","prec":"1","seq":"13","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","line":"409","module":"oai_datacite.xslt","expand-text":"false","match":"Licence","prio":"0","matches":"NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","sType":"1NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"sequence","role":"action","sType":"* ","C":[{"N":"elem","name":"rights","sType":"1NE nQ{http://datacite.org/schema/kernel-4}rights ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"410","C":[{"N":"sequence","sType":"* ","C":[{"N":"att","name":"xml:lang","sType":"1NA ","nsuri":"http://www.w3.org/XML/1998/namespace","line":"411","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"412","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Language","name":"attribute","nodeTest":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"412"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"choose","sType":"? ","line":"414","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"414","C":[{"N":"attVal","name":"Q{}LinkLicence"},{"N":"str","val":""}]},{"N":"att","name":"rightsURI","sType":"1NA ","line":"415","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"416","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}LinkLicence","name":"attribute","nodeTest":"*NA nQ{}LinkLicence","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"416"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"att","name":"schemeURI","sType":"1NA ","line":"419","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"https://spdx.org/licenses/"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"att","name":"rightsIdentifierScheme","sType":"1NA ","line":"422","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"SPDX"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"att","name":"rightsIdentifier","sType":"1NA ","line":"425","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"426","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Name","name":"attribute","nodeTest":"*NA nQ{}Name","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"426"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"428","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}NameLong","name":"attribute","nodeTest":"*NA nQ{}NameLong","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"428"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"choose","sType":"? ","line":"430","C":[{"N":"or","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"430","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Name"},{"N":"str","val":"CC-BY-4.0"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Name"},{"N":"str","val":"CC-BY-SA-4.0"}]}]},{"N":"elem","name":"rights","sType":"1NE nQ{http://datacite.org/schema/kernel-4}rights ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"431","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"rightsURI","sType":"1NA ","line":"432","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"info:eu-repo/semantics/openAccess"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Open Access"}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]},{"N":"templateRule","rank":"2","prec":"1","seq":"11","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","line":"352","module":"oai_datacite.xslt","expand-text":"false","match":"PersonAuthor","prio":"0","matches":"NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","sType":"1NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"elem","name":"creator","sType":"1NE nQ{http://datacite.org/schema/kernel-4}creator ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"353","C":[{"N":"sequence","sType":"* ","C":[{"N":"elem","name":"creatorName","sType":"1NE nQ{http://datacite.org/schema/kernel-4}creatorName ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"354","C":[{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"? ","line":"355","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"355","C":[{"N":"attVal","name":"Q{}NameType"},{"N":"str","val":""}]},{"N":"att","name":"nameType","sType":"1NA ","line":"356","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"357","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}NameType","name":"attribute","nodeTest":"*NA nQ{}NameType","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"357"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"360","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}LastName","name":"attribute","nodeTest":"*NA nQ{}LastName","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"360"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"choose","sType":"? ","line":"361","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"361","C":[{"N":"attVal","name":"Q{}FirstName"},{"N":"str","val":""}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":", "}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"364","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}FirstName","name":"attribute","nodeTest":"*NA nQ{}FirstName","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"364"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"choose","sType":"* ","line":"365","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"365","C":[{"N":"attVal","name":"Q{}AcademicTitle"},{"N":"str","val":""}]},{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":" ("}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"367","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}AcademicTitle","name":"attribute","nodeTest":"*NA nQ{}AcademicTitle","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"367"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":")"}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]},{"N":"choose","sType":"* ","line":"372","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"372","C":[{"N":"attVal","name":"Q{}NameType"},{"N":"str","val":"Personal"}]},{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"givenName","sType":"1NE nQ{http://datacite.org/schema/kernel-4}givenName ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"373","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"374","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}FirstName","name":"attribute","nodeTest":"*NA nQ{}FirstName","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"374"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"familyName","sType":"1NE nQ{http://datacite.org/schema/kernel-4}familyName ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"376","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"377","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}LastName","name":"attribute","nodeTest":"*NA nQ{}LastName","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"377"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"affiliation","sType":"1NE nQ{http://datacite.org/schema/kernel-4}affiliation ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"379","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"GBA"}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","line":"382","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"382","C":[{"N":"attVal","name":"Q{}IdentifierOrcid"},{"N":"str","val":""}]},{"N":"elem","name":"nameIdentifier","sType":"1NE nQ{http://datacite.org/schema/kernel-4}nameIdentifier ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"383","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"schemeURI","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://orcid.org/"}]},{"N":"att","name":"nameIdentifierScheme","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"ORCID"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"384","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}IdentifierOrcid","name":"attribute","nodeTest":"*NA nQ{}IdentifierOrcid","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"384"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"templateRule","rank":"3","prec":"1","seq":"10","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","line":"333","module":"oai_datacite.xslt","expand-text":"false","match":"PersonContributor","prio":"0","matches":"NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","sType":"1NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"elem","name":"contributor","sType":"1NE nQ{http://datacite.org/schema/kernel-4}contributor ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"334","C":[{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"? ","line":"335","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"335","C":[{"N":"attVal","name":"Q{}ContributorType"},{"N":"str","val":""}]},{"N":"att","name":"contributorType","sType":"1NA ","line":"336","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"337","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}ContributorType","name":"attribute","nodeTest":"*NA nQ{}ContributorType","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"337"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"elem","name":"contributorName","sType":"1NE nQ{http://datacite.org/schema/kernel-4}contributorName ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"340","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"346","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"346","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"attVal","name":"Q{}FirstName"}]},{"N":"str","val":" "},{"N":"check","card":"?","diag":"0|2||concat","C":[{"N":"attVal","name":"Q{}LastName"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]},{"N":"templateRule","rank":"4","prec":"1","seq":"9","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","line":"320","module":"oai_datacite.xslt","expand-text":"false","match":"Reference","prio":"0","matches":"NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","sType":"1NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"elem","name":"relatedIdentifier","sType":"1NE nQ{http://datacite.org/schema/kernel-4}relatedIdentifier ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"321","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"relatedIdentifierType","sType":"1NA ","line":"322","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"323","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Type","name":"attribute","nodeTest":"*NA nQ{}Type","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"323"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"att","name":"relationType","sType":"1NA ","line":"325","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"326","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Relation","name":"attribute","nodeTest":"*NA nQ{}Relation","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"326"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"328","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"328"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"5","prec":"1","seq":"8","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","line":"309","module":"oai_datacite.xslt","expand-text":"false","match":"AlternateIdentifier","prio":"0","matches":"NE u[NE nQ{}AlternateIdentifier,NE nQ{http://www.w3.org/1999/xhtml}AlternateIdentifier]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}AlternateIdentifier,NE nQ{http://www.w3.org/1999/xhtml}AlternateIdentifier]","sType":"1NE u[NE nQ{}AlternateIdentifier,NE nQ{http://www.w3.org/1999/xhtml}AlternateIdentifier]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"elem","name":"alternateIdentifier","sType":"1NE nQ{http://datacite.org/schema/kernel-4}alternateIdentifier ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"310","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"alternateIdentifierType","sType":"1NA ","line":"311","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"url"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"315","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}landingpage","name":"attribute","nodeTest":"*NA nQ{}landingpage","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"315"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"6","prec":"1","seq":"7","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","line":"297","module":"oai_datacite.xslt","expand-text":"false","match":"Subject","prio":"0","matches":"NE u[NE nQ{}Subject,NE nQ{http://www.w3.org/1999/xhtml}Subject]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Subject,NE nQ{http://www.w3.org/1999/xhtml}Subject]","sType":"1NE u[NE nQ{}Subject,NE nQ{http://www.w3.org/1999/xhtml}Subject]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"elem","name":"subject","sType":"1NE nQ{http://datacite.org/schema/kernel-4}subject ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"298","C":[{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"? ","line":"299","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"299","C":[{"N":"attVal","name":"Q{}Language"},{"N":"str","val":""}]},{"N":"att","name":"xml:lang","sType":"1NA ","nsuri":"http://www.w3.org/XML/1998/namespace","line":"300","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"301","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Language","name":"attribute","nodeTest":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"301"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"304","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"304"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"7","prec":"1","seq":"6","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","line":"271","module":"oai_datacite.xslt","expand-text":"false","match":"TitleAdditional","prio":"0","matches":"NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","sType":"1NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"elem","name":"title","sType":"1NE nQ{http://datacite.org/schema/kernel-4}title ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"272","C":[{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"? ","line":"273","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"273","C":[{"N":"attVal","name":"Q{}Language"},{"N":"str","val":""}]},{"N":"att","name":"xml:lang","sType":"1NA ","nsuri":"http://www.w3.org/XML/1998/namespace","line":"274","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"275","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Language","name":"attribute","nodeTest":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"275"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","type":"item()*","line":"278","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"279","C":[{"N":"and","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":""}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Sub"}]}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Main"}]}]},{"N":"att","name":"titleType","sType":"1NA ","line":"280","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"281","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Type","name":"attribute","nodeTest":"*NA nQ{}Type","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"281"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Title"}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"285","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Sub"}]},{"N":"att","name":"titleType","sType":"1NA ","line":"286","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"287","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Type","name":"attribute","nodeTest":"*NA nQ{}Type","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"287"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"title"}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"292","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"292"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"8","prec":"1","seq":"5","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","line":"255","module":"oai_datacite.xslt","expand-text":"false","match":"TitleMain","prio":"0","matches":"NE u[NE nQ{}TitleMain,NE nQ{http://www.w3.org/1999/xhtml}TitleMain]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}TitleMain,NE nQ{http://www.w3.org/1999/xhtml}TitleMain]","sType":"1NE u[NE nQ{}TitleMain,NE nQ{http://www.w3.org/1999/xhtml}TitleMain]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"elem","name":"title","sType":"1NE nQ{http://datacite.org/schema/kernel-4}title ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"256","C":[{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"? ","line":"257","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"257","C":[{"N":"attVal","name":"Q{}Language"},{"N":"str","val":""}]},{"N":"att","name":"xml:lang","sType":"1NA ","nsuri":"http://www.w3.org/XML/1998/namespace","line":"258","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"259","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Language","name":"attribute","nodeTest":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"259"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","line":"262","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"262","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":""}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Main"}]}]},{"N":"att","name":"titleType","sType":"1NA ","line":"263","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"264","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Type","name":"attribute","nodeTest":"*NA nQ{}Type","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"264"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"267","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"267"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"9","prec":"1","seq":"4","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","line":"245","module":"oai_datacite.xslt","expand-text":"false","match":"Identifier","prio":"0","matches":"NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","sType":"1NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"elem","name":"identifier","sType":"1NE nQ{http://datacite.org/schema/kernel-4}identifier ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"246","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"identifierType","sType":"1NA ","line":"247","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"DOI"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"250","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"250"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"10","prec":"1","seq":"3","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","line":"208","module":"oai_datacite.xslt","expand-text":"false","match":"TitleAbstractAdditional","prio":"0","matches":"NE u[NE nQ{}TitleAbstractAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstractAdditional]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}TitleAbstractAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstractAdditional]","sType":"1NE u[NE nQ{}TitleAbstractAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstractAdditional]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"elem","name":"description","sType":"1NE nQ{http://datacite.org/schema/kernel-4}description ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"209","C":[{"N":"sequence","sType":"* ","C":[{"N":"att","name":"xml:lang","sType":"1NA ","nsuri":"http://www.w3.org/XML/1998/namespace","line":"210","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"211","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Language","name":"attribute","nodeTest":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"211"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"choose","sType":"? ","line":"213","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"213","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":""}]},{"N":"att","name":"descriptionType","sType":"1NA ","line":"214","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"callT","sType":"* ","bSlot":"0","name":"Q{}CamelCaseWord","line":"215","C":[{"N":"withParam","name":"Q{}text","slot":"0","sType":"*NA nQ{}Type","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type","sType":"*NA nQ{}Type","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"216"}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"220","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"220"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"11","prec":"1","seq":"2","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","line":"193","module":"oai_datacite.xslt","expand-text":"false","match":"TitleAbstract","prio":"0","matches":"NE u[NE nQ{}TitleAbstract,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstract]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}TitleAbstract,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstract]","sType":"1NE u[NE nQ{}TitleAbstract,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstract]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"elem","name":"description","sType":"1NE nQ{http://datacite.org/schema/kernel-4}description ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"194","C":[{"N":"sequence","sType":"* ","C":[{"N":"att","name":"xml:lang","sType":"1NA ","nsuri":"http://www.w3.org/XML/1998/namespace","line":"195","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"196","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Language","name":"attribute","nodeTest":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"196"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"choose","sType":"? ","line":"198","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"198","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":""}]},{"N":"att","name":"descriptionType","sType":"1NA ","line":"199","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Abstract"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"204","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"204"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"12","prec":"1","seq":"1","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","line":"173","module":"oai_datacite.xslt","expand-text":"false","match":"Coverage","prio":"0","matches":"NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]","sType":"1NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"elem","name":"geoLocation","sType":"1NE nQ{http://datacite.org/schema/kernel-4}geoLocation ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"174","C":[{"N":"elem","name":"geoLocationBox","sType":"1NE nQ{http://datacite.org/schema/kernel-4}geoLocationBox ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"175","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"westBoundLongitude","sType":"1NE nQ{http://datacite.org/schema/kernel-4}westBoundLongitude ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"176","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"177","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}XMin","name":"attribute","nodeTest":"*NA nQ{}XMin","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"177"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"eastBoundLongitude","sType":"1NE nQ{http://datacite.org/schema/kernel-4}eastBoundLongitude ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"179","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"180","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}XMax","name":"attribute","nodeTest":"*NA nQ{}XMax","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"180"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"southBoundLatitude","sType":"1NE nQ{http://datacite.org/schema/kernel-4}southBoundLatitude ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"182","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"183","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}YMin","name":"attribute","nodeTest":"*NA nQ{}YMin","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"183"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"northBoundLatitude","sType":"1NE nQ{http://datacite.org/schema/kernel-4}northBoundLatitude ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"185","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"186","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}YMax","name":"attribute","nodeTest":"*NA nQ{}YMax","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"186"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]},{"N":"templateRule","rank":"13","prec":"1","seq":"0","ns":"xml=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","line":"39","module":"oai_datacite.xslt","expand-text":"false","match":"Rdr_Dataset","prio":"0","matches":"NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","sType":"1NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"elem","name":"resource","sType":"1NE nQ{http://datacite.org/schema/kernel-4}resource ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","ns":"xml=~ xsi=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"41","C":[{"N":"sequence","ns":"xml=~ xsi=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","sType":"* ","C":[{"N":"att","name":"xsi:schemaLocation","nsuri":"http://www.w3.org/2001/XMLSchema-instance","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://datacite.org/schema/kernel-4 http://schema.datacite.org/meta/kernel-4.3/metadata.xsd"}]},{"N":"choose","sType":"* ","type":"item()*","line":"45","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","sType":"*NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","line":"46"},{"N":"applyT","sType":"* ","line":"47","mode":"Q{}oai_datacite","bSlot":"1","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","sType":"*NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"47"}]},{"N":"true"},{"N":"elem","name":"identifier","sType":"1NE nQ{http://datacite.org/schema/kernel-4}identifier ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"50","C":[{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"oai:"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"52","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}repIdentifier","bSlot":"2","role":"select","line":"52"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":":"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"54","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}PublishId","name":"attribute","nodeTest":"*NA nQ{}PublishId","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"54"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"elem","name":"creators","sType":"1NE nQ{http://datacite.org/schema/kernel-4}creators ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"60","C":[{"N":"applyT","sType":"* ","line":"61","mode":"Q{}oai_datacite","bSlot":"1","C":[{"N":"sort","role":"select","sType":"*NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","sType":"*NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"61"},{"N":"sortKey","sType":"?A ","C":[{"N":"check","card":"?","sType":"?A ","diag":"2|0|XTTE1020|sort","role":"select","C":[{"N":"data","sType":"*A ","role":"select","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}SortOrder","sType":"*NA nQ{}SortOrder","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"62"}]}]},{"N":"str","sType":"1AS ","val":"ascending","role":"order"},{"N":"str","sType":"1AS ","val":"en","role":"lang"},{"N":"str","sType":"1AS ","val":"#default","role":"caseOrder"},{"N":"str","sType":"1AS ","val":"true","role":"stable"}]}]}]}]},{"N":"elem","name":"titles","sType":"1NE nQ{http://datacite.org/schema/kernel-4}titles ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"65","C":[{"N":"sequence","sType":"* ","C":[{"N":"applyT","sType":"* ","line":"66","mode":"Q{}oai_datacite","bSlot":"1","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}TitleMain,NE nQ{http://www.w3.org/1999/xhtml}TitleMain]","sType":"*NE u[NE nQ{}TitleMain,NE nQ{http://www.w3.org/1999/xhtml}TitleMain]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"66"}]},{"N":"applyT","sType":"* ","line":"67","mode":"Q{}oai_datacite","bSlot":"1","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","sType":"*NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"67"}]}]}]},{"N":"elem","name":"publisher","sType":"1NE nQ{http://datacite.org/schema/kernel-4}publisher ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"69","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"71","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}CreatingCorporation","name":"attribute","nodeTest":"*NA nQ{}CreatingCorporation","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"71"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"publicationYear","sType":"1NE nQ{http://datacite.org/schema/kernel-4}publicationYear ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"73","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"74","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"docOrder","sType":"*NA nQ{}Year","role":"select","line":"74","C":[{"N":"slash","op":"/","sType":"*NA nQ{}Year","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"subjects","sType":"1NE nQ{http://datacite.org/schema/kernel-4}subjects ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"76","C":[{"N":"applyT","sType":"* ","line":"77","mode":"Q{}oai_datacite","bSlot":"1","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Subject,NE nQ{http://www.w3.org/1999/xhtml}Subject]","sType":"*NE u[NE nQ{}Subject,NE nQ{http://www.w3.org/1999/xhtml}Subject]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"77"}]}]},{"N":"elem","name":"language","sType":"1NE nQ{http://datacite.org/schema/kernel-4}language ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"79","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"80","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Language","name":"attribute","nodeTest":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"80"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"choose","sType":"? ","line":"82","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","sType":"*NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","line":"82"},{"N":"elem","name":"contributors","sType":"1NE nQ{http://datacite.org/schema/kernel-4}contributors ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"83","C":[{"N":"applyT","sType":"* ","line":"84","mode":"Q{}oai_datacite","bSlot":"1","C":[{"N":"sort","role":"select","sType":"*NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","sType":"*NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"84"},{"N":"sortKey","sType":"?A ","C":[{"N":"check","card":"?","sType":"?A ","diag":"2|0|XTTE1020|sort","role":"select","C":[{"N":"data","sType":"*A ","role":"select","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}SortOrder","sType":"*NA nQ{}SortOrder","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"85"}]}]},{"N":"str","sType":"1AS ","val":"ascending","role":"order"},{"N":"str","sType":"1AS ","val":"en","role":"lang"},{"N":"str","sType":"1AS ","val":"#default","role":"caseOrder"},{"N":"str","sType":"1AS ","val":"true","role":"stable"}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"elem","name":"dates","sType":"1NE nQ{http://datacite.org/schema/kernel-4}dates ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"89","C":[{"N":"callT","bSlot":"3","sType":"* ","name":"Q{}RdrDate2","line":"90"}]},{"N":"elem","name":"version","sType":"1NE nQ{http://datacite.org/schema/kernel-4}version ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"92","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"93","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Version","sType":"*NA nQ{}Version","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","line":"94"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"95","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Version","name":"attribute","nodeTest":"*NA nQ{}Version","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"95"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"1"}]}]}]},{"N":"elem","name":"resourceType","sType":"1NE nQ{http://datacite.org/schema/kernel-4}resourceType ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"102","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"resourceTypeGeneral","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"Dataset"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Dataset"}]}]}]},{"N":"elem","name":"alternateIdentifiers","sType":"1NE nQ{http://datacite.org/schema/kernel-4}alternateIdentifiers ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"107","C":[{"N":"callT","bSlot":"4","sType":"* ","name":"Q{}AlternateIdentifier","line":"108"}]},{"N":"choose","sType":"? ","line":"111","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","sType":"*NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","line":"111"},{"N":"elem","name":"relatedIdentifiers","sType":"1NE nQ{http://datacite.org/schema/kernel-4}relatedIdentifiers ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"112","C":[{"N":"applyT","sType":"* ","line":"113","mode":"Q{}oai_datacite","bSlot":"1","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","sType":"*NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"113"}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"elem","name":"rightsList","sType":"1NE nQ{http://datacite.org/schema/kernel-4}rightsList ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"116","C":[{"N":"applyT","sType":"* ","line":"117","mode":"Q{}oai_datacite","bSlot":"1","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","sType":"*NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"117"}]}]},{"N":"elem","name":"sizes","sType":"1NE nQ{http://datacite.org/schema/kernel-4}sizes ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"119","C":[{"N":"elem","name":"size","sType":"1NE nQ{http://datacite.org/schema/kernel-4}size ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"120","C":[{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"121","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"fn","sType":"1ADI","name":"count","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"121","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}File,NE nQ{http://www.w3.org/1999/xhtml}File]"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":" datasets"}]}]}]}]},{"N":"elem","name":"formats","sType":"1NE nQ{http://datacite.org/schema/kernel-4}formats ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"125","C":[{"N":"applyT","sType":"* ","line":"126","mode":"Q{}oai_datacite","bSlot":"1","C":[{"N":"docOrder","sType":"*NA nQ{}MimeType","role":"select","line":"126","C":[{"N":"slash","op":"/","sType":"*NA nQ{}MimeType","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}File,NE nQ{http://www.w3.org/1999/xhtml}File]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}MimeType"}]}]}]}]},{"N":"elem","name":"descriptions","sType":"1NE nQ{http://datacite.org/schema/kernel-4}descriptions ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"128","C":[{"N":"sequence","sType":"* ","C":[{"N":"applyT","sType":"* ","line":"129","mode":"Q{}oai_datacite","bSlot":"1","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}TitleAbstract,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstract]","sType":"*NE u[NE nQ{}TitleAbstract,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstract]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"129"}]},{"N":"applyT","sType":"* ","line":"130","mode":"Q{}oai_datacite","bSlot":"1","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}TitleAbstractAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstractAdditional]","sType":"*NE u[NE nQ{}TitleAbstractAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstractAdditional]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"130"}]}]}]},{"N":"elem","name":"geoLocations","sType":"1NE nQ{http://datacite.org/schema/kernel-4}geoLocations ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"132","C":[{"N":"applyT","sType":"* ","line":"133","mode":"Q{}oai_datacite","bSlot":"1","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]","sType":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"133"}]}]}]}]}]}]}]},{"N":"co","id":"60","binds":"13 42 60 10 11 3 4 12 43 5 14 15 16 17 18 19 23 20 21 22 24","C":[{"N":"mode","onNo":"TC","flags":"","patternSlots":"0","name":"Q{}iso19139","prec":"","C":[{"N":"templateRule","rank":"0","prec":"1","seq":"21","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","line":"737","module":"oai_2_iso19139.xslt","expand-text":"true","match":"File","prio":"0","matches":"NE u[NE nQ{}File,NE nQ{http://www.w3.org/1999/xhtml}File]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}File,NE nQ{http://www.w3.org/1999/xhtml}File]","sType":"1NE u[NE nQ{}File,NE nQ{http://www.w3.org/1999/xhtml}File]","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco "},{"N":"choose","sType":"? ","role":"action","line":"738","C":[{"N":"compareToInt","op":"gt","val":"0","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"738","C":[{"N":"fn","name":"string-length","C":[{"N":"fn","name":"normalize-space","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}MimeType"}]}]}]}]}]},{"N":"elem","name":"gmd:distributionFormat","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}distributionFormat ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"739","C":[{"N":"elem","name":"gmd:MD_Format","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_Format ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"740","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:name","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}name ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"741","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"742","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"743","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"743","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}MimeType"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:version","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}version ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"746","C":[{"N":"att","name":"gco:nilReason","nsuri":"http://www.isotc211.org/2005/gco","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"missing"}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]},{"N":"templateRule","rank":"1","prec":"1","seq":"20","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","line":"701","module":"oai_2_iso19139.xslt","expand-text":"true","match":"Reference","prio":"0","matches":"NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","sType":"1NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco "},{"N":"choose","sType":"? ","role":"action","line":"704","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"704","C":[{"N":"fn","name":"not","C":[{"N":"fn","name":"contains","C":[{"N":"fn","name":"normalize-space","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"str","val":"missing"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]}]},{"N":"fn","name":"not","C":[{"N":"fn","name":"contains","C":[{"N":"fn","name":"normalize-space","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"str","val":"unknown"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]}]}]},{"N":"elem","name":"gmd:aggregationInfo","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}aggregationInfo ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"705","C":[{"N":"elem","name":"gmd:MD_AggregateInformation","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_AggregateInformation ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"706","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:aggregateDataSetIdentifier","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}aggregateDataSetIdentifier ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"707","C":[{"N":"elem","name":"gmd:RS_Identifier","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}RS_Identifier ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"708","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:code","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}code ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"709","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"710","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"711","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"711","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:codeSpace","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}codeSpace ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"714","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"715","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"716","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"716","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:associationType","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}associationType ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"721","C":[{"N":"elem","type":"element()","name":"gmd:DS_AssociationTypeCode","sType":"1NE ","nsuri":"http://www.isotc211.org/2005/gmd","line":"722","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","sType":"1NA ","line":"723","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"724","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"724","C":[{"N":"str","val":"http://datacite.org/schema/kernel-4"}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"att","name":"codeListValue","sType":"1NA ","line":"726","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"727","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"727","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"729","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"729","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]},{"N":"templateRule","rank":"2","prec":"1","seq":"19","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","line":"550","module":"oai_2_iso19139.xslt","expand-text":"true","match":"PersonContributor","prio":"0","matches":"NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","sType":"1NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco "},{"N":"let","var":"Q{}dcrole","slot":"0","sType":"*NE ","line":"551","role":"action","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"551","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"data","diag":"0|0||normalize-space","C":[{"N":"slash","op":"/","C":[{"N":"dot"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}ContributorType"}]}]}]}]}]},{"N":"let","var":"Q{}role","slot":"1","sType":"*NE ","line":"552","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"553","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"554","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"ContactPerson"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"pointOfContact"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"555","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"DataCollector"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"collaborator"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"556","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"DataCurator"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"custodian"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"557","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"DataManager"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"custodian"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"558","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"Distributor"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"originator"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"559","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"Editor"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"editor"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"560","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"Funder"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"funder"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"561","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"HostingInstitution"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"distributor"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"562","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"ProjectLeader"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"collaborator"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"563","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"ProjectManager"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"collaborator"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"564","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"ProjectMember"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"collaborator"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"565","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"ResearchGroup"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"collaborator"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"566","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"Researcher"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"collaborator"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"567","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"RightsHolder"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"rightsHolder"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"568","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"Sponsor"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"funder"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"569","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"WorkPackageLeader"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"collaborator"}]},{"N":"true"},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"contributor"}]}]}]},{"N":"elem","name":"gmd:citedResponsibleParty","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}citedResponsibleParty ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"573","C":[{"N":"let","var":"Q{}http-uri","slot":"2","sType":"* ","line":"574","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"575","C":[{"N":"compareToInt","op":"gt","val":"0","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"576","C":[{"N":"fn","name":"string-length","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||string-length","C":[{"N":"check","card":"?","diag":"0|0||string-length","C":[{"N":"attVal","name":"Q{}IdentifierOrcid"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"580","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"580","C":[{"N":"str","val":"http://orcid.org/"},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}IdentifierOrcid"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"583","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"583","C":[{"N":"str","val":""}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"? ","line":"588","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"588","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}http-uri","slot":"2"}]},{"N":"str","val":""}]},{"N":"att","name":"xlink:href","sType":"1NA ","nsuri":"http://www.w3.org/1999/xlink","line":"589","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"590","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}http-uri","slot":"2","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"590"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"let","var":"Q{}nameidscheme","slot":"3","sType":"* ","line":"593","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"594","C":[{"N":"fn","name":"starts-with","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"595","C":[{"N":"treat","as":"AS","diag":"0|0||starts-with","C":[{"N":"check","card":"?","diag":"0|0||starts-with","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||starts-with","C":[{"N":"check","card":"?","diag":"0|0||starts-with","C":[{"N":"data","diag":"0|0||starts-with","C":[{"N":"varRef","name":"Q{}http-uri","slot":"2"}]}]}]}]}]},{"N":"str","val":"http://orcid.org/"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"596","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"596","C":[{"N":"str","val":"ORCID"}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"599","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"599","C":[{"N":"str","val":""}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"let","var":"Q{}email","slot":"4","sType":"* ","line":"603","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"604","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"605","C":[{"N":"attVal","name":"Q{}Email"},{"N":"str","val":""}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"606","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Email","name":"attribute","nodeTest":"*NA nQ{}Email","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"606"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"609","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"609","C":[{"N":"str","val":""}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"let","var":"Q{}affiliation","slot":"5","sType":"* ","line":"613","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"614","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"615","C":[{"N":"attVal","name":"Q{}NameType"},{"N":"str","val":"Personal"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"616","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"616","C":[{"N":"str","val":"GBA"}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"619","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"619","C":[{"N":"str","val":""}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"let","var":"Q{}contrnamestring","slot":"6","sType":"* ","line":"623","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"624","C":[{"N":"compareToString","op":"ne","val":"","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"625","C":[{"N":"fn","name":"normalize-space","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}LastName"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"630","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"630","C":[{"N":"fn","name":"normalize-space","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}LastName"}]}]}]},{"N":"str","val":", "},{"N":"fn","name":"normalize-space","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}FirstName"}]}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"633","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"633","C":[{"N":"str","val":"missing"}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"callT","bSlot":"0","sType":"* ","name":"Q{}ci_responsibleparty","line":"637","C":[{"N":"withParam","name":"Q{}individual","slot":"0","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"639","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}contrnamestring","slot":"6","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"639"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"withParam","name":"Q{}httpuri","slot":"0","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"642","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}http-uri","slot":"2","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"642"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"withParam","name":"Q{}personidtype","slot":"0","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"645","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}nameidscheme","slot":"3","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"645"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"withParam","name":"Q{}organisation","slot":"0","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"648","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}affiliation","slot":"5","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"648"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"withParam","name":"Q{}position","slot":"0","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"651","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}dcrole","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"651"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"withParam","name":"Q{}email","slot":"4","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"654","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}email","slot":"4","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"654"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"withParam","name":"Q{}role","slot":"1","sType":"*","C":[{"N":"varRef","name":"Q{}role","slot":"1","sType":"*","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"656"}]}]}]}]}]}]}]}]}]}]}]}]},{"N":"templateRule","rank":"3","prec":"1","seq":"18","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","line":"448","module":"oai_2_iso19139.xslt","expand-text":"true","match":"PersonAuthor","prio":"0","matches":"NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","sType":"1NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco "},{"N":"elem","name":"gmd:citedResponsibleParty","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}citedResponsibleParty ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","role":"action","line":"449","C":[{"N":"let","var":"Q{}http-uri","slot":"0","sType":"* ","line":"450","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"451","C":[{"N":"compareToInt","op":"gt","val":"0","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"452","C":[{"N":"fn","name":"string-length","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||string-length","C":[{"N":"check","card":"?","diag":"0|0||string-length","C":[{"N":"attVal","name":"Q{}IdentifierOrcid"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"456","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"456","C":[{"N":"str","val":"http://orcid.org/"},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}IdentifierOrcid"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"459","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"459","C":[{"N":"str","val":""}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"? ","line":"464","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"464","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}http-uri","slot":"0"}]},{"N":"str","val":""}]},{"N":"att","name":"xlink:href","sType":"1NA ","nsuri":"http://www.w3.org/1999/xlink","line":"465","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"466","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}http-uri","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"466"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"let","var":"Q{}nameidscheme","slot":"1","sType":"* ","line":"469","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"470","C":[{"N":"fn","name":"starts-with","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"471","C":[{"N":"treat","as":"AS","diag":"0|0||starts-with","C":[{"N":"check","card":"?","diag":"0|0||starts-with","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||starts-with","C":[{"N":"check","card":"?","diag":"0|0||starts-with","C":[{"N":"data","diag":"0|0||starts-with","C":[{"N":"varRef","name":"Q{}http-uri","slot":"0"}]}]}]}]}]},{"N":"str","val":"http://orcid.org/"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"472","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"472","C":[{"N":"str","val":"ORCID"}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"475","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"475","C":[{"N":"str","val":""}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"let","var":"Q{}email","slot":"2","sType":"* ","line":"479","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"480","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"481","C":[{"N":"attVal","name":"Q{}Email"},{"N":"str","val":""}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"482","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Email","name":"attribute","nodeTest":"*NA nQ{}Email","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"482"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"485","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"485","C":[{"N":"str","val":""}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"let","var":"Q{}affiliation","slot":"3","sType":"* ","line":"489","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"490","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"491","C":[{"N":"attVal","name":"Q{}NameType"},{"N":"str","val":"Personal"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"492","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"492","C":[{"N":"str","val":"GBA"}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"495","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"495","C":[{"N":"str","val":""}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"let","var":"Q{}creatorname","slot":"4","sType":"* ","line":"499","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"sequence","sType":"* ","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"500","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}LastName","name":"attribute","nodeTest":"*NA nQ{}LastName","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"500"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"choose","sType":"? ","line":"501","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"501","C":[{"N":"attVal","name":"Q{}FirstName"},{"N":"str","val":""}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":", "}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"504","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}FirstName","name":"attribute","nodeTest":"*NA nQ{}FirstName","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"504"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"choose","sType":"* ","line":"505","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"505","C":[{"N":"attVal","name":"Q{}AcademicTitle"},{"N":"str","val":""}]},{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":" ("}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"507","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}AcademicTitle","name":"attribute","nodeTest":"*NA nQ{}AcademicTitle","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"507"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":")"}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]},{"N":"let","var":"Q{}namestring","slot":"5","sType":"* ","line":"511","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"512","C":[{"N":"compareToString","op":"ne","val":"","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"513","C":[{"N":"fn","name":"normalize-space","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}LastName"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"518","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"518","C":[{"N":"fn","name":"normalize-space","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}LastName"}]}]}]},{"N":"str","val":", "},{"N":"fn","name":"normalize-space","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}FirstName"}]}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"524","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"524","C":[{"N":"str","val":"missing"}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"callT","bSlot":"0","sType":"* ","name":"Q{}ci_responsibleparty","line":"528","C":[{"N":"withParam","name":"Q{}individual","slot":"0","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"530","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}namestring","slot":"5","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"530"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"withParam","name":"Q{}personidtype","slot":"0","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"533","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}nameidscheme","slot":"1","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"533"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"withParam","name":"Q{}organisation","slot":"0","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"536","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}affiliation","slot":"3","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"536"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"withParam","name":"Q{}role","slot":"0","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"author"}]}]}]}]},{"N":"withParam","name":"Q{}email","slot":"2","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"540","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}email","slot":"2","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"540"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"withParam","name":"Q{}datacite-creatorname","slot":"0","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"543","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}creatorname","slot":"4","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"543"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"N":"templateRule","rank":"4","prec":"1","seq":"17","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","line":"437","module":"oai_2_iso19139.xslt","expand-text":"true","match":"TitleAdditional","prio":"0","matches":"NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","sType":"1NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco "},{"N":"choose","sType":"? ","role":"action","line":"438","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"438","C":[{"N":"compareToString","op":"eq","val":"Alternative","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Value"},{"N":"str","val":""}]}]},{"N":"elem","name":"gmd:alternateTitle","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}alternateTitle ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"439","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"440","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"441","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"441","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]},{"N":"templateRule","rank":"5","prec":"1","seq":"16","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","line":"368","module":"oai_2_iso19139.xslt","expand-text":"true","match":"Identifier","prio":"0","matches":"NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","sType":"1NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco "},{"N":"elem","name":"gmd:fileIdentifier","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}fileIdentifier ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","role":"action","line":"369","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"370","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"372","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"373","C":[{"N":"compareToInt","op":"gt","val":"0","C":[{"N":"fn","name":"string-length","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||string-length","C":[{"N":"check","card":"?","diag":"0|0||string-length","C":[{"N":"attVal","name":"Q{}Value"}]}]}]}]},{"N":"compareToInt","op":"gt","val":"0","C":[{"N":"fn","name":"count","C":[{"N":"arrayBlock","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Doi"}]}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"374","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"374","C":[{"N":"gVarRef","name":"Q{}fileIdentifierPrefix","bSlot":"1"},{"N":"fn","name":"normalize-space","C":[{"N":"fn","name":"substring-after","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||substring-after","C":[{"N":"check","card":"?","diag":"0|0||substring-after","C":[{"N":"attVal","name":"Q{}Value"}]}]},{"N":"str","val":"/tethys."},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"377","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"377","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]},{"N":"templateRule","rank":"6","prec":"1","seq":"15","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","line":"341","module":"oai_2_iso19139.xslt","expand-text":"true","match":"Licence","prio":"0","matches":"NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","sType":"1NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco "},{"N":"sequence","role":"action","sType":"*NE ","C":[{"N":"elem","name":"gmd:resourceConstraints","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}resourceConstraints ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"342","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"xlink:href","nsuri":"http://www.w3.org/1999/xlink","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"https://creativecommons.org/licenses/by/4.0/deed.en"}]},{"N":"elem","name":"gmd:MD_Constraints","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_Constraints ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"343","C":[{"N":"elem","name":"gmd:useLimitation","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}useLimitation ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"344","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"345","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"346","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"346","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}NameLong"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:resourceConstraints","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}resourceConstraints ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"351","C":[{"N":"elem","name":"gmd:MD_LegalConstraints","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_LegalConstraints ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"352","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:accessConstraints","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}accessConstraints ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"353","C":[{"N":"elem","name":"gmd:MD_RestrictionCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_RestrictionCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"354","C":[{"N":"sequence","sType":"*NA ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/codeList.xml#MD_RestrictionCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"otherRestrictions"}]}]}]}]},{"N":"elem","name":"gmd:otherConstraints","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}otherConstraints ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"356","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"357","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"358","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"358","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}NameLong"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]}]},{"N":"templateRule","rank":"7","prec":"1","seq":"14","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","line":"54","module":"oai_2_iso19139.xslt","expand-text":"true","match":"Rdr_Dataset","prio":"0","matches":"NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","sType":"1NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco "},{"N":"elem","name":"gmd:MD_Metadata","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_Metadata ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","ns":"xml=~ gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ fn=http://example.com/functions","role":"action","line":"59","C":[{"N":"sequence","ns":"xml=~ gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ fn=http://example.com/functions","sType":"* ","C":[{"N":"att","name":"xsi:schemaLocation","nsuri":"http://www.w3.org/2001/XMLSchema-instance","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/gmd http://schemas.opengis.net/iso/19139/20060504/gmd/gmd.xsd http://www.isotc211.org/2005/gmx http://schemas.opengis.net/iso/19139/20060504/gmx/gmx.xsd http://www.isotc211.org/2005/srv http://schemas.opengis.net/iso/19139/20060504/srv/srv.xsd"}]},{"N":"choose","sType":"* ","line":"62","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","sType":"*NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","line":"62"},{"N":"applyT","sType":"* ","line":"63","mode":"Q{}iso19139","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","sType":"*NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"63"}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"elem","name":"gmd:language","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}language ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"67","C":[{"N":"elem","name":"gmd:LanguageCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}LanguageCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"68","C":[{"N":"sequence","sType":"*NA ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.loc.gov/standards/iso639-2/"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"ger"}]}]}]}]},{"N":"elem","name":"gmd:characterSet","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}characterSet ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"70","C":[{"N":"elem","name":"gmd:MD_CharacterSetCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_CharacterSetCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"71","C":[{"N":"sequence","sType":"*NA ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/codeList.xml#MD_CharacterSetCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"utf8"}]}]}]}]},{"N":"callT","bSlot":"3","sType":"* ","name":"Q{}hierarchylevel","line":"75"},{"N":"elem","name":"gmd:hierarchyLevelName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}hierarchyLevelName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"77","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"78","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Dataset"}]}]}]},{"N":"callT","bSlot":"4","sType":"* ","name":"Q{}metadatacontact","line":"84"},{"N":"callT","bSlot":"5","sType":"* ","name":"Q{}datestamp","line":"87"},{"N":"elem","name":"gmd:metadataStandardName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}metadataStandardName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"89","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"90","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"ISO 19139 Geographic Information - Metadata - Implementation Specification"}]}]}]},{"N":"elem","name":"gmd:metadataStandardVersion","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}metadataStandardVersion ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"92","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"93","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"2007"}]}]}]},{"N":"elem","name":"gmd:referenceSystemInfo","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}referenceSystemInfo ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"96","C":[{"N":"elem","name":"gmd:MD_ReferenceSystem","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_ReferenceSystem ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"97","C":[{"N":"elem","name":"gmd:referenceSystemIdentifier","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}referenceSystemIdentifier ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"98","C":[{"N":"elem","name":"gmd:RS_Identifier","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}RS_Identifier ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"99","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:code","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}code ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"100","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"102","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"https://www.opengis.net/def/crs/EPSG/0/31287"}]}]}]},{"N":"elem","name":"gmd:version","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}version ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"104","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"105","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"6.11.2"}]}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:identificationInfo","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}identificationInfo ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"112","C":[{"N":"elem","name":"gmd:MD_DataIdentification","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_DataIdentification ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"113","C":[{"N":"sequence","sType":"* ","C":[{"N":"elem","name":"gmd:citation","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}citation ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"116","C":[{"N":"elem","name":"gmd:CI_Citation","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Citation ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"117","C":[{"N":"sequence","sType":"* ","C":[{"N":"callT","bSlot":"6","sType":"* ","name":"Q{}title","line":"119"},{"N":"applyT","sType":"* ","line":"122","mode":"Q{}iso19139","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","sType":"*NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"122"}]},{"N":"callT","bSlot":"7","sType":"* ","name":"Q{}resourcedates","line":"125"},{"N":"elem","name":"gmd:identifier","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}identifier ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"129","C":[{"N":"forEach","sType":"* ","line":"130","C":[{"N":"filter","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"130","C":[{"N":"axis","name":"child","nodeTest":"*NE"},{"N":"compareToString","op":"eq","val":"Identifier","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"name","C":[{"N":"dot"}]}]}]},{"N":"choose","sType":"? ","line":"133","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","line":"133","C":[{"N":"compareToInt","op":"gt","val":"0","C":[{"N":"fn","name":"string-length","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||string-length","C":[{"N":"check","card":"?","diag":"0|0||string-length","C":[{"N":"data","diag":"0|0||string-length","C":[{"N":"slash","op":"/","C":[{"N":"filter","C":[{"N":"dot"},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Doi"}]}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]}]}]},{"N":"compareToInt","op":"gt","val":"0","C":[{"N":"fn","name":"count","C":[{"N":"arrayBlock","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"slash","op":"/","C":[{"N":"filter","C":[{"N":"dot"},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Doi"}]}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]},{"N":"str","val":"Doi"}]}]}]}]}]},{"N":"elem","name":"gmd:MD_Identifier","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_Identifier ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"134","C":[{"N":"elem","name":"gmd:code","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}code ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"135","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"136","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"137","C":[{"N":"or","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","line":"138","C":[{"N":"fn","name":"starts-with","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||starts-with","C":[{"N":"check","card":"?","diag":"0|0||starts-with","C":[{"N":"data","diag":"0|0||starts-with","C":[{"N":"slash","op":"/","C":[{"N":"filter","C":[{"N":"dot"},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Doi"}]}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]},{"N":"str","val":"doi:"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"fn","name":"contains","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||contains","C":[{"N":"check","card":"?","diag":"0|0||contains","C":[{"N":"data","diag":"0|0||contains","C":[{"N":"slash","op":"/","C":[{"N":"filter","C":[{"N":"dot"},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Doi"}]}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]},{"N":"str","val":"doi.org"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"139","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"docOrder","sType":"*NA nQ{}Value","role":"select","line":"139","C":[{"N":"slash","op":"/","sType":"*NA nQ{}Value","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","C":[{"N":"filter","C":[{"N":"dot"},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Doi"}]}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","line":"141","C":[{"N":"compareToInt","op":"gt","val":"0","C":[{"N":"fn","name":"count","C":[{"N":"filter","C":[{"N":"dot"},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Doi"}]}]}]}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"atomSing","diag":"1|0||gc","card":"?","C":[{"N":"gVarRef","name":"Q{}datacentre","bSlot":"8"}]},{"N":"str","val":"Tethys RDR"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"145","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"145","C":[{"N":"str","val":"https://doi.org/"},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"slash","op":"/","C":[{"N":"filter","C":[{"N":"dot"},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Doi"}]}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"148","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"docOrder","sType":"*NA nQ{}Value","role":"select","line":"148","C":[{"N":"slash","op":"/","sType":"*NA nQ{}Value","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","C":[{"N":"filter","C":[{"N":"dot"},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Doi"}]}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]},{"N":"applyT","sType":"* ","line":"159","mode":"Q{}iso19139","bSlot":"2","C":[{"N":"sort","role":"select","sType":"*NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","sType":"*NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"159"},{"N":"sortKey","sType":"?A ","C":[{"N":"check","card":"?","sType":"?A ","diag":"2|0|XTTE1020|sort","role":"select","C":[{"N":"data","sType":"*A ","role":"select","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}SortOrder","sType":"*NA nQ{}SortOrder","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"160"}]}]},{"N":"str","sType":"1AS ","val":"ascending","role":"order"},{"N":"str","sType":"1AS ","val":"en","role":"lang"},{"N":"str","sType":"1AS ","val":"#default","role":"caseOrder"},{"N":"str","sType":"1AS ","val":"true","role":"stable"}]}]}]},{"N":"applyT","sType":"* ","line":"164","mode":"Q{}iso19139","bSlot":"2","C":[{"N":"sort","role":"select","sType":"*NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","sType":"*NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"164"},{"N":"sortKey","sType":"?A ","C":[{"N":"check","card":"?","sType":"?A ","diag":"2|0|XTTE1020|sort","role":"select","C":[{"N":"data","sType":"*A ","role":"select","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}SortOrder","sType":"*NA nQ{}SortOrder","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"165"}]}]},{"N":"str","sType":"1AS ","val":"ascending","role":"order"},{"N":"str","sType":"1AS ","val":"en","role":"lang"},{"N":"str","sType":"1AS ","val":"#default","role":"caseOrder"},{"N":"str","sType":"1AS ","val":"true","role":"stable"}]}]}]},{"N":"elem","name":"gmd:citedResponsibleParty","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}citedResponsibleParty ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"169","C":[{"N":"callT","bSlot":"0","sType":"* ","name":"Q{}ci_responsibleparty","line":"170","C":[{"N":"withParam","name":"Q{}organisation","slot":"0","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"172","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}CreatingCorporation","name":"attribute","nodeTest":"*NA nQ{}CreatingCorporation","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"172"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"withParam","name":"Q{}role","slot":"0","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"publisher"}]}]}]}]}]}]}]}]}]},{"N":"callT","bSlot":"9","sType":"* ","name":"Q{}abstract","line":"181"},{"N":"elem","name":"gmd:status","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}status ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"183","C":[{"N":"elem","name":"gmd:MD_ProgressCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_ProgressCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"184","C":[{"N":"sequence","sType":"*NA ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_ProgressCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"Complete"}]},{"N":"att","name":"codeSpace","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"ISOTC211/19115"}]}]}]}]},{"N":"callT","bSlot":"10","sType":"* ","name":"Q{}pointofcontact_custodian","line":"188"},{"N":"callT","bSlot":"11","sType":"* ","name":"Q{}pointofcontact_originator","line":"191"},{"N":"elem","name":"gmd:resourceMaintenance","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}resourceMaintenance ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"194","C":[{"N":"elem","name":"gmd:MD_MaintenanceInformation","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_MaintenanceInformation ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"195","C":[{"N":"elem","name":"gmd:maintenanceAndUpdateFrequency","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}maintenanceAndUpdateFrequency ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"196","C":[{"N":"elem","name":"gmd:MD_MaintenanceFrequencyCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_MaintenanceFrequencyCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"197","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://schemas.opengis.net/iso/19139/20070417/resources/codelist/gmxCodelists.xml#MD_MaintenanceFrequencyCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"asNeeded"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"asNeeded"}]}]}]}]}]}]},{"N":"callT","bSlot":"12","sType":"* ","name":"Q{}browseGraphictethys","line":"230"},{"N":"callT","bSlot":"13","sType":"* ","name":"Q{}freekeywords","line":"233"},{"N":"callT","bSlot":"14","sType":"* ","name":"Q{}datacenter_keyword","line":"235"},{"N":"applyT","sType":"* ","line":"238","mode":"Q{}iso19139","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","sType":"*NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"238"}]},{"N":"elem","name":"gmd:resourceConstraints","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}resourceConstraints ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"239","C":[{"N":"elem","name":"gmd:MD_SecurityConstraints","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_SecurityConstraints ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"240","C":[{"N":"elem","name":"gmd:classification","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}classification ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"241","C":[{"N":"elem","name":"gmd:MD_ClassificationCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_ClassificationCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"242","C":[{"N":"sequence","sType":"*NA ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/codeList.xml#MD_ClassificationCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"unclassified"}]}]}]}]}]}]},{"N":"applyT","sType":"* ","line":"252","mode":"Q{}iso19139","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","sType":"*NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"252"}]},{"N":"elem","name":"gmd:spatialResolution","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}spatialResolution ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"254","C":[{"N":"let","var":"Q{}mainTitle","slot":"0","sType":"*NE ","line":"255","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"forEach","sType":"* ","line":"257","C":[{"N":"filter","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"257","C":[{"N":"axis","name":"child","nodeTest":"*NE"},{"N":"compareToString","op":"eq","val":"TitleMain","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"name","C":[{"N":"dot"}]}]}]},{"N":"choose","sType":"? ","line":"258","C":[{"N":"compareToString","op":"eq","val":"Main","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","line":"258","C":[{"N":"fn","name":"normalize-space","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}Type"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"259","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"259"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]},{"N":"elem","name":"gmd:MD_Resolution","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_Resolution ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"263","C":[{"N":"choose","sType":"?NE ","type":"item()*","line":"264","C":[{"N":"fn","name":"contains","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","line":"265","C":[{"N":"treat","as":"AS","diag":"0|0||contains","C":[{"N":"check","card":"?","diag":"0|0||contains","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||contains","C":[{"N":"check","card":"?","diag":"0|0||contains","C":[{"N":"data","diag":"0|0||contains","C":[{"N":"varRef","name":"Q{}mainTitle","slot":"0"}]}]}]}]}]},{"N":"str","val":"50.000"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"elem","name":"gmd:equivalentScale","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}equivalentScale ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"266","C":[{"N":"elem","name":"gmd:MD_RepresentativeFraction","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_RepresentativeFraction ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"267","C":[{"N":"elem","name":"gmd:denominator","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}denominator ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"268","C":[{"N":"elem","name":"gco:Integer","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Integer ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"270","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"50000"}]}]}]}]}]},{"N":"true"},{"N":"elem","name":"gmd:distance","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}distance ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"276","C":[{"N":"elem","name":"gco:Distance","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Distance ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"277","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"uom","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"m"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"-1"}]}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:language","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}language ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"285","C":[{"N":"elem","name":"gmd:LanguageCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}LanguageCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"286","C":[{"N":"sequence","sType":"*NA ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.loc.gov/standards/iso639-2/"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"ger"}]}]}]}]},{"N":"elem","name":"gmd:topicCategory","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}topicCategory ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"290","C":[{"N":"elem","name":"gmd:MD_TopicCategoryCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_TopicCategoryCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"291","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"geoscientificInformation"}]}]}]},{"N":"callT","bSlot":"15","sType":"* ","name":"Q{}spatialcoverage","line":"295"}]}]}]},{"N":"elem","name":"gmd:distributionInfo","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}distributionInfo ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"304","C":[{"N":"elem","name":"gmd:MD_Distribution","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_Distribution ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"305","C":[{"N":"sequence","sType":"* ","C":[{"N":"applyT","sType":"* ","line":"308","mode":"Q{}iso19139","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}File,NE nQ{http://www.w3.org/1999/xhtml}File]","sType":"*NE u[NE nQ{}File,NE nQ{http://www.w3.org/1999/xhtml}File]","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"308"}]},{"N":"callT","bSlot":"16","sType":"* ","name":"Q{}distributor","line":"311"},{"N":"elem","name":"gmd:transferOptions","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}transferOptions ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"314","C":[{"N":"elem","name":"gmd:MD_DigitalTransferOptions","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_DigitalTransferOptions ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"315","C":[{"N":"sequence","sType":"* ","C":[{"N":"callT","bSlot":"17","sType":"* ","name":"Q{}datacite_identifier","line":"319"},{"N":"callT","bSlot":"18","sType":"* ","name":"Q{}alternate_identifier","line":"322"}]}]}]}]}]}]},{"N":"callT","bSlot":"19","sType":"* ","name":"Q{}data_quality","line":"330"},{"N":"callT","bSlot":"20","sType":"* ","name":"Q{}metadata_maintenance","line":"333"}]}]}]}]}]},{"N":"co","id":"61","binds":"29 41 27 28 30 32","C":[{"N":"mode","onNo":"TC","flags":"","patternSlots":"0","name":"Q{}Identify","prec":"","C":[{"N":"templateRule","rank":"0","prec":"1","seq":"23","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"152","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Datasets","prio":"0","matches":"NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","sType":"1NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"Identify","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}Identify ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"153","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"repositoryName","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}repositoryName ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"154","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"155","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}repositoryName","bSlot":"0","role":"select","line":"155"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"baseURL","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}baseURL ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"157","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"158","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}baseURL","bSlot":"1","role":"select","line":"158"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"protocolVersion","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}protocolVersion ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"160","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"2.0"}]}]},{"N":"elem","name":"adminEmail","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}adminEmail ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"163","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"164","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}email","bSlot":"2","role":"select","line":"164"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"earliestDatestamp","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}earliestDatestamp ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"166","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"167","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}earliestDatestamp","bSlot":"3","role":"select","line":"167"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"deletedRecord","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}deletedRecord ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"169","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"persistent"}]}]},{"N":"elem","name":"granularity","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}granularity ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"172","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"YYYY-MM-DDThh:mm:ssZ"}]}]},{"N":"elem","name":"description","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}description ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"175","C":[{"N":"elem","name":"oai-identifier","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/oai-identifier}oai-identifier ","nsuri":"http://www.openarchives.org/OAI/2.0/oai-identifier","namespaces":"=http://www.openarchives.org/OAI/2.0/oai-identifier xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/oai-identifier xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","line":"176","C":[{"N":"sequence","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/oai-identifier xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","sType":"*N ","C":[{"N":"att","name":"xsi:schemaLocation","nsuri":"http://www.w3.org/2001/XMLSchema-instance","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.openarchives.org/OAI/2.0/oai-identifier http://www.openarchives.org/OAI/2.0/oai-identifier.xsd"}]},{"N":"elem","name":"scheme","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/oai-identifier}scheme ","nsuri":"http://www.openarchives.org/OAI/2.0/oai-identifier","namespaces":"=http://www.openarchives.org/OAI/2.0/oai-identifier xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"177","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"oai"}]}]},{"N":"elem","name":"repositoryIdentifier","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/oai-identifier}repositoryIdentifier ","nsuri":"http://www.openarchives.org/OAI/2.0/oai-identifier","namespaces":"=http://www.openarchives.org/OAI/2.0/oai-identifier xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"180","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"181","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}repIdentifier","bSlot":"4","role":"select","line":"181"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"delimiter","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/oai-identifier}delimiter ","nsuri":"http://www.openarchives.org/OAI/2.0/oai-identifier","namespaces":"=http://www.openarchives.org/OAI/2.0/oai-identifier xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"183","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":":"}]}]},{"N":"elem","name":"sampleIdentifier","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/oai-identifier}sampleIdentifier ","nsuri":"http://www.openarchives.org/OAI/2.0/oai-identifier","namespaces":"=http://www.openarchives.org/OAI/2.0/oai-identifier xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"186","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"187","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}sampleIdentifier","bSlot":"5","role":"select","line":"187"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]}]}]}]},{"N":"co","binds":"","id":"62","C":[{"N":"mode","onNo":"TC","flags":"","patternSlots":"0","name":"Q{}ListMetadataFormats","prec":"","C":[{"N":"templateRule","rank":"0","prec":"1","seq":"24","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"219","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Datasets","prio":"0","matches":"NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","sType":"1NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"ListMetadataFormats","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}ListMetadataFormats ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"220","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"metadataFormat","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}metadataFormat ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"221","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"metadataPrefix","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}metadataPrefix ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"222","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"oai_dc"}]}]},{"N":"elem","name":"schema","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}schema ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"225","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"http://www.openarchives.org/OAI/2.0/oai_dc.xsd"}]}]},{"N":"elem","name":"metadataNamespace","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}metadataNamespace ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"228","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"http://www.openarchives.org/OAI/2.0/oai_dc/"}]}]}]}]},{"N":"elem","name":"metadataFormat","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}metadataFormat ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"232","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"metadataPrefix","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}metadataPrefix ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"233","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"oai_datacite"}]}]},{"N":"elem","name":"schema","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}schema ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"236","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"http://schema.datacite.org/meta/kernel-4.3/metadata.xsd"}]}]},{"N":"elem","name":"metadataNamespace","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}metadataNamespace ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"239","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"http://datacite.org/schema/kernel-4"}]}]}]}]},{"N":"elem","name":"metadataFormat","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}metadataFormat ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"243","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"metadataPrefix","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}metadataPrefix ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"244","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"iso19139"}]}]},{"N":"elem","name":"schema","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}schema ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"245","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/gmd/gmd.xsd"}]}]},{"N":"elem","name":"metadataNamespace","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}metadataNamespace ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"246","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/gmd"}]}]}]}]}]}]}]}]}]},{"N":"co","id":"63","binds":"58","C":[{"N":"mode","onNo":"TC","flags":"","patternSlots":"0","name":"Q{}ListSets","prec":"","C":[{"N":"templateRule","rank":"0","prec":"1","seq":"25","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"251","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Datasets","prio":"0","matches":"NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","sType":"1NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"ListSets","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}ListSets ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"252","C":[{"N":"applyT","sType":"* ","line":"253","mode":"#unnamed","bSlot":"0","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Rdr_Sets,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Sets]","sType":"*NE u[NE nQ{}Rdr_Sets,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Sets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"253"}]}]}]}]}]},{"N":"co","id":"64","binds":"58 34 33 36 35","C":[{"N":"mode","onNo":"TC","flags":"","patternSlots":"0","name":"Q{}ListIdentifiers","prec":"","C":[{"N":"templateRule","rank":"0","prec":"1","seq":"27","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"268","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Datasets","prio":"0","matches":"NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","sType":"1NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"choose","sType":"? ","role":"action","line":"269","C":[{"N":"compareToInt","op":"gt","val":"0","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"269","C":[{"N":"fn","name":"count","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]"}]}]},{"N":"elem","name":"ListIdentifiers","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}ListIdentifiers ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"270","C":[{"N":"sequence","sType":"* ","C":[{"N":"applyT","sType":"* ","line":"271","mode":"#unnamed","bSlot":"0","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","sType":"*NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"271"}]},{"N":"choose","sType":"? ","line":"272","C":[{"N":"vc","op":"gt","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"272","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"gVarRef","name":"Q{}totalIds","bSlot":"1"}]}]}]},{"N":"int","val":"0"}]},{"N":"elem","name":"resumptionToken","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}resumptionToken ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"273","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"expirationDate","sType":"1NA ","line":"274","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"275","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}dateDelete","bSlot":"2","role":"select","line":"275"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"att","name":"completeListSize","sType":"1NA ","line":"277","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"278","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}totalIds","bSlot":"1","role":"select","line":"278"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"att","name":"cursor","sType":"1NA ","line":"280","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"281","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}cursor","bSlot":"3","role":"select","line":"281"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"283","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}res","bSlot":"4","role":"select","line":"283"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"co","id":"65","binds":"58 34 33 36 35","C":[{"N":"mode","onNo":"TC","flags":"","patternSlots":"0","name":"Q{}ListRecords","prec":"","C":[{"N":"templateRule","rank":"0","prec":"1","seq":"28","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"290","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Datasets","prio":"0","matches":"NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","sType":"1NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"choose","sType":"? ","role":"action","line":"291","C":[{"N":"compareToInt","op":"gt","val":"0","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"291","C":[{"N":"fn","name":"count","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]"}]}]},{"N":"elem","name":"ListRecords","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}ListRecords ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"292","C":[{"N":"sequence","sType":"* ","C":[{"N":"applyT","sType":"* ","line":"293","mode":"#unnamed","bSlot":"0","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","sType":"*NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"293"}]},{"N":"choose","sType":"? ","line":"294","C":[{"N":"vc","op":"gt","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"294","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"gVarRef","name":"Q{}totalIds","bSlot":"1"}]}]}]},{"N":"int","val":"0"}]},{"N":"elem","name":"resumptionToken","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}resumptionToken ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"295","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"expirationDate","sType":"1NA ","line":"296","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"297","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}dateDelete","bSlot":"2","role":"select","line":"297"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"att","name":"completeListSize","sType":"1NA ","line":"299","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"300","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}totalIds","bSlot":"1","role":"select","line":"300"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"att","name":"cursor","sType":"1NA ","line":"302","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"303","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}cursor","bSlot":"3","role":"select","line":"303"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"305","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}res","bSlot":"4","role":"select","line":"305"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"co","id":"66","binds":"58","C":[{"N":"mode","onNo":"TC","flags":"","patternSlots":"0","name":"Q{}GetRecord","prec":"","C":[{"N":"templateRule","rank":"0","prec":"1","seq":"29","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"312","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Datasets","prio":"0","matches":"NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","sType":"1NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"GetRecord","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}GetRecord ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"313","C":[{"N":"applyT","sType":"* ","line":"314","mode":"#unnamed","bSlot":"0","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","sType":"*NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"314"}]}]}]}]}]},{"N":"co","id":"67","binds":"45 31 26 67 9 8","C":[{"N":"mode","onNo":"TC","flags":"","patternSlots":"0","name":"Q{}oai_dc","prec":"","C":[{"N":"templateRule","rank":"0","prec":"1","seq":"44","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"705","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"File/@MimeType","prio":"0.5","matches":"NA nQ{}MimeType","C":[{"N":"p.withUpper","role":"match","axis":"parent","sType":"1NA nQ{}MimeType","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","C":[{"N":"p.nodeTest","test":"NA nQ{}MimeType"},{"N":"p.nodeTest","test":"NE u[NE nQ{}File,NE nQ{http://www.w3.org/1999/xhtml}File]"}]},{"N":"elem","name":"dc:format","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}format ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"706","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"707","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"708","C":[{"N":"atomSing","diag":"1|0||gc","card":"?","C":[{"N":"dot"}]},{"N":"str","val":"application/x-sqlite3"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"application/geopackage+sqlite3"}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"712","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"dot","sType":"1NA nQ{}MimeType","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"712"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"1","prec":"1","seq":"48","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"749","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Licence","prio":"0","matches":"NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","sType":"1NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"sequence","role":"action","sType":"* ","C":[{"N":"elem","name":"dc:rights","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}rights ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"750","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"751","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}NameLong","name":"attribute","nodeTest":"*NA nQ{}NameLong","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"751"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"choose","sType":"? ","line":"753","C":[{"N":"or","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"753","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Name"},{"N":"str","val":"CC-BY-4.0"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Name"},{"N":"str","val":"CC-BY-SA-4.0"}]}]},{"N":"elem","name":"dc:rights","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}rights ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"754","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"info:eu-repo/semantics/openAccess"}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]},{"N":"templateRule","rank":"2","prec":"1","seq":"47","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"741","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"@Language","prio":"0","matches":"NA nQ{}Language","C":[{"N":"p.nodeTest","role":"match","test":"NA nQ{}Language","sType":"1NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"let","var":"Q{}language","slot":"0","sType":"*NE ","line":"742","role":"action","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"742","C":[{"N":"dot"}]},{"N":"elem","name":"dc:language","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}language ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"743","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"745","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"docOrder","sType":"*NA nQ{}iso639-2","role":"select","line":"745","C":[{"N":"docOrder","sType":"*NA nQ{}iso639-2","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","C":[{"N":"slash","op":"/","C":[{"N":"filter","C":[{"N":"gVarRef","name":"Q{}langCodes","bSlot":"0"},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}iso639-1"},{"N":"data","diag":"1|1||gc","C":[{"N":"varRef","name":"Q{}language","slot":"0"}]}]}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}iso639-2"}]}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"3","prec":"1","seq":"46","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"735","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"@CreatingCorporation","prio":"0","matches":"NA nQ{}CreatingCorporation","C":[{"N":"p.nodeTest","role":"match","test":"NA nQ{}CreatingCorporation","sType":"1NA nQ{}CreatingCorporation","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"dc:language","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}language ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"736","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"737","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"dot","sType":"1NA nQ{}CreatingCorporation","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"737"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"templateRule","rank":"4","prec":"1","seq":"45","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"725","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Identifier","prio":"0","matches":"NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","sType":"1NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"dc:relation","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}relation ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"726","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"728","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"728","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"gVarRef","name":"Q{}doiPrefix","bSlot":"1"}]}]},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"templateRule","rank":"5","prec":"1","seq":"43","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"680","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"EmbargoDate","prio":"0","matches":"NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]","sType":"1NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"choose","sType":"? ","role":"action","line":"681","C":[{"N":"gc","op":"<","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"681","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}unixTimestamp","bSlot":"2"}]},{"N":"data","diag":"1|1||gc","C":[{"N":"slash","op":"/","C":[{"N":"dot"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}UnixTimestamp"}]}]}]},{"N":"elem","name":"dc:date","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}date ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"682","C":[{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"info:eu-repo/date/embargoEnd/"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"684","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"docOrder","sType":"*NA nQ{}Year","role":"select","line":"684","C":[{"N":"slash","op":"/","sType":"*NA nQ{}Year","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","C":[{"N":"dot"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\n -\n "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"686","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"format-number","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"686","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"dot"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Month"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\n -\n "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"688","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"format-number","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"688","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"dot"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Day"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]},{"N":"templateRule","rank":"6","prec":"1","seq":"42","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"642","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"PersonContributor","prio":"0","matches":"NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","sType":"1NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"dc:contributor","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}contributor ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"643","C":[{"N":"sequence","sType":"* ","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"644","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}LastName","name":"attribute","nodeTest":"*NA nQ{}LastName","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"644"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"choose","sType":"? ","line":"645","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"645","C":[{"N":"attVal","name":"Q{}FirstName"},{"N":"str","val":""}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":", "}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"648","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}FirstName","name":"attribute","nodeTest":"*NA nQ{}FirstName","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"648"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"choose","sType":"* ","line":"649","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"649","C":[{"N":"attVal","name":"Q{}AcademicTitle"},{"N":"str","val":""}]},{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":" ("}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"651","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}AcademicTitle","name":"attribute","nodeTest":"*NA nQ{}AcademicTitle","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"651"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":")"}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"templateRule","rank":"7","prec":"1","seq":"41","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"627","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"PersonAuthor|PersonEditor","prio":"0","matches":"NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","sType":"1NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]"},{"N":"elem","name":"dc:creator","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}creator ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"628","C":[{"N":"sequence","sType":"* ","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"629","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}LastName","name":"attribute","nodeTest":"*NA nQ{}LastName","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"629"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"choose","sType":"? ","line":"630","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"630","C":[{"N":"attVal","name":"Q{}FirstName"},{"N":"str","val":""}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":", "}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"633","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}FirstName","name":"attribute","nodeTest":"*NA nQ{}FirstName","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"633"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"choose","sType":"* ","line":"634","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"634","C":[{"N":"attVal","name":"Q{}AcademicTitle"},{"N":"str","val":""}]},{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":" ("}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"636","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}AcademicTitle","name":"attribute","nodeTest":"*NA nQ{}AcademicTitle","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"636"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":")"}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"templateRule","rank":"8","prec":"1","seq":"41","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"627","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"PersonAuthor|PersonEditor","prio":"0","matches":"NE u[NE nQ{}PersonEditor,NE nQ{http://www.w3.org/1999/xhtml}PersonEditor]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}PersonEditor,NE nQ{http://www.w3.org/1999/xhtml}PersonEditor]","sType":"1NE u[NE nQ{}PersonEditor,NE nQ{http://www.w3.org/1999/xhtml}PersonEditor]"},{"N":"elem","name":"dc:creator","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}creator ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"628","C":[{"N":"sequence","sType":"* ","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"629","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}LastName","name":"attribute","nodeTest":"*NA nQ{}LastName","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"629"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"choose","sType":"? ","line":"630","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"630","C":[{"N":"attVal","name":"Q{}FirstName"},{"N":"str","val":""}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":", "}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"633","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}FirstName","name":"attribute","nodeTest":"*NA nQ{}FirstName","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"633"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"choose","sType":"* ","line":"634","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"634","C":[{"N":"attVal","name":"Q{}AcademicTitle"},{"N":"str","val":""}]},{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":" ("}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"636","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}AcademicTitle","name":"attribute","nodeTest":"*NA nQ{}AcademicTitle","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"636"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":")"}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"templateRule","rank":"9","prec":"1","seq":"40","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"617","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Reference","prio":"0","matches":"NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","sType":"1NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"dc:relation","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}relation ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"618","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"619","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"619","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"templateRule","rank":"10","prec":"1","seq":"39","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"606","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Collection","prio":"0","matches":"NE u[NE nQ{}Collection,NE nQ{http://www.w3.org/1999/xhtml}Collection]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Collection,NE nQ{http://www.w3.org/1999/xhtml}Collection]","sType":"1NE u[NE nQ{}Collection,NE nQ{http://www.w3.org/1999/xhtml}Collection]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"dc:subject","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}subject ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"607","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"613","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"613","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Collectionrole.Name"}]}]},{"N":"str","val":":"},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Number"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"templateRule","rank":"11","prec":"1","seq":"38","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"596","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Subject","prio":"0","matches":"NE u[NE nQ{}Subject,NE nQ{http://www.w3.org/1999/xhtml}Subject]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Subject,NE nQ{http://www.w3.org/1999/xhtml}Subject]","sType":"1NE u[NE nQ{}Subject,NE nQ{http://www.w3.org/1999/xhtml}Subject]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"dc:subject","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}subject ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"597","C":[{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"? ","line":"598","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"598","C":[{"N":"attVal","name":"Q{}Language"},{"N":"str","val":""}]},{"N":"att","name":"xml:lang","sType":"1NA ","nsuri":"http://www.w3.org/XML/1998/namespace","line":"599","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"600","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Language","name":"attribute","nodeTest":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"600"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"603","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"603"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"12","prec":"1","seq":"37","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"587","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"TitleAbstractAdditional","prio":"0","matches":"NE u[NE nQ{}TitleAbstractAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstractAdditional]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}TitleAbstractAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstractAdditional]","sType":"1NE u[NE nQ{}TitleAbstractAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstractAdditional]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"dc:description","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}description ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"588","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"xml:lang","sType":"1NA ","nsuri":"http://www.w3.org/XML/1998/namespace","line":"589","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"590","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Language","name":"attribute","nodeTest":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"590"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"592","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"592"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"13","prec":"1","seq":"36","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"579","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"TitleAbstract","prio":"0","matches":"NE u[NE nQ{}TitleAbstract,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstract]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}TitleAbstract,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstract]","sType":"1NE u[NE nQ{}TitleAbstract,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstract]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"dc:description","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}description ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"580","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"xml:lang","sType":"1NA ","nsuri":"http://www.w3.org/XML/1998/namespace","line":"581","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"582","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Language","name":"attribute","nodeTest":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"582"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"584","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"584"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"14","prec":"1","seq":"35","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"570","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"TitleAdditional","prio":"0","matches":"NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","sType":"1NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"dc:title","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}title ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"571","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"xml:lang","sType":"1NA ","nsuri":"http://www.w3.org/XML/1998/namespace","line":"572","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"573","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Language","name":"attribute","nodeTest":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"573"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"575","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"575"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"15","prec":"1","seq":"34","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"561","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"TitleMain","prio":"0","matches":"NE u[NE nQ{}TitleMain,NE nQ{http://www.w3.org/1999/xhtml}TitleMain]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}TitleMain,NE nQ{http://www.w3.org/1999/xhtml}TitleMain]","sType":"1NE u[NE nQ{}TitleMain,NE nQ{http://www.w3.org/1999/xhtml}TitleMain]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"dc:title","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}title ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"562","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"xml:lang","sType":"1NA ","nsuri":"http://www.w3.org/XML/1998/namespace","line":"563","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"564","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Language","name":"attribute","nodeTest":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"564"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"566","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"566"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"16","prec":"1","seq":"33","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"524","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Coverage","prio":"0","matches":"NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]","sType":"1NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"dc:coverage","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}coverage ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"525","C":[{"N":"let","var":"Q{}geolocation","slot":"0","sType":"* ","line":"531","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"531","C":[{"N":"str","val":"SOUTH-BOUND LATITUDE: "},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"attVal","name":"Q{}YMin"}]},{"N":"str","val":" * WEST-BOUND LONGITUDE: "},{"N":"check","card":"?","diag":"0|3||concat","C":[{"N":"attVal","name":"Q{}XMin"}]},{"N":"str","val":" * NORTH-BOUND LATITUDE: "},{"N":"check","card":"?","diag":"0|5||concat","C":[{"N":"attVal","name":"Q{}YMax"}]},{"N":"str","val":" * EAST-BOUND LONGITUDE: "},{"N":"check","card":"?","diag":"0|7||concat","C":[{"N":"attVal","name":"Q{}XMax"}]}]},{"N":"sequence","sType":"? ","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"532","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}geolocation","slot":"0","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"532"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"choose","sType":"? ","line":"535","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"535","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}ElevationMin"},{"N":"str","val":""}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}ElevationMax"},{"N":"str","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"536","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"536","C":[{"N":"str","val":" * ELEVATION MIN: "},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"attVal","name":"Q{}ElevationMin"}]},{"N":"str","val":" * ELEVATION MAX: "},{"N":"check","card":"?","diag":"0|3||concat","C":[{"N":"attVal","name":"Q{}ElevationMax"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","line":"538","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"538","C":[{"N":"attVal","name":"Q{}ElevationAbsolut"},{"N":"str","val":""}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"539","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"539","C":[{"N":"str","val":" * ELEVATION ABSOLUT: "},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"attVal","name":"Q{}ElevationAbsolut"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","line":"543","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"543","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}DepthMin"},{"N":"str","val":""}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}DepthMax"},{"N":"str","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"544","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"544","C":[{"N":"str","val":" * DEPTH MIN: "},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"attVal","name":"Q{}DepthMin"}]},{"N":"str","val":" * DEPTH MAX: "},{"N":"check","card":"?","diag":"0|3||concat","C":[{"N":"attVal","name":"Q{}DepthMax"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","line":"546","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"546","C":[{"N":"attVal","name":"Q{}DepthAbsolut"},{"N":"str","val":""}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"547","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"547","C":[{"N":"str","val":" * DEPTH ABSOLUT: "},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"attVal","name":"Q{}DepthAbsolut"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","line":"551","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"551","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}TimeMin"},{"N":"str","val":""}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}TimeMax"},{"N":"str","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"552","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"552","C":[{"N":"str","val":" * TIME MIN: "},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"attVal","name":"Q{}TimeMin"}]},{"N":"str","val":" * TIME MAX: "},{"N":"check","card":"?","diag":"0|3||concat","C":[{"N":"attVal","name":"Q{}TimeMax"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","line":"554","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"554","C":[{"N":"attVal","name":"Q{}TimeAbsolut"},{"N":"str","val":""}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"555","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"555","C":[{"N":"str","val":" * TIME ABSOLUT: "},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"attVal","name":"Q{}TimeAbsolut"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]}]},{"N":"templateRule","rank":"17","prec":"1","seq":"32","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"411","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Rdr_Dataset","prio":"0","matches":"NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","sType":"1NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"oai_dc:dc","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/oai_dc/}dc ","nsuri":"http://www.openarchives.org/OAI/2.0/oai_dc/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"412","C":[{"N":"sequence","sType":"* ","C":[{"N":"att","name":"xsi:schemaLocation","nsuri":"http://www.w3.org/2001/XMLSchema-instance","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.openarchives.org/OAI/2.0/oai_dc/ http://www.openarchives.org/OAI/2.0/oai_dc.xsd"}]},{"N":"applyT","sType":"* ","line":"414","mode":"Q{}oai_dc","bSlot":"3","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}TitleMain,NE nQ{http://www.w3.org/1999/xhtml}TitleMain]","sType":"*NE u[NE nQ{}TitleMain,NE nQ{http://www.w3.org/1999/xhtml}TitleMain]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"414"}]},{"N":"applyT","sType":"* ","line":"416","mode":"Q{}oai_dc","bSlot":"3","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","sType":"*NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"416"}]},{"N":"choose","sType":"* ","type":"item()*","line":"419","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","sType":"*NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"420"},{"N":"applyT","sType":"* ","line":"421","mode":"Q{}oai_dc","bSlot":"3","C":[{"N":"sort","role":"select","sType":"*NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","sType":"*NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"421"},{"N":"sortKey","sType":"?A ","C":[{"N":"check","card":"?","sType":"?A ","diag":"2|0|XTTE1020|sort","role":"select","C":[{"N":"data","sType":"*A ","role":"select","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}SortOrder","sType":"*NA nQ{}SortOrder","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"422"}]}]},{"N":"str","sType":"1AS ","val":"ascending","role":"order"},{"N":"str","sType":"1AS ","val":"en","role":"lang"},{"N":"str","sType":"1AS ","val":"#default","role":"caseOrder"},{"N":"str","sType":"1AS ","val":"true","role":"stable"}]}]}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}CreatingCorporation","sType":"*NA nQ{}CreatingCorporation","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"425"},{"N":"elem","name":"dc:creator","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}creator ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"426","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"427","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}CreatingCorporation","name":"attribute","nodeTest":"*NA nQ{}CreatingCorporation","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"427"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"applyT","sType":"* ","line":"432","mode":"Q{}oai_dc","bSlot":"3","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Subject,NE nQ{http://www.w3.org/1999/xhtml}Subject]","sType":"*NE u[NE nQ{}Subject,NE nQ{http://www.w3.org/1999/xhtml}Subject]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"432"}]},{"N":"applyT","sType":"* ","line":"433","mode":"Q{}oai_dc","bSlot":"3","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Collection,NE nQ{http://www.w3.org/1999/xhtml}Collection]","sType":"*NE u[NE nQ{}Collection,NE nQ{http://www.w3.org/1999/xhtml}Collection]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"433"}]},{"N":"applyT","sType":"* ","line":"435","mode":"Q{}oai_dc","bSlot":"3","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}TitleAbstract,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstract]","sType":"*NE u[NE nQ{}TitleAbstract,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstract]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"435"}]},{"N":"applyT","sType":"* ","line":"437","mode":"Q{}oai_dc","bSlot":"3","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}TitleAbstractAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstractAdditional]","sType":"*NE u[NE nQ{}TitleAbstractAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstractAdditional]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"437"}]},{"N":"elem","name":"dc:publisher","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}publisher ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"439","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"441","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}CreatingCorporation","name":"attribute","nodeTest":"*NA nQ{}CreatingCorporation","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"441"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"applyT","sType":"* ","line":"445","mode":"Q{}oai_dc","bSlot":"3","C":[{"N":"sort","role":"select","sType":"*NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","sType":"*NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"445"},{"N":"sortKey","sType":"?A ","C":[{"N":"check","card":"?","sType":"?A ","diag":"2|0|XTTE1020|sort","role":"select","C":[{"N":"data","sType":"*A ","role":"select","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}SortOrder","sType":"*NA nQ{}SortOrder","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"446"}]}]},{"N":"str","sType":"1AS ","val":"ascending","role":"order"},{"N":"str","sType":"1AS ","val":"en","role":"lang"},{"N":"str","sType":"1AS ","val":"#default","role":"caseOrder"},{"N":"str","sType":"1AS ","val":"true","role":"stable"}]}]}]},{"N":"callT","bSlot":"4","sType":"* ","name":"Q{}RdrDate","line":"449"},{"N":"applyT","sType":"* ","line":"451","mode":"Q{}oai_dc","bSlot":"3","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]","sType":"*NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"451"}]},{"N":"elem","name":"dc:type","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}type ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"453","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Dataset"}]}]},{"N":"elem","name":"dc:type","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}type ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"454","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"doc-type:ResearchData"}]}]},{"N":"applyT","sType":"* ","line":"458","mode":"Q{}oai_dc","bSlot":"3","C":[{"N":"docOrder","sType":"*NA nQ{}MimeType","role":"select","line":"458","C":[{"N":"slash","op":"/","sType":"*NA nQ{}MimeType","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}File,NE nQ{http://www.w3.org/1999/xhtml}File]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}MimeType"}]}]}]},{"N":"applyT","sType":"* ","line":"460","mode":"Q{}oai_dc","bSlot":"3","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}File,NE nQ{http://www.w3.org/1999/xhtml}File]","sType":"*NE u[NE nQ{}File,NE nQ{http://www.w3.org/1999/xhtml}File]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"460"}]},{"N":"elem","name":"dc:identifier","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}identifier ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"465","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"466","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"466","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}landingpage"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"applyT","sType":"* ","line":"472","mode":"Q{}oai_dc","bSlot":"3","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Language","sType":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"472"}]},{"N":"choose","sType":"* ","line":"474","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","sType":"*NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"474"},{"N":"applyT","sType":"* ","line":"475","mode":"Q{}oai_dc","bSlot":"3","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","sType":"*NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"475"}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"applyT","sType":"* ","line":"477","mode":"Q{}oai_dc","bSlot":"3","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","sType":"*NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"477"}]},{"N":"applyT","sType":"* ","line":"479","mode":"Q{}oai_dc","bSlot":"3","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]","sType":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"479"}]},{"N":"applyT","sType":"* ","line":"481","mode":"Q{}oai_dc","bSlot":"3","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","sType":"*NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"481"}]},{"N":"choose","sType":"? ","line":"482","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"482","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]"},{"N":"gc","op":"<","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}unixTimestamp","bSlot":"2"}]},{"N":"data","diag":"1|1||gc","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}UnixTimestamp"}]}]}]}]},{"N":"elem","name":"dc:rights","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}rights ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"483","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"embargo"}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"callT","bSlot":"5","sType":"* ","name":"Q{}citation","line":"486"}]}]}]}]}]},{"N":"overridden"},{"N":"output","C":[{"N":"property","name":"Q{http://saxon.sf.net/}stylesheet-version","value":"30"},{"N":"property","name":"method","value":"xml"},{"N":"property","name":"encoding","value":"utf-8"},{"N":"property","name":"indent","value":"yes"}]},{"N":"decimalFormat"}],"Σ":"62c8cbc6"} \ No newline at end of file +{"N":"package","version":"30","packageVersion":"1","saxonVersion":"SaxonJS 2.5","target":"JS","targetVersion":"2","name":"TOP-LEVEL","relocatable":"false","buildDateTime":"2023-09-29T16:24:29.074+02:00","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"co","id":"0","uniform":"true","binds":"26","C":[{"N":"template","flags":"os","module":"oai_datacite.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","name":"Q{}RdrDate2","line":"147","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","expand-text":"false","sType":"* ","C":[{"N":"sequence","role":"body","sType":"* ","C":[{"N":"choose","sType":"? ","line":"148","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"148","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]"},{"N":"gc","op":"<","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}unixTimestamp","bSlot":"0"}]},{"N":"data","diag":"1|1||gc","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}UnixTimestamp"}]}]}]}]},{"N":"elem","name":"date","sType":"1NE nQ{http://datacite.org/schema/kernel-4}date ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"149","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"dateType","sType":"1NA ","line":"150","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Available"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"let","var":"Q{}embargoDate","slot":"0","sType":"*NT ","line":"155","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"155","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Month"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Day"}]}]}]}]},{"N":"str","val":"00"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"156","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}embargoDate","slot":"0","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"156"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","line":"159","C":[{"N":"docOrder","sType":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]","line":"159","C":[{"N":"slash","role":"select","simple":"1","sType":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]","C":[{"N":"treat","as":"N","diag":"13|0|XTTE0510|","C":[{"N":"dot"}]},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]","sType":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "}]}]},{"N":"elem","name":"date","sType":"1NE nQ{http://datacite.org/schema/kernel-4}date ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"160","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"dateType","sType":"1NA ","line":"161","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"created"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"let","var":"Q{}createdAt","slot":"0","sType":"*NT ","line":"166","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"166","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Month"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Day"}]}]}]}]},{"N":"str","val":"00"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"167","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}createdAt","slot":"0","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"167"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"co","binds":"","id":"1","uniform":"true","C":[{"N":"template","flags":"os","module":"oai_datacite.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","name":"Q{}CamelCaseWord","line":"225","ns":"xml=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","expand-text":"false","sType":"* ","C":[{"N":"sequence","role":"body","sType":"* ","C":[{"N":"param","name":"Q{}text","slot":"0","sType":"* ","as":"* ","flags":"","line":"226","C":[{"N":"str","sType":"1AS ","val":"","role":"select"},{"N":"supplied","role":"conversion","slot":"0","sType":"* "}]},{"N":"param","name":"Q{}firstLower","slot":"1","sType":"* ","as":"* ","flags":"","line":"227","C":[{"N":"true","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"227"},{"N":"supplied","role":"conversion","slot":"1","sType":"* "}]},{"N":"let","var":"Q{}Upper","slot":"2","sType":"*NT ","line":"228","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","role":"select","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"ABCDEFGHIJKLMNOPQRSTUVQXYZ"}]}]},{"N":"let","var":"Q{}Lower","slot":"3","sType":"*NT ","line":"229","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","role":"select","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"abcdefghijklmnopqrstuvwxyz"}]}]},{"N":"forEach","sType":"*NT ","line":"230","C":[{"N":"fn","name":"tokenize","sType":"*AS","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"230","C":[{"N":"treat","as":"AS","diag":"0|0||tokenize","C":[{"N":"check","card":"?","diag":"0|0||tokenize","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||tokenize","C":[{"N":"check","card":"?","diag":"0|0||tokenize","C":[{"N":"data","diag":"0|0||tokenize","C":[{"N":"varRef","name":"Q{}text","slot":"0"}]}]}]}]}]},{"N":"str","val":"_"}]},{"N":"sequence","sType":"*NT ","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"231","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"232","C":[{"N":"compareToInt","op":"eq","val":"1","C":[{"N":"fn","name":"position"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}firstLower","slot":"1"}]},{"N":"true"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"233","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"substring","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"233","C":[{"N":"dot"},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"1"}]},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"1"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"236","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"translate","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"236","C":[{"N":"fn","name":"substring","C":[{"N":"dot"},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"1"}]},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"1"}]}]},{"N":"treat","as":"AS","diag":"0|1||translate","C":[{"N":"check","card":"1","diag":"0|1||translate","C":[{"N":"cvUntyped","to":"AS","diag":"0|1||translate","C":[{"N":"check","card":"1","diag":"0|1||translate","C":[{"N":"data","diag":"0|1||translate","C":[{"N":"varRef","name":"Q{}Lower","slot":"3"}]}]}]}]}]},{"N":"treat","as":"AS","diag":"0|2||translate","C":[{"N":"check","card":"1","diag":"0|2||translate","C":[{"N":"cvUntyped","to":"AS","diag":"0|2||translate","C":[{"N":"check","card":"1","diag":"0|2||translate","C":[{"N":"data","diag":"0|2||translate","C":[{"N":"varRef","name":"Q{}Upper","slot":"2"}]}]}]}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"239","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"substring","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"239","C":[{"N":"dot"},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"2"}]},{"N":"convert","to":"AO","flags":"","C":[{"N":"fn","name":"string-length","C":[{"N":"dot"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]}]},{"N":"co","binds":"","id":"2","uniform":"true","C":[{"N":"template","flags":"os","module":"oai_datacite.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","name":"Q{}AlternateIdentifier","line":"309","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","expand-text":"false","sType":"1NE nQ{http://datacite.org/schema/kernel-4}alternateIdentifier ","C":[{"N":"elem","name":"alternateIdentifier","sType":"1NE nQ{http://datacite.org/schema/kernel-4}alternateIdentifier ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"body","line":"310","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"alternateIdentifierType","sType":"1NA ","line":"311","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"url"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"315","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"docOrder","sType":"*NA nQ{}landingpage","role":"select","line":"315","C":[{"N":"slash","role":"select","simple":"1","sType":"*NA nQ{}landingpage","C":[{"N":"treat","as":"N","diag":"13|0|XTTE0510|","C":[{"N":"dot"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}landingpage","sType":"*NA nQ{}landingpage","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]},{"N":"co","binds":"","id":"3","uniform":"true","C":[{"N":"template","flags":"os","module":"oai_2_iso19139.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","name":"Q{}datestamp","line":"385","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}dateStamp ","C":[{"N":"elem","name":"gmd:dateStamp","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}dateStamp ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","role":"body","line":"386","C":[{"N":"let","var":"Q{}theDate","slot":"0","sType":"*NE ","line":"388","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"389","C":[{"N":"docOrder","sType":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]","line":"390","C":[{"N":"slash","role":"select","simple":"1","sType":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]","C":[{"N":"treat","as":"N","diag":"13|0|XTTE0510|","C":[{"N":"dot"}]},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]","sType":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco "}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"395","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"395","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Month"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Day"}]}]}]}]},{"N":"str","val":"00"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"402","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"402","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Month"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Day"}]}]}]}]},{"N":"str","val":"00"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gco:Date","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Date ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"406","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"407","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"407","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"varRef","name":"Q{}theDate","slot":"0"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]},{"N":"co","binds":"","id":"4","uniform":"true","C":[{"N":"template","flags":"os","module":"oai_2_iso19139.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","name":"Q{}title","line":"413","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}title ","C":[{"N":"elem","name":"gmd:title","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}title ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","role":"body","line":"414","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"415","C":[{"N":"forEach","sType":"* ","line":"416","C":[{"N":"filter","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"416","C":[{"N":"axis","name":"child","nodeTest":"*NE"},{"N":"or","C":[{"N":"compareToString","op":"eq","val":"TitleMain","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"name","C":[{"N":"dot"}]}]},{"N":"compareToString","op":"eq","val":"TitleAdditional","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"name","C":[{"N":"dot"}]}]}]}]},{"N":"choose","sType":"? ","type":"item()*","line":"417","C":[{"N":"compareToString","op":"eq","val":"Main","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"418","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"419","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"419"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"421","C":[{"N":"compareToString","op":"eq","val":"Sub","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Value"},{"N":"str","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"422","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"422","C":[{"N":"str","val":"; Subtitle: "},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"attVal","name":"Q{}Value"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"424","C":[{"N":"compareToString","op":"eq","val":"Translated","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Value"},{"N":"str","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"425","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"425","C":[{"N":"str","val":"; Translated title: "},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"attVal","name":"Q{}Value"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"427","C":[{"N":"compareToString","op":"eq","val":"Other","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Value"},{"N":"str","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"428","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"428","C":[{"N":"str","val":"; Other title: "},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"attVal","name":"Q{}Value"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]}]}]},{"N":"co","binds":"","id":"5","uniform":"true","C":[{"N":"template","flags":"os","module":"oai_2_iso19139.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","name":"Q{}abstract","line":"663","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}abstract ","C":[{"N":"elem","name":"gmd:abstract","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}abstract ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","role":"body","line":"664","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"665","C":[{"N":"forEach","sType":"* ","line":"666","C":[{"N":"filter","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"666","C":[{"N":"axis","name":"child","nodeTest":"*NE"},{"N":"or","C":[{"N":"compareToString","op":"eq","val":"TitleAbstract","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"name","C":[{"N":"dot"}]}]},{"N":"compareToString","op":"eq","val":"TitleAbstractAdditional","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"name","C":[{"N":"dot"}]}]}]}]},{"N":"choose","sType":"? ","type":"item()*","line":"668","C":[{"N":"compareToString","op":"eq","val":"Abstract","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"669","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"671","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"671","C":[{"N":"str","val":"\nAbstract: "},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"compareToString","op":"eq","val":"Translated","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"673","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"674","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"674","C":[{"N":"str","val":"\nTranslated Description: "},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"676","C":[{"N":"compareToString","op":"eq","val":"SeriesInformation","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Value"},{"N":"str","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"677","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"677","C":[{"N":"str","val":"\nSeries Information: "},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"679","C":[{"N":"compareToString","op":"eq","val":"TableOfContents","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Value"},{"N":"str","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"680","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"680","C":[{"N":"str","val":"\nTable of Contents: "},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"682","C":[{"N":"compareToString","op":"eq","val":"TechnicalInfo","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Value"},{"N":"str","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"683","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"683","C":[{"N":"str","val":"\nTechnical Info: "},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"685","C":[{"N":"compareToString","op":"eq","val":"Methods","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Value"},{"N":"str","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"686","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"686","C":[{"N":"str","val":"\nMethods: "},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"688","C":[{"N":"compareToString","op":"eq","val":"Other","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Value"},{"N":"str","val":""}]}]},{"N":"choose","sType":"? ","line":"689","C":[{"N":"fn","name":"not","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"689","C":[{"N":"fn","name":"contains","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]},{"N":"str","val":"Related publications:"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"690","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"690","C":[{"N":"str","val":"\nOther Description: "},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]}]}]},{"N":"co","id":"6","uniform":"true","binds":"47 45 46 48 6","C":[{"N":"template","flags":"os","module":"datasetxml2oai-pmh.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","name":"Q{}url-encode","line":"55","expand-text":"false","sType":"* ","C":[{"N":"sequence","role":"body","sType":"* ","C":[{"N":"param","name":"Q{}str","slot":"0","sType":"* ","as":"* ","flags":"","line":"56","C":[{"N":"str","sType":"1AS ","val":"","role":"select"},{"N":"supplied","role":"conversion","slot":"0","sType":"* "}]},{"N":"choose","sType":"* ","line":"57","C":[{"N":"varRef","name":"Q{}str","slot":"0","sType":"*","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"57"},{"N":"let","var":"Q{}first-char","slot":"1","sType":"* ","line":"58","C":[{"N":"fn","name":"substring","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"58","C":[{"N":"treat","as":"AS","diag":"0|0||substring","C":[{"N":"check","card":"?","diag":"0|0||substring","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||substring","C":[{"N":"check","card":"?","diag":"0|0||substring","C":[{"N":"data","diag":"0|0||substring","C":[{"N":"varRef","name":"Q{}str","slot":"0"}]}]}]}]}]},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"1"}]},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"1"}]}]},{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"*NT ","type":"item()*","line":"59","C":[{"N":"fn","name":"contains","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"60","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||contains","C":[{"N":"atomSing","diag":"0|0||contains","card":"?","C":[{"N":"gVarRef","name":"Q{}safe","bSlot":"0"}]}]},{"N":"treat","as":"AS","diag":"0|1||contains","C":[{"N":"check","card":"?","diag":"0|1||contains","C":[{"N":"cvUntyped","to":"AS","diag":"0|1||contains","C":[{"N":"check","card":"?","diag":"0|1||contains","C":[{"N":"data","diag":"0|1||contains","C":[{"N":"varRef","name":"Q{}first-char","slot":"1"}]}]}]}]}]},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"61","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}first-char","slot":"1","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"61"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"let","var":"Q{}codepoint","slot":"2","sType":"*NT ","line":"64","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","role":"select","C":[{"N":"choose","sType":"* ","type":"item()*","line":"65","C":[{"N":"fn","name":"contains","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"66","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||contains","C":[{"N":"atomSing","diag":"0|0||contains","card":"?","C":[{"N":"gVarRef","name":"Q{}ascii","bSlot":"1"}]}]},{"N":"treat","as":"AS","diag":"0|1||contains","C":[{"N":"check","card":"?","diag":"0|1||contains","C":[{"N":"cvUntyped","to":"AS","diag":"0|1||contains","C":[{"N":"check","card":"?","diag":"0|1||contains","C":[{"N":"data","diag":"0|1||contains","C":[{"N":"varRef","name":"Q{}first-char","slot":"1"}]}]}]}]}]},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"67","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"arith","sType":"1ADI","op":"+","calc":"i+i","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"67","C":[{"N":"fn","name":"string-length","C":[{"N":"fn","name":"substring-before","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||substring-before","C":[{"N":"atomSing","diag":"0|0||substring-before","card":"?","C":[{"N":"gVarRef","name":"Q{}ascii","bSlot":"1"}]}]},{"N":"treat","as":"AS","diag":"0|1||substring-before","C":[{"N":"check","card":"?","diag":"0|1||substring-before","C":[{"N":"cvUntyped","to":"AS","diag":"0|1||substring-before","C":[{"N":"check","card":"?","diag":"0|1||substring-before","C":[{"N":"data","diag":"0|1||substring-before","C":[{"N":"varRef","name":"Q{}first-char","slot":"1"}]}]}]}]}]},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]}]},{"N":"int","val":"32"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"fn","name":"contains","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"69","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||contains","C":[{"N":"atomSing","diag":"0|0||contains","card":"?","C":[{"N":"gVarRef","name":"Q{}latin1","bSlot":"2"}]}]},{"N":"treat","as":"AS","diag":"0|1||contains","C":[{"N":"check","card":"?","diag":"0|1||contains","C":[{"N":"cvUntyped","to":"AS","diag":"0|1||contains","C":[{"N":"check","card":"?","diag":"0|1||contains","C":[{"N":"data","diag":"0|1||contains","C":[{"N":"varRef","name":"Q{}first-char","slot":"1"}]}]}]}]}]},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"70","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"arith","sType":"1ADI","op":"+","calc":"i+i","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"70","C":[{"N":"fn","name":"string-length","C":[{"N":"fn","name":"substring-before","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||substring-before","C":[{"N":"atomSing","diag":"0|0||substring-before","card":"?","C":[{"N":"gVarRef","name":"Q{}latin1","bSlot":"2"}]}]},{"N":"treat","as":"AS","diag":"0|1||substring-before","C":[{"N":"check","card":"?","diag":"0|1||substring-before","C":[{"N":"cvUntyped","to":"AS","diag":"0|1||substring-before","C":[{"N":"check","card":"?","diag":"0|1||substring-before","C":[{"N":"data","diag":"0|1||substring-before","C":[{"N":"varRef","name":"Q{}first-char","slot":"1"}]}]}]}]}]},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]}]},{"N":"int","val":"160"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"sequence","sType":"* ","C":[{"N":"message","sType":"0 ","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"valueOf","sType":"1NT ","role":"select","C":[{"N":"str","sType":"1AS ","val":"Warning: string contains a character that is out of range! Substituting \"?\"."}]},{"N":"str","sType":"1AS ","val":"false","role":"terminate"},{"N":"str","sType":"1AS ","val":"Q{http://www.w3.org/2005/xqt-errors}XTMM9000","role":"error"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"63"}]}]}]}]},{"N":"let","var":"Q{}hex-digit1","slot":"3","sType":"*NT ","line":"78","C":[{"N":"fn","name":"substring","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"78","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||substring","C":[{"N":"atomSing","diag":"0|0||substring","card":"?","C":[{"N":"gVarRef","name":"Q{}hex","bSlot":"3"}]}]},{"N":"check","card":"1","diag":"0|1||substring","C":[{"N":"convert","to":"AO","flags":"","C":[{"N":"cvUntyped","to":"AO","diag":"0|1||substring","C":[{"N":"arith","op":"+","calc":"a+a","C":[{"N":"fn","name":"floor","C":[{"N":"treat","as":"A m[AO,AD,AF]","diag":"0|0||floor","C":[{"N":"check","card":"?","diag":"0|0||floor","C":[{"N":"cvUntyped","to":"AO","diag":"0|0||floor","C":[{"N":"arith","op":"div","calc":"a/a","C":[{"N":"check","card":"?","diag":"1|0||arith","C":[{"N":"data","diag":"1|0||arith","C":[{"N":"varRef","name":"Q{}codepoint","slot":"2"}]}]},{"N":"int","val":"16"}]}]}]}]}]},{"N":"int","val":"1"}]}]}]}]},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"1"}]}]},{"N":"let","var":"Q{}hex-digit2","slot":"4","sType":"*NT ","line":"79","C":[{"N":"fn","name":"substring","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"79","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||substring","C":[{"N":"atomSing","diag":"0|0||substring","card":"?","C":[{"N":"gVarRef","name":"Q{}hex","bSlot":"3"}]}]},{"N":"check","card":"1","diag":"0|1||substring","C":[{"N":"convert","to":"AO","flags":"","C":[{"N":"cvUntyped","to":"AO","diag":"0|1||substring","C":[{"N":"arith","op":"+","calc":"a+a","C":[{"N":"arith","op":"mod","calc":"a%a","C":[{"N":"check","card":"?","diag":"1|0||arith","C":[{"N":"data","diag":"1|0||arith","C":[{"N":"varRef","name":"Q{}codepoint","slot":"2"}]}]},{"N":"int","val":"16"}]},{"N":"int","val":"1"}]}]}]}]},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"1"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"80","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"80","C":[{"N":"str","val":"%"},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"data","diag":"0|1||concat","C":[{"N":"varRef","name":"Q{}hex-digit1","slot":"3"}]}]},{"N":"check","card":"?","diag":"0|2||concat","C":[{"N":"data","diag":"0|2||concat","C":[{"N":"varRef","name":"Q{}hex-digit2","slot":"4"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]},{"N":"choose","sType":"* ","line":"83","C":[{"N":"compareToInt","op":"gt","val":"1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"83","C":[{"N":"fn","name":"string-length","C":[{"N":"treat","as":"AS","diag":"0|0||string-length","C":[{"N":"check","card":"?","diag":"0|0||string-length","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||string-length","C":[{"N":"check","card":"?","diag":"0|0||string-length","C":[{"N":"data","diag":"0|0||string-length","C":[{"N":"varRef","name":"Q{}str","slot":"0"}]}]}]}]}]}]}]},{"N":"callT","bSlot":"4","sType":"* ","name":"Q{}url-encode","line":"84","C":[{"N":"withParam","name":"Q{}str","slot":"0","sType":"1AS","C":[{"N":"fn","name":"substring","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"85","C":[{"N":"treat","as":"AS","diag":"0|0||substring","C":[{"N":"check","card":"?","diag":"0|0||substring","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||substring","C":[{"N":"check","card":"?","diag":"0|0||substring","C":[{"N":"data","diag":"0|0||substring","C":[{"N":"varRef","name":"Q{}str","slot":"0"}]}]}]}]}]},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"2"}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"co","id":"7","uniform":"true","binds":"30 57 37 38 66 58 59","C":[{"N":"template","flags":"os","module":"datasetxml2oai-pmh.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","name":"Q{}Rdr_Dataset_Data","line":"330","expand-text":"false","sType":"* ","C":[{"N":"sequence","role":"body","sType":"* ","C":[{"N":"elem","name":"header","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}header ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"331","C":[{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"? ","line":"332","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"332","C":[{"N":"attVal","name":"Q{}ServerState"},{"N":"str","val":"deleted"}]},{"N":"att","name":"status","sType":"1NA ","line":"333","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"deleted"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"elem","name":"identifier","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}identifier ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"337","C":[{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"oai:"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"339","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}repIdentifier","bSlot":"0","role":"select","line":"339"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":":"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"341","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"docOrder","sType":"*NA nQ{}PublishId","role":"select","line":"341","C":[{"N":"slash","role":"select","simple":"1","sType":"*NA nQ{}PublishId","C":[{"N":"treat","as":"N","diag":"13|0|XTTE0510|","C":[{"N":"dot"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}PublishId","sType":"*NA nQ{}PublishId","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"datestamp","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}datestamp ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"343","C":[{"N":"choose","sType":"*NT ","type":"item()*","line":"344","C":[{"N":"docOrder","sType":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]","line":"345","C":[{"N":"slash","role":"select","simple":"1","sType":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]","C":[{"N":"treat","as":"N","diag":"13|0|XTTE0510|","C":[{"N":"dot"}]},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]","sType":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "}]}]},{"N":"let","var":"Q{}dateModified","slot":"0","sType":"*NT ","line":"353","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"353","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Month"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Day"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"T"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Hour"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":":"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Minute"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":":"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Second"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"Z"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"354","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}dateModified","slot":"0","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"354"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"true"},{"N":"let","var":"Q{}datePublished","slot":"0","sType":"*NT ","line":"364","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"364","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Month"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Day"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"T"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Hour"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":":"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Minute"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":":"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Second"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"Z"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"365","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}datePublished","slot":"0","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"365"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"applyT","sType":"* ","line":"373","mode":"#unnamed","bSlot":"1","C":[{"N":"docOrder","sType":"*NE u[NE nQ{}SetSpec,NE nQ{http://www.w3.org/1999/xhtml}SetSpec]","role":"select","line":"373","C":[{"N":"slash","role":"select","simple":"1","sType":"*NE u[NE nQ{}SetSpec,NE nQ{http://www.w3.org/1999/xhtml}SetSpec]","C":[{"N":"treat","as":"N","diag":"13|0|XTTE0510|","C":[{"N":"dot"}]},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}SetSpec,NE nQ{http://www.w3.org/1999/xhtml}SetSpec]","sType":"*NE u[NE nQ{}SetSpec,NE nQ{http://www.w3.org/1999/xhtml}SetSpec]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "}]}]}]},{"N":"elem","name":"setSpec","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}setSpec ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"374","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"open_access"}]}]},{"N":"elem","name":"setSpec","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}setSpec ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"377","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"doc-type:ResearchData"}]}]}]}]},{"N":"choose","sType":"? ","type":"item()*","line":"381","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"383","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_verb","bSlot":"2"}]},{"N":"str","val":"ListIdentifiers"}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}ServerState"},{"N":"str","val":"deleted"}]}]},{"N":"elem","name":"metadata","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}metadata ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"385","C":[{"N":"choose","sType":"* ","type":"item()*","line":"387","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"388","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_metadataPrefix","bSlot":"3"}]},{"N":"str","val":"oai_dc"}]},{"N":"applyT","sType":"* ","line":"389","mode":"Q{}oai_dc","bSlot":"4","C":[{"N":"dot","sType":"1","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"389"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"391","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_metadataPrefix","bSlot":"3"}]},{"N":"str","val":"oai_datacite"}]},{"N":"applyT","sType":"* ","line":"392","mode":"Q{}oai_datacite","bSlot":"5","C":[{"N":"dot","sType":"1","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"392"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"394","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_metadataPrefix","bSlot":"3"}]},{"N":"str","val":"iso19139"}]},{"N":"applyT","sType":"* ","line":"395","mode":"Q{}iso19139","bSlot":"6","C":[{"N":"dot","sType":"1","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"395"}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"co","binds":"","id":"8","uniform":"true","C":[{"N":"template","flags":"os","module":"datasetxml2oai-pmh.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","name":"Q{}citation","line":"489","expand-text":"false","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}source ","C":[{"N":"elem","name":"dc:source","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}source ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"body","line":"490","C":[{"N":"let","var":"Q{}creatorName","slot":"0","sType":"*NT ","line":"491","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","role":"select","C":[{"N":"forEach","sType":"* ","line":"492","C":[{"N":"filter","sType":"*NE","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"492","C":[{"N":"axis","name":"child","nodeTest":"*NE"},{"N":"compareToString","op":"eq","val":"PersonAuthor","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"name","C":[{"N":"dot"}]}]}]},{"N":"let","var":"Q{}person","slot":"0","sType":"* ","line":"493","C":[{"N":"dot","sType":"1NE","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"493"},{"N":"let","var":"Q{}uppercase","slot":"1","sType":"* ","line":"494","C":[{"N":"str","val":"ABC..XYZ","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"494"},{"N":"let","var":"Q{}lowercase","slot":"2","sType":"* ","line":"495","C":[{"N":"str","val":"abc..zyz","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"495"},{"N":"let","var":"Q{}authorName","slot":"3","sType":"* ","line":"496","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","role":"select","C":[{"N":"choose","sType":"*NT ","type":"item()*","line":"497","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"498","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}person","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}FirstName"}]}]}]}]},{"N":"let","var":"Q{}name","slot":"3","sType":"*NT ","line":"501","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"501","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}person","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}LastName"}]}]}]}]},{"N":"str","val":", "},{"N":"fn","name":"concat","C":[{"N":"fn","name":"translate","C":[{"N":"fn","name":"substring","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||substring","C":[{"N":"check","card":"?","diag":"0|0||substring","C":[{"N":"data","diag":"0|0||substring","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}person","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}FirstName"}]}]}]}]}]},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"1"}]},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"1"}]}]},{"N":"treat","as":"AS","diag":"0|1||translate","C":[{"N":"check","card":"1","diag":"0|1||translate","C":[{"N":"cvUntyped","to":"AS","diag":"0|1||translate","C":[{"N":"check","card":"1","diag":"0|1||translate","C":[{"N":"data","diag":"0|1||translate","C":[{"N":"varRef","name":"Q{}lowercase","slot":"2"}]}]}]}]}]},{"N":"treat","as":"AS","diag":"0|2||translate","C":[{"N":"check","card":"1","diag":"0|2||translate","C":[{"N":"cvUntyped","to":"AS","diag":"0|2||translate","C":[{"N":"check","card":"1","diag":"0|2||translate","C":[{"N":"data","diag":"0|2||translate","C":[{"N":"varRef","name":"Q{}uppercase","slot":"1"}]}]}]}]}]}]},{"N":"str","val":"."}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"502","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}name","slot":"3","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"502"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"505","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"docOrder","sType":"*NA nQ{}LastName","role":"select","line":"505","C":[{"N":"docOrder","sType":"*NA nQ{}LastName","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}person","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}LastName"}]}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"sequence","sType":"? ","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"509","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"509","C":[{"N":"treat","as":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"data","diag":"0|0||normalize-space","C":[{"N":"varRef","name":"Q{}authorName","slot":"3"}]}]}]}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"choose","sType":"? ","type":"item()*","line":"510","C":[{"N":"vc","op":"ne","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"511","C":[{"N":"fn","name":"position"},{"N":"fn","name":"last"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":","}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]}]}]}]}]},{"N":"let","var":"Q{}year","slot":"1","sType":"*NT ","line":"515","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"515","C":[{"N":"str","val":" ("},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]},{"N":"str","val":"): "}]},{"N":"let","var":"Q{}mainTitle","slot":"2","sType":"*NT ","line":"516","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"516","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}TitleMain,NE nQ{http://www.w3.org/1999/xhtml}TitleMain]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"let","var":"Q{}creatingCorporation","slot":"3","sType":"*NT ","line":"517","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"517","C":[{"N":"str","val":"."},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}CreatingCorporation"}]}]},{"N":"str","val":", "}]},{"N":"let","var":"Q{}publisherName","slot":"4","sType":"*NT ","line":"518","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"518","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}PublisherName"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"519","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"519","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"varRef","name":"Q{}creatorName","slot":"0"}]}]},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"data","diag":"0|1||concat","C":[{"N":"varRef","name":"Q{}year","slot":"1"}]}]},{"N":"check","card":"?","diag":"0|2||concat","C":[{"N":"data","diag":"0|2||concat","C":[{"N":"varRef","name":"Q{}mainTitle","slot":"2"}]}]},{"N":"check","card":"?","diag":"0|3||concat","C":[{"N":"data","diag":"0|3||concat","C":[{"N":"varRef","name":"Q{}creatingCorporation","slot":"3"}]}]},{"N":"check","card":"?","diag":"0|4||concat","C":[{"N":"data","diag":"0|4||concat","C":[{"N":"varRef","name":"Q{}publisherName","slot":"4"}]}]},{"N":"str","val":", Wien"}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]}]}]},{"N":"co","binds":"","id":"9","uniform":"true","C":[{"N":"template","flags":"os","module":"datasetxml2oai-pmh.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","name":"Q{}RdrDate","line":"656","expand-text":"false","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}date ","C":[{"N":"elem","name":"dc:date","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}date ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"body","line":"657","C":[{"N":"choose","sType":"*NT ","type":"item()*","line":"658","C":[{"N":"docOrder","sType":"*NE u[NE nQ{}PublishedDate,NE nQ{http://www.w3.org/1999/xhtml}PublishedDate]","line":"659","C":[{"N":"slash","role":"select","simple":"1","sType":"*NE u[NE nQ{}PublishedDate,NE nQ{http://www.w3.org/1999/xhtml}PublishedDate]","C":[{"N":"treat","as":"N","diag":"13|0|XTTE0510|","C":[{"N":"dot"}]},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}PublishedDate,NE nQ{http://www.w3.org/1999/xhtml}PublishedDate]","sType":"*NE u[NE nQ{}PublishedDate,NE nQ{http://www.w3.org/1999/xhtml}PublishedDate]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "}]}]},{"N":"let","var":"Q{}publishedDate","slot":"0","sType":"*NT ","line":"664","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"664","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}PublishedDate,NE nQ{http://www.w3.org/1999/xhtml}PublishedDate]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}PublishedDate,NE nQ{http://www.w3.org/1999/xhtml}PublishedDate]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Month"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}PublishedDate,NE nQ{http://www.w3.org/1999/xhtml}PublishedDate]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Day"}]}]}]}]},{"N":"str","val":"00"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"665","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}publishedDate","slot":"0","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"665"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"true"},{"N":"let","var":"Q{}serverDatePublished","slot":"0","sType":"*NT ","line":"672","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"672","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Month"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Day"}]}]}]}]},{"N":"str","val":"00"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"673","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}serverDatePublished","slot":"0","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"673"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]},{"N":"co","id":"10","uniform":"true","binds":"51 50","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","name":"Q{}hierarchylevel","line":"60","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}hierarchyLevel ","C":[{"N":"elem","name":"gmd:hierarchyLevel","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}hierarchyLevel ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","role":"body","line":"61","C":[{"N":"elem","name":"gmd:MD_ScopeCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_ScopeCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"62","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","sType":"1NA ","line":"63","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"64","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"?ND ","name":"Q{}MDScopelist","bSlot":"0","role":"select","line":"64"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"att","name":"codeListValue","sType":"1NA ","line":"66","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"67","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"?ND ","name":"Q{}MDScopecode","bSlot":"1","role":"select","line":"67"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"69","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"?ND ","name":"Q{}MDScopecode","bSlot":"1","role":"select","line":"69"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]},{"N":"co","binds":"","id":"11","uniform":"true","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","name":"Q{}metadatacontact","line":"75","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}contact ","C":[{"N":"elem","name":"gmd:contact","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}contact ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","role":"body","line":"76","C":[{"N":"elem","name":"gmd:CI_ResponsibleParty","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_ResponsibleParty ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"77","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:individualName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}individualName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"78","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"79","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Tethys RDR"}]}]}]},{"N":"elem","name":"gmd:organisationName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}organisationName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"81","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"82","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Tethys RDR"}]}]}]},{"N":"elem","name":"gmd:positionName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}positionName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"84","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"85","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Research Data Repository"}]}]}]},{"N":"elem","name":"gmd:contactInfo","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}contactInfo ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"87","C":[{"N":"elem","name":"gmd:CI_Contact","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Contact ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"88","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:address","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}address ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"89","C":[{"N":"elem","name":"gmd:CI_Address","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Address ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"90","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:deliveryPoint","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}deliveryPoint ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"91","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"92","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Neulinggasse 38"}]}]}]},{"N":"elem","name":"gmd:city","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}city ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"94","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"95","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Vienna"}]}]}]},{"N":"elem","name":"gmd:administrativeArea","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}administrativeArea ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"97","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"98","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Vienna"}]}]}]},{"N":"elem","name":"gmd:postalCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}postalCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"100","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"101","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"1030"}]}]}]},{"N":"elem","name":"gmd:country","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}country ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"103","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"104","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"AT"}]}]}]},{"N":"elem","name":"gmd:electronicMailAddress","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}electronicMailAddress ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"106","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"107","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"repository@geologie.ac.at"}]}]}]}]}]}]},{"N":"elem","name":"gmd:onlineResource","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}onlineResource ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"112","C":[{"N":"elem","name":"gmd:CI_OnlineResource","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_OnlineResource ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"113","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:linkage","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}linkage ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"114","C":[{"N":"elem","name":"gmd:URL","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}URL ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"115","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"https://tethys.at"}]}]}]},{"N":"elem","name":"gmd:function","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}function ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"117","C":[{"N":"elem","name":"gmd:CI_OnLineFunctionCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_OnLineFunctionCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"118","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_OnLineFunctionCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"information"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"information"}]}]}]}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:role","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}role ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"124","C":[{"N":"elem","name":"gmd:CI_RoleCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_RoleCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"125","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"pointOfContact"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"pointOfContact"}]}]}]}]}]}]}]}]}]},{"N":"co","binds":"","id":"12","uniform":"true","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","name":"Q{}resourcedates","line":"134","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"* ","C":[{"N":"sequence","role":"body","sType":"* ","C":[{"N":"choose","sType":"? ","line":"135","C":[{"N":"filter","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"135","C":[{"N":"axis","name":"child","nodeTest":"*NE"},{"N":"compareToString","op":"eq","val":"CreatedAt","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"name","C":[{"N":"dot"}]}]}]},{"N":"elem","name":"gmd:date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"136","C":[{"N":"elem","name":"gmd:CI_Date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"137","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"138","C":[{"N":"let","var":"Q{}theDate","slot":"0","sType":"*N ","line":"140","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/functions.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"148","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"148","C":[{"N":"fn","name":"concat","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Month"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Day"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"T"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Hour"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":":"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Minute"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":":"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Second"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"Z"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"choose","sType":"?N ","type":"item()*","line":"151","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"152","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}theDate","slot":"0"}]},{"N":"str","val":""}]},{"N":"choose","sType":"?NE ","type":"item()*","line":"153","C":[{"N":"fn","name":"contains","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"154","C":[{"N":"treat","as":"AS","diag":"0|0||contains","C":[{"N":"check","card":"?","diag":"0|0||contains","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||contains","C":[{"N":"check","card":"?","diag":"0|0||contains","C":[{"N":"data","diag":"0|0||contains","C":[{"N":"varRef","name":"Q{}theDate","slot":"0"}]}]}]}]}]},{"N":"str","val":"T"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"elem","name":"gco:DateTime","sType":"1NE nQ{http://www.isotc211.org/2005/gco}DateTime ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"155","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"156","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}theDate","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"156"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"fn","name":"contains","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"159","C":[{"N":"treat","as":"AS","diag":"0|0||contains","C":[{"N":"check","card":"?","diag":"0|0||contains","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||contains","C":[{"N":"check","card":"?","diag":"0|0||contains","C":[{"N":"data","diag":"0|0||contains","C":[{"N":"varRef","name":"Q{}theDate","slot":"0"}]}]}]}]}]},{"N":"str","val":" "},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"elem","name":"gco:DateTime","sType":"1NE nQ{http://www.isotc211.org/2005/gco}DateTime ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"160","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"161","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"translate","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"161","C":[{"N":"treat","as":"AS","diag":"0|0||translate","C":[{"N":"check","card":"?","diag":"0|0||translate","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||translate","C":[{"N":"check","card":"?","diag":"0|0||translate","C":[{"N":"data","diag":"0|0||translate","C":[{"N":"varRef","name":"Q{}theDate","slot":"0"}]}]}]}]}]},{"N":"str","val":" "},{"N":"str","val":"T"}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"true"},{"N":"elem","name":"gco:Date","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Date ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"165","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"166","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}theDate","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"166"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"true"},{"N":"att","name":"gco:nilReason","sType":"1NA ","nsuri":"http://www.isotc211.org/2005/gco","line":"173","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"174","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"174","C":[{"N":"str","val":"created date missing"}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]}]}]}]},{"N":"elem","name":"gmd:dateType","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}dateType ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"179","C":[{"N":"elem","name":"gmd:CI_DateTypeCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_DateTypeCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"180","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_DateTypeCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"creation"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"creation"}]}]}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"?NE ","type":"item()*","line":"185","C":[{"N":"filter","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"187","C":[{"N":"axis","name":"child","nodeTest":"*NE"},{"N":"compareToString","op":"eq","val":"EmbargoDate","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"local-name","C":[{"N":"dot"}]}]}]},{"N":"elem","name":"gmd:date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"188","C":[{"N":"elem","name":"gmd:CI_Date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"189","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"190","C":[{"N":"let","var":"Q{}embargoDate","slot":"0","sType":"*NE ","line":"195","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"195","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Month"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Day"}]}]}]}]},{"N":"str","val":"00"}]}]},{"N":"elem","name":"gco:Date","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Date ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"196","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"197","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}embargoDate","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"197"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"elem","name":"gmd:dateType","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}dateType ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"200","C":[{"N":"elem","name":"gmd:CI_DateTypeCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_DateTypeCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"201","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_DateTypeCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"publication"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"publication"}]}]}]}]}]}]}]},{"N":"filter","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"206","C":[{"N":"axis","name":"child","nodeTest":"*NE"},{"N":"compareToString","op":"eq","val":"ServerDatePublished","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"local-name","C":[{"N":"dot"}]}]}]},{"N":"elem","name":"gmd:date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"207","C":[{"N":"elem","name":"gmd:CI_Date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"208","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"209","C":[{"N":"let","var":"Q{}publicationDate","slot":"0","sType":"*NE ","line":"217","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"217","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Month"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Day"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"T"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Hour"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":":"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Minute"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":":"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Second"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"Z"}]},{"N":"elem","name":"gco:DateTime","sType":"1NE nQ{http://www.isotc211.org/2005/gco}DateTime ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"218","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"219","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}publicationDate","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"219"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"elem","name":"gmd:dateType","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}dateType ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"222","C":[{"N":"elem","name":"gmd:CI_DateTypeCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_DateTypeCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"223","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_DateTypeCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"publication"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"publication"}]}]}]}]}]}]}]},{"N":"true"},{"N":"elem","name":"gmd:date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"229","C":[{"N":"att","name":"gco:nilReason","nsuri":"http://www.isotc211.org/2005/gco","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"missing"}]}]}]},{"N":"choose","sType":"? ","line":"234","C":[{"N":"docOrder","sType":"*NA nQ{}ServerDateModified","line":"234","C":[{"N":"slash","role":"select","simple":"1","sType":"*NA nQ{}ServerDateModified","C":[{"N":"treat","as":"N","diag":"13|0|XTTE0510|","C":[{"N":"dot"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}ServerDateModified","sType":"*NA nQ{}ServerDateModified","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco "}]}]},{"N":"elem","name":"gmd:date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"235","C":[{"N":"elem","name":"gmd:CI_Date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"236","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"237","C":[{"N":"let","var":"Q{}updateDate","slot":"0","sType":"*N ","line":"238","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"238","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}ServerDateModified"}]}]}]},{"N":"choose","sType":"?N ","type":"item()*","line":"240","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"241","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}updateDate","slot":"0"}]},{"N":"str","val":""}]},{"N":"choose","sType":"?NE ","type":"item()*","line":"242","C":[{"N":"fn","name":"contains","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"243","C":[{"N":"treat","as":"AS","diag":"0|0||contains","C":[{"N":"check","card":"?","diag":"0|0||contains","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||contains","C":[{"N":"check","card":"?","diag":"0|0||contains","C":[{"N":"data","diag":"0|0||contains","C":[{"N":"varRef","name":"Q{}updateDate","slot":"0"}]}]}]}]}]},{"N":"str","val":"T"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"elem","name":"gco:DateTime","sType":"1NE nQ{http://www.isotc211.org/2005/gco}DateTime ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"244","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"245","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}updateDate","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"245"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"fn","name":"contains","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"248","C":[{"N":"treat","as":"AS","diag":"0|0||contains","C":[{"N":"check","card":"?","diag":"0|0||contains","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||contains","C":[{"N":"check","card":"?","diag":"0|0||contains","C":[{"N":"data","diag":"0|0||contains","C":[{"N":"varRef","name":"Q{}updateDate","slot":"0"}]}]}]}]}]},{"N":"str","val":" "},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"elem","name":"gco:DateTime","sType":"1NE nQ{http://www.isotc211.org/2005/gco}DateTime ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"249","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"250","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"translate","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"250","C":[{"N":"treat","as":"AS","diag":"0|0||translate","C":[{"N":"check","card":"?","diag":"0|0||translate","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||translate","C":[{"N":"check","card":"?","diag":"0|0||translate","C":[{"N":"data","diag":"0|0||translate","C":[{"N":"varRef","name":"Q{}updateDate","slot":"0"}]}]}]}]}]},{"N":"str","val":" "},{"N":"str","val":"T"}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"true"},{"N":"elem","name":"gco:Date","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Date ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"254","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"255","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}updateDate","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"255"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"true"},{"N":"att","name":"gco:nilReason","sType":"1NA ","nsuri":"http://www.isotc211.org/2005/gco","line":"261","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"262","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"262","C":[{"N":"str","val":"missing"}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]}]}]}]},{"N":"elem","name":"gmd:dateType","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}dateType ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"267","C":[{"N":"elem","name":"gmd:CI_DateTypeCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_DateTypeCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"268","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_DateTypeCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"revision"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"revision"}]}]}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"co","binds":"","id":"13","uniform":"true","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","name":"Q{}ci_responsibleparty","line":"275","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"* ","C":[{"N":"sequence","role":"body","sType":"* ","C":[{"N":"param","name":"Q{}individual","slot":"0","sType":"* ","as":"* ","flags":"","line":"276","C":[{"N":"str","sType":"1AS ","val":"","role":"select"},{"N":"supplied","role":"conversion","slot":"0","sType":"* "}]},{"N":"param","name":"Q{}httpuri","slot":"1","sType":"* ","as":"* ","flags":"","line":"277","C":[{"N":"str","sType":"1AS ","val":"","role":"select"},{"N":"supplied","role":"conversion","slot":"1","sType":"* "}]},{"N":"param","name":"Q{}personidtype","slot":"2","sType":"* ","as":"* ","flags":"","line":"278","C":[{"N":"str","sType":"1AS ","val":"","role":"select"},{"N":"supplied","role":"conversion","slot":"2","sType":"* "}]},{"N":"param","name":"Q{}organisation","slot":"3","sType":"* ","as":"* ","flags":"","line":"279","C":[{"N":"str","sType":"1AS ","val":"","role":"select"},{"N":"supplied","role":"conversion","slot":"3","sType":"* "}]},{"N":"param","name":"Q{}position","slot":"4","sType":"* ","as":"* ","flags":"","line":"280","C":[{"N":"str","sType":"1AS ","val":"","role":"select"},{"N":"supplied","role":"conversion","slot":"4","sType":"* "}]},{"N":"param","name":"Q{}role","slot":"5","sType":"* ","as":"* ","flags":"","line":"281","C":[{"N":"str","sType":"1AS ","val":"","role":"select"},{"N":"supplied","role":"conversion","slot":"5","sType":"* "}]},{"N":"param","name":"Q{}email","slot":"6","sType":"* ","as":"* ","flags":"","line":"282","C":[{"N":"str","sType":"1AS ","val":"","role":"select"},{"N":"supplied","role":"conversion","slot":"6","sType":"* "}]},{"N":"param","name":"Q{}datacite-creatorname","slot":"7","sType":"* ","as":"* ","flags":"","line":"283","C":[{"N":"str","sType":"1AS ","val":"","role":"select"},{"N":"supplied","role":"conversion","slot":"7","sType":"* "}]},{"N":"elem","name":"gmd:CI_ResponsibleParty","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_ResponsibleParty ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"285","C":[{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"? ","line":"287","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"287","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}individual","slot":"0"}]},{"N":"str","val":""}]},{"N":"choose","sType":"?NE ","type":"item()*","line":"288","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"289","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}individual","slot":"0"}]},{"N":"str","val":"missing"}]},{"N":"elem","name":"gmd:individualName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}individualName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"290","C":[{"N":"att","name":"gco:nilReason","nsuri":"http://www.isotc211.org/2005/gco","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"missing"}]}]},{"N":"true"},{"N":"elem","name":"gmd:individualName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}individualName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"293","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"294","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"295","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}individual","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"295"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","line":"302","C":[{"N":"or","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"302","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}individual","slot":"0"}]},{"N":"str","val":"missing"}]},{"N":"str","val":""}]},{"N":"elem","name":"gmd:organisationName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}organisationName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"303","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"304","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"305","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}datacite-creatorname","slot":"7","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"305"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","line":"310","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"310","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}organisation","slot":"3"}]},{"N":"str","val":""}]},{"N":"elem","name":"gmd:organisationName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}organisationName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"311","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"312","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"313","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}organisation","slot":"3","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"313"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","line":"318","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"318","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}position","slot":"4"}]},{"N":"str","val":""}]},{"N":"elem","name":"gmd:positionName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}positionName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"319","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"320","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"321","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}position","slot":"4","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"321"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"elem","name":"gmd:contactInfo","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}contactInfo ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"326","C":[{"N":"elem","name":"gmd:CI_Contact","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Contact ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"327","C":[{"N":"sequence","sType":"* ","C":[{"N":"elem","name":"gmd:address","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}address ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"329","C":[{"N":"elem","name":"gmd:CI_Address","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Address ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"330","C":[{"N":"elem","name":"gmd:electronicMailAddress","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}electronicMailAddress ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"331","C":[{"N":"choose","sType":"?NE ","type":"item()*","line":"332","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"333","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}email","slot":"6"}]},{"N":"str","val":""}]},{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"334","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"335","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}email","slot":"6","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"335"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"true"},{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"340","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"341","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"341","C":[{"N":"str","val":"repository@geologie.ac.at"}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]},{"N":"choose","sType":"? ","line":"348","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"348","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}httpuri","slot":"1"}]},{"N":"str","val":""}]},{"N":"elem","name":"gmd:onlineResource","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}onlineResource ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"349","C":[{"N":"elem","name":"gmd:CI_OnlineResource","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_OnlineResource ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"350","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:linkage","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}linkage ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"351","C":[{"N":"elem","name":"gmd:URL","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}URL ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"352","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"353","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}httpuri","slot":"1","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"353"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:protocol","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}protocol ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"356","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"357","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"358","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}personidtype","slot":"2","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"358"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"elem","name":"gmd:role","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}role ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"368","C":[{"N":"elem","name":"gmd:CI_RoleCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_RoleCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"369","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","sType":"1NA ","line":"370","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"att","name":"codeListValue","sType":"1NA ","line":"371","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"372","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}role","slot":"5","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"372"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"374","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}role","slot":"5","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"374"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]}]}]},{"N":"co","binds":"","id":"14","uniform":"true","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","name":"Q{}pointofcontact_custodian","line":"381","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}pointOfContact ","C":[{"N":"elem","name":"gmd:pointOfContact","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}pointOfContact ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","role":"body","line":"382","C":[{"N":"elem","name":"gmd:CI_ResponsibleParty","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_ResponsibleParty ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"383","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:individualName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}individualName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"384","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"385","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Tethys RDR"}]}]}]},{"N":"elem","name":"gmd:organisationName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}organisationName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"387","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"388","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Tethys RDR"}]}]}]},{"N":"elem","name":"gmd:contactInfo","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}contactInfo ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"390","C":[{"N":"elem","name":"gmd:CI_Contact","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Contact ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"391","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:address","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}address ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"392","C":[{"N":"elem","name":"gmd:CI_Address","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Address ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"393","C":[{"N":"elem","name":"gmd:electronicMailAddress","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}electronicMailAddress ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"394","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"395","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"repository@geologie.ac.at"}]}]}]}]}]},{"N":"elem","name":"gmd:onlineResource","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}onlineResource ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"399","C":[{"N":"elem","name":"gmd:CI_OnlineResource","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_OnlineResource ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"400","C":[{"N":"elem","name":"gmd:linkage","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}linkage ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"401","C":[{"N":"elem","name":"gmd:URL","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}URL ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"402","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"https://www.tethys.at/"}]}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:role","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}role ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"411","C":[{"N":"elem","name":"gmd:CI_RoleCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_RoleCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"412","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://standards.iso.org/ittf/PubliclyAvailableStandards/ISO_19139_Schemas/resources/Codelist/gmxCodelists.xml#CI_RoleCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"custodian"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"custodian"}]}]}]}]}]}]}]}]}]},{"N":"co","binds":"","id":"15","uniform":"true","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","name":"Q{}pointofcontact_originator","line":"419","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}pointOfContact ","C":[{"N":"elem","name":"gmd:pointOfContact","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}pointOfContact ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","role":"body","line":"420","C":[{"N":"elem","name":"gmd:CI_ResponsibleParty","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_ResponsibleParty ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"421","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:individualName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}individualName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"422","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"423","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Tethys RDR"}]}]}]},{"N":"elem","name":"gmd:organisationName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}organisationName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"425","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"426","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Tethys RDR"}]}]}]},{"N":"elem","name":"gmd:contactInfo","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}contactInfo ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"428","C":[{"N":"elem","name":"gmd:CI_Contact","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Contact ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"429","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:address","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}address ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"430","C":[{"N":"elem","name":"gmd:CI_Address","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Address ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"431","C":[{"N":"elem","name":"gmd:electronicMailAddress","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}electronicMailAddress ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"432","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"433","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"repository@geologie.ac.at"}]}]}]}]}]},{"N":"elem","name":"gmd:onlineResource","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}onlineResource ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"437","C":[{"N":"elem","name":"gmd:CI_OnlineResource","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_OnlineResource ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"438","C":[{"N":"elem","name":"gmd:linkage","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}linkage ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"439","C":[{"N":"elem","name":"gmd:URL","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}URL ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"440","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"https://www.tethys.at/"}]}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:role","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}role ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"449","C":[{"N":"elem","name":"gmd:CI_RoleCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_RoleCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"450","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://standards.iso.org/ittf/PubliclyAvailableStandards/ISO_19139_Schemas/resources/Codelist/gmxCodelists.xml#CI_RoleCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"originator"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"originator"}]}]}]}]}]}]}]}]}]},{"N":"co","binds":"","id":"16","uniform":"true","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","name":"Q{}browseGraphictethys","line":"457","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}graphicOverview ","C":[{"N":"elem","name":"gmd:graphicOverview","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}graphicOverview ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","role":"body","line":"458","C":[{"N":"elem","name":"gmd:MD_BrowseGraphic","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_BrowseGraphic ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"459","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:fileName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}fileName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"460","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"461","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"https://tethys.at/assets/TETHYS-Logo.svg"}]}]}]},{"N":"elem","name":"gmd:fileDescription","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}fileDescription ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"463","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"464","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"TETHYS RDR"}]}]}]}]}]}]}]}]},{"N":"co","binds":"","id":"17","uniform":"false","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","name":"Q{}freekeywords","line":"471","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"? ","C":[{"N":"choose","sType":"? ","role":"body","line":"472","C":[{"N":"docOrder","sType":"*NE","line":"472","C":[{"N":"docOrder","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","C":[{"N":"slash","op":"/","C":[{"N":"slash","op":"/","C":[{"N":"root"},{"N":"axis","name":"descendant-or-self","nodeTest":"*N"}]},{"N":"filter","C":[{"N":"axis","name":"child","nodeTest":"*NE"},{"N":"and","C":[{"N":"compareToString","op":"eq","val":"Subject","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"name","C":[{"N":"dot"}]}]},{"N":"compareToString","op":"eq","val":"Uncontrolled","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"normalize-space","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}Type"}]}]}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:descriptiveKeywords","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}descriptiveKeywords ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"473","C":[{"N":"elem","name":"gmd:MD_Keywords","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_Keywords ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"474","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"forEach","sType":"*NE nQ{http://www.isotc211.org/2005/gmd}keyword ","line":"475","C":[{"N":"filter","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"475","C":[{"N":"axis","name":"child","nodeTest":"*NE"},{"N":"and","C":[{"N":"compareToString","op":"eq","val":"Subject","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"name","C":[{"N":"dot"}]}]},{"N":"compareToString","op":"eq","val":"Uncontrolled","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"normalize-space","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}Type"}]}]}]}]}]}]},{"N":"elem","name":"gmd:keyword","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}keyword ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"476","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"477","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"478","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"478","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}Value"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"elem","name":"gmd:type","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}type ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"482","C":[{"N":"elem","name":"gmd:MD_KeywordTypeCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_KeywordTypeCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","ns":"xml=~ =http://www.isotc211.org/2005/gmd xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"483","C":[{"N":"sequence","ns":"xml=~ =http://www.isotc211.org/2005/gmd xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"https://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_KeywordTypeCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"theme"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"theme"}]}]}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]},{"N":"co","id":"18","uniform":"true","binds":"43","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","name":"Q{}datacenter_keyword","line":"491","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}descriptiveKeywords ","C":[{"N":"elem","name":"gmd:descriptiveKeywords","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}descriptiveKeywords ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","role":"body","line":"492","C":[{"N":"elem","name":"gmd:MD_Keywords","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_Keywords ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"493","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:keyword","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}keyword ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"494","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"495","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"496","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"?ND ","name":"Q{}datacentre","bSlot":"0","role":"select","line":"496"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:type","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}type ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"499","C":[{"N":"elem","name":"gmd:MD_KeywordTypeCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_KeywordTypeCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"500","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.ngdc.noaa.gov/metadata/published/xsd/schema/resources/Codelist/gmxCodelists.xml#MD_KeywordTypeCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"dataCentre"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Tethys RDR"}]}]}]}]}]}]}]}]}]},{"N":"co","binds":"","id":"19","uniform":"true","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","name":"Q{}spatialcoverage","line":"507","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}extent ","C":[{"N":"elem","name":"gmd:extent","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}extent ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","role":"body","line":"508","C":[{"N":"elem","name":"gmd:EX_Extent","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}EX_Extent ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"509","C":[{"N":"choose","sType":"* ","line":"510","C":[{"N":"docOrder","sType":"*NE","line":"510","C":[{"N":"docOrder","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","C":[{"N":"slash","op":"/","C":[{"N":"slash","op":"/","C":[{"N":"root"},{"N":"axis","name":"descendant-or-self","nodeTest":"*N"}]},{"N":"filter","C":[{"N":"axis","name":"child","nodeTest":"*NE"},{"N":"compareToString","op":"eq","val":"Coverage","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"name","C":[{"N":"dot"}]}]}]}]}]}]},{"N":"let","var":"Q{}sLat","slot":"0","sType":"* ","line":"512","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/functions.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"513","C":[{"N":"compareToString","op":"ne","val":"","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"514","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}YMin"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"515","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"fn","sType":"1AO","name":"number","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"515","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}YMin"}]}]}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"518","C":[{"N":"str","role":"select","val":"","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"518"}]}]}]},{"N":"let","var":"Q{}wLong","slot":"1","sType":"* ","line":"522","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/functions.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"523","C":[{"N":"compareToString","op":"ne","val":"","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"524","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}XMin"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"525","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"fn","sType":"1AO","name":"number","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"525","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}XMin"}]}]}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"528","C":[{"N":"str","role":"select","val":"","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"528"}]}]}]},{"N":"let","var":"Q{}nLat","slot":"2","sType":"* ","line":"532","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/functions.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"533","C":[{"N":"compareToString","op":"ne","val":"","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"534","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}YMax"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"535","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"fn","sType":"1AO","name":"number","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"535","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}YMax"}]}]}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"538","C":[{"N":"str","role":"select","val":"","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"538"}]}]}]},{"N":"let","var":"Q{}eLong","slot":"3","sType":"* ","line":"542","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/functions.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"543","C":[{"N":"compareToString","op":"ne","val":"","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"544","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}XMax"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"545","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"fn","sType":"1AO","name":"number","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"545","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}XMax"}]}]}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"548","C":[{"N":"str","role":"select","val":"","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"548"}]}]}]},{"N":"choose","sType":"* ","line":"554","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"554","C":[{"N":"and","C":[{"N":"and","C":[{"N":"compareToString","op":"ne","val":"NaN","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"varRef","name":"Q{}nLat","slot":"2"}]}]}]},{"N":"compareToString","op":"ne","val":"NaN","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"varRef","name":"Q{}wLong","slot":"1"}]}]}]}]},{"N":"compareToString","op":"ne","val":"NaN","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"varRef","name":"Q{}sLat","slot":"0"}]}]}]}]},{"N":"compareToString","op":"ne","val":"NaN","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"varRef","name":"Q{}eLong","slot":"3"}]}]}]}]},{"N":"choose","sType":"*NE ","type":"item()*","line":"556","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"558","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}nLat","slot":"2"}]},{"N":"data","diag":"1|1||gc","C":[{"N":"varRef","name":"Q{}sLat","slot":"0"}]}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}eLong","slot":"3"}]},{"N":"data","diag":"1|1||gc","C":[{"N":"varRef","name":"Q{}wLong","slot":"1"}]}]}]},{"N":"elem","name":"gmd:geographicElement","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}geographicElement ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"559","C":[{"N":"elem","name":"gmd:EX_BoundingPolygon","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}EX_BoundingPolygon ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"560","C":[{"N":"elem","name":"gmd:polygon","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}polygon ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"561","C":[{"N":"elem","name":"gml:Point","sType":"1NE nQ{http://www.opgeris.net/gml/3.2}Point ","nsuri":"http://www.opgeris.net/gml/3.2","namespaces":"","line":"562","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"gml:id","sType":"1NA ","nsuri":"http://www.opgeris.net/gml/3.2","line":"564","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"565","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"generate-id","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"565","C":[{"N":"treat","as":"N","diag":"0|0||generate-id","C":[{"N":"check","card":"?","diag":"0|0||generate-id","C":[{"N":"dot"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"elem","name":"gml:pos","sType":"1NE nQ{http://www.opgeris.net/gml/3.2}pos ","nsuri":"http://www.opgeris.net/gml/3.2","namespaces":"","line":"567","C":[{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"568","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}sLat","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"568"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":" "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"570","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}wLong","slot":"1","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"570"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]}]},{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"579","C":[{"N":"gc","op":">","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}wLong","slot":"1"}]},{"N":"int","val":"0"}]},{"N":"gc","op":"<","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}eLong","slot":"3"}]},{"N":"int","val":"0"}]}]},{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:geographicElement","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}geographicElement ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"581","C":[{"N":"elem","name":"gmd:EX_GeographicBoundingBox","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}EX_GeographicBoundingBox ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"582","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:westBoundLongitude","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}westBoundLongitude ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"583","C":[{"N":"elem","name":"gco:Decimal","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Decimal ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"584","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"585","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}wLong","slot":"1","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"585"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:eastBoundLongitude","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}eastBoundLongitude ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"588","C":[{"N":"elem","name":"gco:Decimal","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Decimal ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"589","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"590","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"int","sType":"1ADI","val":"180","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"590"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:southBoundLatitude","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}southBoundLatitude ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"593","C":[{"N":"elem","name":"gco:Decimal","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Decimal ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"594","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"595","C":[{"N":"vc","op":"lt","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"596","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"varRef","name":"Q{}sLat","slot":"0"}]}]}]},{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"varRef","name":"Q{}nLat","slot":"2"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"597","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}sLat","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"597"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"600","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}nLat","slot":"2","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"600"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"elem","name":"gmd:northBoundLatitude","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}northBoundLatitude ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"605","C":[{"N":"elem","name":"gco:Decimal","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Decimal ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"606","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"607","C":[{"N":"vc","op":"lt","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"608","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"varRef","name":"Q{}sLat","slot":"0"}]}]}]},{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"varRef","name":"Q{}nLat","slot":"2"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"609","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}nLat","slot":"2","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"609"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"612","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}sLat","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"612"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:geographicElement","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}geographicElement ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"619","C":[{"N":"elem","name":"gmd:EX_GeographicBoundingBox","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}EX_GeographicBoundingBox ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"620","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:westBoundLongitude","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}westBoundLongitude ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"621","C":[{"N":"elem","name":"gco:Decimal","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Decimal ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"622","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"623","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"int","sType":"1ADI","val":"-180","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"623"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:eastBoundLongitude","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}eastBoundLongitude ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"626","C":[{"N":"elem","name":"gco:Decimal","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Decimal ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"627","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"628","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}eLong","slot":"3","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"628"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:southBoundLatitude","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}southBoundLatitude ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"631","C":[{"N":"elem","name":"gco:Decimal","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Decimal ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"632","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"633","C":[{"N":"vc","op":"lt","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"634","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"varRef","name":"Q{}sLat","slot":"0"}]}]}]},{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"varRef","name":"Q{}nLat","slot":"2"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"635","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}sLat","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"635"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"638","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}nLat","slot":"2","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"638"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"elem","name":"gmd:northBoundLatitude","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}northBoundLatitude ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"643","C":[{"N":"elem","name":"gco:Decimal","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Decimal ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"644","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"645","C":[{"N":"vc","op":"lt","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"646","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"varRef","name":"Q{}sLat","slot":"0"}]}]}]},{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"varRef","name":"Q{}nLat","slot":"2"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"647","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}nLat","slot":"2","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"647"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"650","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}sLat","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"650"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]}]},{"N":"true"},{"N":"elem","name":"gmd:geographicElement","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}geographicElement ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"659","C":[{"N":"elem","name":"gmd:EX_GeographicBoundingBox","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}EX_GeographicBoundingBox ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"660","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:extentTypeCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}extentTypeCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"661","C":[{"N":"elem","name":"gco:Boolean","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Boolean ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"662","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"true"}]}]}]},{"N":"elem","name":"gmd:westBoundLongitude","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}westBoundLongitude ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"664","C":[{"N":"elem","name":"gco:Decimal","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Decimal ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"665","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"666","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}wLong","slot":"1","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"666"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:eastBoundLongitude","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}eastBoundLongitude ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"669","C":[{"N":"elem","name":"gco:Decimal","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Decimal ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"670","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"671","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}eLong","slot":"3","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"671"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:southBoundLatitude","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}southBoundLatitude ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"674","C":[{"N":"elem","name":"gco:Decimal","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Decimal ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"675","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"676","C":[{"N":"vc","op":"lt","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"677","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"varRef","name":"Q{}sLat","slot":"0"}]}]}]},{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"varRef","name":"Q{}nLat","slot":"2"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"678","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}sLat","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"678"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"681","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}nLat","slot":"2","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"681"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"elem","name":"gmd:northBoundLatitude","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}northBoundLatitude ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"686","C":[{"N":"elem","name":"gco:Decimal","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Decimal ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"687","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"688","C":[{"N":"vc","op":"lt","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"689","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"varRef","name":"Q{}sLat","slot":"0"}]}]}]},{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"varRef","name":"Q{}nLat","slot":"2"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"690","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}nLat","slot":"2","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"690"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"693","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}sLat","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"693"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]}]},{"N":"co","binds":"","id":"20","uniform":"true","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","name":"Q{}datacite_identifier","line":"709","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"* ","C":[{"N":"forEach","sType":"* ","role":"body","line":"710","C":[{"N":"filter","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"710","C":[{"N":"axis","name":"child","nodeTest":"*NE"},{"N":"compareToString","op":"eq","val":"Identifier","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"name","C":[{"N":"dot"}]}]}]},{"N":"let","var":"Q{}identifier","slot":"0","sType":"* ","line":"711","C":[{"N":"dot","sType":"1NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"711"},{"N":"choose","sType":"? ","line":"712","C":[{"N":"or","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"712","C":[{"N":"or","C":[{"N":"fn","name":"starts-with","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||starts-with","C":[{"N":"check","card":"?","diag":"0|0||starts-with","C":[{"N":"data","diag":"0|0||starts-with","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}identifier","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]}]},{"N":"str","val":"doi:"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}identifier","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"str","val":"Doi"}]}]},{"N":"fn","name":"starts-with","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||starts-with","C":[{"N":"check","card":"?","diag":"0|0||starts-with","C":[{"N":"data","diag":"0|0||starts-with","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}identifier","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]}]},{"N":"str","val":"http://"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]}]},{"N":"elem","name":"gmd:onLine","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}onLine ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"713","C":[{"N":"elem","name":"gmd:CI_OnlineResource","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_OnlineResource ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"714","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:linkage","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}linkage ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"715","C":[{"N":"elem","name":"gmd:URL","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}URL ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"716","C":[{"N":"choose","sType":"? ","type":"item()*","line":"717","C":[{"N":"fn","name":"starts-with","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"718","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||starts-with","C":[{"N":"check","card":"?","diag":"0|0||starts-with","C":[{"N":"data","diag":"0|0||starts-with","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}identifier","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]}]},{"N":"str","val":"doi:"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"720","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"720","C":[{"N":"str","val":"http://dx.doi.org/"},{"N":"fn","name":"substring-after","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||substring-after","C":[{"N":"check","card":"?","diag":"0|0||substring-after","C":[{"N":"data","diag":"0|0||substring-after","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}identifier","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]}]},{"N":"str","val":"doi:"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"722","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}identifier","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"str","val":"Doi"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"723","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"723","C":[{"N":"str","val":"http://dx.doi.org/"},{"N":"fn","name":"normalize-space","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"data","diag":"0|0||normalize-space","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}identifier","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"fn","name":"starts-with","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"725","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||starts-with","C":[{"N":"check","card":"?","diag":"0|0||starts-with","C":[{"N":"data","diag":"0|0||starts-with","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}identifier","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]}]},{"N":"str","val":"http://"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"726","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"726","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"data","diag":"0|0||normalize-space","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}identifier","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]},{"N":"elem","name":"gmd:protocol","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}protocol ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"731","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"732","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"WWW:LINK-1.0-http--link"}]}]}]},{"N":"elem","name":"gmd:name","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}name ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"734","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"735","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Landing Page"}]}]}]},{"N":"elem","name":"gmd:description","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}description ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"737","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"738","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"740","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"740","C":[{"N":"fn","name":"string","C":[{"N":"str","val":"Link to DOI landing page or data facility landing page if no DOI is assigned."}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:function","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}function ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"743","C":[{"N":"elem","name":"gmd:CI_OnLineFunctionCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_OnLineFunctionCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"744","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_OnLineFunctionCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"information"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"information"}]}]}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]}]},{"N":"co","binds":"","id":"21","uniform":"true","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","name":"Q{}alternate_identifier","line":"753","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"? ","C":[{"N":"choose","sType":"? ","role":"body","line":"754","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"754","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}landingpage"},{"N":"str","val":""}]},{"N":"fn","name":"starts-with","C":[{"N":"fn","name":"normalize-space","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}landingpage"}]}]}]},{"N":"str","val":"http"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]}]},{"N":"elem","name":"gmd:onLine","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}onLine ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"755","C":[{"N":"elem","name":"gmd:CI_OnlineResource","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_OnlineResource ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"756","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:linkage","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}linkage ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"757","C":[{"N":"elem","name":"gmd:URL","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}URL ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"758","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"759","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"759","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}landingpage"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:protocol","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}protocol ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"762","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"763","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"WWW:LINK-1.0-http--link"}]}]}]},{"N":"elem","name":"gmd:name","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}name ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"765","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"766","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"767","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"767","C":[{"N":"str","val":"url"}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:description","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}description ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"770","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"771","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Link to a web page related to the resource."}]}]}]},{"N":"elem","name":"gmd:function","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}function ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"773","C":[{"N":"elem","name":"gmd:CI_OnLineFunctionCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_OnLineFunctionCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"774","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_OnLineFunctionCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"information"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"information"}]}]}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]},{"N":"co","binds":"","id":"22","uniform":"false","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","name":"Q{}data_quality","line":"782","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}dataQualityInfo ","C":[{"N":"elem","name":"gmd:dataQualityInfo","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}dataQualityInfo ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","role":"body","line":"783","C":[{"N":"elem","name":"gmd:DQ_DataQuality","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}DQ_DataQuality ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"784","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:scope","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}scope ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"785","C":[{"N":"elem","name":"gmd:DQ_Scope","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}DQ_Scope ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"786","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:level","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}level ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"787","C":[{"N":"elem","name":"gmd:MD_ScopeCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_ScopeCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","ns":"xml=~ =http://www.isotc211.org/2005/gmd xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"788","C":[{"N":"sequence","ns":"xml=~ =http://www.isotc211.org/2005/gmd xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","sType":"*NA ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"dataset"}]}]}]}]},{"N":"elem","name":"gmd:levelDescription","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}levelDescription ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"790","C":[{"N":"att","name":"gco:nilReason","nsuri":"http://www.isotc211.org/2005/gco","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"inapplicable"}]}]}]}]}]},{"N":"elem","name":"gmd:report","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}report ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"793","C":[{"N":"elem","name":"gmd:DQ_DomainConsistency","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}DQ_DomainConsistency ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"794","C":[{"N":"elem","name":"gmd:result","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}result ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"795","C":[{"N":"elem","name":"gmd:DQ_ConformanceResult","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}DQ_ConformanceResult ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"796","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:specification","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}specification ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"797","C":[{"N":"elem","name":"gmd:CI_Citation","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Citation ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"798","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:title","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}title ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"799","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"800","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"VERORDNUNG (EG) Nr. 1089/2010 DER KOMMISSION vom 23. November 2010 zur Durchführung der Richtlinie 2007/2/EG des Europäischen Parlaments und des Rates hinsichtlich der Interoperabilität von Geodatensätzen und -diensten"}]}]}]},{"N":"elem","name":"gmd:date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"802","C":[{"N":"elem","name":"gmd:CI_Date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"803","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"804","C":[{"N":"elem","name":"gco:Date","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Date ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"805","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"2010-12-08"}]}]}]},{"N":"elem","name":"gmd:dateType","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}dateType ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"807","C":[{"N":"elem","name":"gmd:CI_DateTypeCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_DateTypeCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","ns":"xml=~ =http://www.isotc211.org/2005/gmd xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"808","C":[{"N":"sequence","ns":"xml=~ =http://www.isotc211.org/2005/gmd xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","sType":"*NA ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"https://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"publication"}]}]}]}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:explanation","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}explanation ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"814","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"815","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Datenstruktur entspricht INSPIRE"}]}]}]},{"N":"elem","name":"gmd:pass","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}pass ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"817","C":[{"N":"elem","name":"gco:Boolean","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Boolean ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"818","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"true"}]}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:lineage","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}lineage ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"824","C":[{"N":"elem","name":"gmd:LI_Lineage","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}LI_Lineage ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"825","C":[{"N":"elem","name":"gmd:statement","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}statement ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"826","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"827","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Digitalisierung"}]}]}]}]}]}]}]}]}]}]},{"N":"co","id":"23","uniform":"true","binds":"52 53","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","name":"Q{}distributor","line":"838","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}distributor ","C":[{"N":"elem","name":"gmd:distributor","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}distributor ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","role":"body","line":"839","C":[{"N":"elem","name":"gmd:MD_Distributor","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_Distributor ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"840","C":[{"N":"elem","name":"gmd:distributorContact","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}distributorContact ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"841","C":[{"N":"elem","name":"gmd:CI_ResponsibleParty","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_ResponsibleParty ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"842","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:organisationName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}organisationName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"843","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"844","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"845","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"gVarRef","name":"Q{}distributorOrganisation","bSlot":"0","sType":"1AS","role":"select","line":"845"},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:contactInfo","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}contactInfo ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"848","C":[{"N":"elem","name":"gmd:CI_Contact","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Contact ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"849","C":[{"N":"elem","name":"gmd:address","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}address ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"850","C":[{"N":"elem","name":"gmd:CI_Address","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Address ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"851","C":[{"N":"elem","name":"gmd:electronicMailAddress","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}electronicMailAddress ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"852","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"853","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"854","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"gVarRef","name":"Q{}distributorContactEmail","bSlot":"1","sType":"1AS","role":"select","line":"854"},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:role","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}role ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"861","C":[{"N":"elem","name":"gmd:CI_RoleCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_RoleCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"862","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"distributor"}]},{"N":"att","name":"codeSpace","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"ISOTC211/19115"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"distributor"}]}]}]}]}]}]}]}]}]}]}]},{"N":"co","id":"24","uniform":"true","binds":"54 55 56","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","name":"Q{}metadata_maintenance","line":"874","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}metadataMaintenance ","C":[{"N":"elem","name":"gmd:metadataMaintenance","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}metadataMaintenance ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","role":"body","line":"875","C":[{"N":"elem","name":"gmd:MD_MaintenanceInformation","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_MaintenanceInformation ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"876","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:maintenanceAndUpdateFrequency","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}maintenanceAndUpdateFrequency ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"877","C":[{"N":"elem","name":"gmd:MD_MaintenanceFrequencyCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_MaintenanceFrequencyCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"878","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://schemas.opengis.net/iso/19139/20070417/resources/codelist/gmxCodelists.xml#MD_MaintenanceFrequencyCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"asNeeded"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"asNeeded"}]}]}]}]},{"N":"elem","name":"gmd:contact","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}contact ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"880","C":[{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"? ","line":"881","C":[{"N":"compareToString","op":"ne","val":"","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"881","C":[{"N":"gVarRef","name":"Q{}maintenanceContactID","bSlot":"0"}]},{"N":"att","name":"xlink:href","sType":"1NA ","nsuri":"http://www.w3.org/1999/xlink","line":"882","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"883","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"gVarRef","name":"Q{}maintenanceContactID","bSlot":"0","sType":"1AS","role":"select","line":"883"},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"elem","name":"gmd:CI_ResponsibleParty","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_ResponsibleParty ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"886","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:individualName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}individualName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"887","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"888","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"889","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"gVarRef","name":"Q{}maintenanceContactName","bSlot":"1","sType":"1AS","role":"select","line":"889"},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:contactInfo","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}contactInfo ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"892","C":[{"N":"elem","name":"gmd:CI_Contact","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Contact ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"893","C":[{"N":"elem","name":"gmd:address","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}address ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"894","C":[{"N":"elem","name":"gmd:CI_Address","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Address ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"895","C":[{"N":"elem","name":"gmd:electronicMailAddress","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}electronicMailAddress ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"896","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"897","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"898","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"gVarRef","name":"Q{}maintenanceContactEmail","bSlot":"2","sType":"1AS","role":"select","line":"898"},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:role","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}role ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"905","C":[{"N":"elem","name":"gmd:CI_RoleCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_RoleCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"906","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"processor"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"processor"}]}]}]}]}]}]}]}]}]}]}]}]}]},{"N":"co","binds":"","id":"25","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}responseDate","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"26","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}unixTimestamp","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"27","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}email","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"28","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}earliestDatestamp","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"29","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}repositoryName","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"30","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}repIdentifier","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"31","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}doiPrefix","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"32","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}sampleIdentifier","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"33","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}dateDelete","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"34","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}totalIds","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"35","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}res","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"36","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}cursor","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"37","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}oai_verb","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"38","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}oai_metadataPrefix","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"39","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}oai_error_code","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"40","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}oai_error_message","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"41","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}baseURL","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"42","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}fileIdentifierPrefix","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","module":"oai_2_iso19139.xslt","slots":"200","sType":"1AS","baseUri":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"41","C":[{"N":"str","val":"at.tethys.dataset"}]}]}]},{"N":"co","binds":"","id":"43","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}datacentre","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","module":"oai_2_iso19139.xslt","slots":"200","sType":"?ND ","baseUri":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"43","C":[{"N":"compareToInt","op":"gt","val":"0","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"44","C":[{"N":"fn","name":"string-length","C":[{"N":"fn","name":"normalize-space","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}CreatingCorporation"}]}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"45","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"45","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}CreatingCorporation"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"48","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"48","C":[{"N":"str","val":"Tethys RDR"}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]},{"N":"co","binds":"","id":"44","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}nl","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","module":"oai_2_iso19139.xslt","slots":"200","sType":"1AS","baseUri":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"661","C":[{"N":"str","val":"\n"}]}]}]},{"N":"co","binds":"","id":"45","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}ascii","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","module":"datasetxml2oai-pmh.xslt","slots":"200","sType":"?ND ","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","role":"select","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":" !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~"}]}]}]}]},{"N":"co","binds":"","id":"46","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}latin1","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","module":"datasetxml2oai-pmh.xslt","slots":"200","sType":"?ND ","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","role":"select","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":" ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ"}]}]}]}]},{"N":"co","binds":"","id":"47","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}safe","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","module":"datasetxml2oai-pmh.xslt","slots":"200","sType":"?ND ","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","role":"select","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"!'()*-.0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz~"}]}]}]}]},{"N":"co","binds":"","id":"48","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}hex","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","module":"datasetxml2oai-pmh.xslt","slots":"200","sType":"?ND ","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","role":"select","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"0123456789ABCDEF"}]}]}]}]},{"N":"co","binds":"","id":"49","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}resourcetype","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","module":"functions.xslt","slots":"200","sType":"?ND ","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/functions.xslt","role":"select","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Dataset"}]}]}]}]},{"N":"co","id":"50","vis":"PUBLIC","ex:uniform":"true","binds":"49","C":[{"N":"globalVariable","name":"Q{}MDScopecode","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","module":"functions.xslt","slots":"200","sType":"?ND ","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/functions.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"19","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"20","C":[{"N":"atomSing","diag":"1|0||gc","card":"?","C":[{"N":"gVarRef","name":"Q{}resourcetype","bSlot":"0"}]},{"N":"str","val":"Dataset"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"dataset"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"21","C":[{"N":"atomSing","diag":"1|0||gc","card":"?","C":[{"N":"gVarRef","name":"Q{}resourcetype","bSlot":"0"}]},{"N":"str","val":"Software"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"software"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"22","C":[{"N":"atomSing","diag":"1|0||gc","card":"?","C":[{"N":"gVarRef","name":"Q{}resourcetype","bSlot":"0"}]},{"N":"str","val":"Service"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"service"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"23","C":[{"N":"atomSing","diag":"1|0||gc","card":"?","C":[{"N":"gVarRef","name":"Q{}resourcetype","bSlot":"0"}]},{"N":"str","val":"Model"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"model"}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"25","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"?ND ","name":"Q{}resourcetype","bSlot":"0","role":"select","line":"25"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]},{"N":"co","id":"51","vis":"PUBLIC","ex:uniform":"true","binds":"49","C":[{"N":"globalVariable","name":"Q{}MDScopelist","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","module":"functions.xslt","slots":"200","sType":"?ND ","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/functions.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"30","C":[{"N":"or","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"31","C":[{"N":"or","C":[{"N":"or","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"atomSing","diag":"1|0||gc","card":"?","C":[{"N":"gVarRef","name":"Q{}resourcetype","bSlot":"0"}]},{"N":"str","val":"Dataset"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"atomSing","diag":"1|0||gc","card":"?","C":[{"N":"gVarRef","name":"Q{}resourcetype","bSlot":"0"}]},{"N":"str","val":"Software"}]}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"atomSing","diag":"1|0||gc","card":"?","C":[{"N":"gVarRef","name":"Q{}resourcetype","bSlot":"0"}]},{"N":"str","val":"Service"}]}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"atomSing","diag":"1|0||gc","card":"?","C":[{"N":"gVarRef","name":"Q{}resourcetype","bSlot":"0"}]},{"N":"str","val":"Model"}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_ScopeCode"}]},{"N":"true"},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"http://datacite.org/schema/kernel-4"}]}]}]}]}]},{"N":"co","binds":"","id":"52","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}distributorOrganisation","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","module":"functions.xslt","slots":"200","sType":"1AS","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"836","C":[{"N":"str","val":"Geological Survey of Austria"}]}]}]},{"N":"co","binds":"","id":"53","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}distributorContactEmail","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","module":"functions.xslt","slots":"200","sType":"1AS","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"837","C":[{"N":"str","val":"repository@geologie.ac.at"}]}]}]},{"N":"co","binds":"","id":"54","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}maintenanceContactID","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","module":"functions.xslt","slots":"200","sType":"1AS","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"871","C":[{"N":"str","val":"https://www.re3data.org/repository/r3d100013400"}]}]}]},{"N":"co","binds":"","id":"55","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}maintenanceContactName","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","module":"functions.xslt","slots":"200","sType":"1AS","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"872","C":[{"N":"str","val":"Tethys RDR"}]}]}]},{"N":"co","binds":"","id":"56","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}maintenanceContactEmail","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","module":"functions.xslt","slots":"200","sType":"1AS","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"873","C":[{"N":"str","val":"repository@geologie.ac.at"}]}]}]},{"N":"co","id":"57","binds":"25 37 38 41 39 40 65 60 63 61 64 62 7","C":[{"N":"mode","onNo":"SC","flags":"","patternSlots":"0","prec":"","C":[{"N":"templateRule","rank":"0","prec":"1","seq":"22","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"93","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"/root","prio":"0.5","matches":"NE u[NE nQ{}root,NE nQ{http://www.w3.org/1999/xhtml}root]","C":[{"N":"p.withUpper","role":"match","axis":"parent","sType":"1NE u[NE nQ{}root,NE nQ{http://www.w3.org/1999/xhtml}root]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","C":[{"N":"p.nodeTest","test":"NE u[NE nQ{}root,NE nQ{http://www.w3.org/1999/xhtml}root]"},{"N":"p.nodeTest","test":"ND"}]},{"N":"sequence","role":"action","sType":"*N ","C":[{"N":"procInst","sType":"1NP ","C":[{"N":"str","sType":"1AS ","val":"xml-stylesheet"},{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"type=\"text/xsl\" href=\"assets2/oai2_style.xslt\""}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"elem","name":"OAI-PMH","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}OAI-PMH ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"99","C":[{"N":"sequence","sType":"* ","C":[{"N":"att","name":"xsi:schemaLocation","nsuri":"http://www.w3.org/2001/XMLSchema-instance","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.openarchives.org/OAI/2.0/ http://www.openarchives.org/OAI/2.0/OAI-PMH.xsd"}]},{"N":"elem","name":"responseDate","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}responseDate ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"100","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"101","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}responseDate","bSlot":"0","role":"select","line":"101"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"request","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}request ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"103","C":[{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"? ","line":"104","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"104","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_verb","bSlot":"1"}]},{"N":"str","val":""}]},{"N":"att","name":"verb","sType":"1NA ","line":"105","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"106","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}oai_verb","bSlot":"1","role":"select","line":"106"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","line":"109","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"109","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_metadataPrefix","bSlot":"2"}]},{"N":"str","val":""}]},{"N":"att","name":"metadataPrefix","sType":"1NA ","line":"110","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"111","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}oai_metadataPrefix","bSlot":"2","role":"select","line":"111"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"114","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}baseURL","bSlot":"3","role":"select","line":"114"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"choose","sType":"? ","line":"116","C":[{"N":"compareToString","op":"ne","val":"","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"116","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"gVarRef","name":"Q{}oai_error_code","bSlot":"4"}]}]}]},{"N":"elem","name":"error","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}error ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"117","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"code","sType":"1NA ","line":"118","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"119","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"119","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"gVarRef","name":"Q{}oai_error_code","bSlot":"4"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"121","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}oai_error_message","bSlot":"5","role":"select","line":"121"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"* ","type":"item()*","line":"126","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"127","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_verb","bSlot":"1"}]},{"N":"str","val":"GetRecord"}]},{"N":"applyT","sType":"* ","line":"128","mode":"Q{}GetRecord","bSlot":"6","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","sType":"*NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"128"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"130","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_verb","bSlot":"1"}]},{"N":"str","val":"Identify"}]},{"N":"applyT","sType":"* ","line":"131","mode":"Q{}Identify","bSlot":"7","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","sType":"*NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"131"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"133","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_verb","bSlot":"1"}]},{"N":"str","val":"ListIdentifiers"}]},{"N":"applyT","sType":"* ","line":"134","mode":"Q{}ListIdentifiers","bSlot":"8","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","sType":"*NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"134"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"136","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_verb","bSlot":"1"}]},{"N":"str","val":"ListMetadataFormats"}]},{"N":"applyT","sType":"* ","line":"137","mode":"Q{}ListMetadataFormats","bSlot":"9","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","sType":"*NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"137"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"139","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_verb","bSlot":"1"}]},{"N":"str","val":"ListRecords"}]},{"N":"applyT","sType":"* ","line":"140","mode":"Q{}ListRecords","bSlot":"10","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","sType":"*NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"140"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"142","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_verb","bSlot":"1"}]},{"N":"str","val":"ListSets"}]},{"N":"applyT","sType":"* ","line":"143","mode":"Q{}ListSets","bSlot":"11","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","sType":"*NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"143"}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]}]},{"N":"templateRule","rank":"1","prec":"1","seq":"31","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"404","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"SetSpec","prio":"0","matches":"NE u[NE nQ{}SetSpec,NE nQ{http://www.w3.org/1999/xhtml}SetSpec]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}SetSpec,NE nQ{http://www.w3.org/1999/xhtml}SetSpec]","sType":"1NE u[NE nQ{}SetSpec,NE nQ{http://www.w3.org/1999/xhtml}SetSpec]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"setSpec","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}setSpec ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"405","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"406","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"406"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"templateRule","rank":"2","prec":"1","seq":"30","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"317","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Rdr_Dataset","prio":"0","matches":"NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","sType":"1NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"choose","sType":"* ","type":"item()*","role":"action","line":"318","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"319","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_verb","bSlot":"1"}]},{"N":"str","val":"ListIdentifiers"}]},{"N":"callT","bSlot":"12","sType":"* ","name":"Q{}Rdr_Dataset_Data","line":"320"},{"N":"true"},{"N":"elem","name":"record","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}record ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"323","C":[{"N":"callT","bSlot":"12","sType":"* ","name":"Q{}Rdr_Dataset_Data","line":"324"}]}]}]},{"N":"templateRule","rank":"3","prec":"1","seq":"26","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"256","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Rdr_Sets","prio":"0","matches":"NE u[NE nQ{}Rdr_Sets,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Sets]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Rdr_Sets,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Sets]","sType":"1NE u[NE nQ{}Rdr_Sets,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Sets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"set","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}set ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"257","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"setSpec","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}setSpec ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"258","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"259","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Type","name":"attribute","nodeTest":"*NA nQ{}Type","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"259"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"setName","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}setName ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"261","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"262","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}TypeName","name":"attribute","nodeTest":"*NA nQ{}TypeName","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"262"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]},{"N":"co","id":"58","binds":"1 58 30 0 2","C":[{"N":"mode","onNo":"TC","flags":"","patternSlots":"0","name":"Q{}oai_datacite","prec":"","C":[{"N":"templateRule","rank":"0","prec":"1","seq":"12","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","line":"395","module":"oai_datacite.xslt","expand-text":"false","match":"File/@MimeType","prio":"0.5","matches":"NA nQ{}MimeType","C":[{"N":"p.withUpper","role":"match","axis":"parent","sType":"1NA nQ{}MimeType","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","C":[{"N":"p.nodeTest","test":"NA nQ{}MimeType"},{"N":"p.nodeTest","test":"NE u[NE nQ{}File,NE nQ{http://www.w3.org/1999/xhtml}File]"}]},{"N":"elem","name":"format","sType":"1NE nQ{http://datacite.org/schema/kernel-4}format ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"396","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"397","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"398","C":[{"N":"atomSing","diag":"1|0||gc","card":"?","C":[{"N":"dot"}]},{"N":"str","val":"application/x-sqlite3"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"application/geopackage+sqlite3"}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"402","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"dot","sType":"1NA nQ{}MimeType","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"402"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"1","prec":"1","seq":"13","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","line":"409","module":"oai_datacite.xslt","expand-text":"false","match":"Licence","prio":"0","matches":"NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","sType":"1NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"sequence","role":"action","sType":"* ","C":[{"N":"elem","name":"rights","sType":"1NE nQ{http://datacite.org/schema/kernel-4}rights ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"410","C":[{"N":"sequence","sType":"* ","C":[{"N":"att","name":"xml:lang","sType":"1NA ","nsuri":"http://www.w3.org/XML/1998/namespace","line":"411","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"412","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Language","name":"attribute","nodeTest":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"412"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"choose","sType":"? ","line":"414","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"414","C":[{"N":"attVal","name":"Q{}LinkLicence"},{"N":"str","val":""}]},{"N":"att","name":"rightsURI","sType":"1NA ","line":"415","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"416","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}LinkLicence","name":"attribute","nodeTest":"*NA nQ{}LinkLicence","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"416"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"att","name":"schemeURI","sType":"1NA ","line":"419","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"https://spdx.org/licenses/"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"att","name":"rightsIdentifierScheme","sType":"1NA ","line":"422","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"SPDX"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"att","name":"rightsIdentifier","sType":"1NA ","line":"425","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"426","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Name","name":"attribute","nodeTest":"*NA nQ{}Name","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"426"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"428","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}NameLong","name":"attribute","nodeTest":"*NA nQ{}NameLong","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"428"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"choose","sType":"? ","line":"430","C":[{"N":"or","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"430","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Name"},{"N":"str","val":"CC-BY-4.0"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Name"},{"N":"str","val":"CC-BY-SA-4.0"}]}]},{"N":"elem","name":"rights","sType":"1NE nQ{http://datacite.org/schema/kernel-4}rights ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"431","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"rightsURI","sType":"1NA ","line":"432","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"info:eu-repo/semantics/openAccess"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Open Access"}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]},{"N":"templateRule","rank":"2","prec":"1","seq":"11","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","line":"352","module":"oai_datacite.xslt","expand-text":"false","match":"PersonAuthor","prio":"0","matches":"NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","sType":"1NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"elem","name":"creator","sType":"1NE nQ{http://datacite.org/schema/kernel-4}creator ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"353","C":[{"N":"sequence","sType":"* ","C":[{"N":"elem","name":"creatorName","sType":"1NE nQ{http://datacite.org/schema/kernel-4}creatorName ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"354","C":[{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"? ","line":"355","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"355","C":[{"N":"attVal","name":"Q{}NameType"},{"N":"str","val":""}]},{"N":"att","name":"nameType","sType":"1NA ","line":"356","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"357","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}NameType","name":"attribute","nodeTest":"*NA nQ{}NameType","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"357"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"360","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}LastName","name":"attribute","nodeTest":"*NA nQ{}LastName","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"360"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"choose","sType":"? ","line":"361","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"361","C":[{"N":"attVal","name":"Q{}FirstName"},{"N":"str","val":""}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":", "}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"364","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}FirstName","name":"attribute","nodeTest":"*NA nQ{}FirstName","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"364"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"choose","sType":"* ","line":"365","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"365","C":[{"N":"attVal","name":"Q{}AcademicTitle"},{"N":"str","val":""}]},{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":" ("}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"367","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}AcademicTitle","name":"attribute","nodeTest":"*NA nQ{}AcademicTitle","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"367"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":")"}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]},{"N":"choose","sType":"* ","line":"372","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"372","C":[{"N":"attVal","name":"Q{}NameType"},{"N":"str","val":"Personal"}]},{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"givenName","sType":"1NE nQ{http://datacite.org/schema/kernel-4}givenName ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"373","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"374","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}FirstName","name":"attribute","nodeTest":"*NA nQ{}FirstName","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"374"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"familyName","sType":"1NE nQ{http://datacite.org/schema/kernel-4}familyName ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"376","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"377","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}LastName","name":"attribute","nodeTest":"*NA nQ{}LastName","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"377"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"affiliation","sType":"1NE nQ{http://datacite.org/schema/kernel-4}affiliation ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"379","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"GBA"}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","line":"382","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"382","C":[{"N":"attVal","name":"Q{}IdentifierOrcid"},{"N":"str","val":""}]},{"N":"elem","name":"nameIdentifier","sType":"1NE nQ{http://datacite.org/schema/kernel-4}nameIdentifier ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"383","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"schemeURI","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://orcid.org/"}]},{"N":"att","name":"nameIdentifierScheme","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"ORCID"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"384","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}IdentifierOrcid","name":"attribute","nodeTest":"*NA nQ{}IdentifierOrcid","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"384"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"templateRule","rank":"3","prec":"1","seq":"10","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","line":"333","module":"oai_datacite.xslt","expand-text":"false","match":"PersonContributor","prio":"0","matches":"NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","sType":"1NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"elem","name":"contributor","sType":"1NE nQ{http://datacite.org/schema/kernel-4}contributor ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"334","C":[{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"? ","line":"335","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"335","C":[{"N":"attVal","name":"Q{}ContributorType"},{"N":"str","val":""}]},{"N":"att","name":"contributorType","sType":"1NA ","line":"336","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"337","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}ContributorType","name":"attribute","nodeTest":"*NA nQ{}ContributorType","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"337"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"elem","name":"contributorName","sType":"1NE nQ{http://datacite.org/schema/kernel-4}contributorName ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"340","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"346","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"346","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"attVal","name":"Q{}FirstName"}]},{"N":"str","val":" "},{"N":"check","card":"?","diag":"0|2||concat","C":[{"N":"attVal","name":"Q{}LastName"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]},{"N":"templateRule","rank":"4","prec":"1","seq":"9","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","line":"320","module":"oai_datacite.xslt","expand-text":"false","match":"Reference","prio":"0","matches":"NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","sType":"1NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"elem","name":"relatedIdentifier","sType":"1NE nQ{http://datacite.org/schema/kernel-4}relatedIdentifier ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"321","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"relatedIdentifierType","sType":"1NA ","line":"322","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"323","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Type","name":"attribute","nodeTest":"*NA nQ{}Type","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"323"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"att","name":"relationType","sType":"1NA ","line":"325","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"326","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Relation","name":"attribute","nodeTest":"*NA nQ{}Relation","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"326"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"328","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"328"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"5","prec":"1","seq":"8","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","line":"309","module":"oai_datacite.xslt","expand-text":"false","match":"AlternateIdentifier","prio":"0","matches":"NE u[NE nQ{}AlternateIdentifier,NE nQ{http://www.w3.org/1999/xhtml}AlternateIdentifier]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}AlternateIdentifier,NE nQ{http://www.w3.org/1999/xhtml}AlternateIdentifier]","sType":"1NE u[NE nQ{}AlternateIdentifier,NE nQ{http://www.w3.org/1999/xhtml}AlternateIdentifier]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"elem","name":"alternateIdentifier","sType":"1NE nQ{http://datacite.org/schema/kernel-4}alternateIdentifier ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"310","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"alternateIdentifierType","sType":"1NA ","line":"311","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"url"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"315","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}landingpage","name":"attribute","nodeTest":"*NA nQ{}landingpage","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"315"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"6","prec":"1","seq":"7","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","line":"297","module":"oai_datacite.xslt","expand-text":"false","match":"Subject","prio":"0","matches":"NE u[NE nQ{}Subject,NE nQ{http://www.w3.org/1999/xhtml}Subject]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Subject,NE nQ{http://www.w3.org/1999/xhtml}Subject]","sType":"1NE u[NE nQ{}Subject,NE nQ{http://www.w3.org/1999/xhtml}Subject]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"elem","name":"subject","sType":"1NE nQ{http://datacite.org/schema/kernel-4}subject ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"298","C":[{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"? ","line":"299","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"299","C":[{"N":"attVal","name":"Q{}Language"},{"N":"str","val":""}]},{"N":"att","name":"xml:lang","sType":"1NA ","nsuri":"http://www.w3.org/XML/1998/namespace","line":"300","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"301","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Language","name":"attribute","nodeTest":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"301"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"304","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"304"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"7","prec":"1","seq":"6","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","line":"271","module":"oai_datacite.xslt","expand-text":"false","match":"TitleAdditional","prio":"0","matches":"NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","sType":"1NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"elem","name":"title","sType":"1NE nQ{http://datacite.org/schema/kernel-4}title ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"272","C":[{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"? ","line":"273","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"273","C":[{"N":"attVal","name":"Q{}Language"},{"N":"str","val":""}]},{"N":"att","name":"xml:lang","sType":"1NA ","nsuri":"http://www.w3.org/XML/1998/namespace","line":"274","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"275","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Language","name":"attribute","nodeTest":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"275"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","type":"item()*","line":"278","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"279","C":[{"N":"and","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":""}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Sub"}]}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Main"}]}]},{"N":"att","name":"titleType","sType":"1NA ","line":"280","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"281","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Type","name":"attribute","nodeTest":"*NA nQ{}Type","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"281"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Title"}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"285","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Sub"}]},{"N":"att","name":"titleType","sType":"1NA ","line":"286","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"287","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Type","name":"attribute","nodeTest":"*NA nQ{}Type","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"287"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"title"}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"292","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"292"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"8","prec":"1","seq":"5","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","line":"255","module":"oai_datacite.xslt","expand-text":"false","match":"TitleMain","prio":"0","matches":"NE u[NE nQ{}TitleMain,NE nQ{http://www.w3.org/1999/xhtml}TitleMain]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}TitleMain,NE nQ{http://www.w3.org/1999/xhtml}TitleMain]","sType":"1NE u[NE nQ{}TitleMain,NE nQ{http://www.w3.org/1999/xhtml}TitleMain]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"elem","name":"title","sType":"1NE nQ{http://datacite.org/schema/kernel-4}title ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"256","C":[{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"? ","line":"257","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"257","C":[{"N":"attVal","name":"Q{}Language"},{"N":"str","val":""}]},{"N":"att","name":"xml:lang","sType":"1NA ","nsuri":"http://www.w3.org/XML/1998/namespace","line":"258","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"259","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Language","name":"attribute","nodeTest":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"259"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","line":"262","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"262","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":""}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Main"}]}]},{"N":"att","name":"titleType","sType":"1NA ","line":"263","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"264","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Type","name":"attribute","nodeTest":"*NA nQ{}Type","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"264"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"267","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"267"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"9","prec":"1","seq":"4","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","line":"245","module":"oai_datacite.xslt","expand-text":"false","match":"Identifier","prio":"0","matches":"NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","sType":"1NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"elem","name":"identifier","sType":"1NE nQ{http://datacite.org/schema/kernel-4}identifier ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"246","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"identifierType","sType":"1NA ","line":"247","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"DOI"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"250","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"250"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"10","prec":"1","seq":"3","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","line":"208","module":"oai_datacite.xslt","expand-text":"false","match":"TitleAbstractAdditional","prio":"0","matches":"NE u[NE nQ{}TitleAbstractAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstractAdditional]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}TitleAbstractAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstractAdditional]","sType":"1NE u[NE nQ{}TitleAbstractAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstractAdditional]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"elem","name":"description","sType":"1NE nQ{http://datacite.org/schema/kernel-4}description ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"209","C":[{"N":"sequence","sType":"* ","C":[{"N":"att","name":"xml:lang","sType":"1NA ","nsuri":"http://www.w3.org/XML/1998/namespace","line":"210","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"211","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Language","name":"attribute","nodeTest":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"211"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"choose","sType":"? ","line":"213","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"213","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":""}]},{"N":"att","name":"descriptionType","sType":"1NA ","line":"214","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"callT","sType":"* ","bSlot":"0","name":"Q{}CamelCaseWord","line":"215","C":[{"N":"withParam","name":"Q{}text","slot":"0","sType":"*NA nQ{}Type","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type","sType":"*NA nQ{}Type","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"216"}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"220","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"220"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"11","prec":"1","seq":"2","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","line":"193","module":"oai_datacite.xslt","expand-text":"false","match":"TitleAbstract","prio":"0","matches":"NE u[NE nQ{}TitleAbstract,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstract]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}TitleAbstract,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstract]","sType":"1NE u[NE nQ{}TitleAbstract,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstract]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"elem","name":"description","sType":"1NE nQ{http://datacite.org/schema/kernel-4}description ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"194","C":[{"N":"sequence","sType":"* ","C":[{"N":"att","name":"xml:lang","sType":"1NA ","nsuri":"http://www.w3.org/XML/1998/namespace","line":"195","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"196","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Language","name":"attribute","nodeTest":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"196"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"choose","sType":"? ","line":"198","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"198","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":""}]},{"N":"att","name":"descriptionType","sType":"1NA ","line":"199","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Abstract"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"204","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"204"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"12","prec":"1","seq":"1","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","line":"173","module":"oai_datacite.xslt","expand-text":"false","match":"Coverage","prio":"0","matches":"NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]","sType":"1NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"elem","name":"geoLocation","sType":"1NE nQ{http://datacite.org/schema/kernel-4}geoLocation ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"174","C":[{"N":"elem","name":"geoLocationBox","sType":"1NE nQ{http://datacite.org/schema/kernel-4}geoLocationBox ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"175","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"westBoundLongitude","sType":"1NE nQ{http://datacite.org/schema/kernel-4}westBoundLongitude ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"176","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"177","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}XMin","name":"attribute","nodeTest":"*NA nQ{}XMin","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"177"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"eastBoundLongitude","sType":"1NE nQ{http://datacite.org/schema/kernel-4}eastBoundLongitude ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"179","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"180","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}XMax","name":"attribute","nodeTest":"*NA nQ{}XMax","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"180"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"southBoundLatitude","sType":"1NE nQ{http://datacite.org/schema/kernel-4}southBoundLatitude ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"182","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"183","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}YMin","name":"attribute","nodeTest":"*NA nQ{}YMin","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"183"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"northBoundLatitude","sType":"1NE nQ{http://datacite.org/schema/kernel-4}northBoundLatitude ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"185","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"186","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}YMax","name":"attribute","nodeTest":"*NA nQ{}YMax","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"186"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]},{"N":"templateRule","rank":"13","prec":"1","seq":"0","ns":"xml=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","line":"39","module":"oai_datacite.xslt","expand-text":"false","match":"Rdr_Dataset","prio":"0","matches":"NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","sType":"1NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"elem","name":"resource","sType":"1NE nQ{http://datacite.org/schema/kernel-4}resource ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","ns":"xml=~ xsi=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"41","C":[{"N":"sequence","ns":"xml=~ xsi=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","sType":"* ","C":[{"N":"att","name":"xsi:schemaLocation","nsuri":"http://www.w3.org/2001/XMLSchema-instance","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://datacite.org/schema/kernel-4 http://schema.datacite.org/meta/kernel-4.3/metadata.xsd"}]},{"N":"choose","sType":"* ","type":"item()*","line":"45","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","sType":"*NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","line":"46"},{"N":"applyT","sType":"* ","line":"47","mode":"Q{}oai_datacite","bSlot":"1","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","sType":"*NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"47"}]},{"N":"true"},{"N":"elem","name":"identifier","sType":"1NE nQ{http://datacite.org/schema/kernel-4}identifier ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"50","C":[{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"oai:"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"52","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}repIdentifier","bSlot":"2","role":"select","line":"52"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":":"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"54","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}PublishId","name":"attribute","nodeTest":"*NA nQ{}PublishId","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"54"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"elem","name":"creators","sType":"1NE nQ{http://datacite.org/schema/kernel-4}creators ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"60","C":[{"N":"applyT","sType":"* ","line":"61","mode":"Q{}oai_datacite","bSlot":"1","C":[{"N":"sort","role":"select","sType":"*NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","sType":"*NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"61"},{"N":"sortKey","sType":"?A ","C":[{"N":"check","card":"?","sType":"?A ","diag":"2|0|XTTE1020|sort","role":"select","C":[{"N":"data","sType":"*A ","role":"select","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}SortOrder","sType":"*NA nQ{}SortOrder","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"62"}]}]},{"N":"str","sType":"1AS ","val":"ascending","role":"order"},{"N":"str","sType":"1AS ","val":"en","role":"lang"},{"N":"str","sType":"1AS ","val":"#default","role":"caseOrder"},{"N":"str","sType":"1AS ","val":"true","role":"stable"}]}]}]}]},{"N":"elem","name":"titles","sType":"1NE nQ{http://datacite.org/schema/kernel-4}titles ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"65","C":[{"N":"sequence","sType":"* ","C":[{"N":"applyT","sType":"* ","line":"66","mode":"Q{}oai_datacite","bSlot":"1","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}TitleMain,NE nQ{http://www.w3.org/1999/xhtml}TitleMain]","sType":"*NE u[NE nQ{}TitleMain,NE nQ{http://www.w3.org/1999/xhtml}TitleMain]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"66"}]},{"N":"applyT","sType":"* ","line":"67","mode":"Q{}oai_datacite","bSlot":"1","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","sType":"*NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"67"}]}]}]},{"N":"elem","name":"publisher","sType":"1NE nQ{http://datacite.org/schema/kernel-4}publisher ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"69","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"71","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}CreatingCorporation","name":"attribute","nodeTest":"*NA nQ{}CreatingCorporation","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"71"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"publicationYear","sType":"1NE nQ{http://datacite.org/schema/kernel-4}publicationYear ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"73","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"74","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"docOrder","sType":"*NA nQ{}Year","role":"select","line":"74","C":[{"N":"slash","op":"/","sType":"*NA nQ{}Year","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"subjects","sType":"1NE nQ{http://datacite.org/schema/kernel-4}subjects ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"76","C":[{"N":"applyT","sType":"* ","line":"77","mode":"Q{}oai_datacite","bSlot":"1","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Subject,NE nQ{http://www.w3.org/1999/xhtml}Subject]","sType":"*NE u[NE nQ{}Subject,NE nQ{http://www.w3.org/1999/xhtml}Subject]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"77"}]}]},{"N":"elem","name":"language","sType":"1NE nQ{http://datacite.org/schema/kernel-4}language ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"79","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"80","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Language","name":"attribute","nodeTest":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"80"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"choose","sType":"? ","line":"82","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","sType":"*NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","line":"82"},{"N":"elem","name":"contributors","sType":"1NE nQ{http://datacite.org/schema/kernel-4}contributors ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"83","C":[{"N":"applyT","sType":"* ","line":"84","mode":"Q{}oai_datacite","bSlot":"1","C":[{"N":"sort","role":"select","sType":"*NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","sType":"*NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"84"},{"N":"sortKey","sType":"?A ","C":[{"N":"check","card":"?","sType":"?A ","diag":"2|0|XTTE1020|sort","role":"select","C":[{"N":"data","sType":"*A ","role":"select","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}SortOrder","sType":"*NA nQ{}SortOrder","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"85"}]}]},{"N":"str","sType":"1AS ","val":"ascending","role":"order"},{"N":"str","sType":"1AS ","val":"en","role":"lang"},{"N":"str","sType":"1AS ","val":"#default","role":"caseOrder"},{"N":"str","sType":"1AS ","val":"true","role":"stable"}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"elem","name":"dates","sType":"1NE nQ{http://datacite.org/schema/kernel-4}dates ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"89","C":[{"N":"callT","bSlot":"3","sType":"* ","name":"Q{}RdrDate2","line":"90"}]},{"N":"elem","name":"version","sType":"1NE nQ{http://datacite.org/schema/kernel-4}version ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"92","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"93","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Version","sType":"*NA nQ{}Version","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","line":"94"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"95","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Version","name":"attribute","nodeTest":"*NA nQ{}Version","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"95"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"1"}]}]}]},{"N":"elem","name":"resourceType","sType":"1NE nQ{http://datacite.org/schema/kernel-4}resourceType ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"102","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"resourceTypeGeneral","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"Dataset"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Dataset"}]}]}]},{"N":"elem","name":"alternateIdentifiers","sType":"1NE nQ{http://datacite.org/schema/kernel-4}alternateIdentifiers ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"107","C":[{"N":"callT","bSlot":"4","sType":"* ","name":"Q{}AlternateIdentifier","line":"108"}]},{"N":"choose","sType":"? ","line":"111","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","sType":"*NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","line":"111"},{"N":"elem","name":"relatedIdentifiers","sType":"1NE nQ{http://datacite.org/schema/kernel-4}relatedIdentifiers ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"112","C":[{"N":"applyT","sType":"* ","line":"113","mode":"Q{}oai_datacite","bSlot":"1","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","sType":"*NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"113"}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"elem","name":"rightsList","sType":"1NE nQ{http://datacite.org/schema/kernel-4}rightsList ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"116","C":[{"N":"applyT","sType":"* ","line":"117","mode":"Q{}oai_datacite","bSlot":"1","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","sType":"*NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"117"}]}]},{"N":"elem","name":"sizes","sType":"1NE nQ{http://datacite.org/schema/kernel-4}sizes ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"119","C":[{"N":"elem","name":"size","sType":"1NE nQ{http://datacite.org/schema/kernel-4}size ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"120","C":[{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"121","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"fn","sType":"1ADI","name":"count","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"121","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}File,NE nQ{http://www.w3.org/1999/xhtml}File]"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":" datasets"}]}]}]}]},{"N":"elem","name":"formats","sType":"1NE nQ{http://datacite.org/schema/kernel-4}formats ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"125","C":[{"N":"applyT","sType":"* ","line":"126","mode":"Q{}oai_datacite","bSlot":"1","C":[{"N":"docOrder","sType":"*NA nQ{}MimeType","role":"select","line":"126","C":[{"N":"slash","op":"/","sType":"*NA nQ{}MimeType","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}File,NE nQ{http://www.w3.org/1999/xhtml}File]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}MimeType"}]}]}]}]},{"N":"elem","name":"descriptions","sType":"1NE nQ{http://datacite.org/schema/kernel-4}descriptions ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"128","C":[{"N":"sequence","sType":"* ","C":[{"N":"applyT","sType":"* ","line":"129","mode":"Q{}oai_datacite","bSlot":"1","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}TitleAbstract,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstract]","sType":"*NE u[NE nQ{}TitleAbstract,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstract]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"129"}]},{"N":"applyT","sType":"* ","line":"130","mode":"Q{}oai_datacite","bSlot":"1","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}TitleAbstractAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstractAdditional]","sType":"*NE u[NE nQ{}TitleAbstractAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstractAdditional]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"130"}]}]}]},{"N":"elem","name":"geoLocations","sType":"1NE nQ{http://datacite.org/schema/kernel-4}geoLocations ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"132","C":[{"N":"applyT","sType":"* ","line":"133","mode":"Q{}oai_datacite","bSlot":"1","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]","sType":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"133"}]}]}]}]}]}]}]},{"N":"co","id":"59","binds":"13 42 59 10 11 3 4 12 43 5 14 15 16 17 18 19 23 20 21 22 24","C":[{"N":"mode","onNo":"TC","flags":"","patternSlots":"0","name":"Q{}iso19139","prec":"","C":[{"N":"templateRule","rank":"0","prec":"1","seq":"21","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","line":"737","module":"oai_2_iso19139.xslt","expand-text":"true","match":"File","prio":"0","matches":"NE u[NE nQ{}File,NE nQ{http://www.w3.org/1999/xhtml}File]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}File,NE nQ{http://www.w3.org/1999/xhtml}File]","sType":"1NE u[NE nQ{}File,NE nQ{http://www.w3.org/1999/xhtml}File]","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco "},{"N":"choose","sType":"? ","role":"action","line":"738","C":[{"N":"compareToInt","op":"gt","val":"0","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"738","C":[{"N":"fn","name":"string-length","C":[{"N":"fn","name":"normalize-space","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}MimeType"}]}]}]}]}]},{"N":"elem","name":"gmd:distributionFormat","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}distributionFormat ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"739","C":[{"N":"elem","name":"gmd:MD_Format","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_Format ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"740","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:name","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}name ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"741","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"742","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"743","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"743","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}MimeType"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:version","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}version ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"746","C":[{"N":"att","name":"gco:nilReason","nsuri":"http://www.isotc211.org/2005/gco","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"missing"}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]},{"N":"templateRule","rank":"1","prec":"1","seq":"20","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","line":"701","module":"oai_2_iso19139.xslt","expand-text":"true","match":"Reference","prio":"0","matches":"NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","sType":"1NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco "},{"N":"choose","sType":"? ","role":"action","line":"704","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"704","C":[{"N":"fn","name":"not","C":[{"N":"fn","name":"contains","C":[{"N":"fn","name":"normalize-space","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"str","val":"missing"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]}]},{"N":"fn","name":"not","C":[{"N":"fn","name":"contains","C":[{"N":"fn","name":"normalize-space","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"str","val":"unknown"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]}]}]},{"N":"elem","name":"gmd:aggregationInfo","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}aggregationInfo ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"705","C":[{"N":"elem","name":"gmd:MD_AggregateInformation","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_AggregateInformation ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"706","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:aggregateDataSetIdentifier","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}aggregateDataSetIdentifier ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"707","C":[{"N":"elem","name":"gmd:RS_Identifier","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}RS_Identifier ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"708","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:code","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}code ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"709","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"710","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"711","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"711","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:codeSpace","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}codeSpace ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"714","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"715","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"716","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"716","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:associationType","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}associationType ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"721","C":[{"N":"elem","type":"element()","name":"gmd:DS_AssociationTypeCode","sType":"1NE ","nsuri":"http://www.isotc211.org/2005/gmd","line":"722","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","sType":"1NA ","line":"723","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"724","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"724","C":[{"N":"str","val":"http://datacite.org/schema/kernel-4"}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"att","name":"codeListValue","sType":"1NA ","line":"726","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"727","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"727","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"729","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"729","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]},{"N":"templateRule","rank":"2","prec":"1","seq":"19","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","line":"550","module":"oai_2_iso19139.xslt","expand-text":"true","match":"PersonContributor","prio":"0","matches":"NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","sType":"1NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco "},{"N":"let","var":"Q{}dcrole","slot":"0","sType":"*NE ","line":"551","role":"action","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"551","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"data","diag":"0|0||normalize-space","C":[{"N":"slash","op":"/","C":[{"N":"dot"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}ContributorType"}]}]}]}]}]},{"N":"let","var":"Q{}role","slot":"1","sType":"*NE ","line":"552","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"553","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"554","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"ContactPerson"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"pointOfContact"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"555","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"DataCollector"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"collaborator"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"556","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"DataCurator"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"custodian"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"557","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"DataManager"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"custodian"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"558","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"Distributor"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"originator"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"559","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"Editor"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"editor"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"560","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"Funder"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"funder"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"561","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"HostingInstitution"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"distributor"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"562","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"ProjectLeader"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"collaborator"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"563","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"ProjectManager"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"collaborator"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"564","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"ProjectMember"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"collaborator"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"565","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"ResearchGroup"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"collaborator"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"566","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"Researcher"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"collaborator"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"567","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"RightsHolder"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"rightsHolder"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"568","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"Sponsor"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"funder"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"569","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"WorkPackageLeader"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"collaborator"}]},{"N":"true"},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"contributor"}]}]}]},{"N":"elem","name":"gmd:citedResponsibleParty","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}citedResponsibleParty ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"573","C":[{"N":"let","var":"Q{}http-uri","slot":"2","sType":"* ","line":"574","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"575","C":[{"N":"compareToInt","op":"gt","val":"0","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"576","C":[{"N":"fn","name":"string-length","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||string-length","C":[{"N":"check","card":"?","diag":"0|0||string-length","C":[{"N":"attVal","name":"Q{}IdentifierOrcid"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"580","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"580","C":[{"N":"str","val":"http://orcid.org/"},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}IdentifierOrcid"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"583","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"583","C":[{"N":"str","val":""}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"? ","line":"588","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"588","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}http-uri","slot":"2"}]},{"N":"str","val":""}]},{"N":"att","name":"xlink:href","sType":"1NA ","nsuri":"http://www.w3.org/1999/xlink","line":"589","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"590","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}http-uri","slot":"2","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"590"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"let","var":"Q{}nameidscheme","slot":"3","sType":"* ","line":"593","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"594","C":[{"N":"fn","name":"starts-with","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"595","C":[{"N":"treat","as":"AS","diag":"0|0||starts-with","C":[{"N":"check","card":"?","diag":"0|0||starts-with","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||starts-with","C":[{"N":"check","card":"?","diag":"0|0||starts-with","C":[{"N":"data","diag":"0|0||starts-with","C":[{"N":"varRef","name":"Q{}http-uri","slot":"2"}]}]}]}]}]},{"N":"str","val":"http://orcid.org/"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"596","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"596","C":[{"N":"str","val":"ORCID"}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"599","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"599","C":[{"N":"str","val":""}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"let","var":"Q{}email","slot":"4","sType":"* ","line":"603","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"604","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"605","C":[{"N":"attVal","name":"Q{}Email"},{"N":"str","val":""}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"606","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Email","name":"attribute","nodeTest":"*NA nQ{}Email","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"606"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"609","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"609","C":[{"N":"str","val":""}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"let","var":"Q{}affiliation","slot":"5","sType":"* ","line":"613","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"614","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"615","C":[{"N":"attVal","name":"Q{}NameType"},{"N":"str","val":"Personal"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"616","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"616","C":[{"N":"str","val":"GBA"}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"619","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"619","C":[{"N":"str","val":""}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"let","var":"Q{}contrnamestring","slot":"6","sType":"* ","line":"623","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"624","C":[{"N":"compareToString","op":"ne","val":"","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"625","C":[{"N":"fn","name":"normalize-space","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}LastName"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"630","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"630","C":[{"N":"fn","name":"normalize-space","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}LastName"}]}]}]},{"N":"str","val":", "},{"N":"fn","name":"normalize-space","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}FirstName"}]}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"633","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"633","C":[{"N":"str","val":"missing"}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"callT","bSlot":"0","sType":"* ","name":"Q{}ci_responsibleparty","line":"637","C":[{"N":"withParam","name":"Q{}individual","slot":"0","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"639","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}contrnamestring","slot":"6","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"639"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"withParam","name":"Q{}httpuri","slot":"0","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"642","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}http-uri","slot":"2","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"642"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"withParam","name":"Q{}personidtype","slot":"0","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"645","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}nameidscheme","slot":"3","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"645"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"withParam","name":"Q{}organisation","slot":"0","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"648","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}affiliation","slot":"5","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"648"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"withParam","name":"Q{}position","slot":"0","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"651","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}dcrole","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"651"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"withParam","name":"Q{}email","slot":"4","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"654","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}email","slot":"4","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"654"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"withParam","name":"Q{}role","slot":"1","sType":"*","C":[{"N":"varRef","name":"Q{}role","slot":"1","sType":"*","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"656"}]}]}]}]}]}]}]}]}]}]}]}]},{"N":"templateRule","rank":"3","prec":"1","seq":"18","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","line":"448","module":"oai_2_iso19139.xslt","expand-text":"true","match":"PersonAuthor","prio":"0","matches":"NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","sType":"1NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco "},{"N":"elem","name":"gmd:citedResponsibleParty","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}citedResponsibleParty ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","role":"action","line":"449","C":[{"N":"let","var":"Q{}http-uri","slot":"0","sType":"* ","line":"450","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"451","C":[{"N":"compareToInt","op":"gt","val":"0","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"452","C":[{"N":"fn","name":"string-length","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||string-length","C":[{"N":"check","card":"?","diag":"0|0||string-length","C":[{"N":"attVal","name":"Q{}IdentifierOrcid"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"456","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"456","C":[{"N":"str","val":"http://orcid.org/"},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}IdentifierOrcid"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"459","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"459","C":[{"N":"str","val":""}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"? ","line":"464","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"464","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}http-uri","slot":"0"}]},{"N":"str","val":""}]},{"N":"att","name":"xlink:href","sType":"1NA ","nsuri":"http://www.w3.org/1999/xlink","line":"465","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"466","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}http-uri","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"466"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"let","var":"Q{}nameidscheme","slot":"1","sType":"* ","line":"469","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"470","C":[{"N":"fn","name":"starts-with","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"471","C":[{"N":"treat","as":"AS","diag":"0|0||starts-with","C":[{"N":"check","card":"?","diag":"0|0||starts-with","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||starts-with","C":[{"N":"check","card":"?","diag":"0|0||starts-with","C":[{"N":"data","diag":"0|0||starts-with","C":[{"N":"varRef","name":"Q{}http-uri","slot":"0"}]}]}]}]}]},{"N":"str","val":"http://orcid.org/"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"472","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"472","C":[{"N":"str","val":"ORCID"}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"475","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"475","C":[{"N":"str","val":""}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"let","var":"Q{}email","slot":"2","sType":"* ","line":"479","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"480","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"481","C":[{"N":"attVal","name":"Q{}Email"},{"N":"str","val":""}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"482","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Email","name":"attribute","nodeTest":"*NA nQ{}Email","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"482"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"485","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"485","C":[{"N":"str","val":""}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"let","var":"Q{}affiliation","slot":"3","sType":"* ","line":"489","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"490","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"491","C":[{"N":"attVal","name":"Q{}NameType"},{"N":"str","val":"Personal"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"492","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"492","C":[{"N":"str","val":"GBA"}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"495","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"495","C":[{"N":"str","val":""}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"let","var":"Q{}creatorname","slot":"4","sType":"* ","line":"499","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"sequence","sType":"* ","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"500","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}LastName","name":"attribute","nodeTest":"*NA nQ{}LastName","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"500"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"choose","sType":"? ","line":"501","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"501","C":[{"N":"attVal","name":"Q{}FirstName"},{"N":"str","val":""}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":", "}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"504","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}FirstName","name":"attribute","nodeTest":"*NA nQ{}FirstName","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"504"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"choose","sType":"* ","line":"505","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"505","C":[{"N":"attVal","name":"Q{}AcademicTitle"},{"N":"str","val":""}]},{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":" ("}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"507","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}AcademicTitle","name":"attribute","nodeTest":"*NA nQ{}AcademicTitle","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"507"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":")"}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]},{"N":"let","var":"Q{}namestring","slot":"5","sType":"* ","line":"511","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"512","C":[{"N":"compareToString","op":"ne","val":"","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"513","C":[{"N":"fn","name":"normalize-space","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}LastName"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"518","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"518","C":[{"N":"fn","name":"normalize-space","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}LastName"}]}]}]},{"N":"str","val":", "},{"N":"fn","name":"normalize-space","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}FirstName"}]}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"524","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"524","C":[{"N":"str","val":"missing"}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"callT","bSlot":"0","sType":"* ","name":"Q{}ci_responsibleparty","line":"528","C":[{"N":"withParam","name":"Q{}individual","slot":"0","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"530","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}namestring","slot":"5","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"530"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"withParam","name":"Q{}personidtype","slot":"0","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"533","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}nameidscheme","slot":"1","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"533"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"withParam","name":"Q{}organisation","slot":"0","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"536","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}affiliation","slot":"3","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"536"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"withParam","name":"Q{}role","slot":"0","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"author"}]}]}]}]},{"N":"withParam","name":"Q{}email","slot":"2","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"540","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}email","slot":"2","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"540"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"withParam","name":"Q{}datacite-creatorname","slot":"0","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"543","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}creatorname","slot":"4","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"543"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"N":"templateRule","rank":"4","prec":"1","seq":"17","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","line":"437","module":"oai_2_iso19139.xslt","expand-text":"true","match":"TitleAdditional","prio":"0","matches":"NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","sType":"1NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco "},{"N":"choose","sType":"? ","role":"action","line":"438","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"438","C":[{"N":"compareToString","op":"eq","val":"Alternative","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Value"},{"N":"str","val":""}]}]},{"N":"elem","name":"gmd:alternateTitle","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}alternateTitle ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"439","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"440","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"441","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"441","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]},{"N":"templateRule","rank":"5","prec":"1","seq":"16","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","line":"368","module":"oai_2_iso19139.xslt","expand-text":"true","match":"Identifier","prio":"0","matches":"NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","sType":"1NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco "},{"N":"elem","name":"gmd:fileIdentifier","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}fileIdentifier ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","role":"action","line":"369","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"370","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"372","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"373","C":[{"N":"compareToInt","op":"gt","val":"0","C":[{"N":"fn","name":"string-length","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||string-length","C":[{"N":"check","card":"?","diag":"0|0||string-length","C":[{"N":"attVal","name":"Q{}Value"}]}]}]}]},{"N":"compareToInt","op":"gt","val":"0","C":[{"N":"fn","name":"count","C":[{"N":"arrayBlock","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Doi"}]}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"374","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"374","C":[{"N":"gVarRef","name":"Q{}fileIdentifierPrefix","bSlot":"1"},{"N":"fn","name":"normalize-space","C":[{"N":"fn","name":"substring-after","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||substring-after","C":[{"N":"check","card":"?","diag":"0|0||substring-after","C":[{"N":"attVal","name":"Q{}Value"}]}]},{"N":"str","val":"/tethys."},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"377","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"377","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]},{"N":"templateRule","rank":"6","prec":"1","seq":"15","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","line":"341","module":"oai_2_iso19139.xslt","expand-text":"true","match":"Licence","prio":"0","matches":"NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","sType":"1NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco "},{"N":"sequence","role":"action","sType":"*NE ","C":[{"N":"elem","name":"gmd:resourceConstraints","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}resourceConstraints ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"342","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"xlink:href","nsuri":"http://www.w3.org/1999/xlink","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"https://creativecommons.org/licenses/by/4.0/deed.en"}]},{"N":"elem","name":"gmd:MD_Constraints","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_Constraints ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"343","C":[{"N":"elem","name":"gmd:useLimitation","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}useLimitation ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"344","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"345","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"346","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"346","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}NameLong"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:resourceConstraints","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}resourceConstraints ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"351","C":[{"N":"elem","name":"gmd:MD_LegalConstraints","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_LegalConstraints ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"352","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:accessConstraints","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}accessConstraints ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"353","C":[{"N":"elem","name":"gmd:MD_RestrictionCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_RestrictionCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"354","C":[{"N":"sequence","sType":"*NA ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/codeList.xml#MD_RestrictionCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"otherRestrictions"}]}]}]}]},{"N":"elem","name":"gmd:otherConstraints","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}otherConstraints ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"356","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"357","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"358","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"358","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}NameLong"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]}]},{"N":"templateRule","rank":"7","prec":"1","seq":"14","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","line":"54","module":"oai_2_iso19139.xslt","expand-text":"true","match":"Rdr_Dataset","prio":"0","matches":"NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","sType":"1NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco "},{"N":"elem","name":"gmd:MD_Metadata","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_Metadata ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","ns":"xml=~ gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ fn=http://example.com/functions","role":"action","line":"59","C":[{"N":"sequence","ns":"xml=~ gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ fn=http://example.com/functions","sType":"* ","C":[{"N":"att","name":"xsi:schemaLocation","nsuri":"http://www.w3.org/2001/XMLSchema-instance","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/gmd http://schemas.opengis.net/iso/19139/20060504/gmd/gmd.xsd http://www.isotc211.org/2005/gmx http://schemas.opengis.net/iso/19139/20060504/gmx/gmx.xsd http://www.isotc211.org/2005/srv http://schemas.opengis.net/iso/19139/20060504/srv/srv.xsd"}]},{"N":"choose","sType":"* ","line":"62","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","sType":"*NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","line":"62"},{"N":"applyT","sType":"* ","line":"63","mode":"Q{}iso19139","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","sType":"*NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"63"}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"elem","name":"gmd:language","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}language ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"67","C":[{"N":"elem","name":"gmd:LanguageCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}LanguageCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"68","C":[{"N":"sequence","sType":"*NA ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.loc.gov/standards/iso639-2/"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"ger"}]}]}]}]},{"N":"elem","name":"gmd:characterSet","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}characterSet ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"70","C":[{"N":"elem","name":"gmd:MD_CharacterSetCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_CharacterSetCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"71","C":[{"N":"sequence","sType":"*NA ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/codeList.xml#MD_CharacterSetCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"utf8"}]}]}]}]},{"N":"callT","bSlot":"3","sType":"* ","name":"Q{}hierarchylevel","line":"75"},{"N":"elem","name":"gmd:hierarchyLevelName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}hierarchyLevelName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"77","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"78","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Dataset"}]}]}]},{"N":"callT","bSlot":"4","sType":"* ","name":"Q{}metadatacontact","line":"84"},{"N":"callT","bSlot":"5","sType":"* ","name":"Q{}datestamp","line":"87"},{"N":"elem","name":"gmd:metadataStandardName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}metadataStandardName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"89","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"90","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"ISO 19139 Geographic Information - Metadata - Implementation Specification"}]}]}]},{"N":"elem","name":"gmd:metadataStandardVersion","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}metadataStandardVersion ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"92","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"93","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"2007"}]}]}]},{"N":"elem","name":"gmd:referenceSystemInfo","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}referenceSystemInfo ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"96","C":[{"N":"elem","name":"gmd:MD_ReferenceSystem","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_ReferenceSystem ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"97","C":[{"N":"elem","name":"gmd:referenceSystemIdentifier","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}referenceSystemIdentifier ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"98","C":[{"N":"elem","name":"gmd:RS_Identifier","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}RS_Identifier ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"99","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:code","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}code ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"100","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"102","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"https://www.opengis.net/def/crs/EPSG/0/31287"}]}]}]},{"N":"elem","name":"gmd:version","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}version ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"104","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"105","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"6.11.2"}]}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:identificationInfo","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}identificationInfo ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"112","C":[{"N":"elem","name":"gmd:MD_DataIdentification","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_DataIdentification ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"113","C":[{"N":"sequence","sType":"* ","C":[{"N":"elem","name":"gmd:citation","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}citation ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"116","C":[{"N":"elem","name":"gmd:CI_Citation","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Citation ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"117","C":[{"N":"sequence","sType":"* ","C":[{"N":"callT","bSlot":"6","sType":"* ","name":"Q{}title","line":"119"},{"N":"applyT","sType":"* ","line":"122","mode":"Q{}iso19139","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","sType":"*NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"122"}]},{"N":"callT","bSlot":"7","sType":"* ","name":"Q{}resourcedates","line":"125"},{"N":"elem","name":"gmd:identifier","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}identifier ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"129","C":[{"N":"forEach","sType":"* ","line":"130","C":[{"N":"filter","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"130","C":[{"N":"axis","name":"child","nodeTest":"*NE"},{"N":"compareToString","op":"eq","val":"Identifier","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"name","C":[{"N":"dot"}]}]}]},{"N":"choose","sType":"? ","line":"133","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","line":"133","C":[{"N":"compareToInt","op":"gt","val":"0","C":[{"N":"fn","name":"string-length","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||string-length","C":[{"N":"check","card":"?","diag":"0|0||string-length","C":[{"N":"data","diag":"0|0||string-length","C":[{"N":"slash","op":"/","C":[{"N":"filter","C":[{"N":"dot"},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Doi"}]}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]}]}]},{"N":"compareToInt","op":"gt","val":"0","C":[{"N":"fn","name":"count","C":[{"N":"arrayBlock","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"slash","op":"/","C":[{"N":"filter","C":[{"N":"dot"},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Doi"}]}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]},{"N":"str","val":"Doi"}]}]}]}]}]},{"N":"elem","name":"gmd:MD_Identifier","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_Identifier ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"134","C":[{"N":"elem","name":"gmd:code","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}code ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"135","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"136","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"137","C":[{"N":"or","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","line":"138","C":[{"N":"fn","name":"starts-with","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||starts-with","C":[{"N":"check","card":"?","diag":"0|0||starts-with","C":[{"N":"data","diag":"0|0||starts-with","C":[{"N":"slash","op":"/","C":[{"N":"filter","C":[{"N":"dot"},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Doi"}]}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]},{"N":"str","val":"doi:"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"fn","name":"contains","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||contains","C":[{"N":"check","card":"?","diag":"0|0||contains","C":[{"N":"data","diag":"0|0||contains","C":[{"N":"slash","op":"/","C":[{"N":"filter","C":[{"N":"dot"},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Doi"}]}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]},{"N":"str","val":"doi.org"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"139","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"docOrder","sType":"*NA nQ{}Value","role":"select","line":"139","C":[{"N":"slash","op":"/","sType":"*NA nQ{}Value","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","C":[{"N":"filter","C":[{"N":"dot"},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Doi"}]}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","line":"141","C":[{"N":"compareToInt","op":"gt","val":"0","C":[{"N":"fn","name":"count","C":[{"N":"filter","C":[{"N":"dot"},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Doi"}]}]}]}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"atomSing","diag":"1|0||gc","card":"?","C":[{"N":"gVarRef","name":"Q{}datacentre","bSlot":"8"}]},{"N":"str","val":"Tethys RDR"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"145","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"145","C":[{"N":"str","val":"https://doi.org/"},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"slash","op":"/","C":[{"N":"filter","C":[{"N":"dot"},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Doi"}]}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"148","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"docOrder","sType":"*NA nQ{}Value","role":"select","line":"148","C":[{"N":"slash","op":"/","sType":"*NA nQ{}Value","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","C":[{"N":"filter","C":[{"N":"dot"},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Doi"}]}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]},{"N":"applyT","sType":"* ","line":"159","mode":"Q{}iso19139","bSlot":"2","C":[{"N":"sort","role":"select","sType":"*NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","sType":"*NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"159"},{"N":"sortKey","sType":"?A ","C":[{"N":"check","card":"?","sType":"?A ","diag":"2|0|XTTE1020|sort","role":"select","C":[{"N":"data","sType":"*A ","role":"select","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}SortOrder","sType":"*NA nQ{}SortOrder","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"160"}]}]},{"N":"str","sType":"1AS ","val":"ascending","role":"order"},{"N":"str","sType":"1AS ","val":"en","role":"lang"},{"N":"str","sType":"1AS ","val":"#default","role":"caseOrder"},{"N":"str","sType":"1AS ","val":"true","role":"stable"}]}]}]},{"N":"applyT","sType":"* ","line":"164","mode":"Q{}iso19139","bSlot":"2","C":[{"N":"sort","role":"select","sType":"*NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","sType":"*NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"164"},{"N":"sortKey","sType":"?A ","C":[{"N":"check","card":"?","sType":"?A ","diag":"2|0|XTTE1020|sort","role":"select","C":[{"N":"data","sType":"*A ","role":"select","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}SortOrder","sType":"*NA nQ{}SortOrder","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"165"}]}]},{"N":"str","sType":"1AS ","val":"ascending","role":"order"},{"N":"str","sType":"1AS ","val":"en","role":"lang"},{"N":"str","sType":"1AS ","val":"#default","role":"caseOrder"},{"N":"str","sType":"1AS ","val":"true","role":"stable"}]}]}]},{"N":"elem","name":"gmd:citedResponsibleParty","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}citedResponsibleParty ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"169","C":[{"N":"callT","bSlot":"0","sType":"* ","name":"Q{}ci_responsibleparty","line":"170","C":[{"N":"withParam","name":"Q{}organisation","slot":"0","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"172","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}CreatingCorporation","name":"attribute","nodeTest":"*NA nQ{}CreatingCorporation","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"172"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"withParam","name":"Q{}role","slot":"0","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"publisher"}]}]}]}]}]}]}]}]}]},{"N":"callT","bSlot":"9","sType":"* ","name":"Q{}abstract","line":"181"},{"N":"elem","name":"gmd:status","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}status ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"183","C":[{"N":"elem","name":"gmd:MD_ProgressCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_ProgressCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"184","C":[{"N":"sequence","sType":"*NA ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_ProgressCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"Complete"}]},{"N":"att","name":"codeSpace","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"ISOTC211/19115"}]}]}]}]},{"N":"callT","bSlot":"10","sType":"* ","name":"Q{}pointofcontact_custodian","line":"188"},{"N":"callT","bSlot":"11","sType":"* ","name":"Q{}pointofcontact_originator","line":"191"},{"N":"elem","name":"gmd:resourceMaintenance","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}resourceMaintenance ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"194","C":[{"N":"elem","name":"gmd:MD_MaintenanceInformation","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_MaintenanceInformation ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"195","C":[{"N":"elem","name":"gmd:maintenanceAndUpdateFrequency","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}maintenanceAndUpdateFrequency ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"196","C":[{"N":"elem","name":"gmd:MD_MaintenanceFrequencyCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_MaintenanceFrequencyCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"197","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://schemas.opengis.net/iso/19139/20070417/resources/codelist/gmxCodelists.xml#MD_MaintenanceFrequencyCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"asNeeded"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"asNeeded"}]}]}]}]}]}]},{"N":"callT","bSlot":"12","sType":"* ","name":"Q{}browseGraphictethys","line":"230"},{"N":"callT","bSlot":"13","sType":"* ","name":"Q{}freekeywords","line":"233"},{"N":"callT","bSlot":"14","sType":"* ","name":"Q{}datacenter_keyword","line":"235"},{"N":"applyT","sType":"* ","line":"238","mode":"Q{}iso19139","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","sType":"*NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"238"}]},{"N":"elem","name":"gmd:resourceConstraints","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}resourceConstraints ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"239","C":[{"N":"elem","name":"gmd:MD_SecurityConstraints","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_SecurityConstraints ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"240","C":[{"N":"elem","name":"gmd:classification","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}classification ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"241","C":[{"N":"elem","name":"gmd:MD_ClassificationCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_ClassificationCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"242","C":[{"N":"sequence","sType":"*NA ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/codeList.xml#MD_ClassificationCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"unclassified"}]}]}]}]}]}]},{"N":"applyT","sType":"* ","line":"252","mode":"Q{}iso19139","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","sType":"*NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"252"}]},{"N":"elem","name":"gmd:spatialResolution","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}spatialResolution ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"254","C":[{"N":"let","var":"Q{}mainTitle","slot":"0","sType":"*NE ","line":"255","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"forEach","sType":"* ","line":"257","C":[{"N":"filter","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"257","C":[{"N":"axis","name":"child","nodeTest":"*NE"},{"N":"compareToString","op":"eq","val":"TitleMain","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"name","C":[{"N":"dot"}]}]}]},{"N":"choose","sType":"? ","line":"258","C":[{"N":"compareToString","op":"eq","val":"Main","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","line":"258","C":[{"N":"fn","name":"normalize-space","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}Type"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"259","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"259"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]},{"N":"elem","name":"gmd:MD_Resolution","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_Resolution ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"263","C":[{"N":"choose","sType":"?NE ","type":"item()*","line":"264","C":[{"N":"fn","name":"contains","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","line":"265","C":[{"N":"treat","as":"AS","diag":"0|0||contains","C":[{"N":"check","card":"?","diag":"0|0||contains","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||contains","C":[{"N":"check","card":"?","diag":"0|0||contains","C":[{"N":"data","diag":"0|0||contains","C":[{"N":"varRef","name":"Q{}mainTitle","slot":"0"}]}]}]}]}]},{"N":"str","val":"50.000"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"elem","name":"gmd:equivalentScale","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}equivalentScale ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"266","C":[{"N":"elem","name":"gmd:MD_RepresentativeFraction","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_RepresentativeFraction ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"267","C":[{"N":"elem","name":"gmd:denominator","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}denominator ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"268","C":[{"N":"elem","name":"gco:Integer","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Integer ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"270","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"50000"}]}]}]}]}]},{"N":"true"},{"N":"elem","name":"gmd:distance","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}distance ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"276","C":[{"N":"elem","name":"gco:Distance","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Distance ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"277","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"uom","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"m"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"-1"}]}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:language","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}language ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"285","C":[{"N":"elem","name":"gmd:LanguageCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}LanguageCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"286","C":[{"N":"sequence","sType":"*NA ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.loc.gov/standards/iso639-2/"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"ger"}]}]}]}]},{"N":"elem","name":"gmd:topicCategory","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}topicCategory ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"290","C":[{"N":"elem","name":"gmd:MD_TopicCategoryCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_TopicCategoryCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"291","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"geoscientificInformation"}]}]}]},{"N":"callT","bSlot":"15","sType":"* ","name":"Q{}spatialcoverage","line":"295"}]}]}]},{"N":"elem","name":"gmd:distributionInfo","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}distributionInfo ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"304","C":[{"N":"elem","name":"gmd:MD_Distribution","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_Distribution ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"305","C":[{"N":"sequence","sType":"* ","C":[{"N":"applyT","sType":"* ","line":"308","mode":"Q{}iso19139","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}File,NE nQ{http://www.w3.org/1999/xhtml}File]","sType":"*NE u[NE nQ{}File,NE nQ{http://www.w3.org/1999/xhtml}File]","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"308"}]},{"N":"callT","bSlot":"16","sType":"* ","name":"Q{}distributor","line":"311"},{"N":"elem","name":"gmd:transferOptions","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}transferOptions ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"314","C":[{"N":"elem","name":"gmd:MD_DigitalTransferOptions","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_DigitalTransferOptions ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"315","C":[{"N":"sequence","sType":"* ","C":[{"N":"callT","bSlot":"17","sType":"* ","name":"Q{}datacite_identifier","line":"319"},{"N":"callT","bSlot":"18","sType":"* ","name":"Q{}alternate_identifier","line":"322"}]}]}]}]}]}]},{"N":"callT","bSlot":"19","sType":"* ","name":"Q{}data_quality","line":"330"},{"N":"callT","bSlot":"20","sType":"* ","name":"Q{}metadata_maintenance","line":"333"}]}]}]}]}]},{"N":"co","id":"60","binds":"29 41 27 28 30 32","C":[{"N":"mode","onNo":"TC","flags":"","patternSlots":"0","name":"Q{}Identify","prec":"","C":[{"N":"templateRule","rank":"0","prec":"1","seq":"23","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"151","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Datasets","prio":"0","matches":"NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","sType":"1NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"Identify","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}Identify ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"152","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"repositoryName","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}repositoryName ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"153","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"154","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}repositoryName","bSlot":"0","role":"select","line":"154"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"baseURL","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}baseURL ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"156","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"157","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}baseURL","bSlot":"1","role":"select","line":"157"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"protocolVersion","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}protocolVersion ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"159","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"2.0"}]}]},{"N":"elem","name":"adminEmail","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}adminEmail ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"162","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"163","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}email","bSlot":"2","role":"select","line":"163"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"earliestDatestamp","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}earliestDatestamp ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"165","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"166","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}earliestDatestamp","bSlot":"3","role":"select","line":"166"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"deletedRecord","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}deletedRecord ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"168","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"persistent"}]}]},{"N":"elem","name":"granularity","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}granularity ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"171","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"YYYY-MM-DDThh:mm:ssZ"}]}]},{"N":"elem","name":"description","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}description ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"174","C":[{"N":"elem","name":"oai-identifier","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/oai-identifier}oai-identifier ","nsuri":"http://www.openarchives.org/OAI/2.0/oai-identifier","namespaces":"=http://www.openarchives.org/OAI/2.0/oai-identifier xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/oai-identifier xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","line":"175","C":[{"N":"sequence","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/oai-identifier xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","sType":"*N ","C":[{"N":"att","name":"xsi:schemaLocation","nsuri":"http://www.w3.org/2001/XMLSchema-instance","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.openarchives.org/OAI/2.0/oai-identifier http://www.openarchives.org/OAI/2.0/oai-identifier.xsd"}]},{"N":"elem","name":"scheme","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/oai-identifier}scheme ","nsuri":"http://www.openarchives.org/OAI/2.0/oai-identifier","namespaces":"=http://www.openarchives.org/OAI/2.0/oai-identifier xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"176","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"oai"}]}]},{"N":"elem","name":"repositoryIdentifier","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/oai-identifier}repositoryIdentifier ","nsuri":"http://www.openarchives.org/OAI/2.0/oai-identifier","namespaces":"=http://www.openarchives.org/OAI/2.0/oai-identifier xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"179","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"180","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}repIdentifier","bSlot":"4","role":"select","line":"180"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"delimiter","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/oai-identifier}delimiter ","nsuri":"http://www.openarchives.org/OAI/2.0/oai-identifier","namespaces":"=http://www.openarchives.org/OAI/2.0/oai-identifier xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"182","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":":"}]}]},{"N":"elem","name":"sampleIdentifier","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/oai-identifier}sampleIdentifier ","nsuri":"http://www.openarchives.org/OAI/2.0/oai-identifier","namespaces":"=http://www.openarchives.org/OAI/2.0/oai-identifier xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"185","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"186","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}sampleIdentifier","bSlot":"5","role":"select","line":"186"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]}]}]}]},{"N":"co","binds":"","id":"61","C":[{"N":"mode","onNo":"TC","flags":"","patternSlots":"0","name":"Q{}ListMetadataFormats","prec":"","C":[{"N":"templateRule","rank":"0","prec":"1","seq":"24","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"218","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Datasets","prio":"0","matches":"NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","sType":"1NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"ListMetadataFormats","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}ListMetadataFormats ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"219","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"metadataFormat","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}metadataFormat ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"220","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"metadataPrefix","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}metadataPrefix ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"221","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"oai_dc"}]}]},{"N":"elem","name":"schema","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}schema ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"224","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"http://www.openarchives.org/OAI/2.0/oai_dc.xsd"}]}]},{"N":"elem","name":"metadataNamespace","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}metadataNamespace ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"227","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"http://www.openarchives.org/OAI/2.0/oai_dc/"}]}]}]}]},{"N":"elem","name":"metadataFormat","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}metadataFormat ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"231","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"metadataPrefix","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}metadataPrefix ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"232","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"oai_datacite"}]}]},{"N":"elem","name":"schema","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}schema ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"235","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"http://schema.datacite.org/meta/kernel-4.3/metadata.xsd"}]}]},{"N":"elem","name":"metadataNamespace","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}metadataNamespace ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"238","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"http://datacite.org/schema/kernel-4"}]}]}]}]},{"N":"elem","name":"metadataFormat","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}metadataFormat ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"242","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"metadataPrefix","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}metadataPrefix ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"243","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"iso19139"}]}]},{"N":"elem","name":"schema","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}schema ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"244","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/gmd/gmd.xsd"}]}]},{"N":"elem","name":"metadataNamespace","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}metadataNamespace ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"245","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/gmd"}]}]}]}]}]}]}]}]}]},{"N":"co","id":"62","binds":"57","C":[{"N":"mode","onNo":"TC","flags":"","patternSlots":"0","name":"Q{}ListSets","prec":"","C":[{"N":"templateRule","rank":"0","prec":"1","seq":"25","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"250","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Datasets","prio":"0","matches":"NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","sType":"1NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"ListSets","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}ListSets ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"251","C":[{"N":"applyT","sType":"* ","line":"252","mode":"#unnamed","bSlot":"0","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Rdr_Sets,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Sets]","sType":"*NE u[NE nQ{}Rdr_Sets,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Sets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"252"}]}]}]}]}]},{"N":"co","id":"63","binds":"57 34 33 36 35","C":[{"N":"mode","onNo":"TC","flags":"","patternSlots":"0","name":"Q{}ListIdentifiers","prec":"","C":[{"N":"templateRule","rank":"0","prec":"1","seq":"27","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"267","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Datasets","prio":"0","matches":"NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","sType":"1NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"choose","sType":"? ","role":"action","line":"268","C":[{"N":"compareToInt","op":"gt","val":"0","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"268","C":[{"N":"fn","name":"count","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]"}]}]},{"N":"elem","name":"ListIdentifiers","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}ListIdentifiers ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"269","C":[{"N":"sequence","sType":"* ","C":[{"N":"applyT","sType":"* ","line":"270","mode":"#unnamed","bSlot":"0","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","sType":"*NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"270"}]},{"N":"choose","sType":"? ","line":"271","C":[{"N":"vc","op":"gt","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"271","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"gVarRef","name":"Q{}totalIds","bSlot":"1"}]}]}]},{"N":"int","val":"0"}]},{"N":"elem","name":"resumptionToken","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}resumptionToken ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"272","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"expirationDate","sType":"1NA ","line":"273","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"274","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}dateDelete","bSlot":"2","role":"select","line":"274"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"att","name":"completeListSize","sType":"1NA ","line":"276","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"277","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}totalIds","bSlot":"1","role":"select","line":"277"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"att","name":"cursor","sType":"1NA ","line":"279","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"280","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}cursor","bSlot":"3","role":"select","line":"280"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"282","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}res","bSlot":"4","role":"select","line":"282"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"co","id":"64","binds":"57 34 33 36 35","C":[{"N":"mode","onNo":"TC","flags":"","patternSlots":"0","name":"Q{}ListRecords","prec":"","C":[{"N":"templateRule","rank":"0","prec":"1","seq":"28","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"289","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Datasets","prio":"0","matches":"NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","sType":"1NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"choose","sType":"? ","role":"action","line":"290","C":[{"N":"compareToInt","op":"gt","val":"0","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"290","C":[{"N":"fn","name":"count","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]"}]}]},{"N":"elem","name":"ListRecords","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}ListRecords ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"291","C":[{"N":"sequence","sType":"* ","C":[{"N":"applyT","sType":"* ","line":"292","mode":"#unnamed","bSlot":"0","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","sType":"*NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"292"}]},{"N":"choose","sType":"? ","line":"293","C":[{"N":"vc","op":"gt","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"293","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"gVarRef","name":"Q{}totalIds","bSlot":"1"}]}]}]},{"N":"int","val":"0"}]},{"N":"elem","name":"resumptionToken","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}resumptionToken ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"294","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"expirationDate","sType":"1NA ","line":"295","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"296","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}dateDelete","bSlot":"2","role":"select","line":"296"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"att","name":"completeListSize","sType":"1NA ","line":"298","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"299","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}totalIds","bSlot":"1","role":"select","line":"299"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"att","name":"cursor","sType":"1NA ","line":"301","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"302","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}cursor","bSlot":"3","role":"select","line":"302"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"304","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}res","bSlot":"4","role":"select","line":"304"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"co","id":"65","binds":"57","C":[{"N":"mode","onNo":"TC","flags":"","patternSlots":"0","name":"Q{}GetRecord","prec":"","C":[{"N":"templateRule","rank":"0","prec":"1","seq":"29","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"311","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Datasets","prio":"0","matches":"NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","sType":"1NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"GetRecord","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}GetRecord ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"312","C":[{"N":"applyT","sType":"* ","line":"313","mode":"#unnamed","bSlot":"0","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","sType":"*NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"313"}]}]}]}]}]},{"N":"co","id":"66","binds":"31 26 66 9 8","C":[{"N":"mode","onNo":"TC","flags":"","patternSlots":"0","name":"Q{}oai_dc","prec":"","C":[{"N":"templateRule","rank":"0","prec":"1","seq":"44","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"704","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"File/@MimeType","prio":"0.5","matches":"NA nQ{}MimeType","C":[{"N":"p.withUpper","role":"match","axis":"parent","sType":"1NA nQ{}MimeType","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","C":[{"N":"p.nodeTest","test":"NA nQ{}MimeType"},{"N":"p.nodeTest","test":"NE u[NE nQ{}File,NE nQ{http://www.w3.org/1999/xhtml}File]"}]},{"N":"elem","name":"dc:format","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}format ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"705","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"706","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"707","C":[{"N":"atomSing","diag":"1|0||gc","card":"?","C":[{"N":"dot"}]},{"N":"str","val":"application/x-sqlite3"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"application/geopackage+sqlite3"}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"711","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"dot","sType":"1NA nQ{}MimeType","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"711"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"1","prec":"1","seq":"48","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"766","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Licence","prio":"0","matches":"NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","sType":"1NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"sequence","role":"action","sType":"* ","C":[{"N":"elem","name":"dc:rights","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}rights ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"767","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"768","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}NameLong","name":"attribute","nodeTest":"*NA nQ{}NameLong","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"768"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"choose","sType":"? ","line":"770","C":[{"N":"or","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"770","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Name"},{"N":"str","val":"CC-BY-4.0"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Name"},{"N":"str","val":"CC-BY-SA-4.0"}]}]},{"N":"elem","name":"dc:rights","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}rights ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"771","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"info:eu-repo/semantics/openAccess"}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]},{"N":"templateRule","rank":"2","prec":"1","seq":"47","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"740","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"@Language","prio":"0","matches":"NA nQ{}Language","C":[{"N":"p.nodeTest","role":"match","test":"NA nQ{}Language","sType":"1NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"dc:language","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}language ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"741","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"742","C":[{"N":"compareToString","op":"eq","val":"de","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"743","C":[{"N":"fn","name":"string","C":[{"N":"dot"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","C":[{"N":"str","role":"select","val":"ger","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"5"}]},{"N":"compareToString","op":"eq","val":"en","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"744","C":[{"N":"fn","name":"string","C":[{"N":"dot"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","C":[{"N":"str","role":"select","val":"eng","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"7"}]},{"N":"compareToString","op":"eq","val":"es","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"745","C":[{"N":"fn","name":"string","C":[{"N":"dot"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","C":[{"N":"str","role":"select","val":"spa","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"9"}]},{"N":"compareToString","op":"eq","val":"it","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"746","C":[{"N":"fn","name":"string","C":[{"N":"dot"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","C":[{"N":"str","role":"select","val":"ita","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"11"}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"748","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"748","C":[{"N":"dot"}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"3","prec":"1","seq":"46","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"734","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"@CreatingCorporation","prio":"0","matches":"NA nQ{}CreatingCorporation","C":[{"N":"p.nodeTest","role":"match","test":"NA nQ{}CreatingCorporation","sType":"1NA nQ{}CreatingCorporation","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"dc:language","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}language ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"735","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"736","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"dot","sType":"1NA nQ{}CreatingCorporation","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"736"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"templateRule","rank":"4","prec":"1","seq":"45","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"724","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Identifier","prio":"0","matches":"NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","sType":"1NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"dc:relation","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}relation ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"725","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"727","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"727","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"gVarRef","name":"Q{}doiPrefix","bSlot":"0"}]}]},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"templateRule","rank":"5","prec":"1","seq":"43","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"679","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"EmbargoDate","prio":"0","matches":"NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]","sType":"1NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"choose","sType":"? ","role":"action","line":"680","C":[{"N":"gc","op":"<","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"680","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}unixTimestamp","bSlot":"1"}]},{"N":"data","diag":"1|1||gc","C":[{"N":"slash","op":"/","C":[{"N":"dot"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}UnixTimestamp"}]}]}]},{"N":"elem","name":"dc:date","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}date ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"681","C":[{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"info:eu-repo/date/embargoEnd/"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"683","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"docOrder","sType":"*NA nQ{}Year","role":"select","line":"683","C":[{"N":"slash","op":"/","sType":"*NA nQ{}Year","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","C":[{"N":"dot"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\n -\n "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"685","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"format-number","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"685","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"dot"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Month"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\n -\n "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"687","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"format-number","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"687","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"dot"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Day"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]},{"N":"templateRule","rank":"6","prec":"1","seq":"42","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"641","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"PersonContributor","prio":"0","matches":"NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","sType":"1NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"dc:contributor","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}contributor ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"642","C":[{"N":"sequence","sType":"* ","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"643","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}LastName","name":"attribute","nodeTest":"*NA nQ{}LastName","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"643"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"choose","sType":"? ","line":"644","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"644","C":[{"N":"attVal","name":"Q{}FirstName"},{"N":"str","val":""}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":", "}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"647","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}FirstName","name":"attribute","nodeTest":"*NA nQ{}FirstName","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"647"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"choose","sType":"* ","line":"648","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"648","C":[{"N":"attVal","name":"Q{}AcademicTitle"},{"N":"str","val":""}]},{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":" ("}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"650","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}AcademicTitle","name":"attribute","nodeTest":"*NA nQ{}AcademicTitle","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"650"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":")"}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"templateRule","rank":"7","prec":"1","seq":"41","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"626","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"PersonAuthor|PersonEditor","prio":"0","matches":"NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","sType":"1NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]"},{"N":"elem","name":"dc:creator","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}creator ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"627","C":[{"N":"sequence","sType":"* ","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"628","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}LastName","name":"attribute","nodeTest":"*NA nQ{}LastName","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"628"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"choose","sType":"? ","line":"629","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"629","C":[{"N":"attVal","name":"Q{}FirstName"},{"N":"str","val":""}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":", "}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"632","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}FirstName","name":"attribute","nodeTest":"*NA nQ{}FirstName","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"632"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"choose","sType":"* ","line":"633","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"633","C":[{"N":"attVal","name":"Q{}AcademicTitle"},{"N":"str","val":""}]},{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":" ("}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"635","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}AcademicTitle","name":"attribute","nodeTest":"*NA nQ{}AcademicTitle","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"635"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":")"}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"templateRule","rank":"8","prec":"1","seq":"41","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"626","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"PersonAuthor|PersonEditor","prio":"0","matches":"NE u[NE nQ{}PersonEditor,NE nQ{http://www.w3.org/1999/xhtml}PersonEditor]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}PersonEditor,NE nQ{http://www.w3.org/1999/xhtml}PersonEditor]","sType":"1NE u[NE nQ{}PersonEditor,NE nQ{http://www.w3.org/1999/xhtml}PersonEditor]"},{"N":"elem","name":"dc:creator","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}creator ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"627","C":[{"N":"sequence","sType":"* ","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"628","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}LastName","name":"attribute","nodeTest":"*NA nQ{}LastName","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"628"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"choose","sType":"? ","line":"629","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"629","C":[{"N":"attVal","name":"Q{}FirstName"},{"N":"str","val":""}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":", "}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"632","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}FirstName","name":"attribute","nodeTest":"*NA nQ{}FirstName","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"632"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"choose","sType":"* ","line":"633","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"633","C":[{"N":"attVal","name":"Q{}AcademicTitle"},{"N":"str","val":""}]},{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":" ("}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"635","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}AcademicTitle","name":"attribute","nodeTest":"*NA nQ{}AcademicTitle","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"635"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":")"}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"templateRule","rank":"9","prec":"1","seq":"40","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"616","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Reference","prio":"0","matches":"NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","sType":"1NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"dc:relation","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}relation ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"617","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"618","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"618","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"templateRule","rank":"10","prec":"1","seq":"39","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"605","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Collection","prio":"0","matches":"NE u[NE nQ{}Collection,NE nQ{http://www.w3.org/1999/xhtml}Collection]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Collection,NE nQ{http://www.w3.org/1999/xhtml}Collection]","sType":"1NE u[NE nQ{}Collection,NE nQ{http://www.w3.org/1999/xhtml}Collection]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"dc:subject","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}subject ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"606","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"612","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"612","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Collectionrole.Name"}]}]},{"N":"str","val":":"},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Number"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"templateRule","rank":"11","prec":"1","seq":"38","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"595","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Subject","prio":"0","matches":"NE u[NE nQ{}Subject,NE nQ{http://www.w3.org/1999/xhtml}Subject]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Subject,NE nQ{http://www.w3.org/1999/xhtml}Subject]","sType":"1NE u[NE nQ{}Subject,NE nQ{http://www.w3.org/1999/xhtml}Subject]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"dc:subject","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}subject ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"596","C":[{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"? ","line":"597","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"597","C":[{"N":"attVal","name":"Q{}Language"},{"N":"str","val":""}]},{"N":"att","name":"xml:lang","sType":"1NA ","nsuri":"http://www.w3.org/XML/1998/namespace","line":"598","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"599","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Language","name":"attribute","nodeTest":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"599"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"602","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"602"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"12","prec":"1","seq":"37","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"586","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"TitleAbstractAdditional","prio":"0","matches":"NE u[NE nQ{}TitleAbstractAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstractAdditional]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}TitleAbstractAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstractAdditional]","sType":"1NE u[NE nQ{}TitleAbstractAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstractAdditional]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"dc:description","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}description ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"587","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"xml:lang","sType":"1NA ","nsuri":"http://www.w3.org/XML/1998/namespace","line":"588","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"589","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Language","name":"attribute","nodeTest":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"589"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"591","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"591"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"13","prec":"1","seq":"36","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"578","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"TitleAbstract","prio":"0","matches":"NE u[NE nQ{}TitleAbstract,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstract]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}TitleAbstract,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstract]","sType":"1NE u[NE nQ{}TitleAbstract,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstract]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"dc:description","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}description ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"579","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"xml:lang","sType":"1NA ","nsuri":"http://www.w3.org/XML/1998/namespace","line":"580","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"581","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Language","name":"attribute","nodeTest":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"581"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"583","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"583"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"14","prec":"1","seq":"35","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"569","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"TitleAdditional","prio":"0","matches":"NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","sType":"1NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"dc:title","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}title ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"570","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"xml:lang","sType":"1NA ","nsuri":"http://www.w3.org/XML/1998/namespace","line":"571","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"572","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Language","name":"attribute","nodeTest":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"572"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"574","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"574"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"15","prec":"1","seq":"34","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"560","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"TitleMain","prio":"0","matches":"NE u[NE nQ{}TitleMain,NE nQ{http://www.w3.org/1999/xhtml}TitleMain]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}TitleMain,NE nQ{http://www.w3.org/1999/xhtml}TitleMain]","sType":"1NE u[NE nQ{}TitleMain,NE nQ{http://www.w3.org/1999/xhtml}TitleMain]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"dc:title","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}title ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"561","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"xml:lang","sType":"1NA ","nsuri":"http://www.w3.org/XML/1998/namespace","line":"562","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"563","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Language","name":"attribute","nodeTest":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"563"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"565","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"565"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"16","prec":"1","seq":"33","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"523","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Coverage","prio":"0","matches":"NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]","sType":"1NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"dc:coverage","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}coverage ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"524","C":[{"N":"let","var":"Q{}geolocation","slot":"0","sType":"* ","line":"530","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"530","C":[{"N":"str","val":"SOUTH-BOUND LATITUDE: "},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"attVal","name":"Q{}YMin"}]},{"N":"str","val":" * WEST-BOUND LONGITUDE: "},{"N":"check","card":"?","diag":"0|3||concat","C":[{"N":"attVal","name":"Q{}XMin"}]},{"N":"str","val":" * NORTH-BOUND LATITUDE: "},{"N":"check","card":"?","diag":"0|5||concat","C":[{"N":"attVal","name":"Q{}YMax"}]},{"N":"str","val":" * EAST-BOUND LONGITUDE: "},{"N":"check","card":"?","diag":"0|7||concat","C":[{"N":"attVal","name":"Q{}XMax"}]}]},{"N":"sequence","sType":"? ","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"531","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}geolocation","slot":"0","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"531"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"choose","sType":"? ","line":"534","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"534","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}ElevationMin"},{"N":"str","val":""}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}ElevationMax"},{"N":"str","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"535","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"535","C":[{"N":"str","val":" * ELEVATION MIN: "},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"attVal","name":"Q{}ElevationMin"}]},{"N":"str","val":" * ELEVATION MAX: "},{"N":"check","card":"?","diag":"0|3||concat","C":[{"N":"attVal","name":"Q{}ElevationMax"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","line":"537","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"537","C":[{"N":"attVal","name":"Q{}ElevationAbsolut"},{"N":"str","val":""}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"538","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"538","C":[{"N":"str","val":" * ELEVATION ABSOLUT: "},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"attVal","name":"Q{}ElevationAbsolut"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","line":"542","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"542","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}DepthMin"},{"N":"str","val":""}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}DepthMax"},{"N":"str","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"543","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"543","C":[{"N":"str","val":" * DEPTH MIN: "},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"attVal","name":"Q{}DepthMin"}]},{"N":"str","val":" * DEPTH MAX: "},{"N":"check","card":"?","diag":"0|3||concat","C":[{"N":"attVal","name":"Q{}DepthMax"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","line":"545","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"545","C":[{"N":"attVal","name":"Q{}DepthAbsolut"},{"N":"str","val":""}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"546","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"546","C":[{"N":"str","val":" * DEPTH ABSOLUT: "},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"attVal","name":"Q{}DepthAbsolut"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","line":"550","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"550","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}TimeMin"},{"N":"str","val":""}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}TimeMax"},{"N":"str","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"551","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"551","C":[{"N":"str","val":" * TIME MIN: "},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"attVal","name":"Q{}TimeMin"}]},{"N":"str","val":" * TIME MAX: "},{"N":"check","card":"?","diag":"0|3||concat","C":[{"N":"attVal","name":"Q{}TimeMax"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","line":"553","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"553","C":[{"N":"attVal","name":"Q{}TimeAbsolut"},{"N":"str","val":""}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"554","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"554","C":[{"N":"str","val":" * TIME ABSOLUT: "},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"attVal","name":"Q{}TimeAbsolut"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]}]},{"N":"templateRule","rank":"17","prec":"1","seq":"32","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"410","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Rdr_Dataset","prio":"0","matches":"NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","sType":"1NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"oai_dc:dc","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/oai_dc/}dc ","nsuri":"http://www.openarchives.org/OAI/2.0/oai_dc/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"411","C":[{"N":"sequence","sType":"* ","C":[{"N":"att","name":"xsi:schemaLocation","nsuri":"http://www.w3.org/2001/XMLSchema-instance","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.openarchives.org/OAI/2.0/oai_dc/ http://www.openarchives.org/OAI/2.0/oai_dc.xsd"}]},{"N":"applyT","sType":"* ","line":"413","mode":"Q{}oai_dc","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}TitleMain,NE nQ{http://www.w3.org/1999/xhtml}TitleMain]","sType":"*NE u[NE nQ{}TitleMain,NE nQ{http://www.w3.org/1999/xhtml}TitleMain]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"413"}]},{"N":"applyT","sType":"* ","line":"415","mode":"Q{}oai_dc","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","sType":"*NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"415"}]},{"N":"choose","sType":"* ","type":"item()*","line":"418","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","sType":"*NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"419"},{"N":"applyT","sType":"* ","line":"420","mode":"Q{}oai_dc","bSlot":"2","C":[{"N":"sort","role":"select","sType":"*NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","sType":"*NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"420"},{"N":"sortKey","sType":"?A ","C":[{"N":"check","card":"?","sType":"?A ","diag":"2|0|XTTE1020|sort","role":"select","C":[{"N":"data","sType":"*A ","role":"select","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}SortOrder","sType":"*NA nQ{}SortOrder","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"421"}]}]},{"N":"str","sType":"1AS ","val":"ascending","role":"order"},{"N":"str","sType":"1AS ","val":"en","role":"lang"},{"N":"str","sType":"1AS ","val":"#default","role":"caseOrder"},{"N":"str","sType":"1AS ","val":"true","role":"stable"}]}]}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}CreatingCorporation","sType":"*NA nQ{}CreatingCorporation","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"424"},{"N":"elem","name":"dc:creator","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}creator ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"425","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"426","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}CreatingCorporation","name":"attribute","nodeTest":"*NA nQ{}CreatingCorporation","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"426"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"applyT","sType":"* ","line":"431","mode":"Q{}oai_dc","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Subject,NE nQ{http://www.w3.org/1999/xhtml}Subject]","sType":"*NE u[NE nQ{}Subject,NE nQ{http://www.w3.org/1999/xhtml}Subject]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"431"}]},{"N":"applyT","sType":"* ","line":"432","mode":"Q{}oai_dc","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Collection,NE nQ{http://www.w3.org/1999/xhtml}Collection]","sType":"*NE u[NE nQ{}Collection,NE nQ{http://www.w3.org/1999/xhtml}Collection]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"432"}]},{"N":"applyT","sType":"* ","line":"434","mode":"Q{}oai_dc","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}TitleAbstract,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstract]","sType":"*NE u[NE nQ{}TitleAbstract,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstract]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"434"}]},{"N":"applyT","sType":"* ","line":"436","mode":"Q{}oai_dc","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}TitleAbstractAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstractAdditional]","sType":"*NE u[NE nQ{}TitleAbstractAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstractAdditional]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"436"}]},{"N":"elem","name":"dc:publisher","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}publisher ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"438","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"440","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}CreatingCorporation","name":"attribute","nodeTest":"*NA nQ{}CreatingCorporation","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"440"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"applyT","sType":"* ","line":"444","mode":"Q{}oai_dc","bSlot":"2","C":[{"N":"sort","role":"select","sType":"*NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","sType":"*NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"444"},{"N":"sortKey","sType":"?A ","C":[{"N":"check","card":"?","sType":"?A ","diag":"2|0|XTTE1020|sort","role":"select","C":[{"N":"data","sType":"*A ","role":"select","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}SortOrder","sType":"*NA nQ{}SortOrder","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"445"}]}]},{"N":"str","sType":"1AS ","val":"ascending","role":"order"},{"N":"str","sType":"1AS ","val":"en","role":"lang"},{"N":"str","sType":"1AS ","val":"#default","role":"caseOrder"},{"N":"str","sType":"1AS ","val":"true","role":"stable"}]}]}]},{"N":"callT","bSlot":"3","sType":"* ","name":"Q{}RdrDate","line":"448"},{"N":"applyT","sType":"* ","line":"450","mode":"Q{}oai_dc","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]","sType":"*NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"450"}]},{"N":"elem","name":"dc:type","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}type ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"452","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Dataset"}]}]},{"N":"elem","name":"dc:type","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}type ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"453","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"doc-type:ResearchData"}]}]},{"N":"applyT","sType":"* ","line":"457","mode":"Q{}oai_dc","bSlot":"2","C":[{"N":"docOrder","sType":"*NA nQ{}MimeType","role":"select","line":"457","C":[{"N":"slash","op":"/","sType":"*NA nQ{}MimeType","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}File,NE nQ{http://www.w3.org/1999/xhtml}File]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}MimeType"}]}]}]},{"N":"applyT","sType":"* ","line":"459","mode":"Q{}oai_dc","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}File,NE nQ{http://www.w3.org/1999/xhtml}File]","sType":"*NE u[NE nQ{}File,NE nQ{http://www.w3.org/1999/xhtml}File]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"459"}]},{"N":"elem","name":"dc:identifier","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}identifier ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"464","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"465","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"465","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}landingpage"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"applyT","sType":"* ","line":"471","mode":"Q{}oai_dc","bSlot":"2","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Language","sType":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"471"}]},{"N":"choose","sType":"* ","line":"473","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","sType":"*NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"473"},{"N":"applyT","sType":"* ","line":"474","mode":"Q{}oai_dc","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","sType":"*NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"474"}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"applyT","sType":"* ","line":"476","mode":"Q{}oai_dc","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","sType":"*NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"476"}]},{"N":"applyT","sType":"* ","line":"478","mode":"Q{}oai_dc","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]","sType":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"478"}]},{"N":"applyT","sType":"* ","line":"480","mode":"Q{}oai_dc","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","sType":"*NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"480"}]},{"N":"choose","sType":"? ","line":"481","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"481","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]"},{"N":"gc","op":"<","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}unixTimestamp","bSlot":"1"}]},{"N":"data","diag":"1|1||gc","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}UnixTimestamp"}]}]}]}]},{"N":"elem","name":"dc:rights","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}rights ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"482","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"embargo"}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"callT","bSlot":"4","sType":"* ","name":"Q{}citation","line":"485"}]}]}]}]}]},{"N":"overridden"},{"N":"output","C":[{"N":"property","name":"Q{http://saxon.sf.net/}stylesheet-version","value":"30"},{"N":"property","name":"method","value":"xml"},{"N":"property","name":"encoding","value":"utf-8"},{"N":"property","name":"indent","value":"yes"}]},{"N":"decimalFormat"}],"Σ":"3d032297"} \ No newline at end of file diff --git a/public/assets2/langCodeMap.xml b/public/assets2/langCodeMap.xml deleted file mode 100644 index c6c0fab..0000000 --- a/public/assets2/langCodeMap.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file