diff --git a/.classpath b/.classpath index e941ad5..8e795b1 100644 --- a/.classpath +++ b/.classpath @@ -6,12 +6,22 @@ + + + + + + + + + + @@ -22,15 +32,5 @@ - - - - - - - - - - diff --git a/src/main/java/org/gcube/accounting/aggregator/RegexRulesAggregator.java b/src/main/java/org/gcube/accounting/aggregator/RegexRulesAggregator.java index 41926a5..3513051 100644 --- a/src/main/java/org/gcube/accounting/aggregator/RegexRulesAggregator.java +++ b/src/main/java/org/gcube/accounting/aggregator/RegexRulesAggregator.java @@ -8,7 +8,7 @@ import java.util.concurrent.ScheduledFuture; import java.util.concurrent.ThreadFactory; import java.util.concurrent.TimeUnit; -import org.gcube.accounting.datamodel.validations.validators.RegexReplace; +import org.gcube.accounting.datamodel.validations.validators.MatcherReplace; import org.gcube.accounting.persistence.AccountingPersistenceConfiguration; import org.gcube.documentstore.records.DSMapper; import org.slf4j.Logger; @@ -23,6 +23,11 @@ public class RegexRulesAggregator implements Runnable { private static final ScheduledExecutorService REGEX_REDISCOVERY_POOL; + protected static final String DELAY = "delay"; + protected static final String TIME_UNIT = "timeUnit"; + + protected static final String REPLACE_RULES = "MatcherReplaceRules"; + static { REGEX_REDISCOVERY_POOL = Executors.newScheduledThreadPool(50, new ThreadFactory() { @@ -37,18 +42,12 @@ public class RegexRulesAggregator implements Runnable { } - - protected TimeUnit timeUnit = TimeUnit.MINUTES; protected long delay = TimeUnit.MINUTES.toMinutes(15); - protected static final String DELAY = "delay"; - protected static final String TIME_UNIT = "timeUnit"; - protected static final String JSON_ARRAY_CALLED_METHOD_RULES = "jsonArrayCalledMethodRules"; - protected ScheduledFuture rulesReloader; - protected List regexReplaceList; + protected List matcherReplaceList; protected AccountingPersistenceConfiguration accountingPersistenceConfiguration; @@ -62,26 +61,21 @@ public class RegexRulesAggregator implements Runnable { } protected RegexRulesAggregator() { - regexReplaceList = new ArrayList<>(); + matcherReplaceList = new ArrayList<>(); readConfiguration(); } - public List getRegexReplaceList() { - synchronized(regexReplaceList) { - return regexReplaceList; + public List getMatcherReplaceList() { + synchronized(matcherReplaceList) { + return matcherReplaceList; } } - public RegexReplace addRegexReplace(String serviceClass, String serviceName, String regex, String replace) { - RegexReplace regexReplace = new RegexReplace(serviceClass, serviceName, regex, replace); - return addRegexReplace(regexReplace); - } - - public RegexReplace addRegexReplace(RegexReplace regexReplace) { - synchronized(regexReplaceList) { - regexReplaceList.add(regexReplace); + public MatcherReplace addRegexReplace(MatcherReplace matcherReplace) { + synchronized(matcherReplaceList) { + matcherReplaceList.add(matcherReplace); } - return regexReplace; + return matcherReplace; } @@ -101,12 +95,13 @@ public class RegexRulesAggregator implements Runnable { logger.warn("Unable to retrieve regex reload delay. Goign to use last known delay {} {}", delay, timeUnit.name().toLowerCase()); } - String rulesString = accountingPersistenceConfiguration.getProperty(JSON_ARRAY_CALLED_METHOD_RULES); + String rulesString = accountingPersistenceConfiguration.getProperty(REPLACE_RULES); ObjectMapper mapper = DSMapper.getObjectMapper(); - JavaType type = mapper.getTypeFactory().constructCollectionType(List.class, RegexReplace.class); - List rules = mapper.readValue(rulesString, type); - synchronized(regexReplaceList) { - regexReplaceList = rules; + JavaType type = mapper.getTypeFactory().constructCollectionType(List.class, MatcherReplace.class); + + List rules = mapper.readValue(rulesString, type); + synchronized(matcherReplaceList) { + matcherReplaceList = rules; } } catch(Exception e) { diff --git a/src/main/java/org/gcube/accounting/datamodel/basetypes/AbstractServiceUsageRecord.java b/src/main/java/org/gcube/accounting/datamodel/basetypes/AbstractServiceUsageRecord.java index 8f2e5fd..b009623 100644 --- a/src/main/java/org/gcube/accounting/datamodel/basetypes/AbstractServiceUsageRecord.java +++ b/src/main/java/org/gcube/accounting/datamodel/basetypes/AbstractServiceUsageRecord.java @@ -7,7 +7,7 @@ import java.io.Serializable; import java.util.Map; import org.gcube.accounting.datamodel.BasicUsageRecord; -import org.gcube.accounting.datamodel.validations.annotations.CalledMethodRegexReplace; +import org.gcube.accounting.datamodel.validations.annotations.Harmonize; import org.gcube.documentstore.exception.InvalidValueException; import org.gcube.documentstore.records.implementation.RequiredField; import org.gcube.documentstore.records.implementation.validations.annotations.NotEmpty; @@ -53,7 +53,7 @@ public abstract class AbstractServiceUsageRecord extends BasicUsageRecord { /** * KEY for : Called Method */ - @RequiredField @NotEmpty @CalledMethodRegexReplace + @RequiredField @NotEmpty @Harmonize public static final String CALLED_METHOD = "calledMethod"; /** diff --git a/src/main/java/org/gcube/accounting/datamodel/validations/annotations/CalledMethodRegexReplace.java b/src/main/java/org/gcube/accounting/datamodel/validations/annotations/Harmonize.java similarity index 66% rename from src/main/java/org/gcube/accounting/datamodel/validations/annotations/CalledMethodRegexReplace.java rename to src/main/java/org/gcube/accounting/datamodel/validations/annotations/Harmonize.java index c8fb9b7..01084df 100644 --- a/src/main/java/org/gcube/accounting/datamodel/validations/annotations/CalledMethodRegexReplace.java +++ b/src/main/java/org/gcube/accounting/datamodel/validations/annotations/Harmonize.java @@ -5,7 +5,7 @@ import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; -import org.gcube.accounting.datamodel.validations.validators.CalledMethodRegexReplaceValidator; +import org.gcube.accounting.datamodel.validations.validators.Harmonizer; import org.gcube.documentstore.records.implementation.FieldDecorator; /** @@ -13,7 +13,7 @@ import org.gcube.documentstore.records.implementation.FieldDecorator; */ @Target(ElementType.FIELD) @Retention(RetentionPolicy.RUNTIME) -@FieldDecorator(action=CalledMethodRegexReplaceValidator.class) -public @interface CalledMethodRegexReplace { +@FieldDecorator(action=Harmonizer.class) +public @interface Harmonize { } diff --git a/src/main/java/org/gcube/accounting/datamodel/validations/validators/CalledMethodRegexReplaceValidator.java b/src/main/java/org/gcube/accounting/datamodel/validations/validators/Harmonizer.java similarity index 69% rename from src/main/java/org/gcube/accounting/datamodel/validations/validators/CalledMethodRegexReplaceValidator.java rename to src/main/java/org/gcube/accounting/datamodel/validations/validators/Harmonizer.java index 59c2d8d..96eadb3 100644 --- a/src/main/java/org/gcube/accounting/datamodel/validations/validators/CalledMethodRegexReplaceValidator.java +++ b/src/main/java/org/gcube/accounting/datamodel/validations/validators/Harmonizer.java @@ -2,7 +2,6 @@ package org.gcube.accounting.datamodel.validations.validators; import java.io.Serializable; import java.util.List; -import java.util.regex.Matcher; import org.gcube.accounting.aggregator.RegexRulesAggregator; import org.gcube.accounting.datamodel.basetypes.AbstractServiceUsageRecord; @@ -15,9 +14,9 @@ import org.slf4j.LoggerFactory; /** * @author Luca Frosini (ISTI - CNR) */ -public class CalledMethodRegexReplaceValidator implements FieldAction { +public class Harmonizer implements FieldAction { - private static Logger logger = LoggerFactory.getLogger(CalledMethodRegexReplaceValidator.class); + private static Logger logger = LoggerFactory.getLogger(Harmonizer.class); /** * {@inheritDoc} @@ -33,8 +32,6 @@ public class CalledMethodRegexReplaceValidator implements FieldAction { throw new InvalidValueException(value.toString() + "is not a " + String.class.getSimpleName()); } - String stringValue = (String) value; - AbstractServiceUsageRecord serviceUsageRecord = (AbstractServiceUsageRecord) record; String serviceClass = serviceUsageRecord.getServiceClass(); @@ -49,15 +46,14 @@ public class CalledMethodRegexReplaceValidator implements FieldAction { return value; } - List regexReplaceList = RegexRulesAggregator.getInstance().getRegexReplaceList(); + List matcherReplaceList = RegexRulesAggregator.getInstance().getMatcherReplaceList(); - for(RegexReplace regexReplace : regexReplaceList) { - if(serviceClass.compareTo(regexReplace.getServiceClass())==0 && serviceName.compareTo(regexReplace.getServiceName())==0) { - Matcher matcher = regexReplace.regexPattern.matcher(stringValue); - if(matcher.matches()) { - // TODO allow regex replace using matcher - return regexReplace.getReplace(); - } + for(MatcherReplace matcherReplace : matcherReplaceList) { + boolean matched = matcherReplace.check(serviceClass, serviceName, (String) value); + if(matched) { + serviceUsageRecord.setServiceClass(matcherReplace.getReplacer().getServiceClass()); + serviceUsageRecord.setServiceName(matcherReplace.getReplacer().getServiceName()); + return matcherReplace.getReplacer().getCalledMethod(); } } diff --git a/src/main/java/org/gcube/accounting/datamodel/validations/validators/MatcherReplace.java b/src/main/java/org/gcube/accounting/datamodel/validations/validators/MatcherReplace.java new file mode 100644 index 0000000..4344195 --- /dev/null +++ b/src/main/java/org/gcube/accounting/datamodel/validations/validators/MatcherReplace.java @@ -0,0 +1,46 @@ +package org.gcube.accounting.datamodel.validations.validators; + +import org.gcube.documentstore.exception.InvalidValueException; +import org.gcube.documentstore.records.DSMapper; + +import com.fasterxml.jackson.annotation.JsonSetter; + +public class MatcherReplace { + + protected MultiMatcher multiMatcher; + protected Replacer replacer; + + public MatcherReplace() {} + + public MultiMatcher getMultiMatcher() { + return multiMatcher; + } + + @JsonSetter(value="match") + public void setMultiMatcher(MultiMatcher multiMatcher) { + this.multiMatcher = multiMatcher; + } + + public Replacer getReplacer() { + return replacer; + } + + @JsonSetter(value="replace") + public void setReplacer(Replacer replacer) { + this.replacer = replacer; + } + + public boolean check(String serviceClass, String serviceName, String calledMethod) throws InvalidValueException { + return multiMatcher.match(serviceClass, serviceName, calledMethod); + } + + @Override + public String toString() { + try { + return DSMapper.getObjectMapper().writeValueAsString(this); + } catch(Exception e) { + return "MatcherReplace [multiMatcher=" + multiMatcher + ", replacer=" + replacer + "]"; + } + } + +} diff --git a/src/main/java/org/gcube/accounting/datamodel/validations/validators/MultiMatcher.java b/src/main/java/org/gcube/accounting/datamodel/validations/validators/MultiMatcher.java new file mode 100644 index 0000000..73b0e6a --- /dev/null +++ b/src/main/java/org/gcube/accounting/datamodel/validations/validators/MultiMatcher.java @@ -0,0 +1,79 @@ +package org.gcube.accounting.datamodel.validations.validators; + +import java.util.regex.Pattern; + +import com.fasterxml.jackson.annotation.JsonIgnore; + +public class MultiMatcher { + + protected String serviceClassRegex; + @JsonIgnore + protected Pattern serviceClassPattern; + + protected String serviceNameRegex; + @JsonIgnore + protected Pattern serviceNamePattern; + + protected String calledMethodRegex; + @JsonIgnore + protected Pattern calledMethodPattern; + + protected MultiMatcher() {} + + public MultiMatcher(String serviceClassRegex, String serviceNameRegex, String calledMethodRegex) { + setServiceClassRegex(serviceClassRegex); + setServiceNameRegex(serviceNameRegex); + setCalledMethodRegex(calledMethodRegex); + } + + protected Pattern getPattern(String regex) { + return Pattern.compile(regex, Pattern.CASE_INSENSITIVE); + } + + public String getServiceClassRegex() { + return serviceClassRegex; + } + + public void setServiceClassRegex(String serviceClassRegex) { + this.serviceClassRegex = serviceClassRegex; + this.serviceClassPattern = getPattern(serviceClassRegex); + } + + public String getServiceNameRegex() { + return serviceNameRegex; + } + + public void setServiceNameRegex(String serviceNameRegex) { + this.serviceNameRegex = serviceNameRegex; + this.serviceNamePattern = getPattern(serviceNameRegex); + } + + public String getCalledMethodRegex() { + return calledMethodRegex; + } + + public void setCalledMethodRegex(String calledMethodRegex) { + this.calledMethodRegex = calledMethodRegex; + this.calledMethodPattern = getPattern(calledMethodRegex); + } + + @JsonIgnore + public boolean match(String serviceClass, String serviceName, String calledMethod) { + return serviceClassPattern.matcher(serviceClass).matches() && + serviceNamePattern.matcher(serviceName).matches() && + calledMethodPattern.matcher(calledMethod).matches(); + } + + @Override + public String toString() { + return "MultiMatcher [serviceClassRegex=" + serviceClassRegex + ", serviceNameRegex=" + serviceNameRegex + + ", calledMethodRegex=" + calledMethodRegex + "]"; + } + + + + + + + +} \ No newline at end of file diff --git a/src/main/java/org/gcube/accounting/datamodel/validations/validators/RegexReplace.java b/src/main/java/org/gcube/accounting/datamodel/validations/validators/RegexReplace.java deleted file mode 100644 index 847ed10..0000000 --- a/src/main/java/org/gcube/accounting/datamodel/validations/validators/RegexReplace.java +++ /dev/null @@ -1,50 +0,0 @@ -package org.gcube.accounting.datamodel.validations.validators; - -import java.util.regex.Pattern; - -public class RegexReplace { - - protected String serviceClass; - protected String serviceName; - - protected String regex; - protected Pattern regexPattern; - - protected String replace; - - protected RegexReplace() {} - - public RegexReplace(String serviceClass, String serviceName, String regex, String replace) { - super(); - this.serviceClass = serviceClass; - this.serviceName = serviceName; - this.replace = replace; - setRegex(regex); - } - - public String getServiceClass() { - return serviceClass; - } - - public String getServiceName() { - return serviceName; - } - - protected void setRegex(String regex) { - this.regex = regex; - this.regexPattern = Pattern.compile(regex, Pattern.CASE_INSENSITIVE); - } - - public String getRegex() { - return regex; - } - - public Pattern getRegexPattern() { - return regexPattern; - } - - public String getReplace() { - return replace; - } - -} \ No newline at end of file diff --git a/src/main/java/org/gcube/accounting/datamodel/validations/validators/Replacer.java b/src/main/java/org/gcube/accounting/datamodel/validations/validators/Replacer.java new file mode 100644 index 0000000..033791a --- /dev/null +++ b/src/main/java/org/gcube/accounting/datamodel/validations/validators/Replacer.java @@ -0,0 +1,49 @@ +package org.gcube.accounting.datamodel.validations.validators; + +public class Replacer { + + protected String serviceClass; + protected String serviceName; + protected String calledMethod; + + public Replacer() { + + } + + public Replacer(String serviceClass, String serviceName, String calledMethod) { + this.serviceClass = serviceClass; + this.serviceName = serviceName; + this.calledMethod = calledMethod; + } + + public String getServiceClass() { + return serviceClass; + } + + public void setServiceClass(String serviceClass) { + this.serviceClass = serviceClass; + } + + public String getServiceName() { + return serviceName; + } + + public void setServiceName(String serviceName) { + this.serviceName = serviceName; + } + + public String getCalledMethod() { + return calledMethod; + } + + public void setCalledMethod(String calledMethod) { + this.calledMethod = calledMethod; + } + + @Override + public String toString() { + return "Replacer [serviceClass=" + serviceClass + ", serviceName=" + serviceName + ", calledMethod=" + + calledMethod + "]"; + } + +} \ No newline at end of file diff --git a/src/test/java/org/gcube/accounting/aggregator/HarmonizerTest.java b/src/test/java/org/gcube/accounting/aggregator/HarmonizerTest.java new file mode 100644 index 0000000..bc1ef39 --- /dev/null +++ b/src/test/java/org/gcube/accounting/aggregator/HarmonizerTest.java @@ -0,0 +1,35 @@ +package org.gcube.accounting.aggregator; + +import java.io.InputStream; +import java.util.List; + +import org.gcube.accounting.datamodel.validations.validators.MatcherReplace; +import org.gcube.documentstore.records.DSMapper; +import org.gcube.testutility.ContextTest; +import org.junit.Test; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +import com.fasterxml.jackson.databind.ObjectMapper; + +public class HarmonizerTest extends ContextTest { + + private static final Logger logger = LoggerFactory.getLogger(HarmonizerTest.class); + + @Test + public void test() { + RegexRulesAggregator regexRulesAggregator = RegexRulesAggregator.getInstance(); + List list = regexRulesAggregator.getMatcherReplaceList(); + for(MatcherReplace matcherReplace : list) { + logger.debug("{}", matcherReplace); + } + } + + @Test + public void testUnMarshallingMatcherReplace() throws Exception { + InputStream inputStream = HarmonizerTest.class.getClassLoader().getResourceAsStream("newRules.json"); + ObjectMapper mapper = DSMapper.getObjectMapper(); + MatcherReplace matcherReplace = mapper.readValue(inputStream, MatcherReplace.class); + logger.debug("{}", matcherReplace); + } +} diff --git a/src/test/java/org/gcube/accounting/aggregator/RegexRulesAggregatorTest.java b/src/test/java/org/gcube/accounting/aggregator/RegexRulesAggregatorTest.java deleted file mode 100644 index cc25301..0000000 --- a/src/test/java/org/gcube/accounting/aggregator/RegexRulesAggregatorTest.java +++ /dev/null @@ -1,24 +0,0 @@ -package org.gcube.accounting.aggregator; - -import java.util.List; - -import org.gcube.accounting.datamodel.validations.validators.RegexReplace; -import org.gcube.testutility.ScopedTest; -import org.junit.Test; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - -public class RegexRulesAggregatorTest extends ScopedTest { - - private static final Logger logger = LoggerFactory.getLogger(RegexRulesAggregatorTest.class); - - @Test - public void test() { - RegexRulesAggregator regexRulesAggregator = RegexRulesAggregator.getInstance(); - List list = regexRulesAggregator.getRegexReplaceList(); - for(RegexReplace regexReplace : list) { - logger.debug("{} {} {} {}", regexReplace.getServiceClass(), regexReplace.getServiceName(), regexReplace.getRegex(), regexReplace.getReplace()); - } - } - -} diff --git a/src/test/java/org/gcube/accounting/datamodel/aggregation/AggregatedJobUsageRecordTest.java b/src/test/java/org/gcube/accounting/datamodel/aggregation/AggregatedJobUsageRecordTest.java index 55a6d71..2d8045a 100644 --- a/src/test/java/org/gcube/accounting/datamodel/aggregation/AggregatedJobUsageRecordTest.java +++ b/src/test/java/org/gcube/accounting/datamodel/aggregation/AggregatedJobUsageRecordTest.java @@ -11,7 +11,7 @@ import org.gcube.common.authorization.library.provider.SecurityTokenProvider; import org.gcube.common.scope.api.ScopeProvider; import org.gcube.documentstore.exception.InvalidValueException; import org.gcube.documentstore.exception.NotAggregatableRecordsExceptions; -import org.gcube.testutility.ScopedTest; +import org.gcube.testutility.ContextTest; import org.gcube.testutility.TestUsageRecord; import org.junit.Assert; import org.junit.Test; @@ -21,7 +21,7 @@ import org.slf4j.LoggerFactory; /** * @author Luca Frosini (ISTI - CNR) */ -public class AggregatedJobUsageRecordTest extends ScopedTest { +public class AggregatedJobUsageRecordTest extends ContextTest { private static Logger logger = LoggerFactory.getLogger(AggregatedJobUsageRecordTest.class); diff --git a/src/test/java/org/gcube/accounting/datamodel/aggregation/AggregatedServiceUsageRecordTest.java b/src/test/java/org/gcube/accounting/datamodel/aggregation/AggregatedServiceUsageRecordTest.java index 46e0665..27a1aee 100644 --- a/src/test/java/org/gcube/accounting/datamodel/aggregation/AggregatedServiceUsageRecordTest.java +++ b/src/test/java/org/gcube/accounting/datamodel/aggregation/AggregatedServiceUsageRecordTest.java @@ -5,7 +5,6 @@ package org.gcube.accounting.datamodel.aggregation; import java.util.Set; -import org.gcube.accounting.datamodel.aggregation.AggregatedServiceUsageRecord; import org.gcube.accounting.datamodel.usagerecords.ServiceUsageRecord; import org.gcube.accounting.datamodel.usagerecords.ServiceUsageRecordTest; import org.gcube.common.authorization.library.provider.SecurityTokenProvider; @@ -13,7 +12,7 @@ import org.gcube.common.scope.api.ScopeProvider; import org.gcube.documentstore.exception.InvalidValueException; import org.gcube.documentstore.exception.NotAggregatableRecordsExceptions; import org.gcube.documentstore.records.DSMapper; -import org.gcube.testutility.ScopedTest; +import org.gcube.testutility.ContextTest; import org.gcube.testutility.TestUsageRecord; import org.junit.Assert; import org.junit.Test; @@ -26,7 +25,7 @@ import com.fasterxml.jackson.core.JsonProcessingException; * @author Luca Frosini (ISTI - CNR) * */ -public class AggregatedServiceUsageRecordTest extends ScopedTest { +public class AggregatedServiceUsageRecordTest extends ContextTest { private static Logger logger = LoggerFactory.getLogger(AggregatedServiceUsageRecordTest.class); diff --git a/src/test/java/org/gcube/accounting/datamodel/aggregation/AggregatedStorageStatusRecordTest.java b/src/test/java/org/gcube/accounting/datamodel/aggregation/AggregatedStorageStatusRecordTest.java index ab49377..113f645 100644 --- a/src/test/java/org/gcube/accounting/datamodel/aggregation/AggregatedStorageStatusRecordTest.java +++ b/src/test/java/org/gcube/accounting/datamodel/aggregation/AggregatedStorageStatusRecordTest.java @@ -11,7 +11,7 @@ import org.gcube.common.authorization.library.provider.SecurityTokenProvider; import org.gcube.common.scope.api.ScopeProvider; import org.gcube.documentstore.exception.InvalidValueException; import org.gcube.documentstore.exception.NotAggregatableRecordsExceptions; -import org.gcube.testutility.ScopedTest; +import org.gcube.testutility.ContextTest; import org.gcube.testutility.TestUsageRecord; import org.junit.Assert; import org.junit.Test; @@ -22,7 +22,7 @@ import org.slf4j.LoggerFactory; * @author Alessandro Pieve (ISTI - CNR) alessandro.pieve@isti.cnr.it * */ -public class AggregatedStorageStatusRecordTest extends ScopedTest { +public class AggregatedStorageStatusRecordTest extends ContextTest { private static Logger logger = LoggerFactory.getLogger(AggregatedStorageStatusRecordTest.class); diff --git a/src/test/java/org/gcube/accounting/datamodel/aggregation/AggregatedStorageUsageRecordTest.java b/src/test/java/org/gcube/accounting/datamodel/aggregation/AggregatedStorageUsageRecordTest.java index 63f060e..603c284 100644 --- a/src/test/java/org/gcube/accounting/datamodel/aggregation/AggregatedStorageUsageRecordTest.java +++ b/src/test/java/org/gcube/accounting/datamodel/aggregation/AggregatedStorageUsageRecordTest.java @@ -5,14 +5,13 @@ package org.gcube.accounting.datamodel.aggregation; import java.util.Set; -import org.gcube.accounting.datamodel.aggregation.AggregatedStorageUsageRecord; import org.gcube.accounting.datamodel.usagerecords.StorageUsageRecord; import org.gcube.accounting.datamodel.usagerecords.StorageUsageRecordTest; import org.gcube.common.authorization.library.provider.SecurityTokenProvider; import org.gcube.common.scope.api.ScopeProvider; import org.gcube.documentstore.exception.InvalidValueException; import org.gcube.documentstore.exception.NotAggregatableRecordsExceptions; -import org.gcube.testutility.ScopedTest; +import org.gcube.testutility.ContextTest; import org.gcube.testutility.TestUsageRecord; import org.junit.Assert; import org.junit.Test; @@ -23,7 +22,7 @@ import org.slf4j.LoggerFactory; * @author Luca Frosini (ISTI - CNR) * */ -public class AggregatedStorageUsageRecordTest extends ScopedTest { +public class AggregatedStorageUsageRecordTest extends ContextTest { private static Logger logger = LoggerFactory.getLogger(AggregatedStorageUsageRecordTest.class); diff --git a/src/test/java/org/gcube/accounting/datamodel/usagerecords/JobUsageRecordTest.java b/src/test/java/org/gcube/accounting/datamodel/usagerecords/JobUsageRecordTest.java index 35a1912..074ad4a 100644 --- a/src/test/java/org/gcube/accounting/datamodel/usagerecords/JobUsageRecordTest.java +++ b/src/test/java/org/gcube/accounting/datamodel/usagerecords/JobUsageRecordTest.java @@ -12,7 +12,7 @@ import org.gcube.common.authorization.library.provider.SecurityTokenProvider; import org.gcube.common.scope.api.ScopeProvider; import org.gcube.documentstore.exception.InvalidValueException; import org.gcube.documentstore.records.Record; -import org.gcube.testutility.ScopedTest; +import org.gcube.testutility.ContextTest; import org.gcube.testutility.TestUsageRecord; import org.junit.Assert; import org.junit.Test; @@ -23,7 +23,7 @@ import org.slf4j.LoggerFactory; * @author Luca Frosini (ISTI - CNR) * */ -public class JobUsageRecordTest extends ScopedTest { +public class JobUsageRecordTest extends ContextTest { private static Logger logger = LoggerFactory.getLogger(JobUsageRecordTest.class); diff --git a/src/test/java/org/gcube/accounting/datamodel/usagerecords/ServiceUsageRecordTest.java b/src/test/java/org/gcube/accounting/datamodel/usagerecords/ServiceUsageRecordTest.java index 77efc0a..f221361 100644 --- a/src/test/java/org/gcube/accounting/datamodel/usagerecords/ServiceUsageRecordTest.java +++ b/src/test/java/org/gcube/accounting/datamodel/usagerecords/ServiceUsageRecordTest.java @@ -12,7 +12,7 @@ import org.gcube.accounting.aggregator.RegexRulesAggregator; import org.gcube.accounting.datamodel.UsageRecord; import org.gcube.accounting.datamodel.aggregation.AggregatedServiceUsageRecord; import org.gcube.accounting.datamodel.basetypes.AbstractServiceUsageRecord; -import org.gcube.accounting.datamodel.validations.validators.RegexReplace; +import org.gcube.accounting.datamodel.validations.validators.MatcherReplace; import org.gcube.common.authorization.library.provider.SecurityTokenProvider; import org.gcube.common.scope.api.ScopeProvider; import org.gcube.documentstore.exception.InvalidValueException; @@ -20,7 +20,7 @@ import org.gcube.documentstore.records.DSMapper; import org.gcube.documentstore.records.Record; import org.gcube.documentstore.records.RecordUtility; import org.gcube.documentstore.records.aggregation.AggregationScheduler; -import org.gcube.testutility.ScopedTest; +import org.gcube.testutility.ContextTest; import org.gcube.testutility.TestUsageRecord; import org.junit.Assert; import org.junit.Test; @@ -30,7 +30,7 @@ import org.slf4j.LoggerFactory; /** * @author Luca Frosini (ISTI - CNR) */ -public class ServiceUsageRecordTest extends ScopedTest { +public class ServiceUsageRecordTest extends ContextTest { private static Logger logger = LoggerFactory.getLogger(ServiceUsageRecordTest.class); @@ -174,9 +174,9 @@ public class ServiceUsageRecordTest extends ScopedTest { logger.debug("{}", usageRecord); RegexRulesAggregator regexRulesAggregator = RegexRulesAggregator.getInstance(); - List list = regexRulesAggregator.getRegexReplaceList(); - for(RegexReplace regexReplace : list) { - logger.debug("{} {} {} {}", regexReplace.getServiceClass(), regexReplace.getServiceName(), regexReplace.getRegex(), regexReplace.getReplace()); + List list = regexRulesAggregator.getMatcherReplaceList(); + for(MatcherReplace matcherReplace : list) { + logger.debug("{}", matcherReplace); } diff --git a/src/test/java/org/gcube/accounting/datamodel/usagerecords/StorageStatusRecordTest.java b/src/test/java/org/gcube/accounting/datamodel/usagerecords/StorageStatusRecordTest.java index 638501a..75c521e 100644 --- a/src/test/java/org/gcube/accounting/datamodel/usagerecords/StorageStatusRecordTest.java +++ b/src/test/java/org/gcube/accounting/datamodel/usagerecords/StorageStatusRecordTest.java @@ -12,7 +12,7 @@ import org.gcube.common.authorization.library.provider.SecurityTokenProvider; import org.gcube.common.scope.api.ScopeProvider; import org.gcube.documentstore.exception.InvalidValueException; import org.gcube.documentstore.records.Record; -import org.gcube.testutility.ScopedTest; +import org.gcube.testutility.ContextTest; import org.gcube.testutility.TestUsageRecord; import org.junit.Assert; import org.junit.Test; @@ -23,7 +23,7 @@ import org.slf4j.LoggerFactory; * @author Alessandro Pieve (ISTI - CNR) alessandro.pieve@isti.cnr.it * */ -public class StorageStatusRecordTest extends ScopedTest { +public class StorageStatusRecordTest extends ContextTest { private static Logger logger = LoggerFactory.getLogger(StorageStatusRecordTest.class); diff --git a/src/test/java/org/gcube/accounting/datamodel/usagerecords/StorageUsageRecordTest.java b/src/test/java/org/gcube/accounting/datamodel/usagerecords/StorageUsageRecordTest.java index ba2f7a4..03fccad 100644 --- a/src/test/java/org/gcube/accounting/datamodel/usagerecords/StorageUsageRecordTest.java +++ b/src/test/java/org/gcube/accounting/datamodel/usagerecords/StorageUsageRecordTest.java @@ -12,7 +12,7 @@ import org.gcube.common.authorization.library.provider.SecurityTokenProvider; import org.gcube.common.scope.api.ScopeProvider; import org.gcube.documentstore.exception.InvalidValueException; import org.gcube.documentstore.records.Record; -import org.gcube.testutility.ScopedTest; +import org.gcube.testutility.ContextTest; import org.gcube.testutility.TestUsageRecord; import org.junit.Assert; import org.junit.Test; @@ -23,7 +23,7 @@ import org.slf4j.LoggerFactory; * @author Luca Frosini (ISTI - CNR) * */ -public class StorageUsageRecordTest extends ScopedTest { +public class StorageUsageRecordTest extends ContextTest { private static Logger logger = LoggerFactory.getLogger(StorageUsageRecordTest.class); diff --git a/src/test/java/org/gcube/accounting/datamodel/validations/validators/TestRegexReplaceRules.java b/src/test/java/org/gcube/accounting/datamodel/validations/validators/TestRegexReplaceRules.java index fb05a18..0b77c36 100644 --- a/src/test/java/org/gcube/accounting/datamodel/validations/validators/TestRegexReplaceRules.java +++ b/src/test/java/org/gcube/accounting/datamodel/validations/validators/TestRegexReplaceRules.java @@ -5,7 +5,6 @@ import java.io.File; import java.io.FileReader; import java.io.InputStream; import java.net.URL; -import java.util.regex.Matcher; import org.gcube.documentstore.records.DSMapper; import org.junit.Test; @@ -30,18 +29,20 @@ public class TestRegexReplaceRules { for(String aggregationTest : aggregationTests) { ObjectMapper mapper = DSMapper.getObjectMapper(); InputStream regexInputStream = TestRegexReplaceRules.class.getClassLoader().getResourceAsStream(aggregationTest + "-rule.json"); - RegexReplace regexReplace = mapper.readValue(regexInputStream, RegexReplace.class); + MatcherReplace matcherReplace = mapper.readValue(regexInputStream, MatcherReplace.class); + Replacer replacer = matcherReplace.getReplacer(); URL url = TestRegexReplaceRules.class.getClassLoader().getResource(aggregationTest + "-values.csv"); File elaborationFile = new File(url.toURI()); try(BufferedReader br = new BufferedReader(new FileReader(elaborationFile))) { for(String line; (line = br.readLine()) != null;) { - Matcher matcher = regexReplace.regexPattern.matcher(line); - if(matcher.matches()) { - logger.info("{} -> {}", line, regexReplace.getReplace()); + String[] splittedLine = line.split(","); + boolean matched = matcherReplace.check(splittedLine[0],splittedLine[1],splittedLine[2]); + if(matched) { + logger.info("{} -> {},{},{}", line, replacer.getServiceClass(), replacer.getServiceName(), replacer.getCalledMethod()); } else { - logger.error("{} does not match {}. This MUST not occur.", line, regexReplace.getRegex()); - throw new Exception(line + " does not match "+ regexReplace.getRegex() + ". This MUST not occur."); + logger.error("{} does not match {}. This MUST not occur.", line, matcherReplace.getMultiMatcher().toString()); + throw new Exception(line + " does not match "+ matcherReplace.getMultiMatcher().toString() + ". This MUST not occur."); } } @@ -49,5 +50,6 @@ public class TestRegexReplaceRules { throw e; } } + } } diff --git a/src/test/java/org/gcube/documentstore/persistence/FalbackTest.java b/src/test/java/org/gcube/documentstore/persistence/FalbackTest.java index ff463d0..9ffcd14 100644 --- a/src/test/java/org/gcube/documentstore/persistence/FalbackTest.java +++ b/src/test/java/org/gcube/documentstore/persistence/FalbackTest.java @@ -10,13 +10,13 @@ import java.io.IOException; import org.gcube.accounting.persistence.AccountingPersistenceFactory; import org.gcube.documentstore.records.Record; import org.gcube.documentstore.records.RecordUtility; -import org.gcube.testutility.ScopedTest; +import org.gcube.testutility.ContextTest; import org.gcube.testutility.TestUsageRecord; import org.junit.Test; import org.slf4j.Logger; import org.slf4j.LoggerFactory; -public class FalbackTest extends ScopedTest { +public class FalbackTest extends ContextTest { private static Logger logger = LoggerFactory.getLogger(FalbackTest.class); diff --git a/src/test/java/org/gcube/testutility/ContextTest.java b/src/test/java/org/gcube/testutility/ContextTest.java new file mode 100644 index 0000000..abcf237 --- /dev/null +++ b/src/test/java/org/gcube/testutility/ContextTest.java @@ -0,0 +1,103 @@ +/** + * + */ +package org.gcube.testutility; + +import java.io.IOException; +import java.io.InputStream; +import java.util.Properties; + +import org.gcube.common.authorization.client.Constants; +import org.gcube.common.authorization.client.exceptions.ObjectNotFound; +import org.gcube.common.authorization.library.AuthorizationEntry; +import org.gcube.common.authorization.library.provider.AuthorizationProvider; +import org.gcube.common.authorization.library.provider.ClientInfo; +import org.gcube.common.authorization.library.provider.SecurityTokenProvider; +import org.gcube.common.authorization.library.utils.Caller; +import org.gcube.common.scope.api.ScopeProvider; +import org.junit.AfterClass; +import org.junit.BeforeClass; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +/** + * @author Luca Frosini (ISTI - CNR) + * + */ +public class ContextTest { + + private static final Logger logger = LoggerFactory.getLogger(ContextTest.class); + + protected static Properties properties; + protected static final String PROPERTIES_FILENAME = "token.properties"; + + public static final String PARENT_DEFAULT_TEST_SCOPE; + public static final String DEFAULT_TEST_SCOPE; + public static final String ALTERNATIVE_TEST_SCOPE; + + public static final String DEFAULT_TEST_SCOPE_ANOTHER_USER; + + static { + properties = new Properties(); + InputStream input = ContextTest.class.getClassLoader().getResourceAsStream(PROPERTIES_FILENAME); + + try { + // load the properties file + properties.load(input); + } catch(IOException e) { + throw new RuntimeException(e); + } + + // PARENT_DEFAULT_TEST_SCOPE = "/pred4s" + // DEFAULT_TEST_SCOPE_NAME = PARENT_DEFAULT_TEST_SCOPE + "/preprod"; + // ALTERNATIVE_TEST_SCOPE = DEFAULT_TEST_SCOPE_NAME + "/preVRE"; + + + PARENT_DEFAULT_TEST_SCOPE = "/gcube"; + DEFAULT_TEST_SCOPE = PARENT_DEFAULT_TEST_SCOPE + "/devNext"; + ALTERNATIVE_TEST_SCOPE = DEFAULT_TEST_SCOPE + "/NextNext"; + + DEFAULT_TEST_SCOPE_ANOTHER_USER = "lucio.lelii_" + DEFAULT_TEST_SCOPE; + + try { + setContextByName(DEFAULT_TEST_SCOPE); + } catch(Exception e) { + throw new RuntimeException(e); + } + } + + public static String getCurrentScope(String token) throws ObjectNotFound, Exception { + AuthorizationEntry authorizationEntry = Constants.authorizationService().get(token); + String context = authorizationEntry.getContext(); + logger.info("Context of token {} is {}", token, context); + return context; + } + + public static void setContextByName(String fullContextName) throws ObjectNotFound, Exception { + String token = ContextTest.properties.getProperty(fullContextName); + setContext(token); + } + + private static void setContext(String token) throws ObjectNotFound, Exception { + SecurityTokenProvider.instance.set(token); + AuthorizationEntry authorizationEntry = Constants.authorizationService().get(token); + ClientInfo clientInfo = authorizationEntry.getClientInfo(); + logger.debug("User : {} - Type : {}", clientInfo.getId(), clientInfo.getType().name()); + String qualifier = authorizationEntry.getQualifier(); + Caller caller = new Caller(clientInfo, qualifier); + AuthorizationProvider.instance.set(caller); + ScopeProvider.instance.set(getCurrentScope(token)); + } + + @BeforeClass + public static void beforeClass() throws Exception { + setContextByName(DEFAULT_TEST_SCOPE); + } + + @AfterClass + public static void afterClass() throws Exception { + SecurityTokenProvider.instance.reset(); + ScopeProvider.instance.reset(); + } + +} diff --git a/src/test/java/org/gcube/testutility/ScopedTest.java b/src/test/java/org/gcube/testutility/ScopedTest.java deleted file mode 100644 index 7a07e83..0000000 --- a/src/test/java/org/gcube/testutility/ScopedTest.java +++ /dev/null @@ -1,90 +0,0 @@ -/** - * - */ -package org.gcube.testutility; - -import java.io.IOException; -import java.io.InputStream; -import java.util.Properties; - -import org.gcube.common.authorization.client.Constants; -import org.gcube.common.authorization.client.exceptions.ObjectNotFound; -import org.gcube.common.authorization.library.AuthorizationEntry; -import org.gcube.common.authorization.library.provider.SecurityTokenProvider; -import org.gcube.common.scope.api.ScopeProvider; -import org.junit.AfterClass; -import org.junit.BeforeClass; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - -/** - * @author Luca Frosini (ISTI - CNR) - * - */ -public class ScopedTest { - - private static final Logger logger = LoggerFactory.getLogger(ScopedTest.class); - - protected static final String PROPERTIES_FILENAME = "token.properties"; - - private static final String GCUBE_DEVNEXT_VARNAME = "GCUBE_DEVNEXT"; - public static final String GCUBE_DEVNEXT; - - private static final String GCUBE_DEVNEXT_NEXTNEXT_VARNAME = "GCUBE_DEVNEXT_NEXTNEXT"; - public static final String GCUBE_DEVNEXT_NEXTNEXT; - - public static final String GCUBE_DEVSEC_VARNAME = "GCUBE_DEVSEC"; - public static final String GCUBE_DEVSEC; - - public static final String GCUBE_DEVSEC_DEVVRE_VARNAME = "GCUBE_DEVSEC_DEVVRE"; - public static final String GCUBE_DEVSEC_DEVVRE; - - public static final String DEFAULT_TEST_SCOPE; - public static final String ALTERNATIVE_TEST_SCOPE; - - static { - Properties properties = new Properties(); - InputStream input = ScopedTest.class.getClassLoader().getResourceAsStream(PROPERTIES_FILENAME); - - try { - // load the properties file - properties.load(input); - } catch (IOException e) { - throw new RuntimeException(e); - } - - GCUBE_DEVNEXT = properties.getProperty(GCUBE_DEVNEXT_VARNAME); - GCUBE_DEVNEXT_NEXTNEXT = properties.getProperty(GCUBE_DEVNEXT_NEXTNEXT_VARNAME); - - GCUBE_DEVSEC = properties.getProperty(GCUBE_DEVSEC_VARNAME); - GCUBE_DEVSEC_DEVVRE = properties.getProperty(GCUBE_DEVSEC_DEVVRE_VARNAME); - - DEFAULT_TEST_SCOPE = GCUBE_DEVNEXT; - ALTERNATIVE_TEST_SCOPE = GCUBE_DEVSEC; - } - - public static String getCurrentScope(String token) throws ObjectNotFound, Exception{ - AuthorizationEntry authorizationEntry = Constants.authorizationService().get(token); - String context = authorizationEntry.getContext(); - logger.info("Context of token {} is {}", token, context); - return context; - } - - - public static void setContext(String token) throws ObjectNotFound, Exception{ - SecurityTokenProvider.instance.set(token); - ScopeProvider.instance.set(getCurrentScope(token)); - } - - @BeforeClass - public static void beforeClass() throws Exception{ - setContext(DEFAULT_TEST_SCOPE); - } - - @AfterClass - public static void afterClass() throws Exception{ - SecurityTokenProvider.instance.reset(); - ScopeProvider.instance.reset(); - } - -} diff --git a/src/test/resources/.gitignore b/src/test/resources/.gitignore new file mode 100644 index 0000000..a8e4366 --- /dev/null +++ b/src/test/resources/.gitignore @@ -0,0 +1 @@ +/token.properties diff --git a/src/test/resources/AuthorizationService-generate-rule.json b/src/test/resources/AuthorizationService-generate-rule.json index 6f9c8ef..6b7b294 100644 --- a/src/test/resources/AuthorizationService-generate-rule.json +++ b/src/test/resources/AuthorizationService-generate-rule.json @@ -1,6 +1,12 @@ { - "regex": "^\/{0,1}gcube\/service\/generate.*", - "replace": "/gcube/service/generate/{id}", - "serviceClass": "Common", - "serviceName": "AuthorizationService" -} + "match": { + "serviceClassRegex": "Common", + "serviceNameRegex": "AuthorizationService", + "calledMethodRegex": "^/{0,1}gcube/service/generate.*" + }, + "replace": { + "serviceClass": "Common", + "serviceName": "AuthorizationService", + "calledMethod": "generate" + } +} \ No newline at end of file diff --git a/src/test/resources/AuthorizationService-generate-values.csv b/src/test/resources/AuthorizationService-generate-values.csv index 46c87be..56ce8ba 100644 --- a/src/test/resources/AuthorizationService-generate-values.csv +++ b/src/test/resources/AuthorizationService-generate-values.csv @@ -1,670 +1,670 @@ -gcube/service/generate/aconrad -gcube/service/generate/afalierou -gcube/service/generate/akarasimos -gcube/service/generate/alejandrocallara -gcube/service/generate/emsbach -gcube/service/generate/enrico.anello -gcube/service/generate/eric.foucher -gcube/service/generate/fabio.carrara90 -gcube/service/generate/jacq.fabienne -gcube/service/generate/realgcp -gcube/service/generate/risse -gcube/service/generate/roberthuber -gcube/service/generate/roberto.cirillo -gcube/service/generate/4.facchini -gcube/service/generate/4tikhonov -gcube/service/generate/a.benmhamed -gcube/service/generate/a.ellenbroek -gcube/service/generate/a.muscella -gcube/service/generate/abhikjana1 -gcube/service/generate/abu.shaheen -gcube/service/generate/achille -gcube/service/generate/acmilanfan -gcube/service/generate/acris -gcube/service/generate/adele -gcube/service/generate/adeline -gcube/service/generate/aikimoto -gcube/service/generate/alaimos -gcube/service/generate/ale.olivieri84 -gcube/service/generate/ale.pulse -gcube/service/generate/cedber -gcube/service/generate/cfwelch -gcube/service/generate/emmanuel.blondel -gcube/service/generate/emostarda -gcube/service/generate/enrico.candino -gcube/service/generate/enrique -gcube/service/generate/eoghan.kelly -gcube/service/generate/epournaras -gcube/service/generate/eugenio -gcube/service/generate/f.ilievski -gcube/service/generate/fab.butini -gcube/service/generate/fabio.fiorellato -gcube/service/generate/fabio.saracco -gcube/service/generate/fabio.sinibaldi -gcube/service/generate/fabio2111 -gcube/service/generate/ivano.dini -gcube/service/generate/j.duarteg -gcube/service/generate/jaanbi.jb -gcube/service/generate/jason.cope -gcube/service/generate/jdaen -gcube/service/generate/jean-noel.druon -gcube/service/generate/raularones -gcube/service/generate/rebecca.spinelli -gcube/service/generate/recon.hungary -gcube/service/generate/retos -gcube/service/generate/rinzivillo -gcube/service/generate/roanne.collins -gcube/service/generate/roar.nybo -gcube/service/generate/robert.lefebure -gcube/service/generate/roberta -gcube/service/generate/roberto.aquilano -gcube/service/generate/v.maffione -gcube/service/generate/alessandrachirivi -gcube/service/generate/alessandro.chessa -gcube/service/generate/alessandro.ciattaglia -gcube/service/generate/alessandro.pieve -gcube/service/generate/alessandro.suglia -gcube/service/generate/alessandro.tibo -gcube/service/generate/alessia.bardi -gcube/service/generate/alexander.richter -gcube/service/generate/alexandra.schwaab -gcube/service/generate/alexandre.morin -gcube/service/generate/alfred.sandstrom -gcube/service/generate/alina.sirbu -gcube/service/generate/am -gcube/service/generate/amir.menczel -gcube/service/generate/amishra -gcube/service/generate/amnocas -gcube/service/generate/anais.turpault.1 -gcube/service/generate/anastasis -gcube/service/generate/andras -gcube/service/generate/andre.boustany -gcube/service/generate/andrea -gcube/service/generate/andrea.dellamico -gcube/service/generate/andrea.dessi -gcube/service/generate/andrea.manieri -gcube/service/generate/andrea.mannocci -gcube/service/generate/andrea.manzi.1 -gcube/service/generate/andrea.marchetti -gcube/service/generate/andrea.musco -gcube/service/generate/andrea.pizzo -gcube/service/generate/andrea.rossi -gcube/service/generate/andreacimino -gcube/service/generate/andreaferracani -gcube/service/generate/andreas.bannach -gcube/service/generate/andrej.lapanje -gcube/service/generate/ankushjain3005 -gcube/service/generate/anna -gcube/service/generate/anna.molino -gcube/service/generate/anna.pineau -gcube/service/generate/annamolino -gcube/service/generate/annarita.liburdi -gcube/service/generate/anne-lauscher -gcube/service/generate/anne.cooper -gcube/service/generate/anni.pauly -gcube/service/generate/antgers -gcube/service/generate/antoine.rougier -gcube/service/generate/anton.ellenbroek -gcube/service/generate/antonino.crivello -gcube/service/generate/antonio.gioia82 -gcube/service/generate/antonio.maffia -gcube/service/generate/anupama6d -gcube/service/generate/arusso -gcube/service/generate/attardi -gcube/service/generate/attila.kreiter -gcube/service/generate/atzori -gcube/service/generate/aureliano.gentile -gcube/service/generate/aureliano.gentile.1 -gcube/service/generate/aveti123 -gcube/service/generate/avnispen -gcube/service/generate/aymen.charef -gcube/service/generate/b.crotti -gcube/service/generate/banski -gcube/service/generate/baoxu.shi -gcube/service/generate/baptiste.grenier -gcube/service/generate/barbara.furletti -gcube/service/generate/bartj -gcube/service/generate/bassobassista -gcube/service/generate/bastienmerigot -gcube/service/generate/baudouin.raoult -gcube/service/generate/benedetti.filippo -gcube/service/generate/benin80 -gcube/service/generate/benlukepayne -gcube/service/generate/bfetahu -gcube/service/generate/bichen.shi -gcube/service/generate/bramvm -gcube/service/generate/brdar.sanja -gcube/service/generate/bruna.baldacci -gcube/service/generate/camara.arthur -gcube/service/generate/cardosolg15 -gcube/service/generate/carlo.demedio -gcube/service/generate/carlo.meghini -gcube/service/generate/casper -gcube/service/generate/ch.dimitrakopoulos -gcube/service/generate/chabchoub.mohamed.ing -gcube/service/generate/chanikarn.yongstar -gcube/service/generate/chantel.wetzel -gcube/service/generate/charlesriondet -gcube/service/generate/chengtac -gcube/service/generate/chiara.cozzi87 -gcube/service/generate/ching.villanueva -gcube/service/generate/chloe.guillerme18 -gcube/service/generate/chris.lynam -gcube/service/generate/christophe.lett -gcube/service/generate/christoschatzimichail -gcube/service/generate/ciaran.kelly -gcube/service/generate/cinzia.luddi -gcube/service/generate/ciro.formisano -gcube/service/generate/claire.caralp -gcube/service/generate/clara.peron22 -gcube/service/generate/claudio.atzori -gcube/service/generate/claudio.vairo -gcube/service/generate/cmspinto -gcube/service/generate/colica -gcube/service/generate/colin.millar -gcube/service/generate/congminh91 -gcube/service/generate/costantino.perciante -gcube/service/generate/costantino8 -gcube/service/generate/cp -gcube/service/generate/creverte -gcube/service/generate/cristina.muntean -gcube/service/generate/cristina.ribeiro -gcube/service/generate/csedayski -gcube/service/generate/d.bonciani -gcube/service/generate/d.rout -gcube/service/generate/dalvarez -gcube/service/generate/daniele.conversa -gcube/service/generate/daniele.regoli -gcube/service/generate/darkohric -gcube/service/generate/darpap -gcube/service/generate/david.richardson -gcube/service/generate/davidcurrie2001 -gcube/service/generate/davide.gazze -gcube/service/generate/davide.madonna -gcube/service/generate/davordavidovic -gcube/service/generate/dddejean -gcube/service/generate/debbi.pedreschi -gcube/service/generate/deepqa -gcube/service/generate/denispyr -gcube/service/generate/diaabakkour -gcube/service/generate/diegoref -gcube/service/generate/dieuthule -gcube/service/generate/dkatris -gcube/service/generate/doertedk -gcube/service/generate/domvit -gcube/service/generate/donatella.castelli -gcube/service/generate/dorian.seillier -gcube/service/generate/dorothee.rebscher -gcube/service/generate/dostojic -gcube/service/generate/douwe.zeldenrust -gcube/service/generate/dpavia -gcube/service/generate/driad -gcube/service/generate/driad91 -gcube/service/generate/driad91tagme1 -gcube/service/generate/driad91tagme2 -gcube/service/generate/driad91tagme3 -gcube/service/generate/driad91tagme4 -gcube/service/generate/driad91tagme5 -gcube/service/generate/dzjowk -gcube/service/generate/e.f.ramezani -gcube/service/generate/e.nrico -gcube/service/generate/e.theodorakopoulos -gcube/service/generate/ecarrasco -gcube/service/generate/edi -gcube/service/generate/efer -gcube/service/generate/egoddard -gcube/service/generate/egouli -gcube/service/generate/ehudson -gcube/service/generate/elenipetra -gcube/service/generate/elibiel -gcube/service/generate/elsyjang -gcube/service/generate/elzi -gcube/service/generate/emghufran -gcube/service/generate/emilie -gcube/service/generate/emilio -gcube/service/generate/fabiocarlomolinari -gcube/service/generate/fede.fierli -gcube/service/generate/felix.cremer -gcube/service/generate/flavio.dimartino -gcube/service/generate/franca.debole -gcube/service/generate/francesca -gcube/service/generate/francesca.beni -gcube/service/generate/francesca.morselli -gcube/service/generate/francesca.pratesi -gcube/service/generate/francesco.cerasuolo -gcube/service/generate/francesco.mangiacrapa -gcube/service/generate/franco -gcube/service/generate/franco.zoppi -gcube/service/generate/francois.andre -gcube/service/generate/francois.guilhaumon -gcube/service/generate/franz.bender -gcube/service/generate/frippe12573 -gcube/service/generate/fuqi.song -gcube/service/generate/fz.osheee -gcube/service/generate/g.gola -gcube/service/generate/g.magro -gcube/service/generate/g.serra94 -gcube/service/generate/gabriele.giammatteo -gcube/service/generate/gantzoulatos -gcube/service/generate/gareth.burns -gcube/service/generate/gc.rodi -gcube/service/generate/gearmonkey -gcube/service/generate/george.kakaletris -gcube/service/generate/georgeb -gcube/service/generate/georgia -gcube/service/generate/gerhardgossen -gcube/service/generate/gerold.diepolder -gcube/service/generate/gfarantatos -gcube/service/generate/giacomo-chato.osio -gcube/service/generate/giammarinodomenico -gcube/service/generate/giancarlo.panichi -gcube/service/generate/giancarlo.riolo -gcube/service/generate/gianluca.diodato -gcube/service/generate/gianmarco.santini -gcube/service/generate/gianpaolo.coro -gcube/service/generate/giovanna.marino -gcube/service/generate/giulia.gorelli -gcube/service/generate/giulio.masetti -gcube/service/generate/giulio.rossetti -gcube/service/generate/giuseppe.demaio1982 -gcube/service/generate/giusyandresini -gcube/service/generate/gmacho -gcube/service/generate/go -gcube/service/generate/gomez -gcube/service/generate/gorenikhilm -gcube/service/generate/graziella.pastore -gcube/service/generate/grenci -gcube/service/generate/guest.d4science -gcube/service/generate/guidotti -gcube/service/generate/guitton -gcube/service/generate/guntram.geser -gcube/service/generate/haakon.otteraa -gcube/service/generate/haenold -gcube/service/generate/hansmichael.hohenegger -gcube/service/generate/happymcflabs -gcube/service/generate/haritha -gcube/service/generate/hbuesing -gcube/service/generate/heiko.tjalsma -gcube/service/generate/hella -gcube/service/generate/henrikkn -gcube/service/generate/herve.demarcq -gcube/service/generate/hkatsiad -gcube/service/generate/hosseinfani -gcube/service/generate/hube -gcube/service/generate/hyaline0317 -gcube/service/generate/i.galluccio -gcube/service/generate/i.roberts -gcube/service/generate/ikarkalakos -gcube/service/generate/ilaros -gcube/service/generate/illmk -gcube/service/generate/imoise -gcube/service/generate/imzilen.taha -gcube/service/generate/ingemar -gcube/service/generate/ingibj -gcube/service/generate/irlfisheriescontrol -gcube/service/generate/iryna.solodovnik -gcube/service/generate/ithasitis -gcube/service/generate/jeanjacquesmaguire -gcube/service/generate/jennifer.koritko -gcube/service/generate/jenniferedmond -gcube/service/generate/jeroen.cichy -gcube/service/generate/jessica.michel -gcube/service/generate/jhdez32 -gcube/service/generate/jie.cao -gcube/service/generate/jim.berkson -gcube/service/generate/jlebras -gcube/service/generate/jniederau -gcube/service/generate/jo -gcube/service/generate/joao -gcube/service/generate/johann.petrak -gcube/service/generate/john.f.walter -gcube/service/generate/jon.helge.voelstad -gcube/service/generate/jonas.eberle -gcube/service/generate/jonasp -gcube/service/generate/jonhelge -gcube/service/generate/jopfeiff -gcube/service/generate/joseangelgomezlopez -gcube/service/generate/josef.weber -gcube/service/generate/jsadler2 -gcube/service/generate/jsg -gcube/service/generate/jsteenbeek -gcube/service/generate/juan.gil -gcube/service/generate/juldebar -gcube/service/generate/jules.selles -gcube/service/generate/julia.calderwood -gcube/service/generate/julia.welter -gcube/service/generate/julien.barde -gcube/service/generate/k.akchouch -gcube/service/generate/k.giannakelos -gcube/service/generate/k.seferis -gcube/service/generate/k.verbrugge -gcube/service/generate/kadji.okou -gcube/service/generate/kaja.czajkowska15 -gcube/service/generate/kandrews -gcube/service/generate/karolina.reducha -gcube/service/generate/katerina.papadaki -gcube/service/generate/katrin.kieling -gcube/service/generate/kbbe4life -gcube/service/generate/kees.waterman -gcube/service/generate/kevin.j.mccarthy -gcube/service/generate/khan.bill -gcube/service/generate/kiran.viparthi -gcube/service/generate/kmihalopoulos -gcube/service/generate/kmok93 -gcube/service/generate/kojo -gcube/service/generate/konsolak -gcube/service/generate/kostas.kakaletris -gcube/service/generate/kostashirikakis -gcube/service/generate/kotu -gcube/service/generate/koubbi -gcube/service/generate/kristiinahommik -gcube/service/generate/kstef -gcube/service/generate/kulkabarb -gcube/service/generate/laepke -gcube/service/generate/lailloud -gcube/service/generate/lalalarudisha -gcube/service/generate/lambrosio66 -gcube/service/generate/largesi -gcube/service/generate/laurafonbo -gcube/service/generate/laurent.romary -gcube/service/generate/lena.schreiter -gcube/service/generate/leneoffersgaard -gcube/service/generate/leonardo.candela -gcube/service/generate/leonardo.candela.1 -gcube/service/generate/levi.westerveld -gcube/service/generate/leyre.goti -gcube/service/generate/libohan -gcube/service/generate/lina -gcube/service/generate/lise.cronne -gcube/service/generate/lishchuk -gcube/service/generate/lixiaolimail1 -gcube/service/generate/liz.brooks -gcube/service/generate/loic.lefoll -gcube/service/generate/loisg9 -gcube/service/generate/loredana.versienti -gcube/service/generate/lorenzo.gabrielli -gcube/service/generate/luca.frosini -gcube/service/generate/luca.pilato -gcube/service/generate/luca.sarti -gcube/service/generate/lucafrosini -gcube/service/generate/lucapappalardo1984 -gcube/service/generate/lucio.lelii -gcube/service/generate/lucy.bastin -gcube/service/generate/lvlijun1992 -gcube/service/generate/m.assante -gcube/service/generate/m.laurenzi -gcube/service/generate/m.pennisi -gcube/service/generate/m.scarpellini -gcube/service/generate/m.tanzifi -gcube/service/generate/maciej.ogrodniczuk -gcube/service/generate/magliozzi -gcube/service/generate/maiken.bjorkan -gcube/service/generate/manu -gcube/service/generate/manuela.degiorgi -gcube/service/generate/manuele.simi.1 -gcube/service/generate/manugoacolou -gcube/service/generate/marc.kemps.snijders -gcube/service/generate/marc.taconet -gcube/service/generate/marc.taylor -gcube/service/generate/marco.barsacchi -gcube/service/generate/marco.brandizi -gcube/service/generate/marcocornolti -gcube/service/generate/mardones.mauricio -gcube/service/generate/margaridahermida -gcube/service/generate/margarita.rincon -gcube/service/generate/margheritasidoti -gcube/service/generate/mariaantonietta.digirolamo -gcube/service/generate/mariadigirolamo -gcube/service/generate/marie.puren -gcube/service/generate/mark.hedges -gcube/service/generate/mark.luckins -gcube/service/generate/marlon.dumas -gcube/service/generate/martacastillejo -gcube/service/generate/martacat90 -gcube/service/generate/martina.bocci.1 -gcube/service/generate/marycchristman -gcube/service/generate/marzia.piron -gcube/service/generate/massi.tempadmin -gcube/service/generate/massimiliano -gcube/service/generate/massimiliano.assante -gcube/service/generate/massimo.coppola -gcube/service/generate/massimo.luchini -gcube/service/generate/masterromaeo -gcube/service/generate/mat.amadei -gcube/service/generate/matej -gcube/service/generate/math -gcube/service/generate/matteo.corvi -gcube/service/generate/matteo.razzanelli -gcube/service/generate/matteolorenzini -gcube/service/generate/matthias.obst -gcube/service/generate/mattia.campana -gcube/service/generate/mauricio.mardones -gcube/service/generate/mauricio.marrone -gcube/service/generate/maurizio.delmonte -gcube/service/generate/maurizio.sanesi -gcube/service/generate/maurizio.tesconi -gcube/service/generate/max.fried -gcube/service/generate/mcgener -gcube/service/generate/me -gcube/service/generate/mecmiller -gcube/service/generate/mettem -gcube/service/generate/mggraziano -gcube/service/generate/mgoacolou -gcube/service/generate/michael.mathioudakis -gcube/service/generate/michael.musyl -gcube/service/generate/micheljess -gcube/service/generate/mike -gcube/service/generate/mike.ojo -gcube/service/generate/mike.priddy -gcube/service/generate/miles -gcube/service/generate/mincera -gcube/service/generate/mister.blonde -gcube/service/generate/mister.blue -gcube/service/generate/mister.brown -gcube/service/generate/mister.pink -gcube/service/generate/mister.white -gcube/service/generate/misv -gcube/service/generate/mmel -gcube/service/generate/mmfernandez -gcube/service/generate/mnikolopoulos -gcube/service/generate/mocamircea -gcube/service/generate/mohamed.khemakhem -gcube/service/generate/molly.lutcavage -gcube/service/generate/monique.simier -gcube/service/generate/montegrossi -gcube/service/generate/morten.roed -gcube/service/generate/motra -gcube/service/generate/mthompson -gcube/service/generate/musthafa.m1996 -gcube/service/generate/mvalternativo -gcube/service/generate/nadia -gcube/service/generate/nancie.cummings -gcube/service/generate/nanni.federico -gcube/service/generate/robertoscopigno -gcube/service/generate/natalia.andrienko -gcube/service/generate/nathan.vaughan1 -gcube/service/generate/naz -gcube/service/generate/nicola.aloia -gcube/service/generate/nicola.walker -gcube/service/generate/nicolas.bailly -gcube/service/generate/nicolas.bez -gcube/service/generate/nikolas.laskaris -gcube/service/generate/nikos.minadakis -gcube/service/generate/nils.oesterling -gcube/service/generate/nino.antulov -gcube/service/generate/nithya.selvaraju -gcube/service/generate/nlarrousse -gcube/service/generate/nlongepe -gcube/service/generate/nloxou -gcube/service/generate/norbert.billet -gcube/service/generate/ntran -gcube/service/generate/nunzioandreagalante -gcube/service/generate/o.renda -gcube/service/generate/oceandtm -gcube/service/generate/oluyemisi.oloruntuyi -gcube/service/generate/ondine.cornubert -gcube/service/generate/osidirop -gcube/service/generate/oyvind.stamnes -gcube/service/generate/ozhyhinas -gcube/service/generate/pabloruizfabo -gcube/service/generate/panagiota.koltsida -gcube/service/generate/pangjingwen0422 -gcube/service/generate/paolo -gcube/service/generate/paolo.cintia -gcube/service/generate/paolo.fabriani -gcube/service/generate/paolo.manghi -gcube/service/generate/paolof -gcube/service/generate/parklize -gcube/service/generate/parrotola -gcube/service/generate/pasquale.pagano -gcube/service/generate/patricia.reglero -gcube/service/generate/patrick.philipp -gcube/service/generate/paul -gcube/service/generate/paulahmedley -gcube/service/generate/paulalee39 -gcube/service/generate/paultaconet -gcube/service/generate/pekka.jounela -gcube/service/generate/pengyang823 -gcube/service/generate/peruzzo -gcube/service/generate/petrad -gcube/service/generate/petralinks -gcube/service/generate/pfonseca -gcube/service/generate/phil -gcube/service/generate/philipp.kieninger -gcube/service/generate/philippe.bryere -gcube/service/generate/pierpaolo.petriccione -gcube/service/generate/pierre-francois.baisnee -gcube/service/generate/pino.vaccaro -gcube/service/generate/pitityy56 -gcube/service/generate/plino -gcube/service/generate/ppbeto94 -gcube/service/generate/proccaserra -gcube/service/generate/pronzino -gcube/service/generate/prory -gcube/service/generate/psiozos -gcube/service/generate/qasem -gcube/service/generate/qicongc -gcube/service/generate/quanap5 -gcube/service/generate/r.l.p.mahieu -gcube/service/generate/r.pechnig -gcube/service/generate/rafik.zarrad -gcube/service/generate/rahul.bhambri -gcube/service/generate/rahult -gcube/service/generate/rocio.suarez-jimenez -gcube/service/generate/roeder -gcube/service/generate/roojan63 -gcube/service/generate/rtanzifi -gcube/service/generate/rtanzifi.1 -gcube/service/generate/rtl00 -gcube/service/generate/rtrasarti -gcube/service/generate/ruey-cheng.chen -gcube/service/generate/ruggero.bertani -gcube/service/generate/ruggieri -gcube/service/generate/ruth.fernandez -gcube/service/generate/s.hamid.sajjadi -gcube/service/generate/sam.ed.leon -gcube/service/generate/sandra.scalari -gcube/service/generate/sandro.labruzzo -gcube/service/generate/sara-jane.moore -gcube/service/generate/sara.digiorgio -gcube/service/generate/sara.garavelli -gcube/service/generate/saran -gcube/service/generate/sariah.mghames -gcube/service/generate/sbellani -gcube/service/generate/scaiella -gcube/service/generate/scarponi -gcube/service/generate/scipioni.michele -gcube/service/generate/sdrude -gcube/service/generate/selenia.ghio -gcube/service/generate/sergio.oramas -gcube/service/generate/sergio.palumbo -gcube/service/generate/sfirdaus -gcube/service/generate/sganoti -gcube/service/generate/shaaf -gcube/service/generate/shashikdmn -gcube/service/generate/sheenab -gcube/service/generate/sigbjorn.kolberg -gcube/service/generate/silvia.agnoletti -gcube/service/generate/simon -gcube/service/generate/simon.fischer -gcube/service/generate/simone.bertoli -gcube/service/generate/simonetta.ciuffi -gcube/service/generate/sing2370 -gcube/service/generate/sirianapaonessa -gcube/service/generate/sjuli -gcube/service/generate/sofie.vandemaele -gcube/service/generate/somass -gcube/service/generate/spiecker -gcube/service/generate/spn1 -gcube/service/generate/spouyllau -gcube/service/generate/statistical.manager -gcube/service/generate/stefano.aringhieri -gcube/service/generate/stefano.cresci -gcube/service/generate/stefanosbarbati -gcube/service/generate/steve.nelson.48 -gcube/service/generate/steve.williams -gcube/service/generate/stkak -gcube/service/generate/sum1kawa.pregc -gcube/service/generate/suntan -gcube/service/generate/sven.kluge -gcube/service/generate/swilliams -gcube/service/generate/sylvain.bonhommeau -gcube/service/generate/t.miethe -gcube/service/generate/tagtuna -gcube/service/generate/taha.imzilen -gcube/service/generate/tecnico -gcube/service/generate/terhi -gcube/service/generate/testpop -gcube/service/generate/thorsten.may -gcube/service/generate/thorwart -gcube/service/generate/tibor.kalman -gcube/service/generate/tim.jones -gcube/service/generate/tiziana.cantarelli -gcube/service/generate/tiziana.scarselli -gcube/service/generate/tiziano.squartini -gcube/service/generate/tom.d4science -gcube/service/generate/tom.skarning -gcube/service/generate/tomi.jusri -gcube/service/generate/tommaso.piccioli -gcube/service/generate/tonyt -gcube/service/generate/tristan.rouyer -gcube/service/generate/ttolin -gcube/service/generate/ttrippel -gcube/service/generate/ucdxf -gcube/service/generate/user.704788525 -gcube/service/generate/utente1988 -gcube/service/generate/valentijn.gilissen -gcube/service/generate/valentina.marioli -gcube/service/generate/valerio.arnaboldi -gcube/service/generate/valerio.bartolino -gcube/service/generate/valerio.basile -gcube/service/generate/veronica.boarotto -gcube/service/generate/vfloros -gcube/service/generate/vgravez -gcube/service/generate/vgrossi -gcube/service/generate/vickyg -gcube/service/generate/vincenzo.bacarella -gcube/service/generate/viola.bachini -gcube/service/generate/vishalbhave -gcube/service/generate/vishrawa -gcube/service/generate/vittorio -gcube/service/generate/warda -gcube/service/generate/whitefacedhaggardgrin -gcube/service/generate/wiebelitz -gcube/service/generate/wmcclin -gcube/service/generate/wrabbel -gcube/service/generate/wuke1993 -gcube/service/generate/wwices -gcube/service/generate/xavier.favory -gcube/service/generate/xuqiongkai -gcube/service/generate/yann.laurent -gcube/service/generate/yannis.marketakis -gcube/service/generate/yannis.tzitzikas -gcube/service/generate/ydjong -gcube/service/generate/yerko.yutronich -gcube/service/generate/yin.chen -gcube/service/generate/yorgos -gcube/service/generate/ysjtcq -gcube/service/generate/zarate -gcube/service/generate/zeynep.pekcan.hekim -gcube/service/generate/zhang.ym +Common,AuthorizationService,gcube/service/generate/aconrad +Common,AuthorizationService,gcube/service/generate/afalierou +Common,AuthorizationService,gcube/service/generate/akarasimos +Common,AuthorizationService,gcube/service/generate/alejandrocallara +Common,AuthorizationService,gcube/service/generate/emsbach +Common,AuthorizationService,gcube/service/generate/enrico.anello +Common,AuthorizationService,gcube/service/generate/eric.foucher +Common,AuthorizationService,gcube/service/generate/fabio.carrara90 +Common,AuthorizationService,gcube/service/generate/jacq.fabienne +Common,AuthorizationService,gcube/service/generate/realgcp +Common,AuthorizationService,gcube/service/generate/risse +Common,AuthorizationService,gcube/service/generate/roberthuber +Common,AuthorizationService,gcube/service/generate/roberto.cirillo +Common,AuthorizationService,gcube/service/generate/4.facchini +Common,AuthorizationService,gcube/service/generate/4tikhonov +Common,AuthorizationService,gcube/service/generate/a.benmhamed +Common,AuthorizationService,gcube/service/generate/a.ellenbroek +Common,AuthorizationService,gcube/service/generate/a.muscella +Common,AuthorizationService,gcube/service/generate/abhikjana1 +Common,AuthorizationService,gcube/service/generate/abu.shaheen +Common,AuthorizationService,gcube/service/generate/achille +Common,AuthorizationService,gcube/service/generate/acmilanfan +Common,AuthorizationService,gcube/service/generate/acris +Common,AuthorizationService,gcube/service/generate/adele +Common,AuthorizationService,gcube/service/generate/adeline +Common,AuthorizationService,gcube/service/generate/aikimoto +Common,AuthorizationService,gcube/service/generate/alaimos +Common,AuthorizationService,gcube/service/generate/ale.olivieri84 +Common,AuthorizationService,gcube/service/generate/ale.pulse +Common,AuthorizationService,gcube/service/generate/cedber +Common,AuthorizationService,gcube/service/generate/cfwelch +Common,AuthorizationService,gcube/service/generate/emmanuel.blondel +Common,AuthorizationService,gcube/service/generate/emostarda +Common,AuthorizationService,gcube/service/generate/enrico.candino +Common,AuthorizationService,gcube/service/generate/enrique +Common,AuthorizationService,gcube/service/generate/eoghan.kelly +Common,AuthorizationService,gcube/service/generate/epournaras +Common,AuthorizationService,gcube/service/generate/eugenio +Common,AuthorizationService,gcube/service/generate/f.ilievski +Common,AuthorizationService,gcube/service/generate/fab.butini +Common,AuthorizationService,gcube/service/generate/fabio.fiorellato +Common,AuthorizationService,gcube/service/generate/fabio.saracco +Common,AuthorizationService,gcube/service/generate/fabio.sinibaldi +Common,AuthorizationService,gcube/service/generate/fabio2111 +Common,AuthorizationService,gcube/service/generate/ivano.dini +Common,AuthorizationService,gcube/service/generate/j.duarteg +Common,AuthorizationService,gcube/service/generate/jaanbi.jb +Common,AuthorizationService,gcube/service/generate/jason.cope +Common,AuthorizationService,gcube/service/generate/jdaen +Common,AuthorizationService,gcube/service/generate/jean-noel.druon +Common,AuthorizationService,gcube/service/generate/raularones +Common,AuthorizationService,gcube/service/generate/rebecca.spinelli +Common,AuthorizationService,gcube/service/generate/recon.hungary +Common,AuthorizationService,gcube/service/generate/retos +Common,AuthorizationService,gcube/service/generate/rinzivillo +Common,AuthorizationService,gcube/service/generate/roanne.collins +Common,AuthorizationService,gcube/service/generate/roar.nybo +Common,AuthorizationService,gcube/service/generate/robert.lefebure +Common,AuthorizationService,gcube/service/generate/roberta +Common,AuthorizationService,gcube/service/generate/roberto.aquilano +Common,AuthorizationService,gcube/service/generate/v.maffione +Common,AuthorizationService,gcube/service/generate/alessandrachirivi +Common,AuthorizationService,gcube/service/generate/alessandro.chessa +Common,AuthorizationService,gcube/service/generate/alessandro.ciattaglia +Common,AuthorizationService,gcube/service/generate/alessandro.pieve +Common,AuthorizationService,gcube/service/generate/alessandro.suglia +Common,AuthorizationService,gcube/service/generate/alessandro.tibo +Common,AuthorizationService,gcube/service/generate/alessia.bardi +Common,AuthorizationService,gcube/service/generate/alexander.richter +Common,AuthorizationService,gcube/service/generate/alexandra.schwaab +Common,AuthorizationService,gcube/service/generate/alexandre.morin +Common,AuthorizationService,gcube/service/generate/alfred.sandstrom +Common,AuthorizationService,gcube/service/generate/alina.sirbu +Common,AuthorizationService,gcube/service/generate/am +Common,AuthorizationService,gcube/service/generate/amir.menczel +Common,AuthorizationService,gcube/service/generate/amishra +Common,AuthorizationService,gcube/service/generate/amnocas +Common,AuthorizationService,gcube/service/generate/anais.turpault.1 +Common,AuthorizationService,gcube/service/generate/anastasis +Common,AuthorizationService,gcube/service/generate/andras +Common,AuthorizationService,gcube/service/generate/andre.boustany +Common,AuthorizationService,gcube/service/generate/andrea +Common,AuthorizationService,gcube/service/generate/andrea.dellamico +Common,AuthorizationService,gcube/service/generate/andrea.dessi +Common,AuthorizationService,gcube/service/generate/andrea.manieri +Common,AuthorizationService,gcube/service/generate/andrea.mannocci +Common,AuthorizationService,gcube/service/generate/andrea.manzi.1 +Common,AuthorizationService,gcube/service/generate/andrea.marchetti +Common,AuthorizationService,gcube/service/generate/andrea.musco +Common,AuthorizationService,gcube/service/generate/andrea.pizzo +Common,AuthorizationService,gcube/service/generate/andrea.rossi +Common,AuthorizationService,gcube/service/generate/andreacimino +Common,AuthorizationService,gcube/service/generate/andreaferracani +Common,AuthorizationService,gcube/service/generate/andreas.bannach +Common,AuthorizationService,gcube/service/generate/andrej.lapanje +Common,AuthorizationService,gcube/service/generate/ankushjain3005 +Common,AuthorizationService,gcube/service/generate/anna +Common,AuthorizationService,gcube/service/generate/anna.molino +Common,AuthorizationService,gcube/service/generate/anna.pineau +Common,AuthorizationService,gcube/service/generate/annamolino +Common,AuthorizationService,gcube/service/generate/annarita.liburdi +Common,AuthorizationService,gcube/service/generate/anne-lauscher +Common,AuthorizationService,gcube/service/generate/anne.cooper +Common,AuthorizationService,gcube/service/generate/anni.pauly +Common,AuthorizationService,gcube/service/generate/antgers +Common,AuthorizationService,gcube/service/generate/antoine.rougier +Common,AuthorizationService,gcube/service/generate/anton.ellenbroek +Common,AuthorizationService,gcube/service/generate/antonino.crivello +Common,AuthorizationService,gcube/service/generate/antonio.gioia82 +Common,AuthorizationService,gcube/service/generate/antonio.maffia +Common,AuthorizationService,gcube/service/generate/anupama6d +Common,AuthorizationService,gcube/service/generate/arusso +Common,AuthorizationService,gcube/service/generate/attardi +Common,AuthorizationService,gcube/service/generate/attila.kreiter +Common,AuthorizationService,gcube/service/generate/atzori +Common,AuthorizationService,gcube/service/generate/aureliano.gentile +Common,AuthorizationService,gcube/service/generate/aureliano.gentile.1 +Common,AuthorizationService,gcube/service/generate/aveti123 +Common,AuthorizationService,gcube/service/generate/avnispen +Common,AuthorizationService,gcube/service/generate/aymen.charef +Common,AuthorizationService,gcube/service/generate/b.crotti +Common,AuthorizationService,gcube/service/generate/banski +Common,AuthorizationService,gcube/service/generate/baoxu.shi +Common,AuthorizationService,gcube/service/generate/baptiste.grenier +Common,AuthorizationService,gcube/service/generate/barbara.furletti +Common,AuthorizationService,gcube/service/generate/bartj +Common,AuthorizationService,gcube/service/generate/bassobassista +Common,AuthorizationService,gcube/service/generate/bastienmerigot +Common,AuthorizationService,gcube/service/generate/baudouin.raoult +Common,AuthorizationService,gcube/service/generate/benedetti.filippo +Common,AuthorizationService,gcube/service/generate/benin80 +Common,AuthorizationService,gcube/service/generate/benlukepayne +Common,AuthorizationService,gcube/service/generate/bfetahu +Common,AuthorizationService,gcube/service/generate/bichen.shi +Common,AuthorizationService,gcube/service/generate/bramvm +Common,AuthorizationService,gcube/service/generate/brdar.sanja +Common,AuthorizationService,gcube/service/generate/bruna.baldacci +Common,AuthorizationService,gcube/service/generate/camara.arthur +Common,AuthorizationService,gcube/service/generate/cardosolg15 +Common,AuthorizationService,gcube/service/generate/carlo.demedio +Common,AuthorizationService,gcube/service/generate/carlo.meghini +Common,AuthorizationService,gcube/service/generate/casper +Common,AuthorizationService,gcube/service/generate/ch.dimitrakopoulos +Common,AuthorizationService,gcube/service/generate/chabchoub.mohamed.ing +Common,AuthorizationService,gcube/service/generate/chanikarn.yongstar +Common,AuthorizationService,gcube/service/generate/chantel.wetzel +Common,AuthorizationService,gcube/service/generate/charlesriondet +Common,AuthorizationService,gcube/service/generate/chengtac +Common,AuthorizationService,gcube/service/generate/chiara.cozzi87 +Common,AuthorizationService,gcube/service/generate/ching.villanueva +Common,AuthorizationService,gcube/service/generate/chloe.guillerme18 +Common,AuthorizationService,gcube/service/generate/chris.lynam +Common,AuthorizationService,gcube/service/generate/christophe.lett +Common,AuthorizationService,gcube/service/generate/christoschatzimichail +Common,AuthorizationService,gcube/service/generate/ciaran.kelly +Common,AuthorizationService,gcube/service/generate/cinzia.luddi +Common,AuthorizationService,gcube/service/generate/ciro.formisano +Common,AuthorizationService,gcube/service/generate/claire.caralp +Common,AuthorizationService,gcube/service/generate/clara.peron22 +Common,AuthorizationService,gcube/service/generate/claudio.atzori +Common,AuthorizationService,gcube/service/generate/claudio.vairo +Common,AuthorizationService,gcube/service/generate/cmspinto +Common,AuthorizationService,gcube/service/generate/colica +Common,AuthorizationService,gcube/service/generate/colin.millar +Common,AuthorizationService,gcube/service/generate/congminh91 +Common,AuthorizationService,gcube/service/generate/costantino.perciante +Common,AuthorizationService,gcube/service/generate/costantino8 +Common,AuthorizationService,gcube/service/generate/cp +Common,AuthorizationService,gcube/service/generate/creverte +Common,AuthorizationService,gcube/service/generate/cristina.muntean +Common,AuthorizationService,gcube/service/generate/cristina.ribeiro +Common,AuthorizationService,gcube/service/generate/csedayski +Common,AuthorizationService,gcube/service/generate/d.bonciani +Common,AuthorizationService,gcube/service/generate/d.rout +Common,AuthorizationService,gcube/service/generate/dalvarez +Common,AuthorizationService,gcube/service/generate/daniele.conversa +Common,AuthorizationService,gcube/service/generate/daniele.regoli +Common,AuthorizationService,gcube/service/generate/darkohric +Common,AuthorizationService,gcube/service/generate/darpap +Common,AuthorizationService,gcube/service/generate/david.richardson +Common,AuthorizationService,gcube/service/generate/davidcurrie2001 +Common,AuthorizationService,gcube/service/generate/davide.gazze +Common,AuthorizationService,gcube/service/generate/davide.madonna +Common,AuthorizationService,gcube/service/generate/davordavidovic +Common,AuthorizationService,gcube/service/generate/dddejean +Common,AuthorizationService,gcube/service/generate/debbi.pedreschi +Common,AuthorizationService,gcube/service/generate/deepqa +Common,AuthorizationService,gcube/service/generate/denispyr +Common,AuthorizationService,gcube/service/generate/diaabakkour +Common,AuthorizationService,gcube/service/generate/diegoref +Common,AuthorizationService,gcube/service/generate/dieuthule +Common,AuthorizationService,gcube/service/generate/dkatris +Common,AuthorizationService,gcube/service/generate/doertedk +Common,AuthorizationService,gcube/service/generate/domvit +Common,AuthorizationService,gcube/service/generate/donatella.castelli +Common,AuthorizationService,gcube/service/generate/dorian.seillier +Common,AuthorizationService,gcube/service/generate/dorothee.rebscher +Common,AuthorizationService,gcube/service/generate/dostojic +Common,AuthorizationService,gcube/service/generate/douwe.zeldenrust +Common,AuthorizationService,gcube/service/generate/dpavia +Common,AuthorizationService,gcube/service/generate/driad +Common,AuthorizationService,gcube/service/generate/driad91 +Common,AuthorizationService,gcube/service/generate/driad91tagme1 +Common,AuthorizationService,gcube/service/generate/driad91tagme2 +Common,AuthorizationService,gcube/service/generate/driad91tagme3 +Common,AuthorizationService,gcube/service/generate/driad91tagme4 +Common,AuthorizationService,gcube/service/generate/driad91tagme5 +Common,AuthorizationService,gcube/service/generate/dzjowk +Common,AuthorizationService,gcube/service/generate/e.f.ramezani +Common,AuthorizationService,gcube/service/generate/e.nrico +Common,AuthorizationService,gcube/service/generate/e.theodorakopoulos +Common,AuthorizationService,gcube/service/generate/ecarrasco +Common,AuthorizationService,gcube/service/generate/edi +Common,AuthorizationService,gcube/service/generate/efer +Common,AuthorizationService,gcube/service/generate/egoddard +Common,AuthorizationService,gcube/service/generate/egouli +Common,AuthorizationService,gcube/service/generate/ehudson +Common,AuthorizationService,gcube/service/generate/elenipetra +Common,AuthorizationService,gcube/service/generate/elibiel +Common,AuthorizationService,gcube/service/generate/elsyjang +Common,AuthorizationService,gcube/service/generate/elzi +Common,AuthorizationService,gcube/service/generate/emghufran +Common,AuthorizationService,gcube/service/generate/emilie +Common,AuthorizationService,gcube/service/generate/emilio +Common,AuthorizationService,gcube/service/generate/fabiocarlomolinari +Common,AuthorizationService,gcube/service/generate/fede.fierli +Common,AuthorizationService,gcube/service/generate/felix.cremer +Common,AuthorizationService,gcube/service/generate/flavio.dimartino +Common,AuthorizationService,gcube/service/generate/franca.debole +Common,AuthorizationService,gcube/service/generate/francesca +Common,AuthorizationService,gcube/service/generate/francesca.beni +Common,AuthorizationService,gcube/service/generate/francesca.morselli +Common,AuthorizationService,gcube/service/generate/francesca.pratesi +Common,AuthorizationService,gcube/service/generate/francesco.cerasuolo +Common,AuthorizationService,gcube/service/generate/francesco.mangiacrapa +Common,AuthorizationService,gcube/service/generate/franco +Common,AuthorizationService,gcube/service/generate/franco.zoppi +Common,AuthorizationService,gcube/service/generate/francois.andre +Common,AuthorizationService,gcube/service/generate/francois.guilhaumon +Common,AuthorizationService,gcube/service/generate/franz.bender +Common,AuthorizationService,gcube/service/generate/frippe12573 +Common,AuthorizationService,gcube/service/generate/fuqi.song +Common,AuthorizationService,gcube/service/generate/fz.osheee +Common,AuthorizationService,gcube/service/generate/g.gola +Common,AuthorizationService,gcube/service/generate/g.magro +Common,AuthorizationService,gcube/service/generate/g.serra94 +Common,AuthorizationService,gcube/service/generate/gabriele.giammatteo +Common,AuthorizationService,gcube/service/generate/gantzoulatos +Common,AuthorizationService,gcube/service/generate/gareth.burns +Common,AuthorizationService,gcube/service/generate/gc.rodi +Common,AuthorizationService,gcube/service/generate/gearmonkey +Common,AuthorizationService,gcube/service/generate/george.kakaletris +Common,AuthorizationService,gcube/service/generate/georgeb +Common,AuthorizationService,gcube/service/generate/georgia +Common,AuthorizationService,gcube/service/generate/gerhardgossen +Common,AuthorizationService,gcube/service/generate/gerold.diepolder +Common,AuthorizationService,gcube/service/generate/gfarantatos +Common,AuthorizationService,gcube/service/generate/giacomo-chato.osio +Common,AuthorizationService,gcube/service/generate/giammarinodomenico +Common,AuthorizationService,gcube/service/generate/giancarlo.panichi +Common,AuthorizationService,gcube/service/generate/giancarlo.riolo +Common,AuthorizationService,gcube/service/generate/gianluca.diodato +Common,AuthorizationService,gcube/service/generate/gianmarco.santini +Common,AuthorizationService,gcube/service/generate/gianpaolo.coro +Common,AuthorizationService,gcube/service/generate/giovanna.marino +Common,AuthorizationService,gcube/service/generate/giulia.gorelli +Common,AuthorizationService,gcube/service/generate/giulio.masetti +Common,AuthorizationService,gcube/service/generate/giulio.rossetti +Common,AuthorizationService,gcube/service/generate/giuseppe.demaio1982 +Common,AuthorizationService,gcube/service/generate/giusyandresini +Common,AuthorizationService,gcube/service/generate/gmacho +Common,AuthorizationService,gcube/service/generate/go +Common,AuthorizationService,gcube/service/generate/gomez +Common,AuthorizationService,gcube/service/generate/gorenikhilm +Common,AuthorizationService,gcube/service/generate/graziella.pastore +Common,AuthorizationService,gcube/service/generate/grenci +Common,AuthorizationService,gcube/service/generate/guest.d4science +Common,AuthorizationService,gcube/service/generate/guidotti +Common,AuthorizationService,gcube/service/generate/guitton +Common,AuthorizationService,gcube/service/generate/guntram.geser +Common,AuthorizationService,gcube/service/generate/haakon.otteraa +Common,AuthorizationService,gcube/service/generate/haenold +Common,AuthorizationService,gcube/service/generate/hansmichael.hohenegger +Common,AuthorizationService,gcube/service/generate/happymcflabs +Common,AuthorizationService,gcube/service/generate/haritha +Common,AuthorizationService,gcube/service/generate/hbuesing +Common,AuthorizationService,gcube/service/generate/heiko.tjalsma +Common,AuthorizationService,gcube/service/generate/hella +Common,AuthorizationService,gcube/service/generate/henrikkn +Common,AuthorizationService,gcube/service/generate/herve.demarcq +Common,AuthorizationService,gcube/service/generate/hkatsiad +Common,AuthorizationService,gcube/service/generate/hosseinfani +Common,AuthorizationService,gcube/service/generate/hube +Common,AuthorizationService,gcube/service/generate/hyaline0317 +Common,AuthorizationService,gcube/service/generate/i.galluccio +Common,AuthorizationService,gcube/service/generate/i.roberts +Common,AuthorizationService,gcube/service/generate/ikarkalakos +Common,AuthorizationService,gcube/service/generate/ilaros +Common,AuthorizationService,gcube/service/generate/illmk +Common,AuthorizationService,gcube/service/generate/imoise +Common,AuthorizationService,gcube/service/generate/imzilen.taha +Common,AuthorizationService,gcube/service/generate/ingemar +Common,AuthorizationService,gcube/service/generate/ingibj +Common,AuthorizationService,gcube/service/generate/irlfisheriescontrol +Common,AuthorizationService,gcube/service/generate/iryna.solodovnik +Common,AuthorizationService,gcube/service/generate/ithasitis +Common,AuthorizationService,gcube/service/generate/jeanjacquesmaguire +Common,AuthorizationService,gcube/service/generate/jennifer.koritko +Common,AuthorizationService,gcube/service/generate/jenniferedmond +Common,AuthorizationService,gcube/service/generate/jeroen.cichy +Common,AuthorizationService,gcube/service/generate/jessica.michel +Common,AuthorizationService,gcube/service/generate/jhdez32 +Common,AuthorizationService,gcube/service/generate/jie.cao +Common,AuthorizationService,gcube/service/generate/jim.berkson +Common,AuthorizationService,gcube/service/generate/jlebras +Common,AuthorizationService,gcube/service/generate/jniederau +Common,AuthorizationService,gcube/service/generate/jo +Common,AuthorizationService,gcube/service/generate/joao +Common,AuthorizationService,gcube/service/generate/johann.petrak +Common,AuthorizationService,gcube/service/generate/john.f.walter +Common,AuthorizationService,gcube/service/generate/jon.helge.voelstad +Common,AuthorizationService,gcube/service/generate/jonas.eberle +Common,AuthorizationService,gcube/service/generate/jonasp +Common,AuthorizationService,gcube/service/generate/jonhelge +Common,AuthorizationService,gcube/service/generate/jopfeiff +Common,AuthorizationService,gcube/service/generate/joseangelgomezlopez +Common,AuthorizationService,gcube/service/generate/josef.weber +Common,AuthorizationService,gcube/service/generate/jsadler2 +Common,AuthorizationService,gcube/service/generate/jsg +Common,AuthorizationService,gcube/service/generate/jsteenbeek +Common,AuthorizationService,gcube/service/generate/juan.gil +Common,AuthorizationService,gcube/service/generate/juldebar +Common,AuthorizationService,gcube/service/generate/jules.selles +Common,AuthorizationService,gcube/service/generate/julia.calderwood +Common,AuthorizationService,gcube/service/generate/julia.welter +Common,AuthorizationService,gcube/service/generate/julien.barde +Common,AuthorizationService,gcube/service/generate/k.akchouch +Common,AuthorizationService,gcube/service/generate/k.giannakelos +Common,AuthorizationService,gcube/service/generate/k.seferis +Common,AuthorizationService,gcube/service/generate/k.verbrugge +Common,AuthorizationService,gcube/service/generate/kadji.okou +Common,AuthorizationService,gcube/service/generate/kaja.czajkowska15 +Common,AuthorizationService,gcube/service/generate/kandrews +Common,AuthorizationService,gcube/service/generate/karolina.reducha +Common,AuthorizationService,gcube/service/generate/katerina.papadaki +Common,AuthorizationService,gcube/service/generate/katrin.kieling +Common,AuthorizationService,gcube/service/generate/kbbe4life +Common,AuthorizationService,gcube/service/generate/kees.waterman +Common,AuthorizationService,gcube/service/generate/kevin.j.mccarthy +Common,AuthorizationService,gcube/service/generate/khan.bill +Common,AuthorizationService,gcube/service/generate/kiran.viparthi +Common,AuthorizationService,gcube/service/generate/kmihalopoulos +Common,AuthorizationService,gcube/service/generate/kmok93 +Common,AuthorizationService,gcube/service/generate/kojo +Common,AuthorizationService,gcube/service/generate/konsolak +Common,AuthorizationService,gcube/service/generate/kostas.kakaletris +Common,AuthorizationService,gcube/service/generate/kostashirikakis +Common,AuthorizationService,gcube/service/generate/kotu +Common,AuthorizationService,gcube/service/generate/koubbi +Common,AuthorizationService,gcube/service/generate/kristiinahommik +Common,AuthorizationService,gcube/service/generate/kstef +Common,AuthorizationService,gcube/service/generate/kulkabarb +Common,AuthorizationService,gcube/service/generate/laepke +Common,AuthorizationService,gcube/service/generate/lailloud +Common,AuthorizationService,gcube/service/generate/lalalarudisha +Common,AuthorizationService,gcube/service/generate/lambrosio66 +Common,AuthorizationService,gcube/service/generate/largesi +Common,AuthorizationService,gcube/service/generate/laurafonbo +Common,AuthorizationService,gcube/service/generate/laurent.romary +Common,AuthorizationService,gcube/service/generate/lena.schreiter +Common,AuthorizationService,gcube/service/generate/leneoffersgaard +Common,AuthorizationService,gcube/service/generate/leonardo.candela +Common,AuthorizationService,gcube/service/generate/leonardo.candela.1 +Common,AuthorizationService,gcube/service/generate/levi.westerveld +Common,AuthorizationService,gcube/service/generate/leyre.goti +Common,AuthorizationService,gcube/service/generate/libohan +Common,AuthorizationService,gcube/service/generate/lina +Common,AuthorizationService,gcube/service/generate/lise.cronne +Common,AuthorizationService,gcube/service/generate/lishchuk +Common,AuthorizationService,gcube/service/generate/lixiaolimail1 +Common,AuthorizationService,gcube/service/generate/liz.brooks +Common,AuthorizationService,gcube/service/generate/loic.lefoll +Common,AuthorizationService,gcube/service/generate/loisg9 +Common,AuthorizationService,gcube/service/generate/loredana.versienti +Common,AuthorizationService,gcube/service/generate/lorenzo.gabrielli +Common,AuthorizationService,gcube/service/generate/luca.frosini +Common,AuthorizationService,gcube/service/generate/luca.pilato +Common,AuthorizationService,gcube/service/generate/luca.sarti +Common,AuthorizationService,gcube/service/generate/lucafrosini +Common,AuthorizationService,gcube/service/generate/lucapappalardo1984 +Common,AuthorizationService,gcube/service/generate/lucio.lelii +Common,AuthorizationService,gcube/service/generate/lucy.bastin +Common,AuthorizationService,gcube/service/generate/lvlijun1992 +Common,AuthorizationService,gcube/service/generate/m.assante +Common,AuthorizationService,gcube/service/generate/m.laurenzi +Common,AuthorizationService,gcube/service/generate/m.pennisi +Common,AuthorizationService,gcube/service/generate/m.scarpellini +Common,AuthorizationService,gcube/service/generate/m.tanzifi +Common,AuthorizationService,gcube/service/generate/maciej.ogrodniczuk +Common,AuthorizationService,gcube/service/generate/magliozzi +Common,AuthorizationService,gcube/service/generate/maiken.bjorkan +Common,AuthorizationService,gcube/service/generate/manu +Common,AuthorizationService,gcube/service/generate/manuela.degiorgi +Common,AuthorizationService,gcube/service/generate/manuele.simi.1 +Common,AuthorizationService,gcube/service/generate/manugoacolou +Common,AuthorizationService,gcube/service/generate/marc.kemps.snijders +Common,AuthorizationService,gcube/service/generate/marc.taconet +Common,AuthorizationService,gcube/service/generate/marc.taylor +Common,AuthorizationService,gcube/service/generate/marco.barsacchi +Common,AuthorizationService,gcube/service/generate/marco.brandizi +Common,AuthorizationService,gcube/service/generate/marcocornolti +Common,AuthorizationService,gcube/service/generate/mardones.mauricio +Common,AuthorizationService,gcube/service/generate/margaridahermida +Common,AuthorizationService,gcube/service/generate/margarita.rincon +Common,AuthorizationService,gcube/service/generate/margheritasidoti +Common,AuthorizationService,gcube/service/generate/mariaantonietta.digirolamo +Common,AuthorizationService,gcube/service/generate/mariadigirolamo +Common,AuthorizationService,gcube/service/generate/marie.puren +Common,AuthorizationService,gcube/service/generate/mark.hedges +Common,AuthorizationService,gcube/service/generate/mark.luckins +Common,AuthorizationService,gcube/service/generate/marlon.dumas +Common,AuthorizationService,gcube/service/generate/martacastillejo +Common,AuthorizationService,gcube/service/generate/martacat90 +Common,AuthorizationService,gcube/service/generate/martina.bocci.1 +Common,AuthorizationService,gcube/service/generate/marycchristman +Common,AuthorizationService,gcube/service/generate/marzia.piron +Common,AuthorizationService,gcube/service/generate/massi.tempadmin +Common,AuthorizationService,gcube/service/generate/massimiliano +Common,AuthorizationService,gcube/service/generate/massimiliano.assante +Common,AuthorizationService,gcube/service/generate/massimo.coppola +Common,AuthorizationService,gcube/service/generate/massimo.luchini +Common,AuthorizationService,gcube/service/generate/masterromaeo +Common,AuthorizationService,gcube/service/generate/mat.amadei +Common,AuthorizationService,gcube/service/generate/matej +Common,AuthorizationService,gcube/service/generate/math +Common,AuthorizationService,gcube/service/generate/matteo.corvi +Common,AuthorizationService,gcube/service/generate/matteo.razzanelli +Common,AuthorizationService,gcube/service/generate/matteolorenzini +Common,AuthorizationService,gcube/service/generate/matthias.obst +Common,AuthorizationService,gcube/service/generate/mattia.campana +Common,AuthorizationService,gcube/service/generate/mauricio.mardones +Common,AuthorizationService,gcube/service/generate/mauricio.marrone +Common,AuthorizationService,gcube/service/generate/maurizio.delmonte +Common,AuthorizationService,gcube/service/generate/maurizio.sanesi +Common,AuthorizationService,gcube/service/generate/maurizio.tesconi +Common,AuthorizationService,gcube/service/generate/max.fried +Common,AuthorizationService,gcube/service/generate/mcgener +Common,AuthorizationService,gcube/service/generate/me +Common,AuthorizationService,gcube/service/generate/mecmiller +Common,AuthorizationService,gcube/service/generate/mettem +Common,AuthorizationService,gcube/service/generate/mggraziano +Common,AuthorizationService,gcube/service/generate/mgoacolou +Common,AuthorizationService,gcube/service/generate/michael.mathioudakis +Common,AuthorizationService,gcube/service/generate/michael.musyl +Common,AuthorizationService,gcube/service/generate/micheljess +Common,AuthorizationService,gcube/service/generate/mike +Common,AuthorizationService,gcube/service/generate/mike.ojo +Common,AuthorizationService,gcube/service/generate/mike.priddy +Common,AuthorizationService,gcube/service/generate/miles +Common,AuthorizationService,gcube/service/generate/mincera +Common,AuthorizationService,gcube/service/generate/mister.blonde +Common,AuthorizationService,gcube/service/generate/mister.blue +Common,AuthorizationService,gcube/service/generate/mister.brown +Common,AuthorizationService,gcube/service/generate/mister.pink +Common,AuthorizationService,gcube/service/generate/mister.white +Common,AuthorizationService,gcube/service/generate/misv +Common,AuthorizationService,gcube/service/generate/mmel +Common,AuthorizationService,gcube/service/generate/mmfernandez +Common,AuthorizationService,gcube/service/generate/mnikolopoulos +Common,AuthorizationService,gcube/service/generate/mocamircea +Common,AuthorizationService,gcube/service/generate/mohamed.khemakhem +Common,AuthorizationService,gcube/service/generate/molly.lutcavage +Common,AuthorizationService,gcube/service/generate/monique.simier +Common,AuthorizationService,gcube/service/generate/montegrossi +Common,AuthorizationService,gcube/service/generate/morten.roed +Common,AuthorizationService,gcube/service/generate/motra +Common,AuthorizationService,gcube/service/generate/mthompson +Common,AuthorizationService,gcube/service/generate/musthafa.m1996 +Common,AuthorizationService,gcube/service/generate/mvalternativo +Common,AuthorizationService,gcube/service/generate/nadia +Common,AuthorizationService,gcube/service/generate/nancie.cummings +Common,AuthorizationService,gcube/service/generate/nanni.federico +Common,AuthorizationService,gcube/service/generate/robertoscopigno +Common,AuthorizationService,gcube/service/generate/natalia.andrienko +Common,AuthorizationService,gcube/service/generate/nathan.vaughan1 +Common,AuthorizationService,gcube/service/generate/naz +Common,AuthorizationService,gcube/service/generate/nicola.aloia +Common,AuthorizationService,gcube/service/generate/nicola.walker +Common,AuthorizationService,gcube/service/generate/nicolas.bailly +Common,AuthorizationService,gcube/service/generate/nicolas.bez +Common,AuthorizationService,gcube/service/generate/nikolas.laskaris +Common,AuthorizationService,gcube/service/generate/nikos.minadakis +Common,AuthorizationService,gcube/service/generate/nils.oesterling +Common,AuthorizationService,gcube/service/generate/nino.antulov +Common,AuthorizationService,gcube/service/generate/nithya.selvaraju +Common,AuthorizationService,gcube/service/generate/nlarrousse +Common,AuthorizationService,gcube/service/generate/nlongepe +Common,AuthorizationService,gcube/service/generate/nloxou +Common,AuthorizationService,gcube/service/generate/norbert.billet +Common,AuthorizationService,gcube/service/generate/ntran +Common,AuthorizationService,gcube/service/generate/nunzioandreagalante +Common,AuthorizationService,gcube/service/generate/o.renda +Common,AuthorizationService,gcube/service/generate/oceandtm +Common,AuthorizationService,gcube/service/generate/oluyemisi.oloruntuyi +Common,AuthorizationService,gcube/service/generate/ondine.cornubert +Common,AuthorizationService,gcube/service/generate/osidirop +Common,AuthorizationService,gcube/service/generate/oyvind.stamnes +Common,AuthorizationService,gcube/service/generate/ozhyhinas +Common,AuthorizationService,gcube/service/generate/pabloruizfabo +Common,AuthorizationService,gcube/service/generate/panagiota.koltsida +Common,AuthorizationService,gcube/service/generate/pangjingwen0422 +Common,AuthorizationService,gcube/service/generate/paolo +Common,AuthorizationService,gcube/service/generate/paolo.cintia +Common,AuthorizationService,gcube/service/generate/paolo.fabriani +Common,AuthorizationService,gcube/service/generate/paolo.manghi +Common,AuthorizationService,gcube/service/generate/paolof +Common,AuthorizationService,gcube/service/generate/parklize +Common,AuthorizationService,gcube/service/generate/parrotola +Common,AuthorizationService,gcube/service/generate/pasquale.pagano +Common,AuthorizationService,gcube/service/generate/patricia.reglero +Common,AuthorizationService,gcube/service/generate/patrick.philipp +Common,AuthorizationService,gcube/service/generate/paul +Common,AuthorizationService,gcube/service/generate/paulahmedley +Common,AuthorizationService,gcube/service/generate/paulalee39 +Common,AuthorizationService,gcube/service/generate/paultaconet +Common,AuthorizationService,gcube/service/generate/pekka.jounela +Common,AuthorizationService,gcube/service/generate/pengyang823 +Common,AuthorizationService,gcube/service/generate/peruzzo +Common,AuthorizationService,gcube/service/generate/petrad +Common,AuthorizationService,gcube/service/generate/petralinks +Common,AuthorizationService,gcube/service/generate/pfonseca +Common,AuthorizationService,gcube/service/generate/phil +Common,AuthorizationService,gcube/service/generate/philipp.kieninger +Common,AuthorizationService,gcube/service/generate/philippe.bryere +Common,AuthorizationService,gcube/service/generate/pierpaolo.petriccione +Common,AuthorizationService,gcube/service/generate/pierre-francois.baisnee +Common,AuthorizationService,gcube/service/generate/pino.vaccaro +Common,AuthorizationService,gcube/service/generate/pitityy56 +Common,AuthorizationService,gcube/service/generate/plino +Common,AuthorizationService,gcube/service/generate/ppbeto94 +Common,AuthorizationService,gcube/service/generate/proccaserra +Common,AuthorizationService,gcube/service/generate/pronzino +Common,AuthorizationService,gcube/service/generate/prory +Common,AuthorizationService,gcube/service/generate/psiozos +Common,AuthorizationService,gcube/service/generate/qasem +Common,AuthorizationService,gcube/service/generate/qicongc +Common,AuthorizationService,gcube/service/generate/quanap5 +Common,AuthorizationService,gcube/service/generate/r.l.p.mahieu +Common,AuthorizationService,gcube/service/generate/r.pechnig +Common,AuthorizationService,gcube/service/generate/rafik.zarrad +Common,AuthorizationService,gcube/service/generate/rahul.bhambri +Common,AuthorizationService,gcube/service/generate/rahult +Common,AuthorizationService,gcube/service/generate/rocio.suarez-jimenez +Common,AuthorizationService,gcube/service/generate/roeder +Common,AuthorizationService,gcube/service/generate/roojan63 +Common,AuthorizationService,gcube/service/generate/rtanzifi +Common,AuthorizationService,gcube/service/generate/rtanzifi.1 +Common,AuthorizationService,gcube/service/generate/rtl00 +Common,AuthorizationService,gcube/service/generate/rtrasarti +Common,AuthorizationService,gcube/service/generate/ruey-cheng.chen +Common,AuthorizationService,gcube/service/generate/ruggero.bertani +Common,AuthorizationService,gcube/service/generate/ruggieri +Common,AuthorizationService,gcube/service/generate/ruth.fernandez +Common,AuthorizationService,gcube/service/generate/s.hamid.sajjadi +Common,AuthorizationService,gcube/service/generate/sam.ed.leon +Common,AuthorizationService,gcube/service/generate/sandra.scalari +Common,AuthorizationService,gcube/service/generate/sandro.labruzzo +Common,AuthorizationService,gcube/service/generate/sara-jane.moore +Common,AuthorizationService,gcube/service/generate/sara.digiorgio +Common,AuthorizationService,gcube/service/generate/sara.garavelli +Common,AuthorizationService,gcube/service/generate/saran +Common,AuthorizationService,gcube/service/generate/sariah.mghames +Common,AuthorizationService,gcube/service/generate/sbellani +Common,AuthorizationService,gcube/service/generate/scaiella +Common,AuthorizationService,gcube/service/generate/scarponi +Common,AuthorizationService,gcube/service/generate/scipioni.michele +Common,AuthorizationService,gcube/service/generate/sdrude +Common,AuthorizationService,gcube/service/generate/selenia.ghio +Common,AuthorizationService,gcube/service/generate/sergio.oramas +Common,AuthorizationService,gcube/service/generate/sergio.palumbo +Common,AuthorizationService,gcube/service/generate/sfirdaus +Common,AuthorizationService,gcube/service/generate/sganoti +Common,AuthorizationService,gcube/service/generate/shaaf +Common,AuthorizationService,gcube/service/generate/shashikdmn +Common,AuthorizationService,gcube/service/generate/sheenab +Common,AuthorizationService,gcube/service/generate/sigbjorn.kolberg +Common,AuthorizationService,gcube/service/generate/silvia.agnoletti +Common,AuthorizationService,gcube/service/generate/simon +Common,AuthorizationService,gcube/service/generate/simon.fischer +Common,AuthorizationService,gcube/service/generate/simone.bertoli +Common,AuthorizationService,gcube/service/generate/simonetta.ciuffi +Common,AuthorizationService,gcube/service/generate/sing2370 +Common,AuthorizationService,gcube/service/generate/sirianapaonessa +Common,AuthorizationService,gcube/service/generate/sjuli +Common,AuthorizationService,gcube/service/generate/sofie.vandemaele +Common,AuthorizationService,gcube/service/generate/somass +Common,AuthorizationService,gcube/service/generate/spiecker +Common,AuthorizationService,gcube/service/generate/spn1 +Common,AuthorizationService,gcube/service/generate/spouyllau +Common,AuthorizationService,gcube/service/generate/statistical.manager +Common,AuthorizationService,gcube/service/generate/stefano.aringhieri +Common,AuthorizationService,gcube/service/generate/stefano.cresci +Common,AuthorizationService,gcube/service/generate/stefanosbarbati +Common,AuthorizationService,gcube/service/generate/steve.nelson.48 +Common,AuthorizationService,gcube/service/generate/steve.williams +Common,AuthorizationService,gcube/service/generate/stkak +Common,AuthorizationService,gcube/service/generate/sum1kawa.pregc +Common,AuthorizationService,gcube/service/generate/suntan +Common,AuthorizationService,gcube/service/generate/sven.kluge +Common,AuthorizationService,gcube/service/generate/swilliams +Common,AuthorizationService,gcube/service/generate/sylvain.bonhommeau +Common,AuthorizationService,gcube/service/generate/t.miethe +Common,AuthorizationService,gcube/service/generate/tagtuna +Common,AuthorizationService,gcube/service/generate/taha.imzilen +Common,AuthorizationService,gcube/service/generate/tecnico +Common,AuthorizationService,gcube/service/generate/terhi +Common,AuthorizationService,gcube/service/generate/testpop +Common,AuthorizationService,gcube/service/generate/thorsten.may +Common,AuthorizationService,gcube/service/generate/thorwart +Common,AuthorizationService,gcube/service/generate/tibor.kalman +Common,AuthorizationService,gcube/service/generate/tim.jones +Common,AuthorizationService,gcube/service/generate/tiziana.cantarelli +Common,AuthorizationService,gcube/service/generate/tiziana.scarselli +Common,AuthorizationService,gcube/service/generate/tiziano.squartini +Common,AuthorizationService,gcube/service/generate/tom.d4science +Common,AuthorizationService,gcube/service/generate/tom.skarning +Common,AuthorizationService,gcube/service/generate/tomi.jusri +Common,AuthorizationService,gcube/service/generate/tommaso.piccioli +Common,AuthorizationService,gcube/service/generate/tonyt +Common,AuthorizationService,gcube/service/generate/tristan.rouyer +Common,AuthorizationService,gcube/service/generate/ttolin +Common,AuthorizationService,gcube/service/generate/ttrippel +Common,AuthorizationService,gcube/service/generate/ucdxf +Common,AuthorizationService,gcube/service/generate/user.704788525 +Common,AuthorizationService,gcube/service/generate/utente1988 +Common,AuthorizationService,gcube/service/generate/valentijn.gilissen +Common,AuthorizationService,gcube/service/generate/valentina.marioli +Common,AuthorizationService,gcube/service/generate/valerio.arnaboldi +Common,AuthorizationService,gcube/service/generate/valerio.bartolino +Common,AuthorizationService,gcube/service/generate/valerio.basile +Common,AuthorizationService,gcube/service/generate/veronica.boarotto +Common,AuthorizationService,gcube/service/generate/vfloros +Common,AuthorizationService,gcube/service/generate/vgravez +Common,AuthorizationService,gcube/service/generate/vgrossi +Common,AuthorizationService,gcube/service/generate/vickyg +Common,AuthorizationService,gcube/service/generate/vincenzo.bacarella +Common,AuthorizationService,gcube/service/generate/viola.bachini +Common,AuthorizationService,gcube/service/generate/vishalbhave +Common,AuthorizationService,gcube/service/generate/vishrawa +Common,AuthorizationService,gcube/service/generate/vittorio +Common,AuthorizationService,gcube/service/generate/warda +Common,AuthorizationService,gcube/service/generate/whitefacedhaggardgrin +Common,AuthorizationService,gcube/service/generate/wiebelitz +Common,AuthorizationService,gcube/service/generate/wmcclin +Common,AuthorizationService,gcube/service/generate/wrabbel +Common,AuthorizationService,gcube/service/generate/wuke1993 +Common,AuthorizationService,gcube/service/generate/wwices +Common,AuthorizationService,gcube/service/generate/xavier.favory +Common,AuthorizationService,gcube/service/generate/xuqiongkai +Common,AuthorizationService,gcube/service/generate/yann.laurent +Common,AuthorizationService,gcube/service/generate/yannis.marketakis +Common,AuthorizationService,gcube/service/generate/yannis.tzitzikas +Common,AuthorizationService,gcube/service/generate/ydjong +Common,AuthorizationService,gcube/service/generate/yerko.yutronich +Common,AuthorizationService,gcube/service/generate/yin.chen +Common,AuthorizationService,gcube/service/generate/yorgos +Common,AuthorizationService,gcube/service/generate/ysjtcq +Common,AuthorizationService,gcube/service/generate/zarate +Common,AuthorizationService,gcube/service/generate/zeynep.pekcan.hekim +Common,AuthorizationService,gcube/service/generate/zhang.ym diff --git a/src/test/resources/AuthorizationService-retrieve-rule.json b/src/test/resources/AuthorizationService-retrieve-rule.json index d5e7639..35b15af 100644 --- a/src/test/resources/AuthorizationService-retrieve-rule.json +++ b/src/test/resources/AuthorizationService-retrieve-rule.json @@ -1,6 +1,12 @@ { - "regex": "^\/{0,1}gcube/service/retrieve.*", - "replace": "/gcube/service/retrieve/{id}", - "serviceClass": "Common", - "serviceName": "AuthorizationService" -} + "match": { + "serviceClassRegex": "Common", + "serviceNameRegex": "AuthorizationService", + "calledMethodRegex": "^/{0,1}gcube/service/retrieve.*" + }, + "replace": { + "serviceClass": "Common", + "serviceName": "AuthorizationService", + "calledMethod": "retrieve" + } +} \ No newline at end of file diff --git a/src/test/resources/AuthorizationService-retrieve-values.csv b/src/test/resources/AuthorizationService-retrieve-values.csv index 79170bf..d87ee20 100644 --- a/src/test/resources/AuthorizationService-retrieve-values.csv +++ b/src/test/resources/AuthorizationService-retrieve-values.csv @@ -1,64 +1,64 @@ -gcube/service/retrieve/introd8 -gcube/service/retrieve/jennifer8marzo -gcube/service/retrieve/lipari2013 -gcube/service/retrieve/masterbigdata -gcube/service/retrieve/master2015 -gcube/service/retrieve/ -gcube/service/retrieve/!Simba2Nala -gcube/service/retrieve/'{UUID_TO_REPLACE}' -gcube/service/retrieve/123QWA7dc8377b -gcube/service/retrieve/129511051 -gcube/service/retrieve/147bbd8a-9831-4544-8017-7dc60ad9 -gcube/service/retrieve/20xSz16AABBzwQsa -gcube/service/retrieve/3119yasu -gcube/service/retrieve/401110377bbbaaa -gcube/service/retrieve/4218481 -gcube/service/retrieve/454388ab362a716acb8201077dc8377b -gcube/service/retrieve/8020b57e2d41b6041c4fd06937acbec7 -gcube/service/retrieve/81aca -gcube/service/retrieve/8e1e4b21e4fa3bd636a43c14dcfd6b19 -gcube/service/retrieve/ -gcube/service/retrieve/ -gcube/service/retrieve/={UUID_TO_REPLACE} -gcube/service/retrieve/CEhmqGuilS -gcube/service/retrieve/Florenzi -gcube/service/retrieve/Js1106004817 -gcube/service/retrieve/MDibub1549 -gcube/service/retrieve/MY_TAGME_KEY -gcube/service/retrieve/QA91EMslzwQsa -gcube/service/retrieve/Snadiaf27 -gcube/service/retrieve/XXXX -gcube/service/retrieve/XXXXXXXXXXXXXXX -gcube/service/retrieve/XXXYZ231064LoabQPABTEX -gcube/service/retrieve/\\\\\\\\125d6a78fa1b4a0c89e5cc488487d134\\\\\\\\ -gcube/service/retrieve/\\\\\\\\{UUID_TO_REPLACE}\\\\\\\\ -gcube/service/retrieve/\\{UUID_TO_REPLACE} -gcube/service/retrieve/abc9000 -gcube/service/retrieve/admin -gcube/service/retrieve/airtel123 -gcube/service/retrieve/anupama@6 -gcube/service/retrieve/azerty135 -gcube/service/retrieve/bc70153a603d9de7e79c244c41270913 -gcube/service/retrieve/birdyus1111 -gcube/service/retrieve/cd91e3247d9efaf47fdbc505e44a2f8c -gcube/service/retrieve/d252540aaf6a9ee8457db5212e543189 -gcube/service/retrieve/eth2016a334GqA -gcube/service/retrieve/f46d74ae-25b2-4146-b4eb-457bec37d0c -gcube/service/retrieve/fdas -gcube/service/retrieve/http://dataminer.d4science.org/wps/WebProcessingService -gcube/service/retrieve/https://tagme.d4science.org/tagme/tag -gcube/service/retrieve/mozilla2016btWaqKPD96VQ -gcube/service/retrieve/phd2016boh -gcube/service/retrieve/prcakoski0 -gcube/service/retrieve/puellaladra -gcube/service/retrieve/rufus222 -gcube/service/retrieve/season800trim -gcube/service/retrieve/set(['{UUID_TO_REPLACE}']) -gcube/service/retrieve/tindog95 -gcube/service/retrieve/tyro8712 -gcube/service/retrieve/xXXXXXX-XXXXXX-XXXXX-XXXXX -gcube/service/retrieve/{UUID_TO_REPLACE} -gcube/service/retrieve/{UUID_TO_REPLACE}-843339462 -gcube/service/retrieve/{UUID_TO_REPLACE}-98187548 -gcube/service/retrieve/{UUID_TO_REPLACE}=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OBIS_MOST_OBSERVED_SPECIES +Common,AuthorizationService,gcube/service/retrieve/introd8 +Common,AuthorizationService,gcube/service/retrieve/jennifer8marzo +Common,AuthorizationService,gcube/service/retrieve/lipari2013 +Common,AuthorizationService,gcube/service/retrieve/masterbigdata +Common,AuthorizationService,gcube/service/retrieve/master2015 +Common,AuthorizationService,gcube/service/retrieve/ +Common,AuthorizationService,gcube/service/retrieve/!Simba2Nala +Common,AuthorizationService,gcube/service/retrieve/'{UUID_TO_REPLACE}' +Common,AuthorizationService,gcube/service/retrieve/123QWA7dc8377b +Common,AuthorizationService,gcube/service/retrieve/129511051 +Common,AuthorizationService,gcube/service/retrieve/147bbd8a-9831-4544-8017-7dc60ad9 +Common,AuthorizationService,gcube/service/retrieve/20xSz16AABBzwQsa +Common,AuthorizationService,gcube/service/retrieve/3119yasu +Common,AuthorizationService,gcube/service/retrieve/401110377bbbaaa +Common,AuthorizationService,gcube/service/retrieve/4218481 +Common,AuthorizationService,gcube/service/retrieve/454388ab362a716acb8201077dc8377b +Common,AuthorizationService,gcube/service/retrieve/8020b57e2d41b6041c4fd06937acbec7 +Common,AuthorizationService,gcube/service/retrieve/81aca +Common,AuthorizationService,gcube/service/retrieve/8e1e4b21e4fa3bd636a43c14dcfd6b19 +Common,AuthorizationService,gcube/service/retrieve/ +Common,AuthorizationService,gcube/service/retrieve/ +Common,AuthorizationService,gcube/service/retrieve/={UUID_TO_REPLACE} +Common,AuthorizationService,gcube/service/retrieve/CEhmqGuilS +Common,AuthorizationService,gcube/service/retrieve/Florenzi +Common,AuthorizationService,gcube/service/retrieve/Js1106004817 +Common,AuthorizationService,gcube/service/retrieve/MDibub1549 +Common,AuthorizationService,gcube/service/retrieve/MY_TAGME_KEY +Common,AuthorizationService,gcube/service/retrieve/QA91EMslzwQsa +Common,AuthorizationService,gcube/service/retrieve/Snadiaf27 +Common,AuthorizationService,gcube/service/retrieve/XXXX +Common,AuthorizationService,gcube/service/retrieve/XXXXXXXXXXXXXXX +Common,AuthorizationService,gcube/service/retrieve/XXXYZ231064LoabQPABTEX +Common,AuthorizationService,gcube/service/retrieve/\\\\\\\\125d6a78fa1b4a0c89e5cc488487d134\\\\\\\\ +Common,AuthorizationService,gcube/service/retrieve/\\\\\\\\{UUID_TO_REPLACE}\\\\\\\\ +Common,AuthorizationService,gcube/service/retrieve/\\{UUID_TO_REPLACE} +Common,AuthorizationService,gcube/service/retrieve/abc9000 +Common,AuthorizationService,gcube/service/retrieve/admin +Common,AuthorizationService,gcube/service/retrieve/airtel123 +Common,AuthorizationService,gcube/service/retrieve/anupama@6 +Common,AuthorizationService,gcube/service/retrieve/azerty135 +Common,AuthorizationService,gcube/service/retrieve/bc70153a603d9de7e79c244c41270913 +Common,AuthorizationService,gcube/service/retrieve/birdyus1111 +Common,AuthorizationService,gcube/service/retrieve/cd91e3247d9efaf47fdbc505e44a2f8c +Common,AuthorizationService,gcube/service/retrieve/d252540aaf6a9ee8457db5212e543189 +Common,AuthorizationService,gcube/service/retrieve/eth2016a334GqA +Common,AuthorizationService,gcube/service/retrieve/f46d74ae-25b2-4146-b4eb-457bec37d0c +Common,AuthorizationService,gcube/service/retrieve/fdas +Common,AuthorizationService,gcube/service/retrieve/http://dataminer.d4science.org/wps/WebProcessingService +Common,AuthorizationService,gcube/service/retrieve/https://tagme.d4science.org/tagme/tag +Common,AuthorizationService,gcube/service/retrieve/mozilla2016btWaqKPD96VQ +Common,AuthorizationService,gcube/service/retrieve/phd2016boh +Common,AuthorizationService,gcube/service/retrieve/prcakoski0 +Common,AuthorizationService,gcube/service/retrieve/puellaladra +Common,AuthorizationService,gcube/service/retrieve/rufus222 +Common,AuthorizationService,gcube/service/retrieve/season800trim +Common,AuthorizationService,gcube/service/retrieve/set(['{UUID_TO_REPLACE}']) +Common,AuthorizationService,gcube/service/retrieve/tindog95 +Common,AuthorizationService,gcube/service/retrieve/tyro8712 +Common,AuthorizationService,gcube/service/retrieve/xXXXXXX-XXXXXX-XXXXX-XXXXX +Common,AuthorizationService,gcube/service/retrieve/{UUID_TO_REPLACE} +Common,AuthorizationService,gcube/service/retrieve/{UUID_TO_REPLACE}-843339462 +Common,AuthorizationService,gcube/service/retrieve/{UUID_TO_REPLACE}-98187548 +Common,AuthorizationService,gcube/service/retrieve/{UUID_TO_REPLACE}=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OBIS_MOST_OBSERVED_SPECIES diff --git a/src/test/resources/AuthorizationService-scopes-rule.json b/src/test/resources/AuthorizationService-scopes-rule.json index 752baeb..c795cb5 100644 --- a/src/test/resources/AuthorizationService-scopes-rule.json +++ b/src/test/resources/AuthorizationService-scopes-rule.json @@ -1,6 +1,12 @@ { - "regex": "^((e\/)|\/){0,1}gcube\/resource\/scopes", - "replace": "/gcube/resource/scopes", - "serviceClass": "Common", - "serviceName": "AuthorizationService" -} + "match": { + "serviceClassRegex": "Common", + "serviceNameRegex": "AuthorizationService", + "calledMethodRegex": "^((e\/)|\/){0,1}gcube\/resource\/scopes" + }, + "replace": { + "serviceClass": "Common", + "serviceName": "AuthorizationService", + "calledMethod": "scopes" + } +} \ No newline at end of file diff --git a/src/test/resources/AuthorizationService-scopes-values.csv b/src/test/resources/AuthorizationService-scopes-values.csv index 810713c..10a0ca0 100644 --- a/src/test/resources/AuthorizationService-scopes-values.csv +++ b/src/test/resources/AuthorizationService-scopes-values.csv @@ -1 +1 @@ -e/gcube/resource/scopes \ No newline at end of file +Common,AuthorizationService,e/gcube/resource/scopes diff --git a/src/test/resources/CkanConnector-connect-rule.json b/src/test/resources/CkanConnector-connect-rule.json index 0118552..3fc6397 100644 --- a/src/test/resources/CkanConnector-connect-rule.json +++ b/src/test/resources/CkanConnector-connect-rule.json @@ -1,6 +1,12 @@ { - "regex": "^\/{0,1}gcube\/service\/connect.*", - "replace": "connect", - "serviceClass": "DataAccess", - "serviceName": "CkanConnector" -} + "match": { + "serviceClassRegex": "DataAccess", + "serviceNameRegex": "CkanConnector", + "calledMethodRegex": "^\/{0,1}gcube\/service\/connect.*" + }, + "replace": { + "serviceClass": "DataAccess", + "serviceName": "CkanConnector", + "calledMethod": "connect" + } +} \ No newline at end of file diff --git a/src/test/resources/CkanConnector-connect-values.csv b/src/test/resources/CkanConnector-connect-values.csv index 2c97ac8..213b719 100644 --- a/src/test/resources/CkanConnector-connect-values.csv +++ b/src/test/resources/CkanConnector-connect-values.csv @@ -1,208 +1,208 @@ -/gcube/service/connect/group -/gcube/service/connect/organization/biodiversity-lab -/gcube/service/connect/dataset/cophir -/gcube/service/connect/organization -/gcube/service/connect/dataset/aquafarm-cages-in-greece -gcube/service/connect/dataset -/gcube/service/connect -/gcube/service/connect/%20dataset/aalto-foursquare -/gcube/service/connect/dashboard/dataset -/gcube/service/connect/dashboard/datasets -/gcube/service/connect/dataset -/gcube/service/connect/dataset/aalto-foursquare -/gcube/service/connect/dataset/aalto-twitter -/gcube/service/connect/dataset/acrocephalus-paludicola -/gcube/service/connect/dataset/alieia-virtual-research-environment -/gcube/service/connect/dataset/all_aquamaps_occurrences_records -/gcube/service/connect/dataset/analytics_lab_virtual_research_environment -/gcube/service/connect/dataset/title2 -/gcube/service/connect/dataset/articles_and_comments_of_major_estonian_newspapers -/gcube/service/connect/dataset/base_bielefeld_academic_search_engine -/gcube/service/connect/dataset/best_practices_and_guidelines_towards_interoperability -/gcube/service/connect/dataset/blue_datathon_virtual_research_environment -/gcube/service/connect/dataset/bluebridge_psc_virtual_research_environment -/gcube/service/connect/dataset/bluebridge_virtual_research_environment -/gcube/service/connect/dataset/borders -/gcube/service/connect/dataset/call_data_record_pisa_livorno_firenze_lucca_2014 -/gcube/service/connect/dataset/carpooling -/gcube/service/connect/dataset/carpooling_never_drive_alone -/gcube/service/connect/dataset/cdr_data_-_rome -/gcube/service/connect/dataset/cdr_data_-_tuscany -/gcube/service/connect/dataset/coastal_water_surfaces -/gcube/service/connect/dataset/com-livejournal -/gcube/service/connect/dataset/d10_11_data_processing_workflow_specification_language -/gcube/service/connect/dataset/d10_12_vre_specification_and_software_1 -/gcube/service/connect/dataset/d10_2_sobigdata_e-_infrastructure_release_plan_1 -/gcube/service/connect/dataset/d10_5_sobigdata_e-infrastructure_software_release_1 -/gcube/service/connect/dataset/d10_8_resource_adaptation_to_register_to_the_e-infrastructure_1 -/gcube/service/connect/dataset/d1_1_all_relevant_boards_established -/gcube/service/connect/dataset/d2_1_ethics_board_establishment -/gcube/service/connect/dataset/d2_2_legal_and_ethical_framework_for_sobigdata -/gcube/service/connect/stats -/gcube/service/connect/dataset/d2_5_value-sensitive_design_and_privacy-by-design_technologies_for_big_data_analytics_1 -/gcube/service/connect/dataset/d2_6_ip_principles_and_business_models_2 -/gcube/service/connect/dataset/d3_1_project_web_site_project_presentation_and_social_media_presence -/gcube/service/connect/dataset/d3_2_fact_sheets_aimed_at_different_stakeholders -/gcube/service/connect/dataset/d3_3_initial_dissemination_and_impact_plan -/gcube/service/connect/dataset/d3_4_periodic_dissemination_and_impact_report_and_plan_for_following_year_1 -/gcube/service/connect/dataset/d4_1_periodic_training_planning_report_1 -/gcube/service/connect/dataset/d4_4_data_scientists_training_materials_1 -/gcube/service/connect/dataset/d4_7_training_programme_1 -/gcube/service/connect/dataset/d4science_dataminer -/gcube/service/connect/dataset/d5_1_preliminary_innovation_and_action_plan -/gcube/service/connect/dataset/d6_1_periodic_reports_on_ta_activities_1 -/gcube/service/connect/dataset/d7_1_va_e-infrastructure_service_provision_and_operation_report_1 -/gcube/service/connect/dataset/d8_1_data_management_report -/gcube/service/connect/dataset/d8_2_crowd_sensing_platform -/gcube/service/connect/dataset/d8_4_integrating_open_data_through_innovation_accelerator_platforms -/gcube/service/connect/dataset/d9_1_social_mining_method_and_service_integration_1 -/gcube/service/connect/dataset/datacite -/gcube/service/connect/dataset/datahub -/gcube/service/connect/dataset/de_webarchive -/gcube/service/connect/dataset/debtrank_systemic_risk_estimation_method -/gcube/service/connect/dataset/demon -/gcube/service/connect/dataset/dictionary_creator -/gcube/service/connect/dataset/digital_dna_fingerprinting -/gcube/service/connect/dataset/disease_twitter_dataset -/gcube/service/connect/dataset/distribution_of_the_giant_squid_architeuthis -/gcube/service/connect/dataset/e-mid_interbank_transactions -/gcube/service/connect/dataset/economic_integration_model -/gcube/service/connect/dataset/emid_dataset -/gcube/service/connect/dataset/epidemic_sentiment_analysis -/gcube/service/connect/dataset/european_banks_asset_class_exposures -/gcube/service/connect/dataset/exploration_of_time_use_by_citizens_based_on_their_movement_tracks -/gcube/service/connect/dataset/soccer_team_performance -/gcube/service/connect/dataset/facebook_dataset_-_new_orleans_regional_network -/gcube/service/connect/dataset/facebook_eurosys_2009 -/gcube/service/connect/dataset/fao-aquatic-species-distribution-map-of-bathyraja-spinicauda -/gcube/service/connect/dataset/fao-aquatic-species-distribution-map-of-bathyteuthis-abyssicola -/gcube/service/connect/dataset/fao-aquatic-species-distribution-map-of-chamelea-gallina -/gcube/service/connect/dataset/fao_tunaatlas_virtual_research_environment -/gcube/service/connect/dataset/flickr_and_wikipedia_turism_trajectories -/gcube/service/connect/dataset/gate_cloud -/gcube/service/connect/dataset/geolife_-_gps_trajectories_dataset -/gcube/service/connect/dataset/geotopics_-_a_method_and_system_to_explore_urban_activity -/gcube/service/connect/dataset/german_academic_web -/gcube/service/connect/dataset/global-environmental-parameters-with-half-degree-resolution -/gcube/service/connect/dataset/goniastrea-australensis-aquamaps-native-raster -/gcube/service/connect/dataset/gps_2011_05 -/gcube/service/connect/dataset/gps_origin_destination_matrix_in_tuscany -/gcube/service/connect/dataset/gps_track_calabria -/gcube/service/connect/dataset/gps_track_mestre_-_italy -/gcube/service/connect/dataset/gps_track_milan_italy -/gcube/service/connect/dataset/gps_track_pisa_-_italy -/gcube/service/connect/dataset/gps_track_tuscany_by_volunteers -/gcube/service/connect/dataset/grsf_virtual_research_environment -/gcube/service/connect/dataset/half-degree_cells_authority_file_-_hcaf -/gcube/service/connect/dataset/half-degree_cells_authority_file_-_hcaf_in_2050 -/gcube/service/connect/dataset/half-degree_cells_authority_file_-_hcaf_in_2050.ttl -/gcube/service/connect/dataset/hpc_twitter_dumps -/gcube/service/connect/dataset/ices_abundanceestimationfromacoustic_virtual_research_environment -/gcube/service/connect/dataset/ices_introduction_to_stock_assessment_virtual_research_environment -/gcube/service/connect/dataset/ices_introduction_to_the_r_environment_2017_virtual_research_environment -/gcube/service/connect/dataset/igd_visualisation_edito -/gcube/service/connect/dataset/igd_visualisation_editor -/gcube/service/connect/dataset/igd_visualization_editor -/gcube/service/connect/dataset/istat_census_zone_tuscany -/gcube/service/connect/dataset/kddmultigraph -/gcube/service/connect/dataset/latimeria-chalumnae-occurrences-layer19 -/gcube/service/connect/dataset/latimeria_chalumnae_points -/gcube/service/connect/dataset/leader_detect -/gcube/service/connect/dataset/marine_lifewatch -/gcube/service/connect/dataset/matlas_-_optics_algorithm -/gcube/service/connect/dataset/maxandsam_network_recontruction_method -/gcube/service/connect/dataset/maximum_entropy_network_reconstruction -/gcube/service/connect/dataset/mobility_profile -/gcube/service/connect/dataset/modelling_scientific_migration -/gcube/service/connect/dataset/msn_search_query_log -/gcube/service/connect/dataset/my_aggregator_of_data_repositories -/gcube/service/connect/dataset/myway_-_trajectory_prediction -/gcube/service/connect/dataset/nasa-earth-exchange-annual-average-suface-air-temperature-projection-from-1950-to-2100-in-a-hig -/gcube/service/connect/dataset/ndlib-rest -/gcube/service/connect/dataset/nowcasting_migration_stocks_and_flows -/gcube/service/connect/dataset/number-of-observations-from-01-16-01-01-00-to-12-16-01-01-00-3d-world-ocean-atlas-09-nitrate-mo -/gcube/service/connect/dataset/official_administrative_information_of_tuscany -/gcube/service/connect/dataset/privacy_risk_on_sociometer -/gcube/service/connect/dataset/privacy_risk_on_trajectories -/gcube/service/connect/dataset/prova -/gcube/service/connect/dataset/prova1 -/gcube/service/connect/dataset/prova2 -/gcube/service/connect/dataset/publication_test -/gcube/service/connect/dataset/quickrank -/gcube/service/connect/dataset/retail_market_dataset -/gcube/service/connect/dataset/rprototypinglab_virtual_research_environment -/gcube/service/connect/dataset/scalable_data_mining_virtual_research_environment -/gcube/service/connect/dataset/scienceresearch -/gcube/service/connect/dataset/scientific_publications_dataset -/gcube/service/connect/dataset/scube -/gcube/service/connect/dataset/smaph_system_for_query_entity_linking -/gcube/service/connect/dataset/sociometer -/gcube/service/connect/dataset/statistical_validation -/gcube/service/connect/dataset/stocksandfisherieskb_virtual_research_environment -/gcube/service/connect/dataset/superdiversity_and_sentiment -/gcube/service/connect/dataset/tagme -/gcube/service/connect/dataset/tail_granger_causality_network_construction -/gcube/service/connect/dataset/title -/gcube/service/connect/dataset/trajectory_builder -/gcube/service/connect/dataset/tripbuilder -/gcube/service/connect/dataset/twitter_dataset_2013-2014 -/gcube/service/connect/dataset/twitter_monitor -/gcube/service/connect/dataset/urban_mobility_atlas -/gcube/service/connect/dataset/web_archive_re-crawler -/gcube/service/connect/dataset/wikidata_geo_mapper -/gcube/service/connect/dataset/word_sense_evolution_testset -/gcube/service/connect/group/city-of-citizens-group -/gcube/service/connect/group/sobigdata-eu-dataset -/gcube/service/connect/group/societal-debates-group -/gcube/service/connect/organization/biodiversitylab -/gcube/service/connect/organization/biodivesitylab -/gcube/service/connect/organization/bluebridgeproject -/gcube/service/connect/organization/diodiversitylab -/gcube/service/connect/organization/emodnet -/gcube/service/connect/organization/fao -/gcube/service/connect/organization/fao_tunaatlas -/gcube/service/connect/organization/gcube -/gcube/service/connect/organization/grsf -/gcube/service/connect/organization/resourcecatalogue -/gcube/service/connect/organization/siaspa -/gcube/service/connect/organization/tabulardatalab -/gcube/service/connect/organization_vre/fao_tunaatlas -/gcube/service/connect/type -gcube/service/connect -gcube/service/connect/dashboard/datasets -gcube/service/connect/dashboard/groups -gcube/service/connect/dataset/abramis_brama_absence_generation_from_obis_id71eb69a754ab48cebefb52a448433 -gcube/service/connect/dataset/abramis_brama_absence_generation_from_obis_id71eb69a754ab48cebefb52a448433fa0 -gcube/service/connect/dataset/best_practices_and_guidelines_towards_interoperability -gcube/service/connect/dataset/cirrhilabrus-scottorum3 -gcube/service/connect/dataset/de_webarchive -gcube/service/connect/dataset/first_publication_from_biodiversity_lab -gcube/service/connect/dataset/first_publication_in_bluebridgeproject -gcube/service/connect/dataset/first_publication_in_d4science_production -gcube/service/connect/dataset/from_root_to_blue_bridge_projec -gcube/service/connect/dataset/geotopics_-_a_method_and_system_to_explore_urban_activity -gcube/service/connect/dataset/my_deliverable -gcube/service/connect/dataset/new_features_ckan -gcube/service/connect/dataset/official_administrative_information_of_tuscany -gcube/service/connect/dataset/origin_destination_matrix -gcube/service/connect/dataset/presentation -gcube/service/connect/dataset/tagme -gcube/service/connect/dataset/{UUID_TO_REPLACE} -gcube/service/connect/dataset/{UUID_TO_REPLACE}.rdf -gcube/service/connect/dataset/{UUID_TO_REPLACE}.ttl -gcube/service/connect/group -gcube/service/connect/group/firms -gcube/service/connect/organization -gcube/service/connect/organization/biodiversitylab -gcube/service/connect/organization/bluebridgeproject -gcube/service/connect/organization/d4science -gcube/service/connect/organization/fao_tunaatlas -gcube/service/connect/organization/gcube -gcube/service/connect/organization/grsf -gcube/service/connect/organization/grsf_admin -gcube/service/connect/organization/resourcecatalogue -gcube/service/connect/organization/sobigdata -gcube/service/connect/organization/stockassessment -gcube/service/connect/organization/tabulardatalab -gcube/service/connect/statitstics -gcube/service/connect/stats +DataAccess,CkanConnector,/gcube/service/connect/group +DataAccess,CkanConnector,/gcube/service/connect/organization/biodiversity-lab +DataAccess,CkanConnector,/gcube/service/connect/dataset/cophir +DataAccess,CkanConnector,/gcube/service/connect/organization +DataAccess,CkanConnector,/gcube/service/connect/dataset/aquafarm-cages-in-greece +DataAccess,CkanConnector,gcube/service/connect/dataset +DataAccess,CkanConnector,/gcube/service/connect +DataAccess,CkanConnector,/gcube/service/connect/%20dataset/aalto-foursquare +DataAccess,CkanConnector,/gcube/service/connect/dashboard/dataset +DataAccess,CkanConnector,/gcube/service/connect/dashboard/datasets +DataAccess,CkanConnector,/gcube/service/connect/dataset +DataAccess,CkanConnector,/gcube/service/connect/dataset/aalto-foursquare +DataAccess,CkanConnector,/gcube/service/connect/dataset/aalto-twitter +DataAccess,CkanConnector,/gcube/service/connect/dataset/acrocephalus-paludicola +DataAccess,CkanConnector,/gcube/service/connect/dataset/alieia-virtual-research-environment +DataAccess,CkanConnector,/gcube/service/connect/dataset/all_aquamaps_occurrences_records +DataAccess,CkanConnector,/gcube/service/connect/dataset/analytics_lab_virtual_research_environment +DataAccess,CkanConnector,/gcube/service/connect/dataset/title2 +DataAccess,CkanConnector,/gcube/service/connect/dataset/articles_and_comments_of_major_estonian_newspapers +DataAccess,CkanConnector,/gcube/service/connect/dataset/base_bielefeld_academic_search_engine +DataAccess,CkanConnector,/gcube/service/connect/dataset/best_practices_and_guidelines_towards_interoperability +DataAccess,CkanConnector,/gcube/service/connect/dataset/blue_datathon_virtual_research_environment +DataAccess,CkanConnector,/gcube/service/connect/dataset/bluebridge_psc_virtual_research_environment +DataAccess,CkanConnector,/gcube/service/connect/dataset/bluebridge_virtual_research_environment +DataAccess,CkanConnector,/gcube/service/connect/dataset/borders +DataAccess,CkanConnector,/gcube/service/connect/dataset/call_data_record_pisa_livorno_firenze_lucca_2014 +DataAccess,CkanConnector,/gcube/service/connect/dataset/carpooling +DataAccess,CkanConnector,/gcube/service/connect/dataset/carpooling_never_drive_alone +DataAccess,CkanConnector,/gcube/service/connect/dataset/cdr_data_-_rome +DataAccess,CkanConnector,/gcube/service/connect/dataset/cdr_data_-_tuscany +DataAccess,CkanConnector,/gcube/service/connect/dataset/coastal_water_surfaces +DataAccess,CkanConnector,/gcube/service/connect/dataset/com-livejournal +DataAccess,CkanConnector,/gcube/service/connect/dataset/d10_11_data_processing_workflow_specification_language +DataAccess,CkanConnector,/gcube/service/connect/dataset/d10_12_vre_specification_and_software_1 +DataAccess,CkanConnector,/gcube/service/connect/dataset/d10_2_sobigdata_e-_infrastructure_release_plan_1 +DataAccess,CkanConnector,/gcube/service/connect/dataset/d10_5_sobigdata_e-infrastructure_software_release_1 +DataAccess,CkanConnector,/gcube/service/connect/dataset/d10_8_resource_adaptation_to_register_to_the_e-infrastructure_1 +DataAccess,CkanConnector,/gcube/service/connect/dataset/d1_1_all_relevant_boards_established +DataAccess,CkanConnector,/gcube/service/connect/dataset/d2_1_ethics_board_establishment +DataAccess,CkanConnector,/gcube/service/connect/dataset/d2_2_legal_and_ethical_framework_for_sobigdata +DataAccess,CkanConnector,/gcube/service/connect/stats +DataAccess,CkanConnector,/gcube/service/connect/dataset/d2_5_value-sensitive_design_and_privacy-by-design_technologies_for_big_data_analytics_1 +DataAccess,CkanConnector,/gcube/service/connect/dataset/d2_6_ip_principles_and_business_models_2 +DataAccess,CkanConnector,/gcube/service/connect/dataset/d3_1_project_web_site_project_presentation_and_social_media_presence +DataAccess,CkanConnector,/gcube/service/connect/dataset/d3_2_fact_sheets_aimed_at_different_stakeholders +DataAccess,CkanConnector,/gcube/service/connect/dataset/d3_3_initial_dissemination_and_impact_plan +DataAccess,CkanConnector,/gcube/service/connect/dataset/d3_4_periodic_dissemination_and_impact_report_and_plan_for_following_year_1 +DataAccess,CkanConnector,/gcube/service/connect/dataset/d4_1_periodic_training_planning_report_1 +DataAccess,CkanConnector,/gcube/service/connect/dataset/d4_4_data_scientists_training_materials_1 +DataAccess,CkanConnector,/gcube/service/connect/dataset/d4_7_training_programme_1 +DataAccess,CkanConnector,/gcube/service/connect/dataset/d4science_dataminer +DataAccess,CkanConnector,/gcube/service/connect/dataset/d5_1_preliminary_innovation_and_action_plan +DataAccess,CkanConnector,/gcube/service/connect/dataset/d6_1_periodic_reports_on_ta_activities_1 +DataAccess,CkanConnector,/gcube/service/connect/dataset/d7_1_va_e-infrastructure_service_provision_and_operation_report_1 +DataAccess,CkanConnector,/gcube/service/connect/dataset/d8_1_data_management_report +DataAccess,CkanConnector,/gcube/service/connect/dataset/d8_2_crowd_sensing_platform +DataAccess,CkanConnector,/gcube/service/connect/dataset/d8_4_integrating_open_data_through_innovation_accelerator_platforms +DataAccess,CkanConnector,/gcube/service/connect/dataset/d9_1_social_mining_method_and_service_integration_1 +DataAccess,CkanConnector,/gcube/service/connect/dataset/datacite +DataAccess,CkanConnector,/gcube/service/connect/dataset/datahub +DataAccess,CkanConnector,/gcube/service/connect/dataset/de_webarchive +DataAccess,CkanConnector,/gcube/service/connect/dataset/debtrank_systemic_risk_estimation_method +DataAccess,CkanConnector,/gcube/service/connect/dataset/demon +DataAccess,CkanConnector,/gcube/service/connect/dataset/dictionary_creator +DataAccess,CkanConnector,/gcube/service/connect/dataset/digital_dna_fingerprinting +DataAccess,CkanConnector,/gcube/service/connect/dataset/disease_twitter_dataset +DataAccess,CkanConnector,/gcube/service/connect/dataset/distribution_of_the_giant_squid_architeuthis +DataAccess,CkanConnector,/gcube/service/connect/dataset/e-mid_interbank_transactions +DataAccess,CkanConnector,/gcube/service/connect/dataset/economic_integration_model +DataAccess,CkanConnector,/gcube/service/connect/dataset/emid_dataset +DataAccess,CkanConnector,/gcube/service/connect/dataset/epidemic_sentiment_analysis +DataAccess,CkanConnector,/gcube/service/connect/dataset/european_banks_asset_class_exposures +DataAccess,CkanConnector,/gcube/service/connect/dataset/exploration_of_time_use_by_citizens_based_on_their_movement_tracks +DataAccess,CkanConnector,/gcube/service/connect/dataset/soccer_team_performance +DataAccess,CkanConnector,/gcube/service/connect/dataset/facebook_dataset_-_new_orleans_regional_network +DataAccess,CkanConnector,/gcube/service/connect/dataset/facebook_eurosys_2009 +DataAccess,CkanConnector,/gcube/service/connect/dataset/fao-aquatic-species-distribution-map-of-bathyraja-spinicauda +DataAccess,CkanConnector,/gcube/service/connect/dataset/fao-aquatic-species-distribution-map-of-bathyteuthis-abyssicola +DataAccess,CkanConnector,/gcube/service/connect/dataset/fao-aquatic-species-distribution-map-of-chamelea-gallina +DataAccess,CkanConnector,/gcube/service/connect/dataset/fao_tunaatlas_virtual_research_environment +DataAccess,CkanConnector,/gcube/service/connect/dataset/flickr_and_wikipedia_turism_trajectories +DataAccess,CkanConnector,/gcube/service/connect/dataset/gate_cloud +DataAccess,CkanConnector,/gcube/service/connect/dataset/geolife_-_gps_trajectories_dataset +DataAccess,CkanConnector,/gcube/service/connect/dataset/geotopics_-_a_method_and_system_to_explore_urban_activity +DataAccess,CkanConnector,/gcube/service/connect/dataset/german_academic_web +DataAccess,CkanConnector,/gcube/service/connect/dataset/global-environmental-parameters-with-half-degree-resolution +DataAccess,CkanConnector,/gcube/service/connect/dataset/goniastrea-australensis-aquamaps-native-raster +DataAccess,CkanConnector,/gcube/service/connect/dataset/gps_2011_05 +DataAccess,CkanConnector,/gcube/service/connect/dataset/gps_origin_destination_matrix_in_tuscany +DataAccess,CkanConnector,/gcube/service/connect/dataset/gps_track_calabria +DataAccess,CkanConnector,/gcube/service/connect/dataset/gps_track_mestre_-_italy +DataAccess,CkanConnector,/gcube/service/connect/dataset/gps_track_milan_italy +DataAccess,CkanConnector,/gcube/service/connect/dataset/gps_track_pisa_-_italy +DataAccess,CkanConnector,/gcube/service/connect/dataset/gps_track_tuscany_by_volunteers +DataAccess,CkanConnector,/gcube/service/connect/dataset/grsf_virtual_research_environment +DataAccess,CkanConnector,/gcube/service/connect/dataset/half-degree_cells_authority_file_-_hcaf +DataAccess,CkanConnector,/gcube/service/connect/dataset/half-degree_cells_authority_file_-_hcaf_in_2050 +DataAccess,CkanConnector,/gcube/service/connect/dataset/half-degree_cells_authority_file_-_hcaf_in_2050.ttl +DataAccess,CkanConnector,/gcube/service/connect/dataset/hpc_twitter_dumps +DataAccess,CkanConnector,/gcube/service/connect/dataset/ices_abundanceestimationfromacoustic_virtual_research_environment +DataAccess,CkanConnector,/gcube/service/connect/dataset/ices_introduction_to_stock_assessment_virtual_research_environment +DataAccess,CkanConnector,/gcube/service/connect/dataset/ices_introduction_to_the_r_environment_2017_virtual_research_environment +DataAccess,CkanConnector,/gcube/service/connect/dataset/igd_visualisation_edito +DataAccess,CkanConnector,/gcube/service/connect/dataset/igd_visualisation_editor +DataAccess,CkanConnector,/gcube/service/connect/dataset/igd_visualization_editor +DataAccess,CkanConnector,/gcube/service/connect/dataset/istat_census_zone_tuscany +DataAccess,CkanConnector,/gcube/service/connect/dataset/kddmultigraph +DataAccess,CkanConnector,/gcube/service/connect/dataset/latimeria-chalumnae-occurrences-layer19 +DataAccess,CkanConnector,/gcube/service/connect/dataset/latimeria_chalumnae_points +DataAccess,CkanConnector,/gcube/service/connect/dataset/leader_detect +DataAccess,CkanConnector,/gcube/service/connect/dataset/marine_lifewatch +DataAccess,CkanConnector,/gcube/service/connect/dataset/matlas_-_optics_algorithm +DataAccess,CkanConnector,/gcube/service/connect/dataset/maxandsam_network_recontruction_method +DataAccess,CkanConnector,/gcube/service/connect/dataset/maximum_entropy_network_reconstruction +DataAccess,CkanConnector,/gcube/service/connect/dataset/mobility_profile +DataAccess,CkanConnector,/gcube/service/connect/dataset/modelling_scientific_migration +DataAccess,CkanConnector,/gcube/service/connect/dataset/msn_search_query_log +DataAccess,CkanConnector,/gcube/service/connect/dataset/my_aggregator_of_data_repositories +DataAccess,CkanConnector,/gcube/service/connect/dataset/myway_-_trajectory_prediction +DataAccess,CkanConnector,/gcube/service/connect/dataset/nasa-earth-exchange-annual-average-suface-air-temperature-projection-from-1950-to-2100-in-a-hig +DataAccess,CkanConnector,/gcube/service/connect/dataset/ndlib-rest +DataAccess,CkanConnector,/gcube/service/connect/dataset/nowcasting_migration_stocks_and_flows +DataAccess,CkanConnector,/gcube/service/connect/dataset/number-of-observations-from-01-16-01-01-00-to-12-16-01-01-00-3d-world-ocean-atlas-09-nitrate-mo +DataAccess,CkanConnector,/gcube/service/connect/dataset/official_administrative_information_of_tuscany +DataAccess,CkanConnector,/gcube/service/connect/dataset/privacy_risk_on_sociometer +DataAccess,CkanConnector,/gcube/service/connect/dataset/privacy_risk_on_trajectories +DataAccess,CkanConnector,/gcube/service/connect/dataset/prova +DataAccess,CkanConnector,/gcube/service/connect/dataset/prova1 +DataAccess,CkanConnector,/gcube/service/connect/dataset/prova2 +DataAccess,CkanConnector,/gcube/service/connect/dataset/publication_test +DataAccess,CkanConnector,/gcube/service/connect/dataset/quickrank +DataAccess,CkanConnector,/gcube/service/connect/dataset/retail_market_dataset +DataAccess,CkanConnector,/gcube/service/connect/dataset/rprototypinglab_virtual_research_environment +DataAccess,CkanConnector,/gcube/service/connect/dataset/scalable_data_mining_virtual_research_environment +DataAccess,CkanConnector,/gcube/service/connect/dataset/scienceresearch +DataAccess,CkanConnector,/gcube/service/connect/dataset/scientific_publications_dataset +DataAccess,CkanConnector,/gcube/service/connect/dataset/scube +DataAccess,CkanConnector,/gcube/service/connect/dataset/smaph_system_for_query_entity_linking +DataAccess,CkanConnector,/gcube/service/connect/dataset/sociometer +DataAccess,CkanConnector,/gcube/service/connect/dataset/statistical_validation +DataAccess,CkanConnector,/gcube/service/connect/dataset/stocksandfisherieskb_virtual_research_environment +DataAccess,CkanConnector,/gcube/service/connect/dataset/superdiversity_and_sentiment +DataAccess,CkanConnector,/gcube/service/connect/dataset/tagme +DataAccess,CkanConnector,/gcube/service/connect/dataset/tail_granger_causality_network_construction +DataAccess,CkanConnector,/gcube/service/connect/dataset/title +DataAccess,CkanConnector,/gcube/service/connect/dataset/trajectory_builder +DataAccess,CkanConnector,/gcube/service/connect/dataset/tripbuilder +DataAccess,CkanConnector,/gcube/service/connect/dataset/twitter_dataset_2013-2014 +DataAccess,CkanConnector,/gcube/service/connect/dataset/twitter_monitor +DataAccess,CkanConnector,/gcube/service/connect/dataset/urban_mobility_atlas +DataAccess,CkanConnector,/gcube/service/connect/dataset/web_archive_re-crawler +DataAccess,CkanConnector,/gcube/service/connect/dataset/wikidata_geo_mapper +DataAccess,CkanConnector,/gcube/service/connect/dataset/word_sense_evolution_testset +DataAccess,CkanConnector,/gcube/service/connect/group/city-of-citizens-group +DataAccess,CkanConnector,/gcube/service/connect/group/sobigdata-eu-dataset +DataAccess,CkanConnector,/gcube/service/connect/group/societal-debates-group +DataAccess,CkanConnector,/gcube/service/connect/organization/biodiversitylab +DataAccess,CkanConnector,/gcube/service/connect/organization/biodivesitylab +DataAccess,CkanConnector,/gcube/service/connect/organization/bluebridgeproject +DataAccess,CkanConnector,/gcube/service/connect/organization/diodiversitylab +DataAccess,CkanConnector,/gcube/service/connect/organization/emodnet +DataAccess,CkanConnector,/gcube/service/connect/organization/fao +DataAccess,CkanConnector,/gcube/service/connect/organization/fao_tunaatlas +DataAccess,CkanConnector,/gcube/service/connect/organization/gcube +DataAccess,CkanConnector,/gcube/service/connect/organization/grsf +DataAccess,CkanConnector,/gcube/service/connect/organization/resourcecatalogue +DataAccess,CkanConnector,/gcube/service/connect/organization/siaspa +DataAccess,CkanConnector,/gcube/service/connect/organization/tabulardatalab +DataAccess,CkanConnector,/gcube/service/connect/organization_vre/fao_tunaatlas +DataAccess,CkanConnector,/gcube/service/connect/type +DataAccess,CkanConnector,gcube/service/connect +DataAccess,CkanConnector,gcube/service/connect/dashboard/datasets +DataAccess,CkanConnector,gcube/service/connect/dashboard/groups +DataAccess,CkanConnector,gcube/service/connect/dataset/abramis_brama_absence_generation_from_obis_id71eb69a754ab48cebefb52a448433 +DataAccess,CkanConnector,gcube/service/connect/dataset/abramis_brama_absence_generation_from_obis_id71eb69a754ab48cebefb52a448433fa0 +DataAccess,CkanConnector,gcube/service/connect/dataset/best_practices_and_guidelines_towards_interoperability +DataAccess,CkanConnector,gcube/service/connect/dataset/cirrhilabrus-scottorum3 +DataAccess,CkanConnector,gcube/service/connect/dataset/de_webarchive +DataAccess,CkanConnector,gcube/service/connect/dataset/first_publication_from_biodiversity_lab +DataAccess,CkanConnector,gcube/service/connect/dataset/first_publication_in_bluebridgeproject +DataAccess,CkanConnector,gcube/service/connect/dataset/first_publication_in_d4science_production +DataAccess,CkanConnector,gcube/service/connect/dataset/from_root_to_blue_bridge_projec +DataAccess,CkanConnector,gcube/service/connect/dataset/geotopics_-_a_method_and_system_to_explore_urban_activity +DataAccess,CkanConnector,gcube/service/connect/dataset/my_deliverable +DataAccess,CkanConnector,gcube/service/connect/dataset/new_features_ckan +DataAccess,CkanConnector,gcube/service/connect/dataset/official_administrative_information_of_tuscany +DataAccess,CkanConnector,gcube/service/connect/dataset/origin_destination_matrix +DataAccess,CkanConnector,gcube/service/connect/dataset/presentation +DataAccess,CkanConnector,gcube/service/connect/dataset/tagme +DataAccess,CkanConnector,gcube/service/connect/dataset/{UUID_TO_REPLACE} +DataAccess,CkanConnector,gcube/service/connect/dataset/{UUID_TO_REPLACE}.rdf +DataAccess,CkanConnector,gcube/service/connect/dataset/{UUID_TO_REPLACE}.ttl +DataAccess,CkanConnector,gcube/service/connect/group +DataAccess,CkanConnector,gcube/service/connect/group/firms +DataAccess,CkanConnector,gcube/service/connect/organization +DataAccess,CkanConnector,gcube/service/connect/organization/biodiversitylab +DataAccess,CkanConnector,gcube/service/connect/organization/bluebridgeproject +DataAccess,CkanConnector,gcube/service/connect/organization/d4science +DataAccess,CkanConnector,gcube/service/connect/organization/fao_tunaatlas +DataAccess,CkanConnector,gcube/service/connect/organization/gcube +DataAccess,CkanConnector,gcube/service/connect/organization/grsf +DataAccess,CkanConnector,gcube/service/connect/organization/grsf_admin +DataAccess,CkanConnector,gcube/service/connect/organization/resourcecatalogue +DataAccess,CkanConnector,gcube/service/connect/organization/sobigdata +DataAccess,CkanConnector,gcube/service/connect/organization/stockassessment +DataAccess,CkanConnector,gcube/service/connect/organization/tabulardatalab +DataAccess,CkanConnector,gcube/service/connect/statitstics +DataAccess,CkanConnector,gcube/service/connect/stats diff --git a/src/test/resources/CkanConnector-disconnect-rule.json b/src/test/resources/CkanConnector-disconnect-rule.json index 006a2bb..f2360a6 100644 --- a/src/test/resources/CkanConnector-disconnect-rule.json +++ b/src/test/resources/CkanConnector-disconnect-rule.json @@ -1,6 +1,12 @@ { - "regex": "^\/{0,1}gcube\/service\/disconnect.*", - "replace": "disconnect", - "serviceClass": "DataAccess", - "serviceName": "CkanConnector" -} + "match": { + "serviceClassRegex": "DataAccess", + "serviceNameRegex": "CkanConnector", + "calledMethodRegex": "^\/{0,1}gcube\/service\/disconnect.*" + }, + "replace": { + "serviceClass": "DataAccess", + "serviceName": "CkanConnector", + "calledMethod": "disconnect" + } +} \ No newline at end of file diff --git a/src/test/resources/CkanConnector-disconnect-values.csv b/src/test/resources/CkanConnector-disconnect-values.csv index b064917..53c8efd 100644 --- a/src/test/resources/CkanConnector-disconnect-values.csv +++ b/src/test/resources/CkanConnector-disconnect-values.csv @@ -1,2 +1,2 @@ -gcube/service/disconnect -/gcube/service/disconnect +DataAccess,CkanConnector,gcube/service/disconnect +DataAccess,CkanConnector,/gcube/service/disconnect diff --git a/src/test/resources/FullTextIndexNode-delete-rule.json b/src/test/resources/FullTextIndexNode-delete-rule.json index 0738ab6..4c5ab73 100644 --- a/src/test/resources/FullTextIndexNode-delete-rule.json +++ b/src/test/resources/FullTextIndexNode-delete-rule.json @@ -1,6 +1,12 @@ { - "regex": "^\/{0,1}delete\/.+\/.+", - "replace": "delete", - "serviceClass": "Index", - "serviceName": "FullTextIndexNode" -} + "match": { + "serviceClassRegex": "Index", + "serviceNameRegex": "FullTextIndexNode", + "calledMethodRegex": "^\/{0,1}delete\/.+\/.+" + }, + "replace": { + "serviceClass": "Index", + "serviceName": "FullTextIndexNode", + "calledMethod": "delete" + } +} \ No newline at end of file diff --git a/src/test/resources/FullTextIndexNode-delete-values.csv b/src/test/resources/FullTextIndexNode-delete-values.csv index ad1891e..4846641 100644 --- a/src/test/resources/FullTextIndexNode-delete-values.csv +++ b/src/test/resources/FullTextIndexNode-delete-values.csv @@ -1,355 +1,355 @@ -/delete/{collection-id}/{item-id} -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:11267 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:1127 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:1089 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:1090 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:1093 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:1100 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:1101 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:1102 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:1103 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:1104 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:1105 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:11212 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:1128 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:1129 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:1130 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:1131 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:1134 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:11462 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:11495 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:11654 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:11656 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:11957 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:12014 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:12296 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:12539 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:12667 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:12694 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:13128 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:13194 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:13731 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:13732 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:14541 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:14593 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:14746 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:14889 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:15027 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:15074 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:15115 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:15353 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:1541 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:15568 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:15611 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:15623 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:15626 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:15627 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:15655 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:15663 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:15669 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:15670 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:15709 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:15735 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:16093 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:16104 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:16154 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:16185 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:16502 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:16504 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:16505 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:1669 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:16942 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:1733 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:18032 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:18151 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:1834 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:18364 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:18633 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:18652 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:18887 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:19058 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:19059 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:19065 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:19104 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:19113 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:19153 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:19154 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:19299 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:1930 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:19328 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:19356 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:19359 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:19364 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:19475 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:19787 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:19920 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:2015 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:20543 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:20765 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:21434 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:21604 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:22190 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:22334 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:22337 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:22342 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:22346 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:22347 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:2241 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:23050 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:23100 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:2341 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:24022 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:24231 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:24349 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:24350 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:2440 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:2483 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:25000 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:25966 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:26317 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:26811 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:27159 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:2789 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:2817 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:2853 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:28577 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:2873 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:29892 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:3099 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:3127 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:32021 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:32871 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:3336 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:3387 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:34042 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:3650 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:36511 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:36513 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:366 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:3728 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:3737 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:38055 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:38093 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:39145 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:4141 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:41580 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:4211 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:42538 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:42642 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:42643 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:42652 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:4322 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:43810 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:4414 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:4415 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:4416 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:4417 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:4419 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:4528 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:45377 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:4539 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:4628 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:4649 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:4652 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:4655 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:4806 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:4828 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5058 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5263 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5323 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5333 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5336 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5339 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5341 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5342 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5344 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5347 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5348 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5352 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5353 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5364 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5371 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5413 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5700 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5937 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5938 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5939 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5940 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5941 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5942 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5943 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5944 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5945 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5946 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5947 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5948 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5949 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5950 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5951 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5952 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5953 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5954 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5955 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5956 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:6057 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:6058 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:6059 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:6060 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:6061 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:6062 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:6063 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:6064 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:6065 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:6066 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:6067 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:6068 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:6069 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:6070 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:6071 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:6072 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:6074 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:6075 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:6076 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:6398 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:6523 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:6567 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:6849 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:6868 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:6973 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:7278 -/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:878 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:10029 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:10628 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:1099 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:1107 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:1108 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:11133 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:11172 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:1122 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:11226 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:1123 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:11237 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:11238 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:1147 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:11670 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:11729 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:11730 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:12339 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:12403 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:1247 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:14068 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:1432 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:158 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:1603 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:1690 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:17141 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:17866 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:1791 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:18480 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:1877 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:197 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:19814 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:2017 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:20883 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:232 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:2536 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:254 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:2604 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:2632 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:2727 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:3034 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:338 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:339 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:340 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:3670 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:3693 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:3821 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:3875 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:403 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:419 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:420 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:421 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:440 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:443 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:452 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:454 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:456 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:4564 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:4566 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:457 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:4604 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:4613 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:4617 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:4618 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:4620 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:4639 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:4664 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:4701 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:4776 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:4778 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:4931 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:499 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:500 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:501 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:502 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:503 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:504 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:505 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:506 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:507 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:5086 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:512 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:5147 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:5251 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:5252 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:527 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:538 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:539 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:6183 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:7020 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:7841 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:7896 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:8192 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:8418 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:8420 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:8640 -/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:8956 -/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.126329 -/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.132971 -/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.139560 -/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.194378 -/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.196117 -/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.200629 -/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.280260 -/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.282480 -/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.283968 -/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.344129 -/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.346829 -/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.347640 -/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.448736 -/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.452120 -/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.452560 -/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.50041 -/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.501739 -/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.504567 -/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.506426 -/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.51975 -/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.551113 -/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.554588 -/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.587872 -/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.661644 -/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.673633 -/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.687799 -/delete/e058b2f12f9159f636cc22e087ba89e81da76b8f120c51dfaf2cc3afb69bac5e/oai:plymsea.ac.uk:4250 -/delete/e058b2f12f9159f636cc22e087ba89e81da76b8f120c51dfaf2cc3afb69bac5e/oai:plymsea.ac.uk:4788 -/delete/e058b2f12f9159f636cc22e087ba89e81da76b8f120c51dfaf2cc3afb69bac5e/oai:plymsea.ac.uk:5070 -/delete/e058b2f12f9159f636cc22e087ba89e81da76b8f120c51dfaf2cc3afb69bac5e/oai:plymsea.ac.uk:5102 -/delete/e058b2f12f9159f636cc22e087ba89e81da76b8f120c51dfaf2cc3afb69bac5e/oai:plymsea.ac.uk:5211 -/delete/e058b2f12f9159f636cc22e087ba89e81da76b8f120c51dfaf2cc3afb69bac5e/oai:plymsea.ac.uk:5482 -/delete/e058b2f12f9159f636cc22e087ba89e81da76b8f120c51dfaf2cc3afb69bac5e/oai:plymsea.ac.uk:5961 -/delete/e058b2f12f9159f636cc22e087ba89e81da76b8f120c51dfaf2cc3afb69bac5e/oai:plymsea.ac.uk:5966 -/delete/e058b2f12f9159f636cc22e087ba89e81da76b8f120c51dfaf2cc3afb69bac5e/oai:plymsea.ac.uk:6134 -/delete/e058b2f12f9159f636cc22e087ba89e81da76b8f120c51dfaf2cc3afb69bac5e/oai:plymsea.ac.uk:6200 -/delete/e058b2f12f9159f636cc22e087ba89e81da76b8f120c51dfaf2cc3afb69bac5e/oai:plymsea.ac.uk:6260 -/delete/e058b2f12f9159f636cc22e087ba89e81da76b8f120c51dfaf2cc3afb69bac5e/oai:plymsea.ac.uk:6272 -/delete/e058b2f12f9159f636cc22e087ba89e81da76b8f120c51dfaf2cc3afb69bac5e/oai:plymsea.ac.uk:6538 +Index,FullTextIndexNode,/delete/{collection-id}/{item-id} +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:11267 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:1127 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:1089 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:1090 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:1093 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:1100 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:1101 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:1102 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:1103 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:1104 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:1105 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:11212 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:1128 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:1129 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:1130 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:1131 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:1134 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:11462 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:11495 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:11654 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:11656 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:11957 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:12014 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:12296 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:12539 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:12667 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:12694 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:13128 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:13194 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:13731 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:13732 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:14541 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:14593 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:14746 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:14889 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:15027 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:15074 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:15115 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:15353 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:1541 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:15568 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:15611 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:15623 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:15626 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:15627 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:15655 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:15663 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:15669 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:15670 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:15709 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:15735 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:16093 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:16104 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:16154 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:16185 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:16502 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:16504 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:16505 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:1669 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:16942 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:1733 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:18032 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:18151 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:1834 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:18364 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:18633 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:18652 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:18887 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:19058 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:19059 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:19065 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:19104 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:19113 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:19153 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:19154 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:19299 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:1930 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:19328 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:19356 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:19359 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:19364 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:19475 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:19787 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:19920 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:2015 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:20543 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:20765 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:21434 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:21604 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:22190 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:22334 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:22337 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:22342 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:22346 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:22347 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:2241 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:23050 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:23100 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:2341 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:24022 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:24231 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:24349 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:24350 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:2440 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:2483 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:25000 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:25966 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:26317 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:26811 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:27159 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:2789 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:2817 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:2853 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:28577 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:2873 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:29892 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:3099 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:3127 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:32021 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:32871 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:3336 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:3387 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:34042 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:3650 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:36511 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:36513 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:366 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:3728 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:3737 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:38055 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:38093 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:39145 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:4141 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:41580 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:4211 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:42538 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:42642 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:42643 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:42652 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:4322 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:43810 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:4414 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:4415 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:4416 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:4417 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:4419 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:4528 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:45377 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:4539 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:4628 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:4649 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:4652 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:4655 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:4806 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:4828 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5058 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5263 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5323 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5333 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5336 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5339 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5341 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5342 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5344 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5347 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5348 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5352 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5353 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5364 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5371 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5413 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5700 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5937 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5938 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5939 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5940 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5941 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5942 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5943 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5944 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5945 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5946 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5947 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5948 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5949 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5950 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5951 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5952 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5953 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5954 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5955 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:5956 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:6057 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:6058 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:6059 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:6060 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:6061 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:6062 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:6063 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:6064 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:6065 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:6066 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:6067 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:6068 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:6069 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:6070 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:6071 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:6072 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:6074 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:6075 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:6076 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:6398 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:6523 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:6567 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:6849 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:6868 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:6973 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:7278 +Index,FullTextIndexNode,/delete/1b9c6e34baddd4cebe9215fd381a63f4f17957f3463f94675c9d656148b99311/oai:archimer.ifremer.fr:878 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:10029 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:10628 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:1099 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:1107 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:1108 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:11133 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:11172 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:1122 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:11226 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:1123 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:11237 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:11238 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:1147 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:11670 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:11729 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:11730 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:12339 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:12403 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:1247 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:14068 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:1432 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:158 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:1603 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:1690 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:17141 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:17866 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:1791 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:18480 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:1877 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:197 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:19814 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:2017 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:20883 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:232 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:2536 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:254 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:2604 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:2632 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:2727 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:3034 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:338 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:339 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:340 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:3670 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:3693 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:3821 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:3875 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:403 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:419 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:420 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:421 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:440 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:443 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:452 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:454 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:456 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:4564 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:4566 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:457 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:4604 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:4613 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:4617 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:4618 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:4620 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:4639 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:4664 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:4701 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:4776 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:4778 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:4931 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:499 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:500 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:501 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:502 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:503 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:504 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:505 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:506 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:507 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:5086 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:512 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:5147 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:5251 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:5252 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:527 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:538 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:539 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:6183 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:7020 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:7841 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:7896 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:8192 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:8418 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:8420 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:8640 +Index,FullTextIndexNode,/delete/60a17236e8e4f0173e58eccd40155a36deb48be30b38a27b2b5bfec46951a6c4/oai:generic.eprints.org:8956 +Index,FullTextIndexNode,/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.126329 +Index,FullTextIndexNode,/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.132971 +Index,FullTextIndexNode,/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.139560 +Index,FullTextIndexNode,/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.194378 +Index,FullTextIndexNode,/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.196117 +Index,FullTextIndexNode,/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.200629 +Index,FullTextIndexNode,/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.280260 +Index,FullTextIndexNode,/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.282480 +Index,FullTextIndexNode,/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.283968 +Index,FullTextIndexNode,/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.344129 +Index,FullTextIndexNode,/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.346829 +Index,FullTextIndexNode,/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.347640 +Index,FullTextIndexNode,/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.448736 +Index,FullTextIndexNode,/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.452120 +Index,FullTextIndexNode,/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.452560 +Index,FullTextIndexNode,/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.50041 +Index,FullTextIndexNode,/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.501739 +Index,FullTextIndexNode,/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.504567 +Index,FullTextIndexNode,/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.506426 +Index,FullTextIndexNode,/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.51975 +Index,FullTextIndexNode,/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.551113 +Index,FullTextIndexNode,/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.554588 +Index,FullTextIndexNode,/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.587872 +Index,FullTextIndexNode,/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.661644 +Index,FullTextIndexNode,/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.673633 +Index,FullTextIndexNode,/delete/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d/oai:pangaea.de:doi:10.1594/PANGAEA.687799 +Index,FullTextIndexNode,/delete/e058b2f12f9159f636cc22e087ba89e81da76b8f120c51dfaf2cc3afb69bac5e/oai:plymsea.ac.uk:4250 +Index,FullTextIndexNode,/delete/e058b2f12f9159f636cc22e087ba89e81da76b8f120c51dfaf2cc3afb69bac5e/oai:plymsea.ac.uk:4788 +Index,FullTextIndexNode,/delete/e058b2f12f9159f636cc22e087ba89e81da76b8f120c51dfaf2cc3afb69bac5e/oai:plymsea.ac.uk:5070 +Index,FullTextIndexNode,/delete/e058b2f12f9159f636cc22e087ba89e81da76b8f120c51dfaf2cc3afb69bac5e/oai:plymsea.ac.uk:5102 +Index,FullTextIndexNode,/delete/e058b2f12f9159f636cc22e087ba89e81da76b8f120c51dfaf2cc3afb69bac5e/oai:plymsea.ac.uk:5211 +Index,FullTextIndexNode,/delete/e058b2f12f9159f636cc22e087ba89e81da76b8f120c51dfaf2cc3afb69bac5e/oai:plymsea.ac.uk:5482 +Index,FullTextIndexNode,/delete/e058b2f12f9159f636cc22e087ba89e81da76b8f120c51dfaf2cc3afb69bac5e/oai:plymsea.ac.uk:5961 +Index,FullTextIndexNode,/delete/e058b2f12f9159f636cc22e087ba89e81da76b8f120c51dfaf2cc3afb69bac5e/oai:plymsea.ac.uk:5966 +Index,FullTextIndexNode,/delete/e058b2f12f9159f636cc22e087ba89e81da76b8f120c51dfaf2cc3afb69bac5e/oai:plymsea.ac.uk:6134 +Index,FullTextIndexNode,/delete/e058b2f12f9159f636cc22e087ba89e81da76b8f120c51dfaf2cc3afb69bac5e/oai:plymsea.ac.uk:6200 +Index,FullTextIndexNode,/delete/e058b2f12f9159f636cc22e087ba89e81da76b8f120c51dfaf2cc3afb69bac5e/oai:plymsea.ac.uk:6260 +Index,FullTextIndexNode,/delete/e058b2f12f9159f636cc22e087ba89e81da76b8f120c51dfaf2cc3afb69bac5e/oai:plymsea.ac.uk:6272 +Index,FullTextIndexNode,/delete/e058b2f12f9159f636cc22e087ba89e81da76b8f120c51dfaf2cc3afb69bac5e/oai:plymsea.ac.uk:6538 diff --git a/src/test/resources/FullTextIndexNode-insert-rule.json b/src/test/resources/FullTextIndexNode-insert-rule.json index 54f904c..f4e7dd3 100644 --- a/src/test/resources/FullTextIndexNode-insert-rule.json +++ b/src/test/resources/FullTextIndexNode-insert-rule.json @@ -1,6 +1,12 @@ { - "regex": "^\/{0,1}insert\/.+\/.+", - "replace": "insert", - "serviceClass": "Index", - "serviceName": "FullTextIndexNode" -} + "match": { + "serviceClassRegex": "Index", + "serviceNameRegex": "FullTextIndexNode", + "calledMethodRegex": "^\/{0,1}insert\/.+\/.+" + }, + "replace": { + "serviceClass": "Index", + "serviceName": "FullTextIndexNode", + "calledMethod": "insert" + } +} \ No newline at end of file diff --git a/src/test/resources/FullTextIndexNode-insert-values.csv b/src/test/resources/FullTextIndexNode-insert-values.csv index 8f9c69c..00da488 100644 --- a/src/test/resources/FullTextIndexNode-insert-values.csv +++ b/src/test/resources/FullTextIndexNode-insert-values.csv @@ -1,1386 +1,1386 @@ -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.3.p -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-18 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.0 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.0.a -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.0.b -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.1.a -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.1.b -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.1.c -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.1.d -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.1.e -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.1.f -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.2.g -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.2.h -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.2.j -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.3 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.3.k -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.3.l -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.3.m -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.3.n -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.3.o -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.3.p.n -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.3.p.s -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.4 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.4.5.n -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.4.5.s -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.4.r -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.4.s -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.4.t -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.4.v -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.4.w -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.4.x -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.5 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.5.y -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.5.z -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.5.z.c -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.5.z.e -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.5.z.u -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.5.z.w -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.6 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.6.a -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.6.b -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.6.c -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.6.d -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.6.e -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.6.f -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.6.g -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.6.h -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.1.a -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.1.b -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.10 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.10.a -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.10.a.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.10.a.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.10.b -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.12 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.12.a -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.12.a.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.12.a.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.12.a.3 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.12.a.4 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.12.b -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.12.c -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.14 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.14.a -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.14.b -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.14.b.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.14.b.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.2.a -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.2.a.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.2.a.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.2.b -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.2.b.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.2.b.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.3 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.3.22 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.3.23 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.3.a -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.3.bc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.3.d -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.3.d.24 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.3.d.25 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.3.d.26 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.3.d.27 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.3.d.28 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.3.d.28.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.3.d.28.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.3.d.29 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.3.d.30 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.3.d.31 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.3.d.32 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.4 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.4.a -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.4.b -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.4.c -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.5 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.5.a -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.5.a.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.5.a.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.5.b -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.5.b.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.5.b.1.a -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.5.b.1.b -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.5.b.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.6 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.6.a -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.6.b -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.6.b.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.6.b.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.7 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.7.a -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.7.b -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.7.c -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.7.c.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.7.c.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.7.d -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.7.e -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.7.f -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.7.g -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.7.h -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.7.j -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.7.j.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.7.j.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.7.k -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.7.k.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.7.k.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.8 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.8.a -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.8.b -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.8.c -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.8.d -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.8.d.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.8.d.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.8.e -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.8.e.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.8.e.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.9 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.9.a -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.9.b -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.9.b.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.9.b.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-31 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-34 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-34.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-34.1.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-34.1.11 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-34.1.12 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-34.1.13 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-34.1.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-34.1.3 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-34.1.31 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-34.1.32 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-34.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-34.3 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-34.3.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-34.3.11 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-34.3.12 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-34.3.13 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-34.3.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-34.3.3 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-34.3.4 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-34.3.5 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-34.3.6 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-34.4 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-34.4.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-34.4.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-37 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-37.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-37.1.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-37.1.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-37.1.3 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-37.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-37.2.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-37.2.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-37.3 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-37.3.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-37.3.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-37.4 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-37.4.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-37.4.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-37.4.3 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-41 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-41.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-41.1.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-41.1.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-41.1.3 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-41.1.4 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-41.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-41.2.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-41.2.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-41.2.3 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-41.2.4 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-41.3 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-41.3.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-41.3.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-41.3.3 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-47 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-47.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-47.1.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-47.1.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-47.1.3 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-47.1.4 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-47.1.5 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-47.1.6 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-47.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-47.2.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-47.2.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-47.a -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-47.a.0 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-47.a.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-47.b -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-47.b.0 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-47.b.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-47.c -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-47.c.0 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-47.c.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-47.d -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-47.d.0 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-47.d.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-48 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-48.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-48.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-48.3 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-48.4 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-48.5 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-48.6 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-51 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-51.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-51.3 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-51.4 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-51.5 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-51.6 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-51.7 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-51.8 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-57 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-57.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-57.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-57.3 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-57.4 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-57.5 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-57.5.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-57.5.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-57.6 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-58 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-58.4 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-58.4.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-58.4.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-58.4.3 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-58.4.3.a -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-58.4.3.b -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-58.4.4 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-58.4.4.a -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-58.4.4.b -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-58.5 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-58.5.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-58.5.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-58.6 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-58.7 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-61 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-67 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-71 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-71.6.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-71.6.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-77 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-81 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.1.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.1.11 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.1.12 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.1.13 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.1.14 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.1.15 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.1.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.1.21 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.1.22 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.1.23 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.1.24 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.1.25 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.1.3 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.1.4 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.2.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.2.11 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.2.12 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.2.13 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.2.14 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.2.15 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.2.16 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.2.17 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.2.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.2.21 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.2.22 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.2.23 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.2.24 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.2.25 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.2.26 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.2.27 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.2.3 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.2.4 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.2.5 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.2.6 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.3 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.3.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.3.11 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.3.12 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.3.13 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.3.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.3.21 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.3.22 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.3.23 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.3.3 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-88 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-88.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-88.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-88.3 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-21 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-21.0 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-21.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-21.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-21.3 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-21.3.p -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-21.4 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-21.4.v -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-21.5 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-21.5.z -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-21.5.z.e -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-21.6 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.10 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.10.a -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.12 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.12.a -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.14 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.14.b -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.2.a -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.2.b -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.3 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.3.bc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.3.d -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.3.d.28 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.4 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.5 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.5.a -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.5.b -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.5.b.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.6 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.6.b -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.7 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.7.c -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.7.j -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.7.k -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.8 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.8.d -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.8.e -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.9 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.9.b -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-34 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-34.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-34.1.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-34.1.3 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-34.3 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-34.3.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-34.4 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-37 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-37.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-37.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-37.3 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-37.4 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-41 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-41.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-41.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-41.3 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-47 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-47.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-47.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-47.a -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-47.b -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-47.c -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-47.d -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-48 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-51 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-57 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-57.5 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-58 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-58.4 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-58.4.3 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-58.4.4 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-58.5 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-71 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-87 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-87.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-87.1.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-87.1.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-87.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-87.2.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-87.2.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-87.3 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-87.3.1 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-87.3.2 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-88 -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-acap -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-apfic -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-bobp-igo -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-cacfish -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-cblt -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-ccamlr -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-ccbsp -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-ccsbt -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-cecaf -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-cifaa -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-comhafat-atlafco -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-copescaalc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-corep -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-cpps -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-crfm -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-ctmfm -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-eifaac -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-fcwc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-ffa -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-gfcm -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-iattc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-iccat -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-ices -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-iotc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-iphc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-iwc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-jointfish -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-lta -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-lvfo -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-mrc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-naca -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-nafo -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-nammco -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-nasco -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-neafc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-npafc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-npfc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-oldepesca -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-ospesca -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-persga -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-pices -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-psc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-raa -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-recofi -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-seafdec -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-seafo -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-siofa -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-spc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-sprfmo -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-srfc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-swiofc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-wcpfc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-wecafc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-aaa -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-aad -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-aaf -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-aah -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-aai -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-aak -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-aam -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-aan -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-aao -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-aay -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-abs -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-acn -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-aes -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-agn -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-aks -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-alb -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-alk -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-alv -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ana -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-anc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ane -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ang -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-apa -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-apb -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-apc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ape -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-apg -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-apn -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-app -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-apq -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-apr -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-aps -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-apu -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-apw -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-apx -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ara -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-arf -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-atk -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bah -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bdv -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bep -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bet -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bft -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bib -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bis -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bjs -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-blc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bli -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-blt -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-blu -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-boa -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bob -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bog -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bon -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bqp -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bqr -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-brd -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bsc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bsf -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bsh -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bsk -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bss -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bsz -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bth -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-buc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bum -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bup -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bvc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bye -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-byg -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-byp -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-byq -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-byz -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bzb -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bzm -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-caa -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cap -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cas -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cca -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ccb -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cce -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ccl -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ccn -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cco -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ccp -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ccs -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cct -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cea -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cee -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cek -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cem -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ceu -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cfb -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-chf -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-chi -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cho -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-chp -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-chs -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-chu -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-chz -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cjm -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cki -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ckm -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cky -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cla -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-clb -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-clh -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-clj -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cln -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-clt -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-clz -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cmo -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cnn -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-coc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cod -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-coe -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-coh -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-col -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-com -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cpe -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cpi -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cpl -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-crb -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cre -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-crq -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cry -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-csh -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-csn -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-csz -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ctc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cti -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cub -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cuc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cuj -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cus -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cvt -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cya -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cyg -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cyh -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cyk -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cyn -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cyo -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cyp -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cyr -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cyt -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cyw -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cyz -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-dab -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-dca -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ddr -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-dea -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-dec -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-del -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-dem -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-den -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-dep -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-dgq -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-dgs -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-dkk -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-dnc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-dob -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-dod -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-dol -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-dop -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-dpc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-dps -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-dpv -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-dun -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-dus -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-eck -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-edk -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-edt -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-edy -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-edz -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-eht -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ehv -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-eij -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-eil -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-eip -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-eiq -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-eiy -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-eja -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ejb -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ejd -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-eje -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ejg -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ejh -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ejk -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ejl -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ejn -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ejr -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ejt -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ejx -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ejy -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ekh -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ele -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-els -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-emy -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-eoi -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-epk -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-etb -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ete -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-etf -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-eth -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-eti -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-etj -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-etk -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-etl -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-etm -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-etn -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-eto -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-etp -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-etq -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-etr -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ett -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-etu -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-etv -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-etw -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-etx -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-etz -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-eup -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-euz -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-eyq -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-eyz -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ezl -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ezm -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-fal -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-fbm -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-fbt -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-fbu -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-fcp -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-fgo -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-fgs -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-fih -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-fle -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-flp -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-fot -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-fpe -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-fpi -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-fpp -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-fri -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-fss -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ftd -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-fts -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-gag -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-gal -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-gam -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-gaq -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-gaz -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ggq -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-gha -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ghl -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-gip -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-gis -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-git -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-gnc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-gpw -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-grb -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-grc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-grn -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-gsk -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-gsu -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-gtd -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-gte -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-gth -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-gti -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-gtj -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-gtk -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-gtp -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-gup -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-guq -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-gut -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-gva -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-gvi -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-gvt -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-had -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hai -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hap -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-has -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hch -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hcr -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hea -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hef -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-heg -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hej -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hek -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hem -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hep -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-heq -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-her -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hez -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hfa -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hfc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hfe -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hff -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hfi -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hfn -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hfq -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hhb -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hhp -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hhw -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hix -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hiz -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hkb -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hke -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hkk -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hkm -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hkn -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hko -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hkp -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hks -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hlx -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hmc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hmg -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hmm -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hmz -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hof -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hom -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hop -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hor -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hoz -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hqb -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hqi -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hqs -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hvm -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hwr -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hxc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hxn -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hxt -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hyy -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hzs -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hzw -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-iaa -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-iae -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-iah -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-iaj -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ial -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-iam -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ian -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-iao -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-iaq -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-iar -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-iav -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-iaz -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ice -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-icf -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-icj -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-icr -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ide -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-idg -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-idh -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-idi -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-idj -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-idk -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-idl -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-idn -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ido -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-idq -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-idt -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-idu -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-idv -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ieb -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-iej -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ieo -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-iev -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-iin -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ijx -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ijy -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ijz -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ikd -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ike -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ikf -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ikj -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ikl -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ikq -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ikr -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ikt -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-iku -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ikv -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ikw -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ili -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ilr -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-iob -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-iof -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ioi -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-iol -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ioq -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ior -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ios -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-iot -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ioz -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ire -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-isb -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-isp -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-itb -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-itg -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-itw -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-iub -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-iuj -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ixo -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jai -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jan -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jcc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jce -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jcf -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jch -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jci -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jcj -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jck -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jcl -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jco -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jcq -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jcw -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jdb -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jdd -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jde -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jdg -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jdp -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jdz -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jfe -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jft -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jfy -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jjm -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jlz -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jng -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jod -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jpn -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jpo -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jpq -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jpr -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jpt -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jpu -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jpw -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jss -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jtq -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-kaw -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-kcp -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-kgm -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-khe -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-khg -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-kri -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-kti -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ktv -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-kue -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-kuh -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-kun -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-kup -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-kuq -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-kuw -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-kuy -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-kxp -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-kyl -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-kza -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-laa -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lae -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-laf -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lak -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lao -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lar -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lau -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-law -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lay -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lba -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lbe -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lem -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lhq -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lht -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lig -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lin -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lkv -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lky -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lma -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lmd -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lmo -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lmp -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lnj -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-loo -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lot -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lpw -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lsz -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lta -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lum -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lyb -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lyc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lyg -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-mac -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-mas -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-meg -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-mha -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-mhg -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-mls -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-mon -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-mpo -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-mqi -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-mrb -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-mrc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-mrg -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-mrm -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-msc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-msm -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-msv -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-mud -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-muf -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-mur -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-mus -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-mut -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-mvo -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-mwc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-myb -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-mye -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-myg -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-myl -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-myp -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-myu -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ndg -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ndh -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-nec -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-nek -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-nep -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ngb -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-nha -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-nhl -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-nid -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-nip -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-nkl -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-nop -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-npa -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-nph -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ntc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-nuk -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-nux -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-oax -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-obh -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-obw -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-occ -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ocj -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ocq -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ocs -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ocw -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-odh -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-odp -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ods -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ofe -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ofj -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ofy -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-oij -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-oja -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ojb -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ojd -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-oje -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ojg -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ojh -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ojn -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ojp -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ojt -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-oju -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-oka -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-okd -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-oke -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-okh -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-okl -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-oks -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-olx -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-onu -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-opc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ope -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-opf -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-opj -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-opp -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-opv -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-opy -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-oqi -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-oqn -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-oqy -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ora -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-orb -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ore -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-orf -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-orh -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ori -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-orj -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ork -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-orn -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-oro -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-orq -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-orr -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ors -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ort -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-orv -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-orw -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-orx -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ory -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-orz -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-osf -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-oto -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-otq -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-oty -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ouj -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ouk -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-oul -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-oum -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ovk -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-oxb -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-oxc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-oxn -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-oxy -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-oxz -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-oya -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-oyd -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-oyg -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-oyo -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-par -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pas -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pba -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pbf -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pca -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pco -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pea -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-peo -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pet -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pha -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pia -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pil -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pin -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pla -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ple -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pnb -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pni -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pns -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pnt -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pnu -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pnv -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pob -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-poc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pok -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pol -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-por -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pos -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ppc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pph -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ppj -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pps -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ppu -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ppw -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pra -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-prf -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pse -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-psg -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-psk -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pst -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ptg -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pth -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ptm -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qdm -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qrq -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qrr -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qrs -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qrt -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qru -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qrw -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qry -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qrz -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qsf -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qsh -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qsj -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qsk -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qsq -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qsw -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qsy -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qsz -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qtb -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qtc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qtd -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qtf -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qtg -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qtj -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qtk -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qtm -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qts -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qtw -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qua -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qub -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-quc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-quj -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-quk -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qul -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qun -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qur -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qyw -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rab -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rag -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ras -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rbc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rbx -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rcp -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rct -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rdc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rea -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-reb -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-reg -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ren -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-res -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rgl -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rhg -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rhn -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rht -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rjc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rje -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rjh -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rjm -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rjp -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rjq -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rjs -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rju -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rks -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rma -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rmb -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rme -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rmh -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rmj -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rmk -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rmm -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rmn -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rmo -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rmt -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rmu -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rng -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rns -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-roa -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ros -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rpa -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rpc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rpp -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rpr -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rpz -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rrh -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rru -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rsa -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rsh -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rus -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-saa -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sab -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sae -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-saf -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sag -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sal -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sam -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sap -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sbf -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sbg -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sbl -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sca -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-scd -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sce -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sck -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sdh -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sdq -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sds -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sdu -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-seh -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sek -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ser -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sez -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sfa -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sfs -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-shb -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sho -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sip -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-skj -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-slc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sma -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-smd -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-snc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-snk -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-soc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sol -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-son -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sop -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sor -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-spj -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-spk -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-spl -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-spr -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-spz -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sqa -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sqe -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sqf -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sqg -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sqi -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sqj -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sql -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sqm -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sqp -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sqr -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sqs -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ssm -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sua -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-suc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sud -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sue -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-suf -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sug -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-suj -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sul -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sun -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-suo -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sut -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-suu -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-suy -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-svc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sve -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-swa -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-swo -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-swv -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-syc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sye -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-syf -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-syp -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-syr -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-syt -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-szj -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-tcl -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-tdq -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-tfp -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-tfq -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-tga -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-tgs -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-thg -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-thp -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-tid -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-tig -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-tio -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-tip -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-tit -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-tkg -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-tkv -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-tlm -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-tol -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-top -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-trv -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-try -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-tsq -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-tth -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ttl -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-tto -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ttr -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ttv -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-tug -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-tuv -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-tvg -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-twm -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-twp -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ugu -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-uhb -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-uhk -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-uhl -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-uhr -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-uhs -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-uhu -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-uhy -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-urb -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-usk -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-utk -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-uwv -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-vaz -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-vep -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-vet -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wbm -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-whb -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-whe -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-whg -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-whl -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wit -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wks -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wmg -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wrr -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wrw -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wsh -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wsp -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wsu -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wsw -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wsz -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wta -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wtb -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wtc -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wtf -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wtg -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wth -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wtk -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wto -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wtq -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wtr -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wts -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wtv -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wty -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wtz -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wuz -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wwp -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-yes -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-yfl -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-yft -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ygp -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ygs -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-yha -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-yhb -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-yhj -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-yht -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-yrm -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ysa -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ysm -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-yss -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-yth -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ytt -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-yur -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-yuv -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-yvv -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-yxs -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-yya -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-yyl -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-zbl -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-zei -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-zlp -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-zmk -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ztp -insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/{UUID_TO_REPLACE} +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.3.p +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-18 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.0 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.0.a +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.0.b +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.1.a +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.1.b +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.1.c +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.1.d +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.1.e +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.1.f +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.2.g +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.2.h +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.2.j +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.3 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.3.k +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.3.l +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.3.m +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.3.n +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.3.o +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.3.p.n +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.3.p.s +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.4 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.4.5.n +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.4.5.s +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.4.r +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.4.s +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.4.t +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.4.v +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.4.w +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.4.x +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.5 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.5.y +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.5.z +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.5.z.c +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.5.z.e +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.5.z.u +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.5.z.w +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.6 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.6.a +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.6.b +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.6.c +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.6.d +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.6.e +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.6.f +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.6.g +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-21.6.h +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.1.a +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.1.b +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.10 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.10.a +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.10.a.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.10.a.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.10.b +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.12 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.12.a +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.12.a.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.12.a.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.12.a.3 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.12.a.4 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.12.b +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.12.c +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.14 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.14.a +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.14.b +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.14.b.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.14.b.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.2.a +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.2.a.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.2.a.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.2.b +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.2.b.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.2.b.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.3 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.3.22 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.3.23 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.3.a +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.3.bc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.3.d +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.3.d.24 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.3.d.25 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.3.d.26 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.3.d.27 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.3.d.28 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.3.d.28.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.3.d.28.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.3.d.29 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.3.d.30 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.3.d.31 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.3.d.32 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.4 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.4.a +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.4.b +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.4.c +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.5 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.5.a +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.5.a.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.5.a.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.5.b +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.5.b.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.5.b.1.a +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.5.b.1.b +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.5.b.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.6 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.6.a +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.6.b +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.6.b.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.6.b.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.7 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.7.a +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.7.b +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.7.c +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.7.c.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.7.c.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.7.d +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.7.e +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.7.f +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.7.g +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.7.h +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.7.j +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.7.j.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.7.j.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.7.k +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.7.k.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.7.k.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.8 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.8.a +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.8.b +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.8.c +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.8.d +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.8.d.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.8.d.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.8.e +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.8.e.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.8.e.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.9 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.9.a +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.9.b +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.9.b.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-27.9.b.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-31 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-34 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-34.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-34.1.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-34.1.11 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-34.1.12 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-34.1.13 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-34.1.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-34.1.3 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-34.1.31 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-34.1.32 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-34.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-34.3 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-34.3.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-34.3.11 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-34.3.12 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-34.3.13 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-34.3.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-34.3.3 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-34.3.4 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-34.3.5 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-34.3.6 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-34.4 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-34.4.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-34.4.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-37 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-37.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-37.1.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-37.1.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-37.1.3 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-37.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-37.2.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-37.2.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-37.3 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-37.3.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-37.3.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-37.4 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-37.4.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-37.4.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-37.4.3 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-41 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-41.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-41.1.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-41.1.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-41.1.3 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-41.1.4 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-41.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-41.2.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-41.2.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-41.2.3 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-41.2.4 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-41.3 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-41.3.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-41.3.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-41.3.3 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-47 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-47.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-47.1.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-47.1.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-47.1.3 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-47.1.4 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-47.1.5 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-47.1.6 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-47.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-47.2.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-47.2.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-47.a +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-47.a.0 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-47.a.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-47.b +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-47.b.0 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-47.b.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-47.c +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-47.c.0 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-47.c.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-47.d +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-47.d.0 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-47.d.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-48 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-48.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-48.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-48.3 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-48.4 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-48.5 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-48.6 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-51 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-51.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-51.3 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-51.4 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-51.5 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-51.6 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-51.7 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-51.8 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-57 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-57.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-57.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-57.3 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-57.4 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-57.5 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-57.5.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-57.5.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-57.6 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-58 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-58.4 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-58.4.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-58.4.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-58.4.3 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-58.4.3.a +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-58.4.3.b +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-58.4.4 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-58.4.4.a +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-58.4.4.b +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-58.5 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-58.5.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-58.5.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-58.6 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-58.7 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-61 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-67 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-71 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-71.6.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-71.6.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-77 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-81 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.1.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.1.11 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.1.12 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.1.13 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.1.14 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.1.15 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.1.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.1.21 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.1.22 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.1.23 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.1.24 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.1.25 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.1.3 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.1.4 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.2.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.2.11 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.2.12 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.2.13 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.2.14 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.2.15 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.2.16 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.2.17 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.2.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.2.21 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.2.22 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.2.23 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.2.24 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.2.25 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.2.26 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.2.27 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.2.3 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.2.4 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.2.5 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.2.6 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.3 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.3.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.3.11 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.3.12 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.3.13 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.3.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.3.21 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.3.22 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.3.23 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-87.3.3 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-88 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-88.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-88.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-map-88.3 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-21 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-21.0 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-21.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-21.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-21.3 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-21.3.p +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-21.4 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-21.4.v +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-21.5 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-21.5.z +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-21.5.z.e +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-21.6 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.10 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.10.a +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.12 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.12.a +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.14 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.14.b +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.2.a +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.2.b +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.3 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.3.bc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.3.d +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.3.d.28 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.4 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.5 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.5.a +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.5.b +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.5.b.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.6 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.6.b +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.7 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.7.c +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.7.j +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.7.k +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.8 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.8.d +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.8.e +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.9 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-27.9.b +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-34 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-34.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-34.1.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-34.1.3 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-34.3 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-34.3.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-34.4 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-37 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-37.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-37.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-37.3 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-37.4 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-41 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-41.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-41.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-41.3 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-47 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-47.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-47.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-47.a +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-47.b +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-47.c +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-47.d +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-48 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-51 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-57 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-57.5 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-58 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-58.4 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-58.4.3 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-58.4.4 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-58.5 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-71 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-87 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-87.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-87.1.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-87.1.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-87.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-87.2.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-87.2.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-87.3 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-87.3.1 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-87.3.2 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-fsa-nested-map-88 +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-acap +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-apfic +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-bobp-igo +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-cacfish +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-cblt +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-ccamlr +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-ccbsp +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-ccsbt +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-cecaf +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-cifaa +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-comhafat-atlafco +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-copescaalc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-corep +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-cpps +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-crfm +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-ctmfm +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-eifaac +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-fcwc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-ffa +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-gfcm +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-iattc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-iccat +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-ices +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-iotc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-iphc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-iwc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-jointfish +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-lta +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-lvfo +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-mrc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-naca +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-nafo +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-nammco +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-nasco +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-neafc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-npafc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-npfc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-oldepesca +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-ospesca +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-persga +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-pices +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-psc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-raa +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-recofi +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-seafdec +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-seafo +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-siofa +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-spc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-sprfmo +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-srfc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-swiofc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-wcpfc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-rfb-map-wecafc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-aaa +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-aad +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-aaf +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-aah +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-aai +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-aak +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-aam +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-aan +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-aao +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-aay +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-abs +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-acn +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-aes +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-agn +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-aks +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-alb +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-alk +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-alv +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ana +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-anc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ane +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ang +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-apa +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-apb +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-apc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ape +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-apg +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-apn +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-app +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-apq +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-apr +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-aps +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-apu +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-apw +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-apx +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ara +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-arf +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-atk +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bah +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bdv +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bep +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bet +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bft +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bib +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bis +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bjs +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-blc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bli +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-blt +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-blu +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-boa +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bob +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bog +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bon +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bqp +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bqr +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-brd +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bsc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bsf +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bsh +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bsk +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bss +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bsz +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bth +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-buc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bum +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bup +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bvc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bye +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-byg +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-byp +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-byq +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-byz +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bzb +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-bzm +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-caa +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cap +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cas +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cca +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ccb +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cce +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ccl +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ccn +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cco +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ccp +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ccs +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cct +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cea +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cee +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cek +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cem +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ceu +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cfb +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-chf +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-chi +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cho +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-chp +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-chs +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-chu +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-chz +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cjm +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cki +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ckm +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cky +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cla +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-clb +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-clh +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-clj +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cln +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-clt +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-clz +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cmo +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cnn +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-coc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cod +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-coe +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-coh +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-col +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-com +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cpe +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cpi +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cpl +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-crb +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cre +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-crq +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cry +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-csh +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-csn +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-csz +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ctc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cti +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cub +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cuc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cuj +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cus +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cvt +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cya +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cyg +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cyh +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cyk +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cyn +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cyo +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cyp +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cyr +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cyt +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cyw +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-cyz +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-dab +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-dca +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ddr +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-dea +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-dec +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-del +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-dem +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-den +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-dep +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-dgq +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-dgs +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-dkk +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-dnc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-dob +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-dod +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-dol +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-dop +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-dpc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-dps +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-dpv +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-dun +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-dus +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-eck +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-edk +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-edt +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-edy +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-edz +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-eht +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ehv +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-eij +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-eil +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-eip +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-eiq +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-eiy +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-eja +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ejb +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ejd +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-eje +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ejg +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ejh +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ejk +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ejl +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ejn +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ejr +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ejt +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ejx +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ejy +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ekh +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ele +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-els +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-emy +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-eoi +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-epk +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-etb +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ete +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-etf +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-eth +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-eti +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-etj +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-etk +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-etl +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-etm +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-etn +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-eto +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-etp +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-etq +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-etr +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ett +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-etu +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-etv +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-etw +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-etx +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-etz +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-eup +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-euz +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-eyq +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-eyz +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ezl +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ezm +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-fal +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-fbm +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-fbt +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-fbu +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-fcp +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-fgo +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-fgs +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-fih +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-fle +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-flp +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-fot +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-fpe +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-fpi +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-fpp +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-fri +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-fss +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ftd +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-fts +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-gag +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-gal +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-gam +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-gaq +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-gaz +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ggq +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-gha +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ghl +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-gip +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-gis +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-git +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-gnc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-gpw +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-grb +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-grc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-grn +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-gsk +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-gsu +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-gtd +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-gte +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-gth +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-gti +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-gtj +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-gtk +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-gtp +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-gup +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-guq +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-gut +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-gva +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-gvi +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-gvt +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-had +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hai +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hap +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-has +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hch +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hcr +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hea +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hef +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-heg +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hej +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hek +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hem +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hep +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-heq +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-her +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hez +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hfa +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hfc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hfe +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hff +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hfi +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hfn +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hfq +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hhb +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hhp +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hhw +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hix +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hiz +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hkb +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hke +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hkk +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hkm +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hkn +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hko +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hkp +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hks +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hlx +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hmc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hmg +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hmm +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hmz +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hof +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hom +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hop +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hor +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hoz +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hqb +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hqi +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hqs +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hvm +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hwr +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hxc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hxn +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hxt +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hyy +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hzs +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-hzw +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-iaa +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-iae +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-iah +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-iaj +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ial +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-iam +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ian +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-iao +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-iaq +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-iar +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-iav +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-iaz +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ice +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-icf +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-icj +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-icr +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ide +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-idg +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-idh +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-idi +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-idj +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-idk +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-idl +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-idn +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ido +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-idq +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-idt +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-idu +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-idv +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ieb +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-iej +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ieo +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-iev +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-iin +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ijx +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ijy +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ijz +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ikd +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ike +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ikf +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ikj +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ikl +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ikq +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ikr +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ikt +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-iku +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ikv +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ikw +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ili +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ilr +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-iob +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-iof +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ioi +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-iol +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ioq +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ior +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ios +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-iot +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ioz +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ire +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-isb +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-isp +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-itb +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-itg +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-itw +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-iub +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-iuj +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ixo +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jai +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jan +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jcc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jce +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jcf +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jch +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jci +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jcj +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jck +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jcl +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jco +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jcq +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jcw +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jdb +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jdd +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jde +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jdg +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jdp +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jdz +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jfe +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jft +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jfy +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jjm +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jlz +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jng +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jod +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jpn +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jpo +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jpq +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jpr +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jpt +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jpu +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jpw +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jss +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-jtq +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-kaw +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-kcp +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-kgm +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-khe +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-khg +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-kri +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-kti +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ktv +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-kue +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-kuh +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-kun +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-kup +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-kuq +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-kuw +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-kuy +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-kxp +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-kyl +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-kza +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-laa +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lae +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-laf +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lak +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lao +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lar +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lau +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-law +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lay +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lba +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lbe +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lem +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lhq +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lht +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lig +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lin +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lkv +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lky +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lma +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lmd +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lmo +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lmp +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lnj +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-loo +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lot +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lpw +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lsz +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lta +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lum +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lyb +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lyc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-lyg +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-mac +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-mas +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-meg +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-mha +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-mhg +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-mls +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-mon +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-mpo +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-mqi +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-mrb +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-mrc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-mrg +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-mrm +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-msc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-msm +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-msv +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-mud +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-muf +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-mur +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-mus +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-mut +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-mvo +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-mwc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-myb +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-mye +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-myg +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-myl +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-myp +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-myu +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ndg +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ndh +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-nec +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-nek +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-nep +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ngb +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-nha +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-nhl +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-nid +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-nip +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-nkl +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-nop +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-npa +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-nph +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ntc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-nuk +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-nux +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-oax +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-obh +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-obw +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-occ +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ocj +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ocq +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ocs +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ocw +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-odh +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-odp +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ods +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ofe +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ofj +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ofy +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-oij +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-oja +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ojb +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ojd +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-oje +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ojg +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ojh +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ojn +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ojp +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ojt +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-oju +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-oka +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-okd +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-oke +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-okh +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-okl +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-oks +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-olx +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-onu +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-opc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ope +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-opf +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-opj +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-opp +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-opv +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-opy +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-oqi +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-oqn +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-oqy +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ora +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-orb +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ore +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-orf +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-orh +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ori +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-orj +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ork +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-orn +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-oro +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-orq +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-orr +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ors +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ort +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-orv +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-orw +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-orx +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ory +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-orz +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-osf +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-oto +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-otq +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-oty +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ouj +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ouk +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-oul +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-oum +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ovk +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-oxb +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-oxc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-oxn +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-oxy +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-oxz +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-oya +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-oyd +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-oyg +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-oyo +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-par +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pas +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pba +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pbf +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pca +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pco +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pea +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-peo +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pet +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pha +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pia +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pil +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pin +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pla +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ple +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pnb +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pni +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pns +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pnt +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pnu +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pnv +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pob +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-poc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pok +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pol +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-por +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pos +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ppc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pph +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ppj +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pps +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ppu +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ppw +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pra +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-prf +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pse +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-psg +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-psk +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pst +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ptg +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-pth +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ptm +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qdm +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qrq +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qrr +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qrs +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qrt +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qru +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qrw +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qry +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qrz +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qsf +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qsh +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qsj +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qsk +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qsq +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qsw +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qsy +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qsz +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qtb +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qtc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qtd +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qtf +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qtg +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qtj +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qtk +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qtm +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qts +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qtw +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qua +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qub +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-quc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-quj +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-quk +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qul +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qun +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qur +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-qyw +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rab +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rag +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ras +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rbc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rbx +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rcp +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rct +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rdc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rea +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-reb +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-reg +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ren +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-res +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rgl +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rhg +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rhn +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rht +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rjc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rje +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rjh +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rjm +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rjp +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rjq +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rjs +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rju +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rks +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rma +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rmb +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rme +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rmh +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rmj +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rmk +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rmm +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rmn +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rmo +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rmt +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rmu +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rng +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rns +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-roa +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ros +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rpa +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rpc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rpp +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rpr +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rpz +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rrh +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rru +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rsa +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rsh +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-rus +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-saa +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sab +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sae +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-saf +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sag +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sal +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sam +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sap +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sbf +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sbg +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sbl +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sca +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-scd +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sce +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sck +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sdh +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sdq +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sds +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sdu +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-seh +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sek +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ser +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sez +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sfa +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sfs +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-shb +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sho +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sip +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-skj +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-slc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sma +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-smd +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-snc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-snk +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-soc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sol +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-son +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sop +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sor +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-spj +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-spk +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-spl +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-spr +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-spz +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sqa +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sqe +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sqf +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sqg +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sqi +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sqj +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sql +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sqm +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sqp +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sqr +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sqs +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ssm +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sua +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-suc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sud +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sue +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-suf +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sug +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-suj +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sul +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sun +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-suo +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sut +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-suu +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-suy +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-svc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sve +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-swa +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-swo +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-swv +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-syc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-sye +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-syf +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-syp +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-syr +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-syt +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-szj +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-tcl +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-tdq +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-tfp +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-tfq +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-tga +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-tgs +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-thg +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-thp +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-tid +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-tig +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-tio +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-tip +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-tit +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-tkg +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-tkv +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-tlm +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-tol +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-top +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-trv +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-try +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-tsq +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-tth +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ttl +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-tto +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ttr +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ttv +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-tug +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-tuv +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-tvg +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-twm +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-twp +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ugu +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-uhb +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-uhk +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-uhl +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-uhr +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-uhs +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-uhu +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-uhy +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-urb +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-usk +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-utk +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-uwv +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-vaz +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-vep +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-vet +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wbm +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-whb +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-whe +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-whg +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-whl +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wit +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wks +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wmg +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wrr +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wrw +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wsh +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wsp +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wsu +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wsw +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wsz +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wta +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wtb +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wtc +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wtf +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wtg +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wth +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wtk +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wto +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wtq +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wtr +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wts +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wtv +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wty +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wtz +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wuz +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-wwp +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-yes +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-yfl +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-yft +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ygp +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ygs +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-yha +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-yhb +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-yhj +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-yht +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-yrm +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ysa +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ysm +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-yss +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-yth +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ytt +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-yur +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-yuv +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-yvv +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-yxs +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-yya +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-yyl +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-zbl +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-zei +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-zlp +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-zmk +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/fao-species-map-ztp +Index,FullTextIndexNode,insert/b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259/{UUID_TO_REPLACE} diff --git a/src/test/resources/FullTextIndexNode-remaining-values.csv b/src/test/resources/FullTextIndexNode-remaining-values.csv index 4861eea..9e4c90c 100644 --- a/src/test/resources/FullTextIndexNode-remaining-values.csv +++ b/src/test/resources/FullTextIndexNode-remaining-values.csv @@ -1,17 +1,17 @@ -getJSONTransformer -search -setCollectionFieldsAlias -setJSONTransformer -/collectionsDocCount -/deleteCompleteCollectionInfo -/dropCollection/3121eccdcbf9c6e982dcc5a2164b8b4029f51d8b1c448ddaf46316178d755c6f -/dropCollection/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d -/getCollectionFieldsAlias -/getCompleteCollectionInfo -/insertWithRecID -/listCollections -/reIndex -/search -/setCompleteCollectionInfo -getAllCollectionFields -listCollections +Index,FullTextIndexNode,getJSONTransformer +Index,FullTextIndexNode,search +Index,FullTextIndexNode,setCollectionFieldsAlias +Index,FullTextIndexNode,setJSONTransformer +Index,FullTextIndexNode,/collectionsDocCount +Index,FullTextIndexNode,/deleteCompleteCollectionInfo +Index,FullTextIndexNode,/dropCollection/3121eccdcbf9c6e982dcc5a2164b8b4029f51d8b1c448ddaf46316178d755c6f +Index,FullTextIndexNode,/dropCollection/67fa6009551977585b7a4c97666a4bdbf18b8f533ab0ab679eb496ffbc15b93d +Index,FullTextIndexNode,/getCollectionFieldsAlias +Index,FullTextIndexNode,/getCompleteCollectionInfo +Index,FullTextIndexNode,/insertWithRecID +Index,FullTextIndexNode,/listCollections +Index,FullTextIndexNode,/reIndex +Index,FullTextIndexNode,/search +Index,FullTextIndexNode,/setCompleteCollectionInfo +Index,FullTextIndexNode,getAllCollectionFields +Index,FullTextIndexNode,listCollections diff --git a/src/test/resources/GeoNetwork-login-rule.json b/src/test/resources/GeoNetwork-login-rule.json index 8f200b1..5ac08cd 100644 --- a/src/test/resources/GeoNetwork-login-rule.json +++ b/src/test/resources/GeoNetwork-login-rule.json @@ -1,6 +1,12 @@ { - "regex": "\/login\\.jsp.*", - "replace": "/login.jsp", - "serviceClass": "SDI", - "serviceName": "GeoNetwork" -} + "match": { + "serviceClassRegex": "SDI", + "serviceNameRegex": "GeoNetwork", + "calledMethodRegex": "\/login\\.jsp.*" + }, + "replace": { + "serviceClass": "SDI", + "serviceName": "GeoNetwork", + "calledMethod": "login" + } +} \ No newline at end of file diff --git a/src/test/resources/GeoNetwork-login-values.csv b/src/test/resources/GeoNetwork-login-values.csv index fcd11bd..f8e7f4e 100644 --- a/src/test/resources/GeoNetwork-login-values.csv +++ b/src/test/resources/GeoNetwork-login-values.csv @@ -1,22 +1,22 @@ -/login.jsp -/login.jsp;jsessionid=026438CEE6D095C440E30AA2BE5F1C52 -/login.jsp;jsessionid=071014EEDB6B2BC471117DDE9DBAB4AF -/login.jsp;jsessionid=1AA1F8CF444ACF53A7ED35545739182B -/login.jsp;jsessionid=3A65F66FF8562EEB67A950B0E34B210D -/login.jsp;jsessionid=3FE0648A84FFE76EDF27E3ABA1F38FE0 -/login.jsp;jsessionid=40DAC33C14635BC810F8D849D245CF64 -/login.jsp;jsessionid=45C2F7FBBD72D44E1B41124FF2ECC4FB -/login.jsp;jsessionid=5502E052F453E2B5635B0AAB1FE2F58C -/login.jsp;jsessionid=5F2723D37357C263AA231D6400370DA6 -/login.jsp;jsessionid=5F54FEA2C8F69CFFB1C71F9C2B338025 -/login.jsp;jsessionid=9A9062700CB06003619AEEF2D636A8E9 -/login.jsp;jsessionid=9D78B2D26010B4BD674AB859CD6A6EB0 -/login.jsp;jsessionid=9DB16E206EBBEDB8DB5DE7076FDB45DD -/login.jsp;jsessionid=AD1D6B3B90A448CC87E32EEEA7D1877B -/login.jsp;jsessionid=D8912146C70588E4AA18B235B58B50E6 -/login.jsp;jsessionid=E3A90B917D7C8B71D386F6B6834D7486 -/login.jsp;jsessionid=F0DCF3AD6DCEF95EBCB6C20C2FDD6146 -/login.jsp;jsessionid=F162A6D953B374097AEC9E0A9201BD1A -/login.jsp;jsessionid=F19134D6E23F6DD6C8F6CB7536052EC2 -/login.jsp;jsessionid=F25F1AA1630EA3E955F3CEFEE3732853 -/login.jsp;jsessionid=101C308122D54162E5974173C3AC9470 +SDI,GeoNetwork,/login.jsp +SDI,GeoNetwork,/login.jsp;jsessionid=026438CEE6D095C440E30AA2BE5F1C52 +SDI,GeoNetwork,/login.jsp;jsessionid=071014EEDB6B2BC471117DDE9DBAB4AF +SDI,GeoNetwork,/login.jsp;jsessionid=1AA1F8CF444ACF53A7ED35545739182B +SDI,GeoNetwork,/login.jsp;jsessionid=3A65F66FF8562EEB67A950B0E34B210D +SDI,GeoNetwork,/login.jsp;jsessionid=3FE0648A84FFE76EDF27E3ABA1F38FE0 +SDI,GeoNetwork,/login.jsp;jsessionid=40DAC33C14635BC810F8D849D245CF64 +SDI,GeoNetwork,/login.jsp;jsessionid=45C2F7FBBD72D44E1B41124FF2ECC4FB +SDI,GeoNetwork,/login.jsp;jsessionid=5502E052F453E2B5635B0AAB1FE2F58C +SDI,GeoNetwork,/login.jsp;jsessionid=5F2723D37357C263AA231D6400370DA6 +SDI,GeoNetwork,/login.jsp;jsessionid=5F54FEA2C8F69CFFB1C71F9C2B338025 +SDI,GeoNetwork,/login.jsp;jsessionid=9A9062700CB06003619AEEF2D636A8E9 +SDI,GeoNetwork,/login.jsp;jsessionid=9D78B2D26010B4BD674AB859CD6A6EB0 +SDI,GeoNetwork,/login.jsp;jsessionid=9DB16E206EBBEDB8DB5DE7076FDB45DD +SDI,GeoNetwork,/login.jsp;jsessionid=AD1D6B3B90A448CC87E32EEEA7D1877B +SDI,GeoNetwork,/login.jsp;jsessionid=D8912146C70588E4AA18B235B58B50E6 +SDI,GeoNetwork,/login.jsp;jsessionid=E3A90B917D7C8B71D386F6B6834D7486 +SDI,GeoNetwork,/login.jsp;jsessionid=F0DCF3AD6DCEF95EBCB6C20C2FDD6146 +SDI,GeoNetwork,/login.jsp;jsessionid=F162A6D953B374097AEC9E0A9201BD1A +SDI,GeoNetwork,/login.jsp;jsessionid=F19134D6E23F6DD6C8F6CB7536052EC2 +SDI,GeoNetwork,/login.jsp;jsessionid=F25F1AA1630EA3E955F3CEFEE3732853 +SDI,GeoNetwork,/login.jsp;jsessionid=101C308122D54162E5974173C3AC9470 diff --git a/src/test/resources/TagMe-tag-rule.json b/src/test/resources/TagMe-tag-rule.json index a672998..5a9830e 100644 --- a/src/test/resources/TagMe-tag-rule.json +++ b/src/test/resources/TagMe-tag-rule.json @@ -1,6 +1,12 @@ { - "regex": "^((e\/)|\/){0,1}tag", - "replace": "/tag", - "serviceClass": "Application", - "serviceName": "TagMe" -} + "match": { + "serviceClassRegex": "Application", + "serviceNameRegex": "TagMe", + "calledMethodRegex": "^((e\/)|\/){0,1}tag" + }, + "replace": { + "serviceClass": "Application", + "serviceName": "TagMe", + "calledMethod": "tag" + } +} \ No newline at end of file diff --git a/src/test/resources/TagMe-tag-values.csv b/src/test/resources/TagMe-tag-values.csv index 15a3884..783f366 100644 --- a/src/test/resources/TagMe-tag-values.csv +++ b/src/test/resources/TagMe-tag-values.csv @@ -1,3 +1,3 @@ -tag -e/tag -/tag \ No newline at end of file +Application,TagMe,tag +Application,TagMe,e/tag +Application,TagMe,/tag \ No newline at end of file diff --git a/src/test/resources/logback-test.xml b/src/test/resources/logback-test.xml index 4fa8510..ed99be9 100644 --- a/src/test/resources/logback-test.xml +++ b/src/test/resources/logback-test.xml @@ -8,8 +8,9 @@ - - + + + diff --git a/src/test/resources/newRules.json b/src/test/resources/newRules.json new file mode 100644 index 0000000..35ce2d8 --- /dev/null +++ b/src/test/resources/newRules.json @@ -0,0 +1,13 @@ +{ + "match" : { + "serviceClassRegex": "Common", + "serviceNameRegex": "AuthorizationService", + "calledMethodRegex": "^\/{0,1}gcube\/service\/generate.*" + }, + "replace": { + "calledMethod": "generate", + "serviceClass": "Common", + "serviceName": "AuthorizationService" + } + +} diff --git a/src/test/resources/test.log b/src/test/resources/test.log index c37877e..8e5d5a5 100644 --- a/src/test/resources/test.log +++ b/src/test/resources/test.log @@ -1 +1 @@ -{"recordType":"SingleTaskUsageRecord","ESEMpio":"PLUTO","creationTime":1503928807106,"refHostingNodeId":"4f96f787-44b4-46f7-9d85-359e57313840","consumerId":"name.surname","wallDuration":1200000,"taskStartTime":1503928207106,"scope":"/gcube/devNext","host":"localhost","id":"ab97bb13-ca9a-4b01-bd4c-564da3f27759","taskId":"6776f112-4f62-4d13-ad33-d0cab5a98c76","finalState":"DONE","operationResult":"SUCCESS","taskEndTime":1503929407106} +{"recordType":"StorageUsageRecord","operationCount":1,"creationTime":1568579864273,"consumerId":"gCubeSocialFramework","resourceOwner":"gCubeSocialFramework","dataType":"STORAGE","providerURI":"data.d4science.org","resourceURI":"5d7ea11702cadc2c31b17af0","aggregated":true,"resourceScope":"/d4science.research-infrastructures.eu/D4Research/RAKIP_portal","dataVolume":2328,"scope":"/d4science.research-infrastructures.eu/D4Research/RAKIP_portal","operationType":"CREATE","startTime":1568579864272,"id":"999eb4ca-1f6c-43d1-879a-d91855e3a1c8","endTime":1568579864272,"operationResult":"SUCCESS"}