








<!DOCTYPE html>
<html lang="en" ng-app="journeyLogPublicTransporterDeclarationModule" ng-strict-di>

     












    <head>
		<meta charset="utf-8" />
		<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible">
		<meta name="viewport" content="width=device-width, initial-scale=1">
        
        <!--[if lte IE 9]>
  		<script src="/tracesnt/assets/js/polyfill.js"></script>
        <![endif]-->
  		
  		
		<style>
			.pageLoader {
				position: fixed;
				background-color: #FFF;
				opacity: 1;
				height: 100%;
				width: 100%;
				top: 0;
				left: 0;
				z-index: 9999;
				display: flex;
				justify-content: center;
				align-items: center;
			}
	
			.pageLoader .ecl-spinner__loader {
				height: 64px;
				width: 64px;
			}
			
			/* Environment-specific CSS Rules */
			.environmentDiscriminator {
				background-color: #2e86c1 !important;
				color:			#ffffff !important;
			}
			
		</style>
  		
  		
			
			
			
			
			
			
			
			
			
			
						
			 
			
			
        <link href="/tracesnt/assets/css/min/head.8-1-9-20262703-165100000.min.css" rel="stylesheet" type="text/css" />

        
        <!--[if lte IE 9]>
            <link href="/tracesnt/assets/css/application-ie.css" rel="stylesheet" type="text/css" />
        <![endif]-->
        
        <link rel="shortcut icon" href="/tracesnt/favicon.ico" type="image/x-icon" />
		<link rel="icon" href="/tracesnt/assets/img/favicon.gif" type="image/gif" />
		<link rel="apple-touch-icon" href="/tracesnt/assets/img/apple-touch-icon.png" />
		
		

		
			<title>Transporter declaration  - TRACES NT</title>
		
		

        
    	
    	<style type="text/css">
			.watermarkContainer {
			    position: relative;
			}
			
			.watermark {
			    -webkit-transform: rotate(-35deg);
			    -moz-transform: rotate(-35deg);
			    transform: rotate(-35deg);
			
			    -webkit-transform-origin: center center;
			    -moz-transform-origin: center center;
			    transform-origin: center center;
			
			    -webkit-touch-callout: none;
			    -webkit-user-select: none;
			    -khtml-user-select: none;
			    -moz-user-select: none;
			    -ms-user-select: none;
			    user-select: none;
			
			    text-transform: uppercase;
			    font-size: 80px;
			    color: #eedda2;
			    position: absolute;
			    top: 400px;
			    left: 25%;
			
			}
    	</style>
    	
		 





<script type="text/ng-template" id="/template/countrySelector">
	<div class="countrySelector">
		<div class="form-control-static" ng-if="countrySelectorController.readOnly && countrySelectorController.selection">
			<i class="flag flag-{{countrySelectorController.selection.code | lowercase}}"></i> 
			{{countrySelectorController.selection.translation}} <span class="countryCode">({{countrySelectorController.selection.code}})</span>
		</div>
		<div class="input-group" ng-if="! countrySelectorController.readOnly">
			<span class="input-group-addon countryFlag">
				<i ng-show="countrySelectorController.selection && !countrySelectorController.isDisabled(countrySelectorController.selection)" class="flag flag-{{countrySelectorController.selection.code | lowercase}}"></i>
				<i ng-show="countrySelectorController.selection" class="fa-solid fa-xmark removeElement" ng-click="countrySelectorController.clearSelection()"></i>
			</span>
			<select class="form-control"
					ng-disabled="countrySelectorController.isControlDisabled"
					ng-model="countrySelectorController.selection"
					ng-options="country as country.translation + ' (' + country.code +')' disable when countrySelectorController.isDisabled(country) for country in countrySelectorController.countries | countrySelectorFilter: countrySelectorController.countryGroupFilter track by country.code"
					ng-required="countrySelectorController.required"
					ng-change="countrySelectorController.selectionUpdated()"
					focus-on="countrySelectorController.focusOn"
					field="{{countrySelectorController.field}}">
				<option class="noCountrySelected" value="">No country selection</option>
			</select>
			<div class="input-group-btn" ng-if="!countrySelectorController.filterDisabled">
        		<button type="button" class="btn btn-default dropdown-toggle country-selector-small-btn" ng-disabled="countrySelectorController.isControlDisable" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" title="Filter country list">
					<i class="fa-solid fa-globe" aria-hidden="true"></i>
				</button>
		        <ul class="dropdown-menu">
					<li ng-class="countrySelectorController.countryGroupFilter.all ? 'active' : ''">
						<a href="" ng-click="countrySelectorController.countryGroupFilter.noFilter()">
							<i class="fa-solid fa-list-ul" aria-hidden="true"></i>
							<strong>All countries</strong>
							<em ng-show="countrySelectorController.countryGroupFilter.all">({{countrySelectorController.getFilteredSize()}})</em>
						</a>
					</li>
					<li role="separator" class="divider"></li>
					<li ng-repeat="countryGroup in countrySelectorController.getAvailableCountryGroups()" 
						ng-class="countrySelectorController.countryGroupFilter.countryGroup.id === countryGroup.id ? 'active' : ''">
						<a href="" ng-click="countrySelectorController.countryGroupFilter.filterOnCountryGroup(countryGroup)">
							<span l10n-key="'country.selector.filter.in.country.group'" l10n-parameters="[ countryGroup.acronymTranslation ]"></span>
							<i class="flag flag-eu" ng-show="countryGroup.id === 'EU'"></i>
							<em ng-show="countrySelectorController.countryGroupFilter.countryGroup.id === countryGroup.id">({{countrySelectorController.getFilteredSize()}})</em>
						</a>
					</li>
					<li role="separator" class="divider"></li>
					<li ng-class="countrySelectorController.countryGroupFilter.noGroups ? 'active' : ''">
						<a href="" ng-click="countrySelectorController.countryGroupFilter.noGroupFilter()">
							Not in any group
							<em ng-show="countrySelectorController.countryGroupFilter.noGroups">({{countrySelectorController.getFilteredSize()}})</em>
						</a>
					</li>
		        </ul>
			</div>
		</div>
	</div>

</script>
    	 





<!-- Template for message issue (see Angular Js directive "issues") -->
<script type="text/ng-template" id="/template/issues">
<div>
	<div ng-if="issues.length" class="issues">
		<div ng-repeat="issueSeverity in IssueSeverity">
			<div class="alert alert-block alert-dismissable"
				 ng-class="issueSeverity | asIssueSeverityAlertClass"
				 ng-if="issues.findIssuesBySeverity(issueSeverity).length">
				<button type="button" class="close" ng-if="!isNotCloseable()"
						ng-click="issues.emptyIssues(issueSeverity)">&times;
				</button>

				<h4 class="alertInlineTitle" ng-if="titleShown">
					<ng-pluralize count="issues.findIssuesBySeverity(issueSeverity).length"
								  when="{'1': '{{issueSeverity.translation}}:', 'other': '{} {{issueSeverity.pluralTranslation}}:'}"/>
				</h4>
				<div class="issuesDescriptors">
					<table>
						<tr ng-repeat="issue in issues.findIssuesBySeverity(issueSeverity)"
							ng-click="issue.focusOnOrigin()" ng-mouseenter="issue.markInput()"
							ng-mouseleave="issue.unmarkInput()"
							ng-class="{'fixed': issue.isIssueFixed(), 'link': issue.hasOrigin()}"
							class="issue {{issueSeverity.id | lowercase}}">
							<td class="errorIdColumn"><span class="label label-default errorId"
															ng-class="issueSeverity | asIssueSeverityLabelClass">{{issue.id}}</span>
							</td>
							<td class="field" ng-bind-html="issue.fieldTranslation">
							</td>
							<td class="message" colspan="{{issue.fieldTranslation && 2 || 1}}"
								ng-bind-html="issue.messageTranslation">
							</td>
						</tr>
					</table>
				</div>
			</div>
		</div>
	</div>
</div>
</script>

    	
    
		
    </head>

	
	<div class="pageLoader">
		<div style="position:relative;height:200px">
			<div class="ecl-spinner ecl-spinner--primary ecl-spinner--medium ecl-spinner--centered ecl-spinner--visible">
				<svg class="ecl-spinner__loader" viewBox="25 25 50 50">
					<circle class="ecl-spinner__circle" cx="50" cy="50" r="20" fill="none" stroke-width="4px"
							stroke-miterlimit="10"
							vector-effect="non-scaling-stroke"></circle>
				</svg>
			</div>
		</div>
	</div>
	
    
    <body class="withoutNavigationBar">

        
            
        






























<script type="text/ng-template" id="/template/loadingIndicator">
	<div class="loadingIndicatorContainer">
		<div class="loadingIndicatorFog"></div>
		<div class="loadingIndicatorIcon ecl-spinner ecl-spinner--negative ecl-spinner--medium ecl-spinner--centered ecl-spinner--visible">
			<svg class="ecl-spinner__loader" viewBox="25 25 50 50">
				<circle class="ecl-spinner__circle" cx="50" cy="50" r="20" fill="none" stroke-width="4px" stroke-miterlimit="10"
						vector-effect="non-scaling-stroke">
					<title>Please Wait...</title>
				</circle>
			</svg>
			<div class="message" ng-show="$ctrl.getLoadingIndicatorMessage()"><formatted-block value="$ctrl.getLoadingIndicatorMessage()"></formatted-block></div>
		</div>
	</div>
</script>




<a href="#content" class="sr-only sr-only-focusable">Skip to Main Content</a>

<header id="topHeader">
	
	    <nav>
	        <ul>
            	<li><a href="https://webgate.ec.europa.eu/imsoc-guide/tracesnt-help/Default.htm" target="_blank">Documentation</a></li>
            	<li><a href="https://webgate.ec.europa.eu/imsoc-guide/tracesnt-help/Content/en/faq.html" target="_blank">FAQ</a></li>
	        	<li><a href="mailto:sante-traces@ec.europa.eu">Contact</a></li>
	            <li id="languages" ng-controller="LanguageSwitcherController">
	                <form id="languagesForm" class="form-inline" >
	                    <select id="languageSelector" class="form-control" ng-model="languageCode" ng-change="switchLanguage()">
	                        
	                            <option value="bs" >Bosnian (Bosnian)</option>
	                        
	                            <option value="zh" >Chinese (Chinese)</option>
	                        
	                            <option value="da" >Dansk (Danish)</option>
	                        
	                            <option value="de" >Deutsch (German)</option>
	                        
	                            <option value="et" >Eesti keel (Estonian)</option>
	                        
	                            <option value="en" selected='selected'>English (English)</option>
	                        
	                            <option value="es" >Español (Spanish)</option>
	                        
	                            <option value="el" >Eλληνικά (Greek)</option>
	                        
	                            <option value="fr" >Français (French)</option>
	                        
	                            <option value="ka" >Georgian (Georgian)</option>
	                        
	                            <option value="hr" >Hrvatski (Croatian)</option>
	                        
	                            <option value="is" >Icelandic (Icelandic)</option>
	                        
	                            <option value="ga" >Irish (Irish)</option>
	                        
	                            <option value="it" >Italiano (Italian)</option>
	                        
	                            <option value="ko" >Korean (Korean)</option>
	                        
	                            <option value="lv" >Latviešu (Latvian)</option>
	                        
	                            <option value="lt" >lietuvių (Lithuanian)</option>
	                        
	                            <option value="mk" >Macedonian (Macedonian)</option>
	                        
	                            <option value="hu" >magyar (Hungarian)</option>
	                        
	                            <option value="mt" >Malti (Maltese)</option>
	                        
	                            <option value="nl" >Nederlands (Dutch)</option>
	                        
	                            <option value="nn" >Norsk (Norwegian)</option>
	                        
	                            <option value="pl" >Polski (Polish)</option>
	                        
	                            <option value="pt" >Português (Portuguese)</option>
	                        
	                            <option value="ro" >Română (Romanian)</option>
	                        
	                            <option value="sr" >Serbian (Serbian)</option>
	                        
	                            <option value="sq" >Shqiptar (Albanian)</option>
	                        
	                            <option value="sk" >Slovenčina (Slovak)</option>
	                        
	                            <option value="sl" >slovenščina (Slovenian)</option>
	                        
	                            <option value="fi" >suomi (Finnish)</option>
	                        
	                            <option value="sv" >Svenska (Swedish)</option>
	                        
	                            <option value="tr" >Türkçe (Turc)</option>
	                        
	                            <option value="uk" >Ukrainian (Ukrainian)</option>
	                        
	                            <option value="vi" >Vietnamese (Vietnamese)</option>
	                        
	                            <option value="cs" >čeština (Czech)</option>
	                        
	                            <option value="bg" >български (Bulgarian)</option>
	                        
	                            <option value="ru" >Русский (Russian)</option>
	                        
	                    </select>
	                </form>
	            </li>
	            
	                
	                
	                    
	                    <li>
							<a id="session-link" href="/tracesnt/ecas-login">
								<span class="ecl-button__container">
									<svg class="ecl-icon ecl-icon--m ecl-button__icon" focusable="false" aria-hidden="true" data-ecl-icon="">
										<use xlink:href="/tracesnt/assets/img/ec-components/icons-ec.eae40d34.svg#log-in"></use>
									</svg>
									<span class="ecl-button__label">Log in</span>
								</span>
							</a>
						</li>
	                
	            
	
	        </ul>
	    </nav>
    

	<a href="/tracesnt/root" id="ecLogo">
		<img src="/tracesnt/assets/img/ec-components/logo-ec/logo-ec--en.svg" alt="European Commission"
		     onerror="this.src='/tracesnt/assets/img/ec-components/logo-ec/logo-ec--en.svg'"/>
	</a>

	
	<h1>
		
		
			<a href="/tracesnt/root" title="Information Management System for Official Controls">
				IMSOC
			</a>
		
	</h1>

	

    <div id="applicationComponents">
    	
			<span class="component active">TRACES</span> <span class="componentSplitter">·</span>
			<span class="component " title="Animal Disease Information System">ADIS</span> <span class="componentSplitter">·</span>
			<a href="https://webgate.ec.europa.eu/europhyt/" class="component ">EUROPHYT</a> <span class="componentSplitter">·</span>
			<a href="https://webgate.ec.europa.eu/irasff" class="component">iRASFF</a>
		
	</div>
    
    <div id="breadcrumb">
        <ul>
        	
            
            	<li><a href="/tracesnt/root">IMSOC</a></li>
            
            
			<li>TRACES</li>
                <li><a href="/tracesnt/login">Transporter declaration</a></li>
            
        </ul>
    </div>
    
    

	
	

</header>


<loading-indicator-screen></loading-indicator-screen>




		<div id="main" ng-controller="JourneyLogPublicTransporterDeclarationController">
			<div class="container" id="content" tabindex="-1">
			
				<div issues="issues"></div>
			
				<div class="panel panel-default certificateSection form-horizontal">
					<div class="panel-body watermarkContainer">
		
						<div class="watermark">
							
								
									<span ng-if="$ctrl.journeyLog.id">{{$ctrl.journeyLog.status.translation}}</span>
								
								
							
						</div>
						
						<div class="panel-heading">
							Journey Log Identification
						</div>
						
		
						<div class="row">
							<div class="col-md-6">
		
								<div id="organiserBox" class="panel innerPanel" ng-class="{ 'editable' : $ctrl.journeyLog.canEditPlaceOfDepartureSection() }">
									<div class="panel-heading">
		
										<h4 class="panel-title">
											Reference number
										</h4>
		
									</div>
									
									<div class="panel-body">
										<input type="text" class="form-control" id="journeyLogReference"
											   ng-model="fillRequest.journeyLogReference"
											   ng-readonly="! editable"/>
									</div>
								</div>
							</div>
							
							<div class="col-md-6">
		
								<div id="organiserBox" class="panel innerPanel" ng-class="{ 'editable' : $ctrl.journeyLog.canEditPlaceOfDepartureSection() }">
									<div class="panel-heading">
		
										<h4 class="panel-title">
											Transporter
											identifier / Approval number
										</h4>
		
									</div>
		
									<div class="panel-body">
										<input type="text" class="form-control" id="journeyLogReferenceNumber"
											   ng-model="fillRequest.organiserCode"
											   ng-readonly="! editable"/>
									</div>
								</div>
							</div>
						</div>
						
						
						<div class="row">
							<div class="col-md-12">
								<div class="pull-right">
									<button type="button" class="btn btn-primary" ng-disabled="state.submitting" ng-click="submitFillRequest()">
										<i ng-class="state.submitting ? 'fa-solid fa-circle-notch fa-spin fa-fw' : 'fa-solid fa-hard-drive'"></i>
										Fill transporter declaration
									</button>
								</div>
							</div>
						</div>
						
					</div>
				</div>
            
			</div>
        </div>

         

















<div style="clear:both"></div>


 





<!-- Template for message issue (see Angular Js directive "issues") -->
<script type="text/ng-template" id="/template/issues">
<div>
	<div ng-if="issues.length" class="issues">
		<div ng-repeat="issueSeverity in IssueSeverity">
			<div class="alert alert-block alert-dismissable"
				 ng-class="issueSeverity | asIssueSeverityAlertClass"
				 ng-if="issues.findIssuesBySeverity(issueSeverity).length">
				<button type="button" class="close" ng-if="!isNotCloseable()"
						ng-click="issues.emptyIssues(issueSeverity)">&times;
				</button>

				<h4 class="alertInlineTitle" ng-if="titleShown">
					<ng-pluralize count="issues.findIssuesBySeverity(issueSeverity).length"
								  when="{'1': '{{issueSeverity.translation}}:', 'other': '{} {{issueSeverity.pluralTranslation}}:'}"/>
				</h4>
				<div class="issuesDescriptors">
					<table>
						<tr ng-repeat="issue in issues.findIssuesBySeverity(issueSeverity)"
							ng-click="issue.focusOnOrigin()" ng-mouseenter="issue.markInput()"
							ng-mouseleave="issue.unmarkInput()"
							ng-class="{'fixed': issue.isIssueFixed(), 'link': issue.hasOrigin()}"
							class="issue {{issueSeverity.id | lowercase}}">
							<td class="errorIdColumn"><span class="label label-default errorId"
															ng-class="issueSeverity | asIssueSeverityLabelClass">{{issue.id}}</span>
							</td>
							<td class="field" ng-bind-html="issue.fieldTranslation">
							</td>
							<td class="message" colspan="{{issue.fieldTranslation && 2 || 1}}"
								ng-bind-html="issue.messageTranslation">
							</td>
						</tr>
					</table>
				</div>
			</div>
		</div>
	</div>
</div>
</script>

 





<style>
    .announcementTooltip {
		z-index: 			200000;
		max-width: 		330px;
	}
	
	.announcementTooltip .announcementTooltipTitle {
		text-decoration: 		underline;
		color:				#c45c5c;
		padding-right:			5px;
	}

	.announcementTooltip .announcementUnderstood {
		padding-left:			10px;
	}
</style>

<script  type="text/ng-template" id="/template/announcementTooltip">
<div class="popover announcementTooltip" tabindex="-1">
	<div class="arrow"></div>
 
	<div class="popover-content">
		<strong class="announcementTooltipTitle">
			
				
			Version <strong>8.1.9</strong></strong>

		<formatted-text value="announcementTooltipTemplate"></formatted-text>

		<div class="clearfix">
			<span class="announcementUnderstood pull-right">
				<button type="button" class="btn btn-sm btn-default" ng-click="dismissAnnouncementTooltip()"><i class="fa-solid fa-check"></i> Dismiss</button>
				<button type="button" class="btn btn-sm btn-default" ng-click="dismissAllAnnouncementTooltips()" title="Dismiss All"><i class="fa-solid fa-exclamation" aria-hidden="true"></i></button>
			</span>
		</div>

	</div>
</div>
</script>

 





<!-- Template for a secure href -->
<script type="text/ng-template" id="/template/secureHref">
<span>
	<a ng-if="isSecured()" ng-href="{{secureHref}}" ng-transclude target="{{targetPage}}"></a>
	<span ng-if="! isSecured()" ng-transclude></span>
</span>
</script>

<footer id="bottomFooter" ng-controller="BottomFooterController as bottomFooterController">
    <section>
        <nav>
            <ul class="list-inline">
                <li>Last update: 2026</li>
                <li><a href="http://ec.europa.eu/info/legal-notice_en" target="_blank">Legal Notice</a></li>
                <li><a href="/tracesnt/terms-of-use">Terms of Use</a></li>
                <li><a href="https://ec.europa.eu/info/cookies_en">Cookies</a></li>
                <li><a href="/tracesnt/privacy-statement">Privacy Statement</a></li>
                <li><a href="/tracesnt/accessibility">Accessibility</a></li>
                <li><a href="/tracesnt/credits">Credits</a></li>
                <li><a href="mailto:sante-traces@ec.europa.eu">Contact</a></li>
                <li><a href="" ng-click="bottomFooterController.goTopPage()">Top Page</a></li>
            </ul>
        </nav>
    </section>

    <section>
		European Commission -
		
		
			<a href="https://commission.europa.eu/about-european-commission/departments-and-executive-agencies/health-and-food-safety_en" target="_blank">DG Health &amp; Food Safety</a>.
		
    </section>
    
    <section>
		<div title="8.1.9 (27/03/2026 16:51:00 +0100 CET)">
			
			
				<abbr title="Integrated Management System for Official Controls">IMSOC - TRACES.NT</abbr>
			
        	8.1.9 (27/03/2026 16:51:00) -
        </div>
        <div class="processedBy">
        	processed by cls5.
        </div>
    </section>
</footer>

<script defer src="https://webtools.europa.eu/load.js" type="text/javascript"></script>
<!-- Cookie Consent Kit configuration -->
<cookie-consent-kit></cookie-consent-kit>
 

	 

	



















	
	


 

































<script src="/tracesnt/assets/js/min/footer.8-1-9-20262703-165100000.min.js"></script>



	
	
		<script src="/tracesnt/assets/js/vendor/angular-1.8.2/i18n/angular-locale_en.js" ></script>
	


<script type="text/javascript">

	/** 
	 * Declare the inlineGlobalModule.
	 * This module is responsible for extending Global with inline content.
	 */
	(function() {
		'use strict';
		
		var inlineGlobalModule = angular.module("inlineGlobalModule", [ "localisationModule", "securityServiceModule" ]);
		
		/**
	     * @const TNT Configuration
	     */
		inlineGlobalModule.constant("CONFIG", {
	        /**
	         * @const Context Path
	         */
	        contextPath:     "/tracesnt",
	        
	        /**
	         * @const Current Language
	         */
	        language:        "en",
	        
			/**
	         * @const User's time zone id
	         */
	        timeZoneId:        "CET",
	        
			/**
	         * @const Number of seconds before a new refreshing of user's notifications
	         */
	        uiUserNotificationFetchingIntervalInSeconds: 480,
	        
	        
			/**
	         * @const Show Notification Popup
	         */
	        showNotificationPopup: false

	    });
		

		// Angular Debug info state 
		inlineGlobalModule.config(["$compileProvider", function ($compileProvider) {
			$compileProvider.debugInfoEnabled(! true);
		}]);
		

	    inlineGlobalModule.run([ "translator", "securityService", function(translator, securityService) {
		    
		    






translator.translateMap({"error.http.400":"HTTP 400: Bad Request for {0} {1}: {2}","error.http.403":"HTTP {0}: Permission Denied.","error.http.404":"Page \u003Cstrong\u003E{0}\u003C/strong\u003E not found.","error.http.405":"HTTP 405: {0} on {1} is not allowed.","error.http.415":"HTTP {0}: Unsupported Media Type.","error.http.429":"HTTP 429: Too Many Requests to {0}. Please retry later, one request at a time.","error.http.500":"HTTP {0}: Internal Server Error. Cause: {1}.","error.http.503":"Service Unavailable (HTTP error code: {0}). Cause: {1}.","error.http.stopped":"HTTP problem. It looks like the server was stopped.","error.http.unknown":"HTTP {0}: Unknown Error Code."});

		    
		    






translator.translateMap({"error.general.error.found.in.form":"Error found in form.","error.general.exception.thrown":"Application has encountered a serious error: \u003Cstrong\u003E{0}\u003C/strong\u003E. Check logs for more information.","error.general.failed.to.change.page":"Unable to switch to requested page."});

		    
		    






translator.translateMap({"info.debug.mode.disabled":"Debug Mode disabled.","info.debug.mode.enabled":"Debug Mode enabled.","info.dialog.title":"Informative dialog","info.national.anthem.mode.disabled":"National anthem playback disabled","info.national.anthem.mode.enabled":"National anthem playback enabled"});

		    
		    
		    






translator.translateMap({"field.must.be.email":"Must be an email address.","field.must.be.formatted.properly":"Field must be formatted properly.","field.must.be.found.in.possible.choices":"Field must be found in possible choices.","field.must.be.greater.than":"Must be greater than \u003Cstrong\u003E{0}\u003C/strong\u003E.","field.must.be.greater.than.current.date":"Must be greater than current date","field.must.be.number":"Must be a number.","field.must.be.smaller.than":"Must be smaller than \u003Cstrong\u003E{0}\u003C/strong\u003E.","field.must.be.url":"Must be an URL address.","field.must.be.valid.decimal.number":"Must be a valid decimal number.","field.must.be.valid.regular.expression":"Must be a valid regular expression.","field.must.have.max.length":"Must have a maximum of \u003Cstrong\u003E{0}\u003C/strong\u003E characters.","field.must.have.min.length":"Length must be greater or equal to \u003Cstrong\u003E{0} characters\u003C/strong\u003E.","field.must.match.pattern":"Must match expected pattern.","field.must.not.be.empty":"Must not be empty."});

			
		    
		    






translator.translateMap({"date.picker.format":"Date/Time Format: {0}"});

		    
			

securityService.grantRole("AdministrationAuditLog", false);

			

securityService.grantRole("AdministrationOtherBody", false);

	    }]);
		
		 













/**
 * @enumeration IssueSeverity mapping related backend class IssueSeverity.
 */ 
var IssueSeverity = {"ERROR":{"translation":"Error","pluralTranslation":"Errors","id":"ERROR"},"WARNING":{"translation":"Warning","pluralTranslation":"Warnings","id":"WARNING"},"INFO":{"translation":"Information","pluralTranslation":"Information","id":"INFO"},"SUCCESS":{"translation":"Success","pluralTranslation":"Success","id":"SUCCESS"}};
	    inlineGlobalModule.constant("IssueSeverity", IssueSeverity);
		
		 













/**
 * @enumeration IssueType mapping related backend class IssueType.
 */ 
var IssueType = {"EMAIL":{"issueType":"EMAIL","message":"field.must.be.email","translation":"Must be an email address."},"REG_EXP":{"issueType":"REG_EXP","message":"field.must.be.valid.regular.expression","translation":"Must be a valid regular expression."},"MANDATORY":{"issueType":"MANDATORY","message":"field.must.not.be.empty","translation":"Must not be empty."},"URL":{"issueType":"URL","message":"field.must.be.url","translation":"Must be an URL address."},"MAX_LENGTH":{"issueType":"MAX_LENGTH","message":"field.must.have.max.length","translation":"Must have a maximum of \u003Cstrong\u003E{0}\u003C/strong\u003E characters."},"SELECTION":{"issueType":"SELECTION","message":"field.must.be.found.in.possible.choices","translation":"Field must be found in possible choices."},"NUMBER":{"issueType":"NUMBER","message":"field.must.be.number","translation":"Must be a number."},"MAX":{"issueType":"MAX","message":"field.must.be.smaller.than","translation":"Must be smaller than \u003Cstrong\u003E{0}\u003C/strong\u003E."},"FLOAT":{"issueType":"FLOAT","message":"field.must.be.valid.decimal.number","translation":"Must be a valid decimal number."},"MIN_LENGTH":{"issueType":"MIN_LENGTH","message":"field.must.have.min.length","translation":"Length must be greater or equal to \u003Cstrong\u003E{0} characters\u003C/strong\u003E."},"PARSE":{"issueType":"PARSE","message":"field.must.be.formatted.properly","translation":"Field must be formatted properly."},"PATTERN":{"issueType":"PATTERN","message":"field.must.match.pattern","translation":"Must match expected pattern."},"MIN":{"issueType":"MIN","message":"field.must.be.greater.than","translation":"Must be greater than \u003Cstrong\u003E{0}\u003C/strong\u003E."}};
	    inlineGlobalModule.constant("IssueType", IssueType);
	    
	    
		 


















/**
 * loggedUser: Logged user context
 */ 
var loggedUser = null;
	    inlineGlobalModule.constant("loggedUser", loggedUser);

         


















/**
 * chronoUnitTranslations: chronoUnitTranslations
 */ 
var chronoUnitTranslations = {"MILLIS":{"chronoUnit":"MILLIS","singular":"ms","plural":"[en] (DURATION_UNIT_PLURAL) MILLISECOND","abbreviated":"[en] (DURATION_UNIT_ABBREVIATED) MILLISECOND"},"MINUTES":{"chronoUnit":"MINUTES","singular":"Minutes","plural":"minutes","abbreviated":"m"},"SECONDS":{"chronoUnit":"SECONDS","singular":"second","plural":"seconds","abbreviated":"s"},"YEARS":{"chronoUnit":"YEARS","singular":"year","plural":"years","abbreviated":"[en] (DURATION_UNIT_ABBREVIATED) YEAR"},"WEEKS":{"chronoUnit":"WEEKS","singular":"week","plural":"weeks","abbreviated":"[en] (DURATION_UNIT_ABBREVIATED) WEEK"},"MONTHS":{"chronoUnit":"MONTHS","singular":"[en] (DURATION_UNIT) MONTH","plural":"[en] (DURATION_UNIT_PLURAL) MONTH","abbreviated":"[en] (DURATION_UNIT_ABBREVIATED) MONTH"},"DAYS":{"chronoUnit":"DAYS","singular":"day","plural":"days","abbreviated":"d"},"HOURS":{"chronoUnit":"HOURS","singular":"Hours","plural":"hours","abbreviated":"h"}};
        inlineGlobalModule.constant("chronoUnitTranslations", chronoUnitTranslations);
	})();
</script>


        
	    	
				
				
				
				
				
				
				
				
				
				
				
				
				
				
				
				
				
				
				
				
			<script src="/tracesnt/assets/js/journey-log-public-transporter-declaration-module.js"></script>
<script src="/tracesnt/assets/js/remark-module.js"></script>
<script src="/tracesnt/assets/js/operator-module.js"></script>
<script src="/tracesnt/assets/js/classification-section-module.js"></script>
<script src="/tracesnt/assets/js/contact-detail-module.js"></script>
<script src="/tracesnt/assets/js/operator-activity-selection-module.js"></script>
<script src="/tracesnt/assets/js/user-module.js"></script>
<script src="/tracesnt/assets/js/operator-creation-module.js"></script>
<script src="/tracesnt/assets/js/organic-control-body-module.js"></script>
<script src="/tracesnt/assets/js/authority-activity-selection-module.js"></script>
<script src="/tracesnt/assets/js/organic-control-body-activity-selection-module.js"></script>
<script src="/tracesnt/assets/js/authority-module.js"></script>
<script src="/tracesnt/assets/js/document-type-permission-module.js"></script>
<script src="/tracesnt/assets/js/unlocode-module.js"></script>
<script src="/tracesnt/assets/js/dialog-module.js"></script>
<script src="/tracesnt/assets/js/operator-activity-reference-box-module.js"></script>
<script src="/tracesnt/assets/js/reference-outdated-revision-module.js"></script>
<script src="/tracesnt/assets/js/operator-duplicate-selector-module.js"></script>
<script src="/tracesnt/assets/js/operator-address-selector-module.js"></script>
<script src="/tracesnt/assets/js/address-selector-module.js"></script>


		
			<script>
		
				/**
				 * Declare the local module.
				 * This module contains local injection dependencies that the loaded Angular modules could require.
				 */
				(function () {
					'use strict';
		
					var localModule = angular.module("localModule", ["inlineGlobalModule", "journeyLogPublicTransporterDeclarationModule"]);
					localModule.run(["translator", "securityService", function (translator, securityService) {
						// Append all translations related to Journey Logs
						






translator.translateMap({"journey.log.edit.anomaly.title":"Anomalies","journey.log.edit.checking.point.selection.modal.title":"Select checking point","journey.log.edit.consignment.arrival.date.time.chosen.time.zone.origin":"Arrival date time zone of origin","journey.log.edit.created.by.x.on.y":"Created by {0} on {1}.","journey.log.edit.draft.planning.successfully.created":"Journey log successfully created","journey.log.edit.draft.planning.successfully.updated":"Journey log successfully updated","journey.log.edit.history.title":"History","journey.log.edit.journey.log.title":"Edit {0}","journey.log.edit.keeper.selection.modal.title":"Select keeper","journey.log.edit.observation.place.selection.modal.title":"Select observation place","journey.log.edit.organiser.selection.modal.title":"Select organiser","journey.log.edit.place.of.departure.selection.modal.title":"Select place of departure","journey.log.edit.place.selection.modal.title":"Select rest place, transfer place of control post","journey.log.edit.planning.add.exit.point":"Add exit point","journey.log.edit.planning.add.place":"Add rest place, transfer place or control post","journey.log.edit.planning.add.rest.place":"Add rest place","journey.log.edit.planning.add.species":"Add species","journey.log.edit.planning.add.transfer.place":"Add transfer place","journey.log.edit.planning.add.transfer.point":"Add transfer point","journey.log.edit.planning.modify.species":"Modify species","journey.log.edit.planning.title":"Planning","journey.log.edit.select.commodities.modal.title":"Select Journey Log Commodities","journey.log.edit.transporter.declaration.add.exit.point":"Add exit point","journey.log.edit.transporter.declaration.add.place":"Add itinerary waypoint"});

						






translator.translateMap({"country.selector.any.country":"Any Country","country.selector.filter.all":"All countries","country.selector.filter.country.list":"Filter country list","country.selector.filter.in.country.group":"In \u003Cstrong\u003E{0}\u003C/strong\u003E","country.selector.filter.not.in.any.groups":"Not in any group","country.selector.no.country.selection":"No country selection"});

						






translator.translateMap({"generic.select":"Select"});

		
					}]);
					
					 


















/**
 * countries: Countries
 */ 
var countries = [{"translation":"Afghanistan","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{4})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[6,4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["ps"],"TIME_ZONES":{"timeZones":["Asia/Kabul"],"defaultTimeZone":"Asia/Kabul"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["AF"],"countryGroups":[],"iso31661NumericCode":"004","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"AF"},{"translation":"Albania","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{4})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[7,6,4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["sq"],"TIME_ZONES":{"timeZones":["Europe/Tirane"],"defaultTimeZone":"Europe/Tirane"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["AL"],"countryGroups":[],"iso31661NumericCode":"008","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"AL"},{"translation":"Algeria","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4,5],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["ar"],"TIME_ZONES":{"timeZones":["Africa/Algiers"],"defaultTimeZone":"Africa/Algiers"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["DZ"],"countryGroups":[],"iso31661NumericCode":"012","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"DZ"},{"translation":"American Samoa","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"((AS)?[\\-\\s]?\\d{4})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en","sm"],"TIME_ZONES":{"timeZones":["Pacific/Pago_Pago"],"defaultTimeZone":"Pacific/Pago_Pago"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["AS"],"countryGroups":[],"iso31661NumericCode":"016","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"AS"},{"translation":"Andorra","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{3})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[3],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["ca"],"TIME_ZONES":{"timeZones":["Europe/Andorra"],"defaultTimeZone":"Europe/Andorra"},"ADDITIONAL_CLASSIFICATION_SECTIONS":["BOVINE_HOLDINGS","ASSEMBLY_OPERATIONS_FOR_UNGULATES","RESPONSIBLE_FOR_THE_LOAD","CERVID_HOLDINGS","STORAGE_OF_DERIVED_PRODUCTS_EU","DOGS_CATS_AND_FERRETS_ESTABLISHMENTS","WILD_GAME_MEAT_EU","ASSEMBLY_CENTRES_UNGULATES","ADM_ESTABLISHMENT","GELATINE_EU","HONEYBEES_ESTABLISHMENTS","ASSEMBLY_CENTRES_EQUIDAE","OLEOCHEMICAL_PLANTS_EU","COMPOSTING_PLANTS_EU","POULTRY_ESTABLISHMENTS_FOR_HATCHING_EGGS","ASSEMBLY_OPERATIONS_FOR_POULTRY","FISHERY_PRODUCTS_EU","EMBRYO_COLLECTION_AND_PRODUCTION_TEAMS","COLLECTION_CENTRES_EU","GENERAL_ACTIVITY_ESTABLISHMENT","ASSEMBLY_CENTRES","ORGANIC_FERTILISERS_OR_SOIL_IMPROVERS_EU","PROCESSING_PLANTS_EU","MEAT_PRODUCTS_EU","MINCED_MEAT_EU","PORCINE_HOLDINGS","CONTROL_POSTS","AQUACULTURE_DISEASE_CONTROL","ANIMAL_BYPRODUCTS_OR_DERIVED_PRODUCTS_FOR_PURPOSES_OUTSIDE_THE_FEED_CHAIN_EU","ADM_DELEGATED_BODY","AQUACULTURE_APPROVED_ESTABLISHMENTS","ESTABLISHMENTS_FOR_POULTRY","TPA","REGISTERED_TRANSPORTER","MPA_REGISTERED_RACE_HORSES","OTHER_ANIMAL_OPERATORS","ANIMAL_ACT","PETFOOD_PLANTS_EU","ASSEMBLY_CENTRES_CATS_DOGS_AND_FERRETS","FROGS_LEGS_AND_SNAILS_EU","ASSEMBLY_CENTRES_POULTRY","ADM_TRANSPORTER","AQUACULTURE_APPROVED_GROUP_OF_ESTABLISHMENTS","OVINE_CAPRINE_HOLDINGS","MEAT_FROM_POULTRY_AND_LAGOMORPHS_EU","OTHER_UNGULATES_HOLDINGS","QUARANTINE","OTHER_REGISTERED_OPERATORS_EU","BUMBLE_BEES_OPEN_ESTABLISHMENTS","HATCHERIES","DEALERS","REGISTERED_USERS_OF_ANIMAL_BYPRODUCTS_AND_DERIVED_PRODUCT_FOR_SPECIFIC_PURPOSES_EU","RENDERED_ANIMAL_FATS_AND_GREAVES_EU","CONFINED_ESTABLISHMENTS","MEAT_OF_DOMESTIC_UNGULATES_EU","TRAVELLING_CIRCUS","AQUACULTURE_REGISTERED_ESTABLISHMENTS","EGGS_AND_EGG_PRODUCTS_EU","BUMBLE_BEES_ISOLATED_ESTABLISHMENTS","EQUINE_HOLDING","GERMINAL_PRODUCT_ESTABLISHMENTS_OTHER_ANIMALS","INTERMEDIATE_ACTIVITIES_AND_PLANTS_STORING_ANIMAL_BYPRODUCTS_EU","GERMINAL_PRODUCT_ESTABLISHMENTS_CONFINED_ANIMALS","AQUACULTURE_REGISTERED_GROUP_OF_ESTABLISHMENTS","INCINERATION_COINCINERATION_COMBUSTION_PLANTS_EU","POULTRY_ESTABLISHMENTS_FOR_SLAUGHTER","LIVE_BIVALVE_MOLLUSCS_EU","SEMEN_COLLECTION_AND_STORAGE_CENTRES","AUTHORIZED_TRANSPORTER_TYPE_I","ANIMAL_SHELTERS","RAW_MILK_EU","AQUACULTURE_HOLDINGS","CAMELID_HOLDINGS","MEAT_OF_FARMED_GAME_EU","AUTHORIZED_TRANSPORTER_TYPE_II"]},"locationCountryCodes":["AD"],"countryGroups":[],"iso31661NumericCode":"020","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"AD"},{"translation":"Angola","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["pt"],"TIME_ZONES":{"timeZones":["Africa/Lagos"],"defaultTimeZone":"Africa/Lagos"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["AO"],"countryGroups":[],"iso31661NumericCode":"024","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"AO"},{"translation":"Anguilla","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["America/Port_of_Spain"],"defaultTimeZone":"America/Port_of_Spain"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["AI"],"countryGroups":[],"iso31661NumericCode":"660","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"AI"},{"translation":"Antarctica","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["Antarctica/Casey","Antarctica/Davis","Antarctica/DumontDUrville","Antarctica/Mawson","Antarctica/Palmer","Antarctica/Rothera","Antarctica/Syowa","Antarctica/Troll","Antarctica/Vostok","Pacific/Auckland"],"defaultTimeZone":"Antarctica/Casey"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["AQ"],"countryGroups":[],"iso31661NumericCode":"010","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"AQ"},{"translation":"Antigua and Barbuda","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[1],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["America/Port_of_Spain"],"defaultTimeZone":"America/Port_of_Spain"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["AG"],"countryGroups":[],"iso31661NumericCode":"028","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"AG"},{"translation":"Argentina","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"([\\d\\s\\-]+)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4,5],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["es"],"TIME_ZONES":{"timeZones":["America/Argentina/Buenos_Aires","America/Argentina/Cordoba","America/Argentina/Salta","America/Argentina/Jujuy","America/Argentina/Tucuman","America/Argentina/Catamarca","America/Argentina/La_Rioja","America/Argentina/San_Juan","America/Argentina/Mendoza","America/Argentina/San_Luis","America/Argentina/Rio_Gallegos","America/Argentina/Ushuaia"],"defaultTimeZone":"America/Argentina/Buenos_Aires"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["AR"],"countryGroups":[],"iso31661NumericCode":"032","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"AR"},{"translation":"Armenia","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"([\\d\\s\\-]+)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["hy"],"TIME_ZONES":{"timeZones":["Asia/Yerevan"],"defaultTimeZone":"Asia/Yerevan"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["AM"],"countryGroups":[],"iso31661NumericCode":"051","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"AM"},{"translation":"Aruba","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["nl"],"TIME_ZONES":{"timeZones":["America/Curacao"],"defaultTimeZone":"America/Curacao"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["AW"],"countryGroups":[],"iso31661NumericCode":"533","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"AW"},{"translation":"Australia","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{4})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["Australia/Lord_Howe","Antarctica/Macquarie","Australia/Hobart","Australia/Currie","Australia/Melbourne","Australia/Sydney","Australia/Broken_Hill","Australia/Brisbane","Australia/Lindeman","Australia/Adelaide","Australia/Darwin","Australia/Perth","Australia/Eucla"],"defaultTimeZone":"Australia/Lord_Howe"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["AU"],"countryGroups":[],"iso31661NumericCode":"036","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"AU"},{"translation":"Austria","regular":true,"memberState":true,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":true,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":true,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{4})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4,6],"EXCLUDED_CLASSIFICATION_SECTIONS":["ADM_DELEGATED_BODY","RETAIL_MOVEMENT_SCHEME","ADM_TRANSPORTER","ADM_ESTABLISHMENT"],"LANGUAGE_CODES":["de"],"TIME_ZONES":{"timeZones":["Europe/Vienna"],"defaultTimeZone":"Europe/Vienna"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["AT"],"countryGroups":[{"acronymTranslation":"EU","translation":"European Union","referenceUrl":"http://en.wikipedia.org/wiki/European_Union","id":"EU"},{"acronymTranslation":"EEA","translation":"European Economic Area","referenceUrl":"http://en.wikipedia.org/wiki/European_Economic_Area","id":"EEA"},{"acronymTranslation":"Schengen Area","translation":"Schengen Area","referenceUrl":"http://en.wikipedia.org/wiki/Schengen_Area","id":"SCHENGEN_AREA"}],"iso31661NumericCode":"040","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"AT"},{"translation":"Azerbaijan","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\w*\\s?\\d{4})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[3],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["az"],"TIME_ZONES":{"timeZones":["Asia/Baku"],"defaultTimeZone":"Asia/Baku"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["AZ"],"countryGroups":[],"iso31661NumericCode":"031","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"AZ"},{"translation":"Bahamas","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["America/Nassau"],"defaultTimeZone":"America/Nassau"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["BS"],"countryGroups":[],"iso31661NumericCode":"044","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"BS"},{"translation":"Bahrain","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"([\\d\\s\\-]+)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["ar"],"TIME_ZONES":{"timeZones":["Asia/Qatar"],"defaultTimeZone":"Asia/Qatar"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["BH"],"countryGroups":[],"iso31661NumericCode":"048","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"BH"},{"translation":"Bangladesh","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{4})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[3,4,5],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["bn"],"TIME_ZONES":{"timeZones":["Asia/Dhaka"],"defaultTimeZone":"Asia/Dhaka"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["BD"],"countryGroups":[],"iso31661NumericCode":"050","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"BD"},{"translation":"Barbados","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"((BB)?[\\-\\s]?\\d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["America/Barbados"],"defaultTimeZone":"America/Barbados"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["BB"],"countryGroups":[],"iso31661NumericCode":"052","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"BB"},{"translation":"Belarus","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"([\\d\\s\\-]+)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4,6,1],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["be","ru"],"TIME_ZONES":{"timeZones":["Europe/Minsk"],"defaultTimeZone":"Europe/Minsk"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["BY"],"countryGroups":[],"iso31661NumericCode":"112","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"BY"},{"translation":"Belgium","regular":true,"memberState":true,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":true,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":true,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{4})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4,6],"EXCLUDED_CLASSIFICATION_SECTIONS":["ADM_DELEGATED_BODY","RETAIL_MOVEMENT_SCHEME","ADM_TRANSPORTER","ADM_ESTABLISHMENT"],"LANGUAGE_CODES":["nl","fr","de"],"TIME_ZONES":{"timeZones":["Europe/Brussels"],"defaultTimeZone":"Europe/Brussels"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["BE"],"countryGroups":[{"acronymTranslation":"EU","translation":"European Union","referenceUrl":"http://en.wikipedia.org/wiki/European_Union","id":"EU"},{"acronymTranslation":"EEA","translation":"European Economic Area","referenceUrl":"http://en.wikipedia.org/wiki/European_Economic_Area","id":"EEA"},{"acronymTranslation":"Schengen Area","translation":"Schengen Area","referenceUrl":"http://en.wikipedia.org/wiki/Schengen_Area","id":"SCHENGEN_AREA"}],"iso31661NumericCode":"056","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"BE"},{"translation":"Belize","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["America/Belize"],"defaultTimeZone":"America/Belize"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["BZ"],"countryGroups":[],"iso31661NumericCode":"084","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"BZ"},{"translation":"Benin","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["fr"],"TIME_ZONES":{"timeZones":["Africa/Lagos"],"defaultTimeZone":"Africa/Lagos"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["BJ"],"countryGroups":[],"iso31661NumericCode":"204","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"BJ"},{"translation":"Bermuda","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["Atlantic/Bermuda"],"defaultTimeZone":"Atlantic/Bermuda"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["BM"],"countryGroups":[],"iso31661NumericCode":"060","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"BM"},{"translation":"Bhutan","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[3,4,5],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["dz"],"TIME_ZONES":{"timeZones":["Asia/Thimphu"],"defaultTimeZone":"Asia/Thimphu"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["BT"],"countryGroups":[],"iso31661NumericCode":"064","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"BT"},{"translation":"Bolivia","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4,6],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["es","ay","qu","gn"],"TIME_ZONES":{"timeZones":["America/La_Paz"],"defaultTimeZone":"America/La_Paz"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["BO"],"countryGroups":[],"iso31661NumericCode":"068","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"BO"},{"translation":"Bonaire, Sint Eustatius and Saba","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["nl","en"],"TIME_ZONES":{"timeZones":["America/Curacao"],"defaultTimeZone":"America/Curacao"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["BQ"],"countryGroups":[],"iso31661NumericCode":"535","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"BQ"},{"translation":"Bosnia and Herzegovina","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"([\\d\\s\\-]+)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4,5],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["bs","hr","sr"],"TIME_ZONES":{"timeZones":["Europe/Belgrade"],"defaultTimeZone":"Europe/Belgrade"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["BA"],"countryGroups":[],"iso31661NumericCode":"070","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"BA"},{"translation":"Botswana","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["Africa/Maputo"],"defaultTimeZone":"Africa/Maputo"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["BW"],"countryGroups":[],"iso31661NumericCode":"072","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"BW"},{"translation":"Bouvet Island","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["no"],"TIME_ZONES":{"timeZones":["Africa/Abidjan","Etc/GMT","Europe/London"],"defaultTimeZone":"Africa/Abidjan"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["BV"],"countryGroups":[],"iso31661NumericCode":"074","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"BV"},{"translation":"Brazil","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"([\\d\\s\\-]+)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[3,4,5],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["pt"],"TIME_ZONES":{"timeZones":["America/Noronha","America/Belem","America/Fortaleza","America/Recife","America/Araguaina","America/Maceio","America/Bahia","America/Sao_Paulo","America/Campo_Grande","America/Cuiaba","America/Santarem","America/Porto_Velho","America/Boa_Vista","America/Manaus","America/Eirunepe","America/Rio_Branco"],"defaultTimeZone":"America/Noronha"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["BR"],"countryGroups":[],"iso31661NumericCode":"076","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"BR"},{"translation":"British Indian Ocean Territory","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\w+\\d(\\w/\\d)?)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["Indian/Chagos"],"defaultTimeZone":"Indian/Chagos"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["IO"],"countryGroups":[],"iso31661NumericCode":"086","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"IO"},{"translation":"British Virgin Islands","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"((VG)?[\\-\\s]?\\d{4})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["America/Port_of_Spain"],"defaultTimeZone":"America/Port_of_Spain"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["VG"],"countryGroups":[],"iso31661NumericCode":"092","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"VG"},{"translation":"Brunei","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\w{2}d{4})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["ms","en"],"TIME_ZONES":{"timeZones":["Asia/Brunei"],"defaultTimeZone":"Asia/Brunei"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["BN"],"countryGroups":[],"iso31661NumericCode":"096","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"BN"},{"translation":"Bulgaria","regular":true,"memberState":true,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":true,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":true,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"([\\d\\s\\-]+)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[6],"EXCLUDED_CLASSIFICATION_SECTIONS":["ADM_DELEGATED_BODY","RETAIL_MOVEMENT_SCHEME","ADM_TRANSPORTER","ADM_ESTABLISHMENT"],"LANGUAGE_CODES":["bg"],"TIME_ZONES":{"timeZones":["Europe/Sofia"],"defaultTimeZone":"Europe/Sofia"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["BG"],"countryGroups":[{"acronymTranslation":"EU","translation":"European Union","referenceUrl":"http://en.wikipedia.org/wiki/European_Union","id":"EU"},{"acronymTranslation":"EEA","translation":"European Economic Area","referenceUrl":"http://en.wikipedia.org/wiki/European_Economic_Area","id":"EEA"}],"iso31661NumericCode":"100","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"BG"},{"translation":"Burkina Faso","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["fr"],"TIME_ZONES":{"timeZones":["Africa/Abidjan"],"defaultTimeZone":"Africa/Abidjan"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["BF"],"countryGroups":[],"iso31661NumericCode":"854","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"BF"},{"translation":"Burundi","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["rn","fr","en"],"TIME_ZONES":{"timeZones":["Africa/Maputo"],"defaultTimeZone":"Africa/Maputo"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["BI"],"countryGroups":[],"iso31661NumericCode":"108","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"BI"},{"translation":"Cabo Verde","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{4})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[6],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["pt"],"TIME_ZONES":{"timeZones":["Atlantic/Cape_Verde"],"defaultTimeZone":"Atlantic/Cape_Verde"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["CV"],"countryGroups":[],"iso31661NumericCode":"132","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"CV"},{"translation":"Cambodia","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["km"],"TIME_ZONES":{"timeZones":["Asia/Bangkok"],"defaultTimeZone":"Asia/Bangkok"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["KH"],"countryGroups":[],"iso31661NumericCode":"116","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"KH"},{"translation":"Cameroon","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4,6],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["fr","en"],"TIME_ZONES":{"timeZones":["Africa/Lagos"],"defaultTimeZone":"Africa/Lagos"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["CM"],"countryGroups":[],"iso31661NumericCode":"120","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"CM"},{"translation":"Canada","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\w\\d\\w\\s*\\d\\w\\d)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[3,4,5],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en","fr"],"TIME_ZONES":{"timeZones":["America/Atikokan","America/Creston","America/Dawson"],"defaultTimeZone":"America/Atikokan"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["CA"],"countryGroups":[],"iso31661NumericCode":"124","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"CA"},{"translation":"Cayman Islands","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"CY\\d[\\-\\s]?\\d{4}","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["America/Panama"],"defaultTimeZone":"America/Panama"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["KY"],"countryGroups":[],"iso31661NumericCode":"136","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"KY"},{"translation":"Central African Republic","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["fr","sg"],"TIME_ZONES":{"timeZones":["Africa/Lagos"],"defaultTimeZone":"Africa/Lagos"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["CF"],"countryGroups":[],"iso31661NumericCode":"140","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"CF"},{"translation":"Chad","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4,6],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["fr","ar"],"TIME_ZONES":{"timeZones":["Africa/Ndjamena"],"defaultTimeZone":"Africa/Ndjamena"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["TD"],"countryGroups":[],"iso31661NumericCode":"148","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"TD"},{"translation":"Chile","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{7})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4,6],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["es"],"TIME_ZONES":{"timeZones":["America/Santiago","America/Punta_Arenas","Pacific/Easter"],"defaultTimeZone":"America/Santiago"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["CL"],"countryGroups":[],"iso31661NumericCode":"152","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"CL"},{"translation":"China","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{6})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[3,4,5],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["zh"],"TIME_ZONES":{"timeZones":["Asia/Shanghai"],"defaultTimeZone":"Asia/Shanghai"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["CN"],"countryGroups":[],"iso31661NumericCode":"156","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"CN"},{"translation":"Christmas Island","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{4})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["Indian/Christmas"],"defaultTimeZone":"Indian/Christmas"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["CX"],"countryGroups":[],"iso31661NumericCode":"162","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"CX"},{"translation":"Cocos (Keeling) Islands","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{4})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["Indian/Cocos"],"defaultTimeZone":"Indian/Cocos"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["CC"],"countryGroups":[],"iso31661NumericCode":"166","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"CC"},{"translation":"Colombia","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{6})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["es"],"TIME_ZONES":{"timeZones":["America/Bogota"],"defaultTimeZone":"America/Bogota"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["CO"],"countryGroups":[],"iso31661NumericCode":"170","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"CO"},{"translation":"Comoros","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["ar","fr"],"TIME_ZONES":{"timeZones":["Africa/Nairobi"],"defaultTimeZone":"Africa/Nairobi"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["KM"],"countryGroups":[],"iso31661NumericCode":"174","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"KM"},{"translation":"Congo","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["fr"],"TIME_ZONES":{"timeZones":["Africa/Lagos"],"defaultTimeZone":"Africa/Lagos"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["CG"],"countryGroups":[],"iso31661NumericCode":"178","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"CG"},{"translation":"Cook Islands","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["Pacific/Rarotonga"],"defaultTimeZone":"Pacific/Rarotonga"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["CK"],"countryGroups":[],"iso31661NumericCode":"184","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"CK"},{"translation":"Costa Rica","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"([\\d\\s\\-]+)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["es"],"TIME_ZONES":{"timeZones":["America/Costa_Rica"],"defaultTimeZone":"America/Costa_Rica"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["CR"],"countryGroups":[],"iso31661NumericCode":"188","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"CR"},{"translation":"Croatia","regular":true,"memberState":true,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":true,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":true,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"([\\d\\s\\-]+)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[6],"EXCLUDED_CLASSIFICATION_SECTIONS":["ADM_DELEGATED_BODY","RETAIL_MOVEMENT_SCHEME","ADM_TRANSPORTER","ADM_ESTABLISHMENT"],"LANGUAGE_CODES":["hr"],"TIME_ZONES":{"timeZones":["Europe/Belgrade"],"defaultTimeZone":"Europe/Belgrade"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["HR"],"countryGroups":[{"acronymTranslation":"EU","translation":"European Union","referenceUrl":"http://en.wikipedia.org/wiki/European_Union","id":"EU"},{"acronymTranslation":"EEA","translation":"European Economic Area","referenceUrl":"http://en.wikipedia.org/wiki/European_Economic_Area","id":"EEA"}],"iso31661NumericCode":"191","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"HR"},{"translation":"Cuba","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["es"],"TIME_ZONES":{"timeZones":["America/Havana"],"defaultTimeZone":"America/Havana"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["CU"],"countryGroups":[],"iso31661NumericCode":"192","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"CU"},{"translation":"Curaçao","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{4})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["nl","en"],"TIME_ZONES":{"timeZones":["America/Curacao"],"defaultTimeZone":"America/Curacao"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["CW"],"countryGroups":[],"iso31661NumericCode":"531","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"CW"},{"translation":"Cyprus","regular":true,"memberState":true,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":true,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":true,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"([\\d\\s\\-]+)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[6,4,3],"EXCLUDED_CLASSIFICATION_SECTIONS":["ADM_DELEGATED_BODY","RETAIL_MOVEMENT_SCHEME","ADM_TRANSPORTER","ADM_ESTABLISHMENT"],"LANGUAGE_CODES":["el","tr"],"TIME_ZONES":{"timeZones":["Asia/Nicosia","Asia/Famagusta"],"defaultTimeZone":"Asia/Nicosia"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["CY"],"countryGroups":[{"acronymTranslation":"EU","translation":"European Union","referenceUrl":"http://en.wikipedia.org/wiki/European_Union","id":"EU"},{"acronymTranslation":"EEA","translation":"European Economic Area","referenceUrl":"http://en.wikipedia.org/wiki/European_Economic_Area","id":"EEA"}],"iso31661NumericCode":"196","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"CY"},{"translation":"Czechia","regular":true,"memberState":true,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":true,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":true,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{3}\\s*\\d{2})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4,6],"EXCLUDED_CLASSIFICATION_SECTIONS":["ADM_DELEGATED_BODY","RETAIL_MOVEMENT_SCHEME","ADM_TRANSPORTER","ADM_ESTABLISHMENT"],"LANGUAGE_CODES":["cs"],"TIME_ZONES":{"timeZones":["Europe/Prague"],"defaultTimeZone":"Europe/Prague"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["CZ"],"countryGroups":[{"acronymTranslation":"EU","translation":"European Union","referenceUrl":"http://en.wikipedia.org/wiki/European_Union","id":"EU"},{"acronymTranslation":"EEA","translation":"European Economic Area","referenceUrl":"http://en.wikipedia.org/wiki/European_Economic_Area","id":"EEA"},{"acronymTranslation":"Schengen Area","translation":"Schengen Area","referenceUrl":"http://en.wikipedia.org/wiki/Schengen_Area","id":"SCHENGEN_AREA"}],"iso31661NumericCode":"203","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"CZ"},{"translation":"Côte d’Ivoire","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["fr"],"TIME_ZONES":{"timeZones":["Africa/Abidjan"],"defaultTimeZone":"Africa/Abidjan"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["CI"],"countryGroups":[],"iso31661NumericCode":"384","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"CI"},{"translation":"Democratic Republic of the Congo","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["fr"],"TIME_ZONES":{"timeZones":["Africa/Maputo","Africa/Lagos"],"defaultTimeZone":"Africa/Maputo"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["CD"],"countryGroups":[],"iso31661NumericCode":"180","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"CD"},{"translation":"Denmark","regular":true,"memberState":true,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":true,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":true,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"([\\d\\s\\-]+)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4,7],"EXCLUDED_CLASSIFICATION_SECTIONS":["ADM_DELEGATED_BODY","RETAIL_MOVEMENT_SCHEME","ADM_TRANSPORTER","ADM_ESTABLISHMENT"],"LANGUAGE_CODES":["da"],"TIME_ZONES":{"timeZones":["Europe/Copenhagen"],"defaultTimeZone":"Europe/Copenhagen"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["DK"],"countryGroups":[{"acronymTranslation":"EU","translation":"European Union","referenceUrl":"http://en.wikipedia.org/wiki/European_Union","id":"EU"},{"acronymTranslation":"EEA","translation":"European Economic Area","referenceUrl":"http://en.wikipedia.org/wiki/European_Economic_Area","id":"EEA"},{"acronymTranslation":"Schengen Area","translation":"Schengen Area","referenceUrl":"http://en.wikipedia.org/wiki/Schengen_Area","id":"SCHENGEN_AREA"}],"iso31661NumericCode":"208","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"DK"},{"translation":"Djibouti","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4,6],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["fr","ar"],"TIME_ZONES":{"timeZones":["Africa/Nairobi"],"defaultTimeZone":"Africa/Nairobi"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["DJ"],"countryGroups":[],"iso31661NumericCode":"262","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"DJ"},{"translation":"Dominica","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["America/Port_of_Spain"],"defaultTimeZone":"America/Port_of_Spain"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["DM"],"countryGroups":[],"iso31661NumericCode":"212","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"DM"},{"translation":"Dominican Republic","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["es"],"TIME_ZONES":{"timeZones":["America/Santo_Domingo"],"defaultTimeZone":"America/Santo_Domingo"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["DO"],"countryGroups":[],"iso31661NumericCode":"214","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"DO"},{"translation":"Ecuador","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{6})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["es"],"TIME_ZONES":{"timeZones":["America/Guayaquil","Pacific/Galapagos"],"defaultTimeZone":"America/Guayaquil"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["EC"],"countryGroups":[],"iso31661NumericCode":"218","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"EC"},{"translation":"Egypt","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["ar"],"TIME_ZONES":{"timeZones":["Africa/Cairo"],"defaultTimeZone":"Africa/Cairo"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["EG"],"countryGroups":[],"iso31661NumericCode":"818","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"EG"},{"translation":"El Salvador","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["es"],"TIME_ZONES":{"timeZones":["America/El_Salvador"],"defaultTimeZone":"America/El_Salvador"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["SV"],"countryGroups":[],"iso31661NumericCode":"222","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"SV"},{"translation":"Equatorial Guinea","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[3,4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["es","fr","pt"],"TIME_ZONES":{"timeZones":["Africa/Lagos"],"defaultTimeZone":"Africa/Lagos"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["GQ"],"countryGroups":[],"iso31661NumericCode":"226","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"GQ"},{"translation":"Eritrea","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["ti","ar","en"],"TIME_ZONES":{"timeZones":["Africa/Nairobi"],"defaultTimeZone":"Africa/Nairobi"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["ER"],"countryGroups":[],"iso31661NumericCode":"232","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"ER"},{"translation":"Estonia","regular":true,"memberState":true,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":true,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":true,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"([\\d\\s\\-]+)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[6],"EXCLUDED_CLASSIFICATION_SECTIONS":["ADM_DELEGATED_BODY","RETAIL_MOVEMENT_SCHEME","ADM_TRANSPORTER","ADM_ESTABLISHMENT"],"LANGUAGE_CODES":["et"],"TIME_ZONES":{"timeZones":["Europe/Tallinn"],"defaultTimeZone":"Europe/Tallinn"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["EE"],"countryGroups":[{"acronymTranslation":"EU","translation":"European Union","referenceUrl":"http://en.wikipedia.org/wiki/European_Union","id":"EU"},{"acronymTranslation":"EEA","translation":"European Economic Area","referenceUrl":"http://en.wikipedia.org/wiki/European_Economic_Area","id":"EEA"},{"acronymTranslation":"Schengen Area","translation":"Schengen Area","referenceUrl":"http://en.wikipedia.org/wiki/Schengen_Area","id":"SCHENGEN_AREA"}],"iso31661NumericCode":"233","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"EE"},{"translation":"Eswatini","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\w\\d\\d\\d)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en","ss"],"TIME_ZONES":{"timeZones":["Africa/Johannesburg"],"defaultTimeZone":"Africa/Johannesburg"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["SZ"],"countryGroups":[],"iso31661NumericCode":"748","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"SZ"},{"translation":"Ethiopia","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{4})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4,5],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["am"],"TIME_ZONES":{"timeZones":["Africa/Nairobi"],"defaultTimeZone":"Africa/Nairobi"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["ET"],"countryGroups":[],"iso31661NumericCode":"231","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"ET"},{"translation":"Falkland Islands","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\w+\\d(\\w/\\d)?)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[1],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["Atlantic/Stanley"],"defaultTimeZone":"Atlantic/Stanley"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["FK"],"countryGroups":[],"iso31661NumericCode":"238","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"FK"},{"translation":"Faroes","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":true,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"([\\d\\s\\-]+)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[2,4],"EXCLUDED_CLASSIFICATION_SECTIONS":["FISHERY_PRODUCTS"],"LANGUAGE_CODES":["da","fo"],"TIME_ZONES":{"timeZones":["Atlantic/Faroe"],"defaultTimeZone":"Atlantic/Faroe"},"ADDITIONAL_CLASSIFICATION_SECTIONS":["RESPONSIBLE_FOR_THE_LOAD","STORAGE_OF_DERIVED_PRODUCTS_EU","EQUINE_HOLDING","INTERMEDIATE_ACTIVITIES_AND_PLANTS_STORING_ANIMAL_BYPRODUCTS_EU","LIVE_BIVALVE_MOLLUSCS_EU","AUTHORIZED_TRANSPORTER_TYPE_I","OTHER_REGISTERED_OPERATORS_EU","FISHERY_PRODUCTS_EU","REGISTERED_TRANSPORTER","GENERAL_ACTIVITY_ESTABLISHMENT","COLLECTION_CENTRES_EU","OTHER_ANIMAL_OPERATORS","PETFOOD_PLANTS_EU","PROCESSING_PLANTS_EU","AUTHORIZED_TRANSPORTER_TYPE_II"]},"locationCountryCodes":["FO"],"countryGroups":[],"iso31661NumericCode":"234","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"FO"},{"translation":"Fiji","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en","fj"],"TIME_ZONES":{"timeZones":["Pacific/Fiji"],"defaultTimeZone":"Pacific/Fiji"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["FJ"],"countryGroups":[],"iso31661NumericCode":"242","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"FJ"},{"translation":"Finland","regular":true,"memberState":true,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":true,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":true,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"([\\d\\s\\-]+)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[3,4,6,5],"EXCLUDED_CLASSIFICATION_SECTIONS":["ADM_DELEGATED_BODY","RETAIL_MOVEMENT_SCHEME","ADM_TRANSPORTER","ADM_ESTABLISHMENT"],"LANGUAGE_CODES":["fi","sv"],"TIME_ZONES":{"timeZones":["Europe/Helsinki"],"defaultTimeZone":"Europe/Helsinki"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["AX","FI"],"countryGroups":[{"acronymTranslation":"EU","translation":"European Union","referenceUrl":"http://en.wikipedia.org/wiki/European_Union","id":"EU"},{"acronymTranslation":"EEA","translation":"European Economic Area","referenceUrl":"http://en.wikipedia.org/wiki/European_Economic_Area","id":"EEA"},{"acronymTranslation":"Schengen Area","translation":"Schengen Area","referenceUrl":"http://en.wikipedia.org/wiki/Schengen_Area","id":"SCHENGEN_AREA"}],"iso31661NumericCode":"246","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"},{"translation":"UN/LOCODE","additionalUnlocodeCountryCodes":[{"translation":"Åland Islands","countryCodeUsages":[{"translation":"None","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"NONE"}],"countryGroups":[],"regular":false,"locationCountryCodes":["AX"],"iso31661NumericCode":"248","code":"AX"}],"restrictedLocodes":[],"typeId":"UNLOCODE"}],"code":"FI"},{"translation":"France","regular":true,"memberState":true,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":true,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":true,"HAS_POSTAL_CODE_EXTENSION":true,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5}|\\d{5}[\\s]CEDEX|\\d{5}[\\s]CEDEX[\\s]\\d*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[3,4,5,6],"EXCLUDED_CLASSIFICATION_SECTIONS":["RETAIL_MOVEMENT_SCHEME"],"LANGUAGE_CODES":["fr"],"TIME_ZONES":{"timeZones":["Europe/Paris"],"defaultTimeZone":"Europe/Paris"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["BL","GF","GP","MF","PM","MQ","RE","YT","FR"],"countryGroups":[{"acronymTranslation":"EU","translation":"European Union","referenceUrl":"http://en.wikipedia.org/wiki/European_Union","id":"EU"},{"acronymTranslation":"EEA","translation":"European Economic Area","referenceUrl":"http://en.wikipedia.org/wiki/European_Economic_Area","id":"EEA"},{"acronymTranslation":"Schengen Area","translation":"Schengen Area","referenceUrl":"http://en.wikipedia.org/wiki/Schengen_Area","id":"SCHENGEN_AREA"}],"iso31661NumericCode":"250","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"},{"translation":"UN/LOCODE","additionalUnlocodeCountryCodes":[{"translation":"French Guyana","countryCodeUsages":[{"translation":"ePhyto","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"EPHYTO"}],"countryGroups":[],"regular":false,"locationCountryCodes":["GF"],"iso31661NumericCode":"254","code":"GF"},{"translation":"Guadeloupe","countryCodeUsages":[{"translation":"ePhyto","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"EPHYTO"}],"countryGroups":[],"regular":false,"locationCountryCodes":["GP"],"iso31661NumericCode":"312","code":"GP"},{"translation":"Martinique","countryCodeUsages":[{"translation":"ePhyto","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"EPHYTO"}],"countryGroups":[],"regular":false,"locationCountryCodes":["MQ"],"iso31661NumericCode":"474","code":"MQ"},{"translation":"Mayotte","countryCodeUsages":[{"translation":"ePhyto","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"EPHYTO"}],"countryGroups":[],"regular":false,"locationCountryCodes":["YT"],"iso31661NumericCode":"175","code":"YT"},{"translation":"Reunion","countryCodeUsages":[{"translation":"ePhyto","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"EPHYTO"}],"countryGroups":[],"regular":false,"locationCountryCodes":["RE"],"iso31661NumericCode":"638","code":"RE"},{"translation":"Saint Barthélemy","countryCodeUsages":[{"translation":"ePhyto","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"EPHYTO"}],"countryGroups":[],"regular":false,"locationCountryCodes":["BL"],"iso31661NumericCode":"652","code":"BL"},{"translation":"Saint Martin","countryCodeUsages":[{"translation":"ePhyto","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"EPHYTO"}],"countryGroups":[],"regular":false,"locationCountryCodes":["MF"],"iso31661NumericCode":"663","code":"MF"},{"translation":"Saint Pierre and Miquelon","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"countryGroups":[],"regular":true,"locationCountryCodes":["PM"],"iso31661NumericCode":"666","code":"PM"}],"restrictedLocodes":[],"typeId":"UNLOCODE"}],"code":"FR"},{"translation":"French Guyana","regular":false,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"[0-9]*","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":null,"defaultTimeZone":null},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["GF"],"countryGroups":[],"iso31661NumericCode":"254","countryCodeUsages":[{"translation":"ePhyto","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"EPHYTO"}],"code":"GF"},{"translation":"French Polynesia","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[7],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["fr"],"TIME_ZONES":{"timeZones":["Pacific/Tahiti"],"defaultTimeZone":"Pacific/Tahiti"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["PF"],"countryGroups":[],"iso31661NumericCode":"258","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"PF"},{"translation":"French Southern and Antarctic Lands","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["fr"],"TIME_ZONES":{"timeZones":["Indian/Reunion","Indian/Kerguelen"],"defaultTimeZone":"Indian/Reunion"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["TF"],"countryGroups":[],"iso31661NumericCode":"260","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"TF"},{"translation":"Gabon","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4,6],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["fr"],"TIME_ZONES":{"timeZones":["Africa/Lagos"],"defaultTimeZone":"Africa/Lagos"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["GA"],"countryGroups":[],"iso31661NumericCode":"266","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"GA"},{"translation":"Georgia","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"([\\d\\s\\-]+)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["ka"],"TIME_ZONES":{"timeZones":["Asia/Tbilisi"],"defaultTimeZone":"Asia/Tbilisi"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["GE"],"countryGroups":[],"iso31661NumericCode":"268","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"GE"},{"translation":"Germany","regular":true,"memberState":true,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":true,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":true,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4,5,6],"EXCLUDED_CLASSIFICATION_SECTIONS":["ADM_DELEGATED_BODY","RETAIL_MOVEMENT_SCHEME","ADM_TRANSPORTER","ADM_ESTABLISHMENT"],"LANGUAGE_CODES":["de"],"TIME_ZONES":{"timeZones":["Europe/Berlin"],"defaultTimeZone":"Europe/Berlin"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["DE"],"countryGroups":[{"acronymTranslation":"EU","translation":"European Union","referenceUrl":"http://en.wikipedia.org/wiki/European_Union","id":"EU"},{"acronymTranslation":"EEA","translation":"European Economic Area","referenceUrl":"http://en.wikipedia.org/wiki/European_Economic_Area","id":"EEA"},{"acronymTranslation":"Schengen Area","translation":"Schengen Area","referenceUrl":"http://en.wikipedia.org/wiki/Schengen_Area","id":"SCHENGEN_AREA"}],"iso31661NumericCode":"276","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"DE"},{"translation":"Ghana","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["Africa/Accra"],"defaultTimeZone":"Africa/Accra"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["GH"],"countryGroups":[],"iso31661NumericCode":"288","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"GH"},{"translation":"Gibraltar","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\w+\\d(\\w/\\d)?)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["Europe/Gibraltar"],"defaultTimeZone":"Europe/Gibraltar"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["GI"],"countryGroups":[],"iso31661NumericCode":"292","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"GI"},{"translation":"Greece","regular":true,"memberState":true,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":true,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":true,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{3}\\s*\\d{2})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[3,4,5,6],"EXCLUDED_CLASSIFICATION_SECTIONS":["ADM_DELEGATED_BODY","RETAIL_MOVEMENT_SCHEME","ADM_TRANSPORTER","ADM_ESTABLISHMENT"],"LANGUAGE_CODES":["el"],"TIME_ZONES":{"timeZones":["Europe/Athens"],"defaultTimeZone":"Europe/Athens"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["GR"],"countryGroups":[{"acronymTranslation":"EU","translation":"European Union","referenceUrl":"http://en.wikipedia.org/wiki/European_Union","id":"EU"},{"acronymTranslation":"EEA","translation":"European Economic Area","referenceUrl":"http://en.wikipedia.org/wiki/European_Economic_Area","id":"EEA"},{"acronymTranslation":"Schengen Area","translation":"Schengen Area","referenceUrl":"http://en.wikipedia.org/wiki/Schengen_Area","id":"SCHENGEN_AREA"}],"iso31661NumericCode":"300","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"GR"},{"translation":"Greenland","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":true,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{4})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[1],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["kl"],"TIME_ZONES":{"timeZones":["America/Godthab","America/Danmarkshavn","America/Scoresbysund","America/Thule"],"defaultTimeZone":"America/Godthab"},"ADDITIONAL_CLASSIFICATION_SECTIONS":["RESPONSIBLE_FOR_THE_LOAD","FISHERY_PRODUCTS_EU","EQUINE_HOLDING"]},"locationCountryCodes":["GL"],"countryGroups":[],"iso31661NumericCode":"304","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"GL"},{"translation":"Grenada","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["America/Port_of_Spain"],"defaultTimeZone":"America/Port_of_Spain"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["GD"],"countryGroups":[],"iso31661NumericCode":"308","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"GD"},{"translation":"Guadeloupe","regular":false,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"[0-9]*","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["America/Port_of_Spain"],"defaultTimeZone":"America/Port_of_Spain"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["GP"],"countryGroups":[],"iso31661NumericCode":"312","countryCodeUsages":[{"translation":"ePhyto","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"EPHYTO"}],"code":"GP"},{"translation":"Guam","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5}[\\-\\s]?\\d{0,4})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en","ch"],"TIME_ZONES":{"timeZones":["Pacific/Guam"],"defaultTimeZone":"Pacific/Guam"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["GU"],"countryGroups":[],"iso31661NumericCode":"316","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"GU"},{"translation":"Guatemala","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["es"],"TIME_ZONES":{"timeZones":["America/Guatemala"],"defaultTimeZone":"America/Guatemala"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["GT"],"countryGroups":[],"iso31661NumericCode":"320","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"GT"},{"translation":"Guernsey","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":true,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[0-9][A-Z]{2}","POSTAL_CODE_PATTERN":"(\\w+\\d(\\w/\\d)?)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en","fr"],"TIME_ZONES":{"timeZones":["Europe/London"],"defaultTimeZone":"Europe/London"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["GG"],"countryGroups":[],"iso31661NumericCode":"831","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"GG"},{"translation":"Guinea","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{3})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["fr"],"TIME_ZONES":{"timeZones":["Africa/Abidjan"],"defaultTimeZone":"Africa/Abidjan"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["GN"],"countryGroups":[],"iso31661NumericCode":"324","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"GN"},{"translation":"Guinea-Bissau","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["pt"],"TIME_ZONES":{"timeZones":["Africa/Bissau"],"defaultTimeZone":"Africa/Bissau"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["GW"],"countryGroups":[],"iso31661NumericCode":"624","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"GW"},{"translation":"Guyana","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["America/Guyana"],"defaultTimeZone":"America/Guyana"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["GY"],"countryGroups":[],"iso31661NumericCode":"328","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"GY"},{"translation":"Haiti","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{4})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["fr","ht"],"TIME_ZONES":{"timeZones":["America/Atikokan","America/Bahia_Banderas"],"defaultTimeZone":"America/Atikokan"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["HT"],"countryGroups":[],"iso31661NumericCode":"332","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"HT"},{"translation":"Heard Island and McDonald Islands","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["+05:00"],"defaultTimeZone":"+05:00"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["HM"],"countryGroups":[],"iso31661NumericCode":"334","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"HM"},{"translation":"Holy See","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"([\\d\\s\\-]+)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["la"],"TIME_ZONES":{"timeZones":["Europe/Rome"],"defaultTimeZone":"Europe/Rome"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["VA"],"countryGroups":[],"iso31661NumericCode":"336","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"VA"},{"translation":"Honduras","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\w{2}d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["es"],"TIME_ZONES":{"timeZones":["America/Tegucigalpa"],"defaultTimeZone":"America/Tegucigalpa"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["HN"],"countryGroups":[],"iso31661NumericCode":"340","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"HN"},{"translation":"Hong Kong","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["Asia/Hong_Kong"],"defaultTimeZone":"Asia/Hong_Kong"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["HK"],"countryGroups":[],"iso31661NumericCode":"344","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"HK"},{"translation":"Hungary","regular":true,"memberState":true,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":true,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":true,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"([\\d\\s\\-]+)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4,5,6],"EXCLUDED_CLASSIFICATION_SECTIONS":["ADM_DELEGATED_BODY","RETAIL_MOVEMENT_SCHEME","ADM_TRANSPORTER","ADM_ESTABLISHMENT"],"LANGUAGE_CODES":["hu"],"TIME_ZONES":{"timeZones":["Europe/Budapest"],"defaultTimeZone":"Europe/Budapest"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["HU"],"countryGroups":[{"acronymTranslation":"EU","translation":"European Union","referenceUrl":"http://en.wikipedia.org/wiki/European_Union","id":"EU"},{"acronymTranslation":"EEA","translation":"European Economic Area","referenceUrl":"http://en.wikipedia.org/wiki/European_Economic_Area","id":"EEA"},{"acronymTranslation":"Schengen Area","translation":"Schengen Area","referenceUrl":"http://en.wikipedia.org/wiki/Schengen_Area","id":"SCHENGEN_AREA"}],"iso31661NumericCode":"348","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"HU"},{"translation":"Iceland","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":true,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":true,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"([\\d\\s\\-]+)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[5,1],"EXCLUDED_CLASSIFICATION_SECTIONS":["ADM_DELEGATED_BODY","ADM_TRANSPORTER","ADM_ESTABLISHMENT"],"LANGUAGE_CODES":["is"],"TIME_ZONES":{"timeZones":["Atlantic/Reykjavik"],"defaultTimeZone":"Atlantic/Reykjavik"},"ADDITIONAL_CLASSIFICATION_SECTIONS":["ANIMAL_EXPORTER","SEMEN_CENTERS","THIRD_COUNTRY_PROFESSIONAL_OPERATORS","EMBRYO_TEAM"]},"locationCountryCodes":["IS"],"countryGroups":[{"acronymTranslation":"EEA","translation":"European Economic Area","referenceUrl":"http://en.wikipedia.org/wiki/European_Economic_Area","id":"EEA"},{"acronymTranslation":"EFTA","translation":"EFTA (European Free Trade Association)","referenceUrl":"http://en.wikipedia.org/wiki/EFTA","id":"EFTA"},{"acronymTranslation":"Schengen Area","translation":"Schengen Area","referenceUrl":"http://en.wikipedia.org/wiki/Schengen_Area","id":"SCHENGEN_AREA"}],"iso31661NumericCode":"352","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"IS"},{"translation":"India","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{6})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[3,4,5],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["hi","en"],"TIME_ZONES":{"timeZones":["Asia/Kolkata"],"defaultTimeZone":"Asia/Kolkata"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["IN"],"countryGroups":[],"iso31661NumericCode":"356","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"IN"},{"translation":"Indonesia","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[3,4,5,1],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["id"],"TIME_ZONES":{"timeZones":["Asia/Jakarta","Asia/Pontianak","Asia/Makassar","Asia/Jayapura"],"defaultTimeZone":"Asia/Jakarta"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["ID"],"countryGroups":[],"iso31661NumericCode":"360","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"ID"},{"translation":"Iran","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"([\\d\\s\\-]+)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4,6],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["fa"],"TIME_ZONES":{"timeZones":["Asia/Tehran"],"defaultTimeZone":"Asia/Tehran"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["IR"],"countryGroups":[],"iso31661NumericCode":"364","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"IR"},{"translation":"Iraq","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["ar","ku"],"TIME_ZONES":{"timeZones":["Asia/Baghdad"],"defaultTimeZone":"Asia/Baghdad"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["IQ"],"countryGroups":[],"iso31661NumericCode":"368","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"IQ"},{"translation":"Ireland","regular":true,"memberState":true,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":true,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":true,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[5,6],"EXCLUDED_CLASSIFICATION_SECTIONS":["RETAIL_MOVEMENT_SCHEME"],"LANGUAGE_CODES":["ga","en"],"TIME_ZONES":{"timeZones":["Europe/Dublin"],"defaultTimeZone":"Europe/Dublin"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["IE"],"countryGroups":[{"acronymTranslation":"EU","translation":"European Union","referenceUrl":"http://en.wikipedia.org/wiki/European_Union","id":"EU"},{"acronymTranslation":"EEA","translation":"European Economic Area","referenceUrl":"http://en.wikipedia.org/wiki/European_Economic_Area","id":"EEA"}],"iso31661NumericCode":"372","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"IE"},{"translation":"Isle of Man","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":true,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[0-9][A-Z]{2}","POSTAL_CODE_PATTERN":"(\\w\\w\\w\\w?\\s*\\d\\w{2})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[6],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en","gv"],"TIME_ZONES":{"timeZones":["Europe/London"],"defaultTimeZone":"Europe/London"},"ADDITIONAL_CLASSIFICATION_SECTIONS":["GENERAL_ACTIVITY_ESTABLISHMENT"]},"locationCountryCodes":["IM"],"countryGroups":[],"iso31661NumericCode":"833","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"IM"},{"translation":"Israel","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{7})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4,1],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["he","ar"],"TIME_ZONES":{"timeZones":["Asia/Jerusalem"],"defaultTimeZone":"Asia/Jerusalem"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["IL"],"countryGroups":[],"iso31661NumericCode":"376","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"IL"},{"translation":"Italy","regular":true,"memberState":true,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":true,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":true,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"([\\d]{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[3,4,6],"EXCLUDED_CLASSIFICATION_SECTIONS":["ADM_DELEGATED_BODY","RETAIL_MOVEMENT_SCHEME","ADM_TRANSPORTER","ADM_ESTABLISHMENT"],"LANGUAGE_CODES":["it"],"TIME_ZONES":{"timeZones":["Europe/Rome"],"defaultTimeZone":"Europe/Rome"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["IT"],"countryGroups":[{"acronymTranslation":"EU","translation":"European Union","referenceUrl":"http://en.wikipedia.org/wiki/European_Union","id":"EU"},{"acronymTranslation":"EEA","translation":"European Economic Area","referenceUrl":"http://en.wikipedia.org/wiki/European_Economic_Area","id":"EEA"},{"acronymTranslation":"Schengen Area","translation":"Schengen Area","referenceUrl":"http://en.wikipedia.org/wiki/Schengen_Area","id":"SCHENGEN_AREA"}],"iso31661NumericCode":"380","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"IT"},{"translation":"Jamaica","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"([\\d\\s\\-]+)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[5],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["America/Jamaica"],"defaultTimeZone":"America/Jamaica"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["JM"],"countryGroups":[],"iso31661NumericCode":"388","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"JM"},{"translation":"Japan","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{7})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[3,4,5,6],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["ja"],"TIME_ZONES":{"timeZones":["Asia/Tokyo"],"defaultTimeZone":"Asia/Tokyo"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["JP"],"countryGroups":[],"iso31661NumericCode":"392","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"JP"},{"translation":"Jersey","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":true,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[0-9][A-Z]{2}","POSTAL_CODE_PATTERN":"(\\w+\\d(\\w/\\d)?)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[8],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en","fr"],"TIME_ZONES":{"timeZones":["Europe/London"],"defaultTimeZone":"Europe/London"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["JE"],"countryGroups":[],"iso31661NumericCode":"832","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"JE"},{"translation":"Jordan","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["ar"],"TIME_ZONES":{"timeZones":["Asia/Amman"],"defaultTimeZone":"Asia/Amman"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["JO"],"countryGroups":[],"iso31661NumericCode":"400","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"JO"},{"translation":"Kazakhstan","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{6})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["kk","ru"],"TIME_ZONES":{"timeZones":["Asia/Almaty","Asia/Qyzylorda","Asia/Aqtobe","Asia/Aqtau","Asia/Atyrau","Asia/Oral"],"defaultTimeZone":"Asia/Almaty"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["KZ"],"countryGroups":[],"iso31661NumericCode":"398","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"KZ"},{"translation":"Kenya","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["sw","en"],"TIME_ZONES":{"timeZones":["Africa/Nairobi"],"defaultTimeZone":"Africa/Nairobi"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["KE"],"countryGroups":[],"iso31661NumericCode":"404","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"KE"},{"translation":"Kiribati","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[8],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["Pacific/Tarawa","Pacific/Enderbury","Pacific/Kiritimati"],"defaultTimeZone":"Pacific/Tarawa"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["KI"],"countryGroups":[],"iso31661NumericCode":"296","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"KI"},{"translation":"Kosovo","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"([\\d\\s\\-]+)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["sq","sr"],"TIME_ZONES":{"timeZones":["Africa/Algiers","Africa/Cairo","Africa/Casablanca","Africa/Ceuta","CET","Europe/Belgrade","Europe/London"],"defaultTimeZone":"Africa/Algiers"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["RS","XK"],"countryGroups":[],"iso31661NumericCode":"999","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"},{"translation":"UN/LOCODE","additionalUnlocodeCountryCodes":[{"translation":"Serbia","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"countryGroups":[],"regular":true,"locationCountryCodes":["RS"],"iso31661NumericCode":"688","code":"RS"}],"restrictedLocodes":["RSPRZ","RSPRN","RSMIT","RSKPJ","RSGNJ"],"typeId":"UNLOCODE"}],"code":"XK"},{"translation":"Kuwait","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["ar"],"TIME_ZONES":{"timeZones":["Asia/Riyadh"],"defaultTimeZone":"Asia/Riyadh"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["KW"],"countryGroups":[],"iso31661NumericCode":"414","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"KW"},{"translation":"Kyrgyzstan","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{6})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[3,4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["ru","ky"],"TIME_ZONES":{"timeZones":["Asia/Bishkek"],"defaultTimeZone":"Asia/Bishkek"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["KG"],"countryGroups":[],"iso31661NumericCode":"417","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"KG"},{"translation":"Laos","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[6,4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["lo"],"TIME_ZONES":{"timeZones":["Asia/Bangkok"],"defaultTimeZone":"Asia/Bangkok"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["LA"],"countryGroups":[],"iso31661NumericCode":"418","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"LA"},{"translation":"Latvia","regular":true,"memberState":true,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":true,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":true,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"((LV)?[\\-\\s]?\\d{4})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4,6],"EXCLUDED_CLASSIFICATION_SECTIONS":["ADM_DELEGATED_BODY","RETAIL_MOVEMENT_SCHEME","ADM_TRANSPORTER","ADM_ESTABLISHMENT"],"LANGUAGE_CODES":["lv"],"TIME_ZONES":{"timeZones":["Europe/Riga"],"defaultTimeZone":"Europe/Riga"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["LV"],"countryGroups":[{"acronymTranslation":"EU","translation":"European Union","referenceUrl":"http://en.wikipedia.org/wiki/European_Union","id":"EU"},{"acronymTranslation":"EEA","translation":"European Economic Area","referenceUrl":"http://en.wikipedia.org/wiki/European_Economic_Area","id":"EEA"},{"acronymTranslation":"Schengen Area","translation":"Schengen Area","referenceUrl":"http://en.wikipedia.org/wiki/Schengen_Area","id":"SCHENGEN_AREA"}],"iso31661NumericCode":"428","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"LV"},{"translation":"Lebanon","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"([\\d\\s\\-]+)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["ar"],"TIME_ZONES":{"timeZones":["Asia/Beirut"],"defaultTimeZone":"Asia/Beirut"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["LB"],"countryGroups":[],"iso31661NumericCode":"422","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"LB"},{"translation":"Lesotho","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{3})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en","st"],"TIME_ZONES":{"timeZones":["Africa/Johannesburg"],"defaultTimeZone":"Africa/Johannesburg"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["LS"],"countryGroups":[],"iso31661NumericCode":"426","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"LS"},{"translation":"Liberia","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{4})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["Africa/Monrovia"],"defaultTimeZone":"Africa/Monrovia"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["LR"],"countryGroups":[],"iso31661NumericCode":"430","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"LR"},{"translation":"Libya","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["ar"],"TIME_ZONES":{"timeZones":["Africa/Tripoli"],"defaultTimeZone":"Africa/Tripoli"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["LY"],"countryGroups":[],"iso31661NumericCode":"434","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"LY"},{"translation":"Liechtenstein","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{4})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":["ADM_DELEGATED_BODY","ADM_TRANSPORTER","ADM_ESTABLISHMENT"],"LANGUAGE_CODES":["de"],"TIME_ZONES":{"timeZones":["Europe/Zurich"],"defaultTimeZone":"Europe/Zurich"},"ADDITIONAL_CLASSIFICATION_SECTIONS":["EU_REGISTERED_PROFESSIONAL_OPERATORS","EU_PROFESSIONAL_OPERATORS_OTHER_THAN_REGISTERED"]},"locationCountryCodes":["LI"],"countryGroups":[{"acronymTranslation":"EEA","translation":"European Economic Area","referenceUrl":"http://en.wikipedia.org/wiki/European_Economic_Area","id":"EEA"},{"acronymTranslation":"EFTA","translation":"EFTA (European Free Trade Association)","referenceUrl":"http://en.wikipedia.org/wiki/EFTA","id":"EFTA"},{"acronymTranslation":"Schengen Area","translation":"Schengen Area","referenceUrl":"http://en.wikipedia.org/wiki/Schengen_Area","id":"SCHENGEN_AREA"}],"iso31661NumericCode":"438","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"LI"},{"translation":"Lithuania","regular":true,"memberState":true,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":true,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":true,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"((LT)?[\\-\\s]?\\d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4],"EXCLUDED_CLASSIFICATION_SECTIONS":["ADM_DELEGATED_BODY","RETAIL_MOVEMENT_SCHEME","ADM_TRANSPORTER","ADM_ESTABLISHMENT"],"LANGUAGE_CODES":["lt"],"TIME_ZONES":{"timeZones":["Europe/Vilnius"],"defaultTimeZone":"Europe/Vilnius"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["LT"],"countryGroups":[{"acronymTranslation":"EU","translation":"European Union","referenceUrl":"http://en.wikipedia.org/wiki/European_Union","id":"EU"},{"acronymTranslation":"EEA","translation":"European Economic Area","referenceUrl":"http://en.wikipedia.org/wiki/European_Economic_Area","id":"EEA"},{"acronymTranslation":"Schengen Area","translation":"Schengen Area","referenceUrl":"http://en.wikipedia.org/wiki/Schengen_Area","id":"SCHENGEN_AREA"}],"iso31661NumericCode":"440","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"LT"},{"translation":"Luxembourg","regular":true,"memberState":true,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":true,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":true,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{4})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[3],"EXCLUDED_CLASSIFICATION_SECTIONS":["ADM_DELEGATED_BODY","RETAIL_MOVEMENT_SCHEME","ADM_TRANSPORTER","ADM_ESTABLISHMENT"],"LANGUAGE_CODES":["lb","fr","de"],"TIME_ZONES":{"timeZones":["Europe/Luxembourg"],"defaultTimeZone":"Europe/Luxembourg"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["LU"],"countryGroups":[{"acronymTranslation":"EU","translation":"European Union","referenceUrl":"http://en.wikipedia.org/wiki/European_Union","id":"EU"},{"acronymTranslation":"EEA","translation":"European Economic Area","referenceUrl":"http://en.wikipedia.org/wiki/European_Economic_Area","id":"EEA"},{"acronymTranslation":"Schengen Area","translation":"Schengen Area","referenceUrl":"http://en.wikipedia.org/wiki/Schengen_Area","id":"SCHENGEN_AREA"}],"iso31661NumericCode":"442","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"LU"},{"translation":"Macau","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{3})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["pt","zh"],"TIME_ZONES":{"timeZones":["Asia/Macau"],"defaultTimeZone":"Asia/Macau"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["MO"],"countryGroups":[],"iso31661NumericCode":"446","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"MO"},{"translation":"Madagascar","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{3})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[3,4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["mg","fr"],"TIME_ZONES":{"timeZones":["Africa/Nairobi"],"defaultTimeZone":"Africa/Nairobi"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["MG"],"countryGroups":[],"iso31661NumericCode":"450","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"MG"},{"translation":"Malawi","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en","ny"],"TIME_ZONES":{"timeZones":["Africa/Maputo"],"defaultTimeZone":"Africa/Maputo"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["MW"],"countryGroups":[],"iso31661NumericCode":"454","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"MW"},{"translation":"Malaysia","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4,5],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en","ms"],"TIME_ZONES":{"timeZones":["Asia/Kuching"],"defaultTimeZone":"Asia/Kuching"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["MY"],"countryGroups":[],"iso31661NumericCode":"458","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"MY"},{"translation":"Maldives","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["dv"],"TIME_ZONES":{"timeZones":["Indian/Maldives"],"defaultTimeZone":"Indian/Maldives"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["MV"],"countryGroups":[],"iso31661NumericCode":"462","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"MV"},{"translation":"Mali","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["fr"],"TIME_ZONES":{"timeZones":["Africa/Abidjan"],"defaultTimeZone":"Africa/Abidjan"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["ML"],"countryGroups":[],"iso31661NumericCode":"466","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"ML"},{"translation":"Malta","regular":true,"memberState":true,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":true,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":true,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\w{3}\\s?\\d{4})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[3,4],"EXCLUDED_CLASSIFICATION_SECTIONS":["ADM_DELEGATED_BODY","RETAIL_MOVEMENT_SCHEME","ADM_TRANSPORTER","ADM_ESTABLISHMENT"],"LANGUAGE_CODES":["mt","en"],"TIME_ZONES":{"timeZones":["Europe/Malta"],"defaultTimeZone":"Europe/Malta"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["MT"],"countryGroups":[{"acronymTranslation":"EU","translation":"European Union","referenceUrl":"http://en.wikipedia.org/wiki/European_Union","id":"EU"},{"acronymTranslation":"EEA","translation":"European Economic Area","referenceUrl":"http://en.wikipedia.org/wiki/European_Economic_Area","id":"EEA"},{"acronymTranslation":"Schengen Area","translation":"Schengen Area","referenceUrl":"http://en.wikipedia.org/wiki/Schengen_Area","id":"SCHENGEN_AREA"}],"iso31661NumericCode":"470","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"MT"},{"translation":"Marshall Islands","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5}[\\-\\s]?\\d{0,4})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en","mh"],"TIME_ZONES":{"timeZones":["Pacific/Majuro","Pacific/Kwajalein"],"defaultTimeZone":"Pacific/Majuro"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["MH"],"countryGroups":[],"iso31661NumericCode":"584","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"MH"},{"translation":"Martinique","regular":false,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"[0-9]*","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["America/Martinique"],"defaultTimeZone":"America/Martinique"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["MQ"],"countryGroups":[],"iso31661NumericCode":"474","countryCodeUsages":[{"translation":"ePhyto","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"EPHYTO"}],"code":"MQ"},{"translation":"Mauritania","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["ar","fr"],"TIME_ZONES":{"timeZones":["Africa/Abidjan"],"defaultTimeZone":"Africa/Abidjan"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["MR"],"countryGroups":[],"iso31661NumericCode":"478","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"MR"},{"translation":"Mauritius","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[3,4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["Indian/Mauritius"],"defaultTimeZone":"Indian/Mauritius"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["MU"],"countryGroups":[],"iso31661NumericCode":"480","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"MU"},{"translation":"Mayotte","regular":false,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["fr"],"TIME_ZONES":{"timeZones":["Africa/Nairobi"],"defaultTimeZone":"Africa/Nairobi"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["YT"],"countryGroups":[],"iso31661NumericCode":"175","countryCodeUsages":[{"translation":"ePhyto","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"EPHYTO"}],"code":"YT"},{"translation":"Mexico","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["es"],"TIME_ZONES":{"timeZones":["America/Bahia_Banderas"],"defaultTimeZone":"America/Bahia_Banderas"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["MX"],"countryGroups":[],"iso31661NumericCode":"484","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"MX"},{"translation":"Micronesia","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5}[\\-\\s]?\\d{0,4})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["Pacific/Chuuk","Pacific/Pohnpei","Pacific/Kosrae"],"defaultTimeZone":"Pacific/Chuuk"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["FM"],"countryGroups":[],"iso31661NumericCode":"583","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"FM"},{"translation":"Moldova","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\w{2}[\\-\\s]?\\d{4})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4,3,6,8,9,10],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["ro"],"TIME_ZONES":{"timeZones":["Europe/Chisinau"],"defaultTimeZone":"Europe/Chisinau"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["MD"],"countryGroups":[],"iso31661NumericCode":"498","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"MD"},{"translation":"Monaco","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(980\\d{2})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[8],"EXCLUDED_CLASSIFICATION_SECTIONS":["ORGANIC_OPERATOR"],"LANGUAGE_CODES":["fr"],"TIME_ZONES":{"timeZones":["Europe/Monaco"],"defaultTimeZone":"Europe/Monaco"},"ADDITIONAL_CLASSIFICATION_SECTIONS":["BOVINE_HOLDINGS","ASSEMBLY_OPERATIONS_FOR_UNGULATES","CERVID_HOLDINGS","ASSEMBLY_CENTRES_POULTRY","DOGS_CATS_AND_FERRETS_ESTABLISHMENTS","ADM_TRANSPORTER","ASSEMBLY_CENTRES_UNGULATES","AQUACULTURE_APPROVED_GROUP_OF_ESTABLISHMENTS","ADM_ESTABLISHMENT","OVINE_CAPRINE_HOLDINGS","HONEYBEES_ESTABLISHMENTS","OTHER_UNGULATES_HOLDINGS","EXEMPTION_BENEFICIARY","QUARANTINE","ASSEMBLY_CENTRES_EQUIDAE","BUMBLE_BEES_OPEN_ESTABLISHMENTS","POULTRY_ESTABLISHMENTS_FOR_HATCHING_EGGS","HATCHERIES","ASSEMBLY_OPERATIONS_FOR_POULTRY","EMBRYO_COLLECTION_AND_PRODUCTION_TEAMS","DEALERS","CONFINED_ESTABLISHMENTS","ASSEMBLY_CENTRES","TRAVELLING_CIRCUS","AQUACULTURE_REGISTERED_ESTABLISHMENTS","BUMBLE_BEES_ISOLATED_ESTABLISHMENTS","EQUINE_HOLDING","PORCINE_HOLDINGS","CONTROL_POSTS","HOLDER_OF_THE_GOODS","AQUACULTURE_REGISTERED_GROUP_OF_ESTABLISHMENTS","AQUACULTURE_DISEASE_CONTROL","POULTRY_ESTABLISHMENTS_FOR_SLAUGHTER","SEMEN_COLLECTION_AND_STORAGE_CENTRES","AUTHORIZED_TRANSPORTER_TYPE_I","ADM_DELEGATED_BODY","ANIMAL_SHELTERS","AQUACULTURE_APPROVED_ESTABLISHMENTS","ESTABLISHMENTS_FOR_POULTRY","TPA","REGISTERED_TRANSPORTER","MPA_REGISTERED_RACE_HORSES","OTHER_ANIMAL_OPERATORS","ANIMAL_ACT","ASSEMBLY_CENTRES_CATS_DOGS_AND_FERRETS","AQUACULTURE_HOLDINGS","CAMELID_HOLDINGS","AUTHORIZED_TRANSPORTER_TYPE_II"]},"locationCountryCodes":["MC"],"countryGroups":[],"iso31661NumericCode":"492","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"MC"},{"translation":"Mongolia","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["mn"],"TIME_ZONES":{"timeZones":["Asia/Ulaanbaatar","Asia/Hovd","Asia/Choibalsan"],"defaultTimeZone":"Asia/Ulaanbaatar"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["MN"],"countryGroups":[],"iso31661NumericCode":"496","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"MN"},{"translation":"Montenegro","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[6],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["sr","hr","bs","sq"],"TIME_ZONES":{"timeZones":["Europe/Belgrade"],"defaultTimeZone":"Europe/Belgrade"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["ME"],"countryGroups":[],"iso31661NumericCode":"499","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"ME"},{"translation":"Montserrat","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["America/Port_of_Spain"],"defaultTimeZone":"America/Port_of_Spain"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["MS"],"countryGroups":[],"iso31661NumericCode":"500","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"MS"},{"translation":"Morocco","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4,5],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["ar"],"TIME_ZONES":{"timeZones":["Africa/Casablanca"],"defaultTimeZone":"Africa/Casablanca"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["MA"],"countryGroups":[],"iso31661NumericCode":"504","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"MA"},{"translation":"Mozambique","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{4})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["pt"],"TIME_ZONES":{"timeZones":["Africa/Maputo"],"defaultTimeZone":"Africa/Maputo"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["MZ"],"countryGroups":[],"iso31661NumericCode":"508","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"MZ"},{"translation":"Myanmar/Burma","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["my"],"TIME_ZONES":{"timeZones":["Asia/Yangon"],"defaultTimeZone":"Asia/Yangon"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["MM"],"countryGroups":[],"iso31661NumericCode":"104","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"MM"},{"translation":"Namibia","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[3,4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["Africa/Windhoek"],"defaultTimeZone":"Africa/Windhoek"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["NA"],"countryGroups":[],"iso31661NumericCode":"516","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"NA"},{"translation":"Nauru","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["na","en"],"TIME_ZONES":{"timeZones":["Pacific/Nauru"],"defaultTimeZone":"Pacific/Nauru"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["NR"],"countryGroups":[],"iso31661NumericCode":"520","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"NR"},{"translation":"Nepal","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4,5],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["ne"],"TIME_ZONES":{"timeZones":["Asia/Kathmandu"],"defaultTimeZone":"Asia/Kathmandu"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["NP"],"countryGroups":[],"iso31661NumericCode":"524","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"NP"},{"translation":"Netherlands","regular":true,"memberState":true,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":true,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":true,"HAS_POSTAL_CODE_EXTENSION":true,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{4})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[3,4],"EXCLUDED_CLASSIFICATION_SECTIONS":["ADM_DELEGATED_BODY","RETAIL_MOVEMENT_SCHEME","ADM_TRANSPORTER","ADM_ESTABLISHMENT"],"LANGUAGE_CODES":["nl"],"TIME_ZONES":{"timeZones":["Europe/Amsterdam"],"defaultTimeZone":"Europe/Amsterdam"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["NL"],"countryGroups":[{"acronymTranslation":"EU","translation":"European Union","referenceUrl":"http://en.wikipedia.org/wiki/European_Union","id":"EU"},{"acronymTranslation":"EEA","translation":"European Economic Area","referenceUrl":"http://en.wikipedia.org/wiki/European_Economic_Area","id":"EEA"},{"acronymTranslation":"Schengen Area","translation":"Schengen Area","referenceUrl":"http://en.wikipedia.org/wiki/Schengen_Area","id":"SCHENGEN_AREA"}],"iso31661NumericCode":"528","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"NL"},{"translation":"Netherlands Antilles","regular":false,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"[0-9]*","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":null,"defaultTimeZone":null},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["AN"],"countryGroups":[],"iso31661NumericCode":"530","countryCodeUsages":[{"translation":"None","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"NONE"}],"code":"AN"},{"translation":"New Caledonia","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[6],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["fr"],"TIME_ZONES":{"timeZones":["Pacific/Noumea"],"defaultTimeZone":"Pacific/Noumea"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["NC"],"countryGroups":[],"iso31661NumericCode":"540","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"NC"},{"translation":"New Zealand","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{4})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4,6],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en","mi"],"TIME_ZONES":{"timeZones":["Pacific/Auckland","Pacific/Chatham"],"defaultTimeZone":"Pacific/Auckland"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["NZ"],"countryGroups":[],"iso31661NumericCode":"554","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"NZ"},{"translation":"Nicaragua","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["es"],"TIME_ZONES":{"timeZones":["America/Managua"],"defaultTimeZone":"America/Managua"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["NI"],"countryGroups":[],"iso31661NumericCode":"558","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"NI"},{"translation":"Niger","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{4})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["fr"],"TIME_ZONES":{"timeZones":["Africa/Lagos"],"defaultTimeZone":"Africa/Lagos"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["NE"],"countryGroups":[],"iso31661NumericCode":"562","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"NE"},{"translation":"Nigeria","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{6})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["Africa/Lagos"],"defaultTimeZone":"Africa/Lagos"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["NG"],"countryGroups":[],"iso31661NumericCode":"566","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"NG"},{"translation":"Niue","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["Pacific/Niue"],"defaultTimeZone":"Pacific/Niue"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["NU"],"countryGroups":[],"iso31661NumericCode":"570","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"NU"},{"translation":"Norfolk Island","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{4})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["Pacific/Norfolk"],"defaultTimeZone":"Pacific/Norfolk"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["NF"],"countryGroups":[],"iso31661NumericCode":"574","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"NF"},{"translation":"North Korea","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["ko"],"TIME_ZONES":{"timeZones":["Asia/Pyongyang"],"defaultTimeZone":"Asia/Pyongyang"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["KP"],"countryGroups":[],"iso31661NumericCode":"408","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"KP"},{"translation":"North Macedonia","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{4})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4,1],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["mk"],"TIME_ZONES":{"timeZones":["Europe/Belgrade"],"defaultTimeZone":"Europe/Belgrade"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["MK"],"countryGroups":[],"iso31661NumericCode":"807","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"MK"},{"translation":"Northern Mariana Islands","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5}[\\-\\s]?\\d{0,4})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en","ch"],"TIME_ZONES":{"timeZones":["Pacific/Guam"],"defaultTimeZone":"Pacific/Guam"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["MP"],"countryGroups":[],"iso31661NumericCode":"580","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"MP"},{"translation":"Norway","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":true,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{4})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4],"EXCLUDED_CLASSIFICATION_SECTIONS":["ADM_DELEGATED_BODY","ADM_TRANSPORTER","ADM_ESTABLISHMENT"],"LANGUAGE_CODES":["nb","nn","no"],"TIME_ZONES":{"timeZones":["Europe/Oslo"],"defaultTimeZone":"Europe/Oslo"},"ADDITIONAL_CLASSIFICATION_SECTIONS":["THIRD_COUNTRY_PROFESSIONAL_OPERATORS"]},"locationCountryCodes":["NO"],"countryGroups":[{"acronymTranslation":"EEA","translation":"European Economic Area","referenceUrl":"http://en.wikipedia.org/wiki/European_Economic_Area","id":"EEA"},{"acronymTranslation":"EFTA","translation":"EFTA (European Free Trade Association)","referenceUrl":"http://en.wikipedia.org/wiki/EFTA","id":"EFTA"},{"acronymTranslation":"Schengen Area","translation":"Schengen Area","referenceUrl":"http://en.wikipedia.org/wiki/Schengen_Area","id":"SCHENGEN_AREA"}],"iso31661NumericCode":"578","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"NO"},{"translation":"Oman","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{3})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["ar"],"TIME_ZONES":{"timeZones":["Asia/Dubai"],"defaultTimeZone":"Asia/Dubai"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["OM"],"countryGroups":[],"iso31661NumericCode":"512","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"OM"},{"translation":"Pakistan","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4,6],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en","ur"],"TIME_ZONES":{"timeZones":["Asia/Karachi"],"defaultTimeZone":"Asia/Karachi"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["PK"],"countryGroups":[],"iso31661NumericCode":"586","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"PK"},{"translation":"Palau","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5}[\\-\\s]?\\d{0,4})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["Pacific/Palau"],"defaultTimeZone":"Pacific/Palau"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["PW"],"countryGroups":[],"iso31661NumericCode":"585","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"PW"},{"translation":"Palestine*","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{3})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["ar","he"],"TIME_ZONES":{"timeZones":["Asia/Hebron","Asia/Gaza"],"defaultTimeZone":"Asia/Hebron"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["PS"],"countryGroups":[],"iso31661NumericCode":"275","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"PS"},{"translation":"Panama","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{4})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["es"],"TIME_ZONES":{"timeZones":["America/Panama"],"defaultTimeZone":"America/Panama"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["PA"],"countryGroups":[],"iso31661NumericCode":"591","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"PA"},{"translation":"Papua New Guinea","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{3})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[3,4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en","ho"],"TIME_ZONES":{"timeZones":["Pacific/Port_Moresby","Pacific/Bougainville"],"defaultTimeZone":"Pacific/Port_Moresby"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["PG"],"countryGroups":[],"iso31661NumericCode":"598","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"PG"},{"translation":"Paraguay","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{4})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4,3],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["es","gn"],"TIME_ZONES":{"timeZones":["America/Asuncion"],"defaultTimeZone":"America/Asuncion"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["PY"],"countryGroups":[],"iso31661NumericCode":"600","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"PY"},{"translation":"Peru","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\w*\\s?\\d{4}\\d?)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4,6],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["es","ay","qu"],"TIME_ZONES":{"timeZones":["America/Lima"],"defaultTimeZone":"America/Lima"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["PE"],"countryGroups":[],"iso31661NumericCode":"604","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"PE"},{"translation":"Philippines","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{4})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[3,4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["Asia/Manila"],"defaultTimeZone":"Asia/Manila"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["PH"],"countryGroups":[],"iso31661NumericCode":"608","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"PH"},{"translation":"Pitcairn Islands","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["Pacific/Pitcairn"],"defaultTimeZone":"Pacific/Pitcairn"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["PN"],"countryGroups":[],"iso31661NumericCode":"612","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"PN"},{"translation":"Poland","regular":true,"memberState":true,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":true,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":true,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{2}[\\-\\s]?\\d{3})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[6,4],"EXCLUDED_CLASSIFICATION_SECTIONS":["ADM_DELEGATED_BODY","RETAIL_MOVEMENT_SCHEME","ADM_TRANSPORTER","ADM_ESTABLISHMENT"],"LANGUAGE_CODES":["pl"],"TIME_ZONES":{"timeZones":["Europe/Warsaw"],"defaultTimeZone":"Europe/Warsaw"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["PL"],"countryGroups":[{"acronymTranslation":"EU","translation":"European Union","referenceUrl":"http://en.wikipedia.org/wiki/European_Union","id":"EU"},{"acronymTranslation":"EEA","translation":"European Economic Area","referenceUrl":"http://en.wikipedia.org/wiki/European_Economic_Area","id":"EEA"},{"acronymTranslation":"Schengen Area","translation":"Schengen Area","referenceUrl":"http://en.wikipedia.org/wiki/Schengen_Area","id":"SCHENGEN_AREA"}],"iso31661NumericCode":"616","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"PL"},{"translation":"Portugal","regular":true,"memberState":true,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":true,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":true,"HAS_POSTAL_CODE_EXTENSION":true,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{4}[\\-\\s]?\\d{3})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4,5],"EXCLUDED_CLASSIFICATION_SECTIONS":["ADM_DELEGATED_BODY","RETAIL_MOVEMENT_SCHEME","ADM_TRANSPORTER","ADM_ESTABLISHMENT"],"LANGUAGE_CODES":["pt"],"TIME_ZONES":{"timeZones":["Europe/Lisbon"],"defaultTimeZone":"Europe/Lisbon"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["PT"],"countryGroups":[{"acronymTranslation":"EU","translation":"European Union","referenceUrl":"http://en.wikipedia.org/wiki/European_Union","id":"EU"},{"acronymTranslation":"EEA","translation":"European Economic Area","referenceUrl":"http://en.wikipedia.org/wiki/European_Economic_Area","id":"EEA"},{"acronymTranslation":"Schengen Area","translation":"Schengen Area","referenceUrl":"http://en.wikipedia.org/wiki/Schengen_Area","id":"SCHENGEN_AREA"}],"iso31661NumericCode":"620","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"PT"},{"translation":"Puerto Rico","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["es","en"],"TIME_ZONES":{"timeZones":["America/Puerto_Rico"],"defaultTimeZone":"America/Puerto_Rico"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["PR"],"countryGroups":[],"iso31661NumericCode":"630","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"PR"},{"translation":"Qatar","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["ar"],"TIME_ZONES":{"timeZones":["Asia/Qatar"],"defaultTimeZone":"Asia/Qatar"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["QA"],"countryGroups":[],"iso31661NumericCode":"634","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"QA"},{"translation":"Reunion","regular":false,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"[0-9]*","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":null,"defaultTimeZone":null},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["RE"],"countryGroups":[],"iso31661NumericCode":"638","countryCodeUsages":[{"translation":"ePhyto","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"EPHYTO"}],"code":"RE"},{"translation":"Romania","regular":true,"memberState":true,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":true,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":true,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{6})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4],"EXCLUDED_CLASSIFICATION_SECTIONS":["ADM_DELEGATED_BODY","RETAIL_MOVEMENT_SCHEME","ADM_TRANSPORTER","ADM_ESTABLISHMENT"],"LANGUAGE_CODES":["ro"],"TIME_ZONES":{"timeZones":["Europe/Bucharest"],"defaultTimeZone":"Europe/Bucharest"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["RO"],"countryGroups":[{"acronymTranslation":"EU","translation":"European Union","referenceUrl":"http://en.wikipedia.org/wiki/European_Union","id":"EU"},{"acronymTranslation":"EEA","translation":"European Economic Area","referenceUrl":"http://en.wikipedia.org/wiki/European_Economic_Area","id":"EEA"}],"iso31661NumericCode":"642","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"RO"},{"translation":"Russia","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{6})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[1,3,4,5],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["ru","ba","kv","os","tt","uk","ce","cv","av","az"],"TIME_ZONES":{"timeZones":["Europe/Kaliningrad","Europe/Moscow","Europe/Simferopol","Europe/Volgograd","Europe/Astrakhan","Europe/Ulyanovsk","Europe/Samara","Asia/Yekaterinburg","Asia/Omsk","Asia/Novosibirsk","Asia/Barnaul","Asia/Novokuznetsk","Asia/Krasnoyarsk","Asia/Irkutsk","Asia/Chita","Asia/Yakutsk","Asia/Khandyga","Asia/Vladivostok","Asia/Magadan","Asia/Sakhalin","Asia/Srednekolymsk","Asia/Kamchatka","Asia/Anadyr"],"defaultTimeZone":"Europe/Kaliningrad"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["RU"],"countryGroups":[],"iso31661NumericCode":"643","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"RU"},{"translation":"Rwanda","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4,6],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["rw","en","fr"],"TIME_ZONES":{"timeZones":["Africa/Maputo"],"defaultTimeZone":"Africa/Maputo"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["RW"],"countryGroups":[],"iso31661NumericCode":"646","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"RW"},{"translation":"Saint Barthélemy","regular":false,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"[0-9]*","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["America/Port_of_Spain"],"defaultTimeZone":"America/Port_of_Spain"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["BL"],"countryGroups":[],"iso31661NumericCode":"652","countryCodeUsages":[{"translation":"ePhyto","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"EPHYTO"}],"code":"BL"},{"translation":"Saint Helena, Ascension and Tristan da Cunha","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\w+\\d(\\w/\\d)?)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["Africa/Abidjan"],"defaultTimeZone":"Africa/Abidjan"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["SH"],"countryGroups":[],"iso31661NumericCode":"654","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"SH"},{"translation":"Saint Kitts and Nevis","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["America/Port_of_Spain"],"defaultTimeZone":"America/Port_of_Spain"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["KN"],"countryGroups":[],"iso31661NumericCode":"659","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"KN"},{"translation":"Saint Lucia","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["America/Port_of_Spain"],"defaultTimeZone":"America/Port_of_Spain"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["LC"],"countryGroups":[],"iso31661NumericCode":"662","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"LC"},{"translation":"Saint Martin","regular":false,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"[0-9]*","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":null,"defaultTimeZone":null},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["MF"],"countryGroups":[],"iso31661NumericCode":"663","countryCodeUsages":[{"translation":"ePhyto","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"EPHYTO"}],"code":"MF"},{"translation":"Saint Pierre and Miquelon","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["fr"],"TIME_ZONES":{"timeZones":["America/Miquelon"],"defaultTimeZone":"America/Miquelon"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["PM"],"countryGroups":[],"iso31661NumericCode":"666","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"PM"},{"translation":"Saint Vincent and the Grenadines","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"((VC)?[\\-\\s]?\\d{4})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en","es"],"TIME_ZONES":{"timeZones":["America/Port_of_Spain"],"defaultTimeZone":"America/Port_of_Spain"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["VC"],"countryGroups":[],"iso31661NumericCode":"670","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"VC"},{"translation":"Samoa","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"((WS)?[\\-\\s]?\\d{4})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en","sm"],"TIME_ZONES":{"timeZones":["Pacific/Apia"],"defaultTimeZone":"Pacific/Apia"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["WS"],"countryGroups":[],"iso31661NumericCode":"882","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"WS"},{"translation":"San Marino","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[8],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["it"],"TIME_ZONES":{"timeZones":["Europe/Rome"],"defaultTimeZone":"Europe/Rome"},"ADDITIONAL_CLASSIFICATION_SECTIONS":["BOVINE_HOLDINGS","ASSEMBLY_OPERATIONS_FOR_UNGULATES","RESPONSIBLE_FOR_THE_LOAD","CERVID_HOLDINGS","STORAGE_OF_DERIVED_PRODUCTS_EU","DOGS_CATS_AND_FERRETS_ESTABLISHMENTS","WILD_GAME_MEAT_EU","ASSEMBLY_CENTRES_UNGULATES","ADM_ESTABLISHMENT","ORGANIC_IMPORTER","GELATINE_EU","HONEYBEES_ESTABLISHMENTS","BIOGAS_PLANTS_EU","ASSEMBLY_CENTRES_EQUIDAE","OLEOCHEMICAL_PLANTS_EU","COMPOSTING_PLANTS_EU","POULTRY_ESTABLISHMENTS_FOR_HATCHING_EGGS","ASSEMBLY_OPERATIONS_FOR_POULTRY","FISHERY_PRODUCTS_EU","EMBRYO_COLLECTION_AND_PRODUCTION_TEAMS","COLLECTION_CENTRES_EU","GENERAL_ACTIVITY_ESTABLISHMENT","ASSEMBLY_CENTRES","ORGANIC_FERTILISERS_OR_SOIL_IMPROVERS_EU","PROCESSING_PLANTS_EU","MEAT_PRODUCTS_EU","MINCED_MEAT_EU","PORCINE_HOLDINGS","CONTROL_POSTS","AQUACULTURE_DISEASE_CONTROL","ANIMAL_BYPRODUCTS_OR_DERIVED_PRODUCTS_FOR_PURPOSES_OUTSIDE_THE_FEED_CHAIN_EU","ADM_DELEGATED_BODY","AQUACULTURE_APPROVED_ESTABLISHMENTS","ESTABLISHMENTS_FOR_POULTRY","TPA","REGISTERED_TRANSPORTER","MPA_REGISTERED_RACE_HORSES","OTHER_ANIMAL_OPERATORS","ANIMAL_ACT","PETFOOD_PLANTS_EU","ASSEMBLY_CENTRES_CATS_DOGS_AND_FERRETS","FROGS_LEGS_AND_SNAILS_EU","ASSEMBLY_CENTRES_POULTRY","ADM_TRANSPORTER","AQUACULTURE_APPROVED_GROUP_OF_ESTABLISHMENTS","OVINE_CAPRINE_HOLDINGS","MEAT_FROM_POULTRY_AND_LAGOMORPHS_EU","OTHER_UNGULATES_HOLDINGS","QUARANTINE","OTHER_REGISTERED_OPERATORS_EU","BUMBLE_BEES_OPEN_ESTABLISHMENTS","HATCHERIES","DEALERS","REGISTERED_USERS_OF_ANIMAL_BYPRODUCTS_AND_DERIVED_PRODUCT_FOR_SPECIFIC_PURPOSES_EU","RENDERED_ANIMAL_FATS_AND_GREAVES_EU","CONFINED_ESTABLISHMENTS","MEAT_OF_DOMESTIC_UNGULATES_EU","TRAVELLING_CIRCUS","AQUACULTURE_REGISTERED_ESTABLISHMENTS","EGGS_AND_EGG_PRODUCTS_EU","BUMBLE_BEES_ISOLATED_ESTABLISHMENTS","EQUINE_HOLDING","GERMINAL_PRODUCT_ESTABLISHMENTS_OTHER_ANIMALS","INTERMEDIATE_ACTIVITIES_AND_PLANTS_STORING_ANIMAL_BYPRODUCTS_EU","GERMINAL_PRODUCT_ESTABLISHMENTS_CONFINED_ANIMALS","AQUACULTURE_REGISTERED_GROUP_OF_ESTABLISHMENTS","INCINERATION_COINCINERATION_COMBUSTION_PLANTS_EU","POULTRY_ESTABLISHMENTS_FOR_SLAUGHTER","LIVE_BIVALVE_MOLLUSCS_EU","SEMEN_COLLECTION_AND_STORAGE_CENTRES","AUTHORIZED_TRANSPORTER_TYPE_I","ANIMAL_SHELTERS","RAW_MILK_EU","AQUACULTURE_HOLDINGS","CAMELID_HOLDINGS","MEAT_OF_FARMED_GAME_EU","AUTHORIZED_TRANSPORTER_TYPE_II"]},"locationCountryCodes":["SM"],"countryGroups":[],"iso31661NumericCode":"674","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"SM"},{"translation":"Saudi Arabia","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5}[\\-\\s]?\\d{0,4})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["ar"],"TIME_ZONES":{"timeZones":["Asia/Riyadh"],"defaultTimeZone":"Asia/Riyadh"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["SA"],"countryGroups":[],"iso31661NumericCode":"682","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"SA"},{"translation":"Senegal","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[3],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["fr"],"TIME_ZONES":{"timeZones":["Africa/Abidjan"],"defaultTimeZone":"Africa/Abidjan"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["SN"],"countryGroups":[],"iso31661NumericCode":"686","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"SN"},{"translation":"Serbia","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4,6],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["sr"],"TIME_ZONES":{"timeZones":["Europe/Belgrade"],"defaultTimeZone":"Europe/Belgrade"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["RS"],"countryGroups":[],"iso31661NumericCode":"688","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"RS"},{"translation":"Serbia and Montenegro","regular":false,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"[0-9]*","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":null,"defaultTimeZone":null},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["CS"],"countryGroups":[],"iso31661NumericCode":"891","countryCodeUsages":[{"translation":"None","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"NONE"}],"code":"CS"},{"translation":"Seychelles","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[6],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["fr","en"],"TIME_ZONES":{"timeZones":["Indian/Mahe"],"defaultTimeZone":"Indian/Mahe"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["SC"],"countryGroups":[],"iso31661NumericCode":"690","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"SC"},{"translation":"Sierra Leone","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["Africa/Abidjan"],"defaultTimeZone":"Africa/Abidjan"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["SL"],"countryGroups":[],"iso31661NumericCode":"694","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"SL"},{"translation":"Singapore","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{6})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en","ms","zh","ta"],"TIME_ZONES":{"timeZones":["Asia/Singapore"],"defaultTimeZone":"Asia/Singapore"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["SG"],"countryGroups":[],"iso31661NumericCode":"702","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"SG"},{"translation":"Sint Maarten","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["nl","en"],"TIME_ZONES":{"timeZones":["America/Curacao"],"defaultTimeZone":"America/Curacao"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["SX"],"countryGroups":[],"iso31661NumericCode":"534","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"SX"},{"translation":"Slovakia","regular":true,"memberState":true,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":true,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":true,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{3}\\s?\\d{2})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[3,4],"EXCLUDED_CLASSIFICATION_SECTIONS":["ADM_DELEGATED_BODY","RETAIL_MOVEMENT_SCHEME","ADM_TRANSPORTER","ADM_ESTABLISHMENT"],"LANGUAGE_CODES":["sk"],"TIME_ZONES":{"timeZones":["Europe/Prague"],"defaultTimeZone":"Europe/Prague"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["SK"],"countryGroups":[{"acronymTranslation":"EU","translation":"European Union","referenceUrl":"http://en.wikipedia.org/wiki/European_Union","id":"EU"},{"acronymTranslation":"EEA","translation":"European Economic Area","referenceUrl":"http://en.wikipedia.org/wiki/European_Economic_Area","id":"EEA"},{"acronymTranslation":"Schengen Area","translation":"Schengen Area","referenceUrl":"http://en.wikipedia.org/wiki/Schengen_Area","id":"SCHENGEN_AREA"}],"iso31661NumericCode":"703","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"SK"},{"translation":"Slovenia","regular":true,"memberState":true,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":true,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":true,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\w{2}[\\-\\s]?\\d{4}|\\d{4})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[5],"EXCLUDED_CLASSIFICATION_SECTIONS":["ADM_DELEGATED_BODY","RETAIL_MOVEMENT_SCHEME","ADM_TRANSPORTER","ADM_ESTABLISHMENT"],"LANGUAGE_CODES":["sl","it","hu"],"TIME_ZONES":{"timeZones":["Europe/Belgrade"],"defaultTimeZone":"Europe/Belgrade"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["SI"],"countryGroups":[{"acronymTranslation":"EU","translation":"European Union","referenceUrl":"http://en.wikipedia.org/wiki/European_Union","id":"EU"},{"acronymTranslation":"EEA","translation":"European Economic Area","referenceUrl":"http://en.wikipedia.org/wiki/European_Economic_Area","id":"EEA"},{"acronymTranslation":"Schengen Area","translation":"Schengen Area","referenceUrl":"http://en.wikipedia.org/wiki/Schengen_Area","id":"SCHENGEN_AREA"}],"iso31661NumericCode":"705","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"SI"},{"translation":"Solomon Islands","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["Pacific/Guadalcanal"],"defaultTimeZone":"Pacific/Guadalcanal"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["SB"],"countryGroups":[],"iso31661NumericCode":"090","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"SB"},{"translation":"Somalia","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\w{2}\\s?\\d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["so","ar"],"TIME_ZONES":{"timeZones":["Africa/Nairobi"],"defaultTimeZone":"Africa/Nairobi"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["SO"],"countryGroups":[],"iso31661NumericCode":"706","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"SO"},{"translation":"South Africa","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{4})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en","af","nr","st","ss","ts","tn","ve","xh","zu"],"TIME_ZONES":{"timeZones":["Africa/Johannesburg"],"defaultTimeZone":"Africa/Johannesburg"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["ZA"],"countryGroups":[],"iso31661NumericCode":"710","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"ZA"},{"translation":"South Georgia and the South Sandwich Islands","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\w+\\d(\\w/\\d)?)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["Atlantic/South_Georgia"],"defaultTimeZone":"Atlantic/South_Georgia"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["GS"],"countryGroups":[],"iso31661NumericCode":"239","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"GS"},{"translation":"South Korea","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4,5,6,1],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["ko"],"TIME_ZONES":{"timeZones":["Asia/Seoul"],"defaultTimeZone":"Asia/Seoul"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["KR"],"countryGroups":[],"iso31661NumericCode":"410","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"KR"},{"translation":"South Sudan","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["Africa/Khartoum"],"defaultTimeZone":"Africa/Khartoum"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["SS"],"countryGroups":[],"iso31661NumericCode":"728","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"SS"},{"translation":"Spain","regular":true,"memberState":true,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":true,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":true,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[6,4],"EXCLUDED_CLASSIFICATION_SECTIONS":["ADM_DELEGATED_BODY","RETAIL_MOVEMENT_SCHEME","ADM_TRANSPORTER","ADM_ESTABLISHMENT"],"LANGUAGE_CODES":["es","gl","eu","ca","oc"],"TIME_ZONES":{"timeZones":["Europe/Madrid","Africa/Ceuta","Atlantic/Canary"],"defaultTimeZone":"Europe/Madrid"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["ES"],"countryGroups":[{"acronymTranslation":"EU","translation":"European Union","referenceUrl":"http://en.wikipedia.org/wiki/European_Union","id":"EU"},{"acronymTranslation":"EEA","translation":"European Economic Area","referenceUrl":"http://en.wikipedia.org/wiki/European_Economic_Area","id":"EEA"},{"acronymTranslation":"Schengen Area","translation":"Schengen Area","referenceUrl":"http://en.wikipedia.org/wiki/Schengen_Area","id":"SCHENGEN_AREA"}],"iso31661NumericCode":"724","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"ES"},{"translation":"Sri Lanka","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[3,4,5],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["si","ta"],"TIME_ZONES":{"timeZones":["Asia/Colombo"],"defaultTimeZone":"Asia/Colombo"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["LK"],"countryGroups":[],"iso31661NumericCode":"144","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"LK"},{"translation":"Sudan","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["ar","en"],"TIME_ZONES":{"timeZones":["Africa/Khartoum"],"defaultTimeZone":"Africa/Khartoum"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["SD"],"countryGroups":[],"iso31661NumericCode":"729","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"SD"},{"translation":"Suriname","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["nl"],"TIME_ZONES":{"timeZones":["America/Paramaribo"],"defaultTimeZone":"America/Paramaribo"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["SR"],"countryGroups":[],"iso31661NumericCode":"740","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"SR"},{"translation":"Svalbard and Jan Mayen","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{4})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["no"],"TIME_ZONES":{"timeZones":["Europe/Oslo"],"defaultTimeZone":"Europe/Oslo"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["SJ"],"countryGroups":[],"iso31661NumericCode":"744","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"SJ"},{"translation":"Sweden","regular":true,"memberState":true,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":true,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":true,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4,3,7],"EXCLUDED_CLASSIFICATION_SECTIONS":["ADM_DELEGATED_BODY","RETAIL_MOVEMENT_SCHEME","ADM_TRANSPORTER","ADM_ESTABLISHMENT"],"LANGUAGE_CODES":["sv","fi","yi"],"TIME_ZONES":{"timeZones":["Europe/Stockholm"],"defaultTimeZone":"Europe/Stockholm"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["SE"],"countryGroups":[{"acronymTranslation":"EU","translation":"European Union","referenceUrl":"http://en.wikipedia.org/wiki/European_Union","id":"EU"},{"acronymTranslation":"EEA","translation":"European Economic Area","referenceUrl":"http://en.wikipedia.org/wiki/European_Economic_Area","id":"EEA"},{"acronymTranslation":"Schengen Area","translation":"Schengen Area","referenceUrl":"http://en.wikipedia.org/wiki/Schengen_Area","id":"SCHENGEN_AREA"}],"iso31661NumericCode":"752","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"SE"},{"translation":"Switzerland","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":true,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{4})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4,5],"EXCLUDED_CLASSIFICATION_SECTIONS":["ADM_DELEGATED_BODY","ADM_TRANSPORTER","ADM_ESTABLISHMENT"],"LANGUAGE_CODES":["de","it","fr"],"TIME_ZONES":{"timeZones":["Europe/Zurich"],"defaultTimeZone":"Europe/Zurich"},"ADDITIONAL_CLASSIFICATION_SECTIONS":["ORGANIC_EXPORTER","EU_REGISTERED_PROFESSIONAL_OPERATORS","ORGANIC_PRODUCER","EU_PROFESSIONAL_OPERATORS_OTHER_THAN_REGISTERED"]},"locationCountryCodes":["CH"],"countryGroups":[{"acronymTranslation":"EEA","translation":"European Economic Area","referenceUrl":"http://en.wikipedia.org/wiki/European_Economic_Area","id":"EEA"},{"acronymTranslation":"EFTA","translation":"EFTA (European Free Trade Association)","referenceUrl":"http://en.wikipedia.org/wiki/EFTA","id":"EFTA"},{"acronymTranslation":"Schengen Area","translation":"Schengen Area","referenceUrl":"http://en.wikipedia.org/wiki/Schengen_Area","id":"SCHENGEN_AREA"}],"iso31661NumericCode":"756","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"CH"},{"translation":"Syria","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["ar"],"TIME_ZONES":{"timeZones":["Asia/Damascus"],"defaultTimeZone":"Asia/Damascus"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["SY"],"countryGroups":[],"iso31661NumericCode":"760","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"SY"},{"translation":"São Tomé and Príncipe","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["pt"],"TIME_ZONES":{"timeZones":["Africa/Abidjan"],"defaultTimeZone":"Africa/Abidjan"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["ST"],"countryGroups":[],"iso31661NumericCode":"678","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"ST"},{"translation":"Taiwan","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"([\\d\\s\\-]+)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["zh"],"TIME_ZONES":{"timeZones":["Asia/Taipei"],"defaultTimeZone":"Asia/Taipei"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["TW"],"countryGroups":[],"iso31661NumericCode":"158","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"TW"},{"translation":"Tajikistan","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{6})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["tg"],"TIME_ZONES":{"timeZones":["Asia/Dushanbe"],"defaultTimeZone":"Asia/Dushanbe"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["TJ"],"countryGroups":[],"iso31661NumericCode":"762","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"TJ"},{"translation":"Tanzania","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[3,4,5],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["sw","en"],"TIME_ZONES":{"timeZones":["Africa/Nairobi"],"defaultTimeZone":"Africa/Nairobi"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["TZ"],"countryGroups":[],"iso31661NumericCode":"834","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"TZ"},{"translation":"Thailand","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["th"],"TIME_ZONES":{"timeZones":["Asia/Bangkok"],"defaultTimeZone":"Asia/Bangkok"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["TH"],"countryGroups":[],"iso31661NumericCode":"764","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"TH"},{"translation":"The Gambia","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["Africa/Abidjan"],"defaultTimeZone":"Africa/Abidjan"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["GM"],"countryGroups":[],"iso31661NumericCode":"270","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"GM"},{"translation":"Timor-Leste","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["pt"],"TIME_ZONES":{"timeZones":["Asia/Dili"],"defaultTimeZone":"Asia/Dili"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["TL"],"countryGroups":[],"iso31661NumericCode":"626","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"TL"},{"translation":"Togo","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["fr"],"TIME_ZONES":{"timeZones":["Africa/Abidjan"],"defaultTimeZone":"Africa/Abidjan"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["TG"],"countryGroups":[],"iso31661NumericCode":"768","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"TG"},{"translation":"Tokelau","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["Pacific/Fakaofo"],"defaultTimeZone":"Pacific/Fakaofo"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["TK"],"countryGroups":[],"iso31661NumericCode":"772","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"TK"},{"translation":"Tonga","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["to","en"],"TIME_ZONES":{"timeZones":["Pacific/Tongatapu"],"defaultTimeZone":"Pacific/Tongatapu"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["TO"],"countryGroups":[],"iso31661NumericCode":"776","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"TO"},{"translation":"Trinidad and Tobago","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{6})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["America/Port_of_Spain"],"defaultTimeZone":"America/Port_of_Spain"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["TT"],"countryGroups":[],"iso31661NumericCode":"780","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"TT"},{"translation":"Tunisia","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{4})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["ar"],"TIME_ZONES":{"timeZones":["Africa/Tunis"],"defaultTimeZone":"Africa/Tunis"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["TN"],"countryGroups":[],"iso31661NumericCode":"788","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"TN"},{"translation":"Turkmenistan","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{6})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["tk"],"TIME_ZONES":{"timeZones":["Asia/Ashgabat"],"defaultTimeZone":"Asia/Ashgabat"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["TM"],"countryGroups":[],"iso31661NumericCode":"795","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"TM"},{"translation":"Turks and Caicos Islands","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[6],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["America/Grand_Turk"],"defaultTimeZone":"America/Grand_Turk"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["TC"],"countryGroups":[],"iso31661NumericCode":"796","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"TC"},{"translation":"Tuvalu","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{6})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["Pacific/Funafuti"],"defaultTimeZone":"Pacific/Funafuti"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["TV"],"countryGroups":[],"iso31661NumericCode":"798","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"TV"},{"translation":"Türkiye","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[3,4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["tr"],"TIME_ZONES":{"timeZones":["Europe/Istanbul"],"defaultTimeZone":"Europe/Istanbul"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["TR"],"countryGroups":[],"iso31661NumericCode":"792","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"TR"},{"translation":"US Virgin Islands","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5}[\\-\\s]?\\d{0,4})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["America/Port_of_Spain"],"defaultTimeZone":"America/Port_of_Spain"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["VI"],"countryGroups":[],"iso31661NumericCode":"850","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"VI"},{"translation":"Uganda","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[3,4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en","sw"],"TIME_ZONES":{"timeZones":["Africa/Nairobi"],"defaultTimeZone":"Africa/Nairobi"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["UG"],"countryGroups":[],"iso31661NumericCode":"800","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"UG"},{"translation":"Ukraine","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4,5],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["uk"],"TIME_ZONES":{"timeZones":["Europe/Kiev","Europe/Uzhgorod","Europe/Zaporozhye"],"defaultTimeZone":"Europe/Kiev"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["UA"],"countryGroups":[],"iso31661NumericCode":"804","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"UA"},{"translation":"United Arab Emirates","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"([\\d\\s\\-]+)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["ar"],"TIME_ZONES":{"timeZones":["Asia/Dubai"],"defaultTimeZone":"Asia/Dubai"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["AE"],"countryGroups":[],"iso31661NumericCode":"784","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"AE"},{"translation":"United Kingdom","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":true,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[0-9][A-Z]{2}","POSTAL_CODE_PATTERN":"(\\w+\\d(\\w/\\d)?)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4,5,6],"EXCLUDED_CLASSIFICATION_SECTIONS":["ORGANIC_OPERATOR","ORGANIC_IMPORTER"],"LANGUAGE_CODES":["en","cy"],"TIME_ZONES":{"timeZones":["Europe/London"],"defaultTimeZone":"Europe/London"},"ADDITIONAL_CLASSIFICATION_SECTIONS":["RETAIL_MOVEMENT_SCHEME"]},"locationCountryCodes":["GB"],"countryGroups":[],"iso31661NumericCode":"826","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"GB"},{"translation":"United Kingdom (Northern Ireland)","regular":true,"memberState":true,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":true,"HAS_POSTAL_CODE_EXTENSION":true,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[0-9][A-Z]{2}","POSTAL_CODE_PATTERN":"(\\w+\\d(\\w/\\d)?)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4,5,6],"EXCLUDED_CLASSIFICATION_SECTIONS":["ADM_DELEGATED_BODY","ADM_TRANSPORTER","ADM_ESTABLISHMENT"],"LANGUAGE_CODES":["en","cy"],"TIME_ZONES":{"timeZones":["Europe/London"],"defaultTimeZone":"Europe/London"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["GB","XI"],"countryGroups":[{"acronymTranslation":"EU","translation":"European Union","referenceUrl":"http://en.wikipedia.org/wiki/European_Union","id":"EU"},{"acronymTranslation":"EEA","translation":"European Economic Area","referenceUrl":"http://en.wikipedia.org/wiki/European_Economic_Area","id":"EEA"}],"iso31661NumericCode":"998","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"},{"translation":"UN/LOCODE","additionalUnlocodeCountryCodes":[{"translation":"United Kingdom","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"countryGroups":[],"regular":true,"locationCountryCodes":["GB"],"iso31661NumericCode":"826","code":"GB"}],"restrictedLocodes":["GBBEL","GBLDY","GBWPT","GBLAR"],"typeId":"UNLOCODE"}],"code":"XI"},{"translation":"United States","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4,5,6],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["America/Anchorage","America/Boise","America/Detroit"],"defaultTimeZone":"America/Anchorage"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["US"],"countryGroups":[],"iso31661NumericCode":"840","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"US"},{"translation":"United States Minor Outlying Islands","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["Pacific/Pago_Pago"],"defaultTimeZone":"Pacific/Pago_Pago"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["UM"],"countryGroups":[],"iso31661NumericCode":"581","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"UM"},{"translation":"Uruguay","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["es"],"TIME_ZONES":{"timeZones":["America/Montevideo"],"defaultTimeZone":"America/Montevideo"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["UY"],"countryGroups":[],"iso31661NumericCode":"858","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"UY"},{"translation":"Uzbekistan","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{6})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["uz"],"TIME_ZONES":{"timeZones":["Asia/Samarkand"],"defaultTimeZone":"Asia/Samarkand"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["UZ"],"countryGroups":[],"iso31661NumericCode":"860","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"UZ"},{"translation":"Vanuatu","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["bi","fr","en"],"TIME_ZONES":{"timeZones":["Pacific/Efate"],"defaultTimeZone":"Pacific/Efate"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["VU"],"countryGroups":[],"iso31661NumericCode":"548","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"VU"},{"translation":"Venezuela","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{4}\\-?\\w?)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[6,4,3,1],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["es"],"TIME_ZONES":{"timeZones":["America/Caracas"],"defaultTimeZone":"America/Caracas"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["VE"],"countryGroups":[],"iso31661NumericCode":"862","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"VE"},{"translation":"Vietnam","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{6})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["vi"],"TIME_ZONES":{"timeZones":["Asia/Bangkok"],"defaultTimeZone":"Asia/Bangkok"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["VN"],"countryGroups":[],"iso31661NumericCode":"704","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"VN"},{"translation":"Wallis and Futuna","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["fr"],"TIME_ZONES":{"timeZones":["Pacific/Wallis"],"defaultTimeZone":"Pacific/Wallis"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["WF"],"countryGroups":[],"iso31661NumericCode":"876","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"WF"},{"translation":"Western Sahara","regular":false,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"[0-9]*","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["Africa/El_Aaiun"],"defaultTimeZone":"Africa/El_Aaiun"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["EH"],"countryGroups":[],"iso31661NumericCode":"732","countryCodeUsages":[{"translation":"None","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"NONE"}],"code":"EH"},{"translation":"Yemen","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[4],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["ar"],"TIME_ZONES":{"timeZones":["Asia/Riyadh"],"defaultTimeZone":"Asia/Riyadh"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["YE"],"countryGroups":[],"iso31661NumericCode":"887","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"YE"},{"translation":"Zambia","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(\\d{5})","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":["Africa/Maputo"],"defaultTimeZone":"Africa/Maputo"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["ZM"],"countryGroups":[],"iso31661NumericCode":"894","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"ZM"},{"translation":"Zimbabwe","regular":true,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"(?!.*)","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en","sn","nd","ny","ts","st","tn","ve","xh"],"TIME_ZONES":{"timeZones":["Africa/Maputo"],"defaultTimeZone":"Africa/Maputo"},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["ZW"],"countryGroups":[],"iso31661NumericCode":"716","countryCodeUsages":[{"translation":"Regular","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"REGULAR"}],"code":"ZW"},{"translation":"Åland Islands","regular":false,"memberState":false,"countryConfiguration":{"CONTROL_POINT_PUBLICATION_ENABLED":false,"BORDER_CONTROL_POST_PUBLICATION_ENABLED":false,"HAS_POSTAL_CODE_EXTENSION":false,"HAS_NON_EU_PLANT_HEALTH_REGIONS":false,"POSTAL_CODE_EXTENSION_PATTERN":"[A-Z]{2}","POSTAL_CODE_PATTERN":"[0-9]*","POSTAL_CODE_USAGE":"OPTIONAL","SELECTABLE_REGION_LEVELS":[],"EXCLUDED_CLASSIFICATION_SECTIONS":[],"LANGUAGE_CODES":["en"],"TIME_ZONES":{"timeZones":null,"defaultTimeZone":null},"ADDITIONAL_CLASSIFICATION_SECTIONS":[]},"locationCountryCodes":["AX"],"countryGroups":[],"iso31661NumericCode":"248","countryCodeUsages":[{"translation":"None","additionalUnlocodeCountryCodes":[],"restrictedLocodes":[],"typeId":"NONE"}],"code":"AX"}];
					localModule.constant("countries", countries);
					
				})();
			</script>
		
		






<style>
    .pageLoader {
        display: none;
    }
</style>

    	
    </body>
    
</html>
