diff --git a/src/npoapi/base.py b/src/npoapi/base.py index a399795..6fca848 100644 --- a/src/npoapi/base.py +++ b/src/npoapi/base.py @@ -8,47 +8,52 @@ import sys import urllib.request from enum import Enum -from typing import Dict, Union -from typing import List -from typing import Optional +from typing import Dict, List, Optional, Union import pyxb from urllib3.exceptions import NameResolutionError - -from npoapi.data.poms import NS_MAP from xsdata.formats.dataclass.serializers import XmlSerializer from xsdata.formats.dataclass.serializers.config import SerializerConfig import npoapi +from npoapi.data.poms import NS_MAP def declare_namespaces(): import pyxb.utils.domutils - from npoapi.xml import mediaupdate as xmediaupdate, pageupdate, page, media, shared, api as xapi, thesaurus + + from npoapi.xml import api as xapi + from npoapi.xml import media, page, pageupdate, shared, thesaurus + from npoapi.xml import mediaupdate as xmediaupdate pyxb.utils.domutils.BindingDOMSupport.SetDefaultNamespace(xmediaupdate.Namespace) - pyxb.utils.domutils.BindingDOMSupport.DeclareNamespace(pageupdate.Namespace, 'pu') - pyxb.utils.domutils.BindingDOMSupport.DeclareNamespace(page.Namespace, 'pages') - pyxb.utils.domutils.BindingDOMSupport.DeclareNamespace(media.Namespace, 'media') - pyxb.utils.domutils.BindingDOMSupport.DeclareNamespace(shared.Namespace, 'shared') - pyxb.utils.domutils.BindingDOMSupport.DeclareNamespace(xapi.Namespace, 'api') - pyxb.utils.domutils.BindingDOMSupport.DeclareNamespace(thesaurus.Namespace, 'gtaa') + pyxb.utils.domutils.BindingDOMSupport.DeclareNamespace(pageupdate.Namespace, "pu") + pyxb.utils.domutils.BindingDOMSupport.DeclareNamespace(page.Namespace, "pages") + pyxb.utils.domutils.BindingDOMSupport.DeclareNamespace(media.Namespace, "media") + pyxb.utils.domutils.BindingDOMSupport.DeclareNamespace(shared.Namespace, "shared") + pyxb.utils.domutils.BindingDOMSupport.DeclareNamespace(xapi.Namespace, "api") + pyxb.utils.domutils.BindingDOMSupport.DeclareNamespace(thesaurus.Namespace, "gtaa") + from importlib import reload declare_namespaces() + class Binding(Enum): - PYXB = 1 # deprecated? + PYXB = 1 # deprecated? XSDATA = 2 + import argparse # DEFAULT_BINDING = Binding.XSDATA + class NpoApiBase: """Base class for all api client (both backend and frontend)""" + __author__ = "Michiel Meeuwissen" __metaclass__ = abc.ABCMeta EPILOG = """ @@ -62,7 +67,7 @@ def __init__(self, env: str = None, debug: bool = False, accept: str = None, int """ self.code = None - logging.basicConfig(format='%(levelname)s %(message)s') + logging.basicConfig(format="%(levelname)s %(message)s") self.logger = logging.getLogger("Npo") self.debug(debug) self._env = env @@ -72,12 +77,11 @@ def __init__(self, env: str = None, debug: bool = False, accept: str = None, int self.interactive = interactive self.settings = {} self.response_headers = False - self.write_count = 0; - + self.write_count = 0 @abc.abstractmethod def env(self, e): - """"Sets environment""" + """ "Sets environment""" self._env = e self.actualenv = self._env if self._env else "acc" return self @@ -90,23 +94,25 @@ def accept(self, arg=None): if arg: self._accept = arg else: - first = next(iter(self.accept_choices())) # + first = next(iter(self.accept_choices())) # self._accept = self.accept_choices()[first] return self._accept def read_environmental_variables(self): if self._env is None: - if 'ENV' in os.environ: - self.env(os.environ['ENV']) + if "ENV" in os.environ: + self.env(os.environ["ENV"]) else: - self.env('acc') + self.env("acc") - if 'DEBUG' in os.environ and os.environ['DEBUG'] == 'true': + if "DEBUG" in os.environ and os.environ["DEBUG"] == "true": self.debug() return self - def configured_login(self, read_environment=False, create_config_file=False, config_dir=None, default_config_dirs=True): + def configured_login( + self, read_environment=False, create_config_file=False, config_dir=None, default_config_dirs=True + ): """ Logs in using configuration file. Considered using json (no comments-> unusable) or configparser (nearly properties, but headings are required..) So, now it simply parses the file itself. @@ -118,7 +124,7 @@ def configured_login(self, read_environment=False, create_config_file=False, con if read_environment: self.read_environmental_variables() - config_files = self.get_configfiles(config_dir = config_dir, default_config_dirs = default_config_dirs) + config_files = self.get_configfiles(config_dir=config_dir, default_config_dirs=default_config_dirs) config_file = None for file in config_files: @@ -146,8 +152,8 @@ def configured_login(self, read_environment=False, create_config_file=False, con return self - def get_setting(self, name:str, description, write_settings = True, write_silent = False) -> str: - if not(name in self.settings): + def get_setting(self, name: str, description, write_settings=True, write_silent=False) -> str: + if not (name in self.settings): if name.lower() in self.settings: value = self.settings[name.lower()] del self.settings[name.lower()] @@ -158,28 +164,28 @@ def get_setting(self, name:str, description, write_settings = True, write_silent raise ValueError("No setting found " + name.lower()) self.settings[name] = value if write_settings and self.interactive: - self._write_settings(write_silent = write_silent) + self._write_settings(write_silent=write_silent) return self.settings[name] @staticmethod - def get_configfiles(config_dir = None, default_config_dirs = True) -> List[str]: + def get_configfiles(config_dir=None, default_config_dirs=True) -> List[str]: current_script_dir = os.path.dirname(sys.argv[0]) config_files = [] if default_config_dirs: config_files = [ - os.path.join(os.path.expanduser("~"), "conf", "creds.properties"), - os.path.join(current_script_dir, "..", "..", "..", "creds.properties"), - os.path.join(current_script_dir, "..", "..", "..", "creds.sh"), - os.path.join(current_script_dir, "creds.properties") + os.path.join(os.path.expanduser("~"), "conf", "creds.properties"), + os.path.join(current_script_dir, "..", "..", "..", "creds.properties"), + os.path.join(current_script_dir, "..", "..", "..", "creds.sh"), + os.path.join(current_script_dir, "creds.properties"), ] if not config_dir is None: config_files.insert(0, os.path.join(config_dir, "creds.properties")) return config_files - def get_config_file(self, config_dir = None): + def get_config_file(self, config_dir=None): config_file = None - for file in self.get_configfiles(config_dir = config_dir): + for file in self.get_configfiles(config_dir=config_dir): config_file = os.path.normpath(file) if os.access(os.path.dirname(config_file), os.W_OK): self.logger.debug("Found " + config_file) @@ -189,8 +195,8 @@ def get_config_file(self, config_dir = None): config_file = None return config_file - def _write_settings(self, config_dir = None, write_silent = False): - config_file = self.get_config_file(config_dir = config_dir) + def _write_settings(self, config_dir=None, write_silent=False): + config_file = self.get_config_file(config_dir=config_dir) if config_file: with open(str(config_file), "w") as f: @@ -205,7 +211,7 @@ def _write_settings(self, config_dir = None, write_silent = False): self.logger.info("Wrote %s" % str(config_file)) self.write_count += 1 else: - config_files = self.get_configfiles(config_dir = config_dir) + config_files = self.get_configfiles(config_dir=config_dir) self.logger.warning("Configuration could not be saved since no file of %s is writable" % str(config_files)) def _read_properties_file(self, config_file, properties=None) -> Dict[str, str]: @@ -219,7 +225,7 @@ def _read_properties_file(self, config_file, properties=None) -> Dict[str, str]: key, value = l.split("=", 1) value = value.strip('" \t') if value.startswith("system:"): - split = value[len("system:"):].split(":", 1) + split = value[len("system:") :].split(":", 1) value = os.getenv(split[0]) if value is None: value = split[1] @@ -230,11 +236,11 @@ def _read_properties_file(self, config_file, properties=None) -> Dict[str, str]: def _read_settings_from_properties(self, properties): for key, value in properties.items(): - split = key.split('.', 2) + split = key.split(".", 2) if len(split) == 1: self.settings[key.strip()] = value.strip('" \t') for key, value in properties.items(): - split = key.split('.', 2) + split = key.split(".", 2) if len(split) == 2: usedkey, e = split[0], split[1] if e == self.actualenv: @@ -250,7 +256,9 @@ def anonymize_for_logging(settings_for_log): if key.endswith("secret"): settings_for_log[key] = "xxx" - def command_line_client(self, description=None, read_environment=True, create_config_file=True, exclude_arguments=None): + def command_line_client( + self, description=None, read_environment=True, create_config_file=True, exclude_arguments=None + ): """Configure this api client as a command line client. I.e. create an argument parser with common arguments and add support for reading config files (e.g. from ~/conf/creds.properties """ @@ -267,14 +275,22 @@ def common_arguments(self, description=None, exclude_arguments=None): if exclude_arguments is None: exclude_arguments = {} parent_args = argparse.ArgumentParser(add_help=False) - parent_args.add_argument('-v', "--version", action="store_true", help="show current version") + parent_args.add_argument("-v", "--version", action="store_true", help="show current version") if not "accept" in exclude_arguments: - parent_args.add_argument('-a', "--accept", type=str, default=None, choices=self.accept_choices().keys()) - parent_args.add_argument('-e', "--env", type=str, default=self._env, choices={"test", "acc", "prod", "localhost"}) - parent_args.add_argument('-u', "--url", type=str, default=None, help="The URL of the API which this client communicates with. This is an alternative to --env") - parent_args.add_argument('-c', "--createconfig", action='store_true', help="Create config") - parent_args.add_argument('-d', "--debug", action='store_true', help="Switch on debug logging") - parent_args.add_argument('-H', "--headers", action='store_true', help="Show relevant response headers") + parent_args.add_argument("-a", "--accept", type=str, default=None, choices=self.accept_choices().keys()) + parent_args.add_argument( + "-e", "--env", type=str, default=self._env, choices={"test", "acc", "prod", "localhost"} + ) + parent_args.add_argument( + "-u", + "--url", + type=str, + default=None, + help="The URL of the API which this client communicates with. This is an alternative to --env", + ) + parent_args.add_argument("-c", "--createconfig", action="store_true", help="Create config") + parent_args.add_argument("-d", "--debug", action="store_true", help="Switch on debug logging") + parent_args.add_argument("-H", "--headers", action="store_true", help="Show relevant response headers") filtered_argv = [] i = 0 @@ -301,9 +317,9 @@ def common_arguments(self, description=None, exclude_arguments=None): if pargs.version: print(npoapi.__version__) exit(0) - self.argument_parser = argparse.ArgumentParser(description=description, - parents=[parent_args], - epilog=NpoApiBase.EPILOG) + self.argument_parser = argparse.ArgumentParser( + description=description, parents=[parent_args], epilog=NpoApiBase.EPILOG + ) return self def parse_args(self): @@ -315,7 +331,9 @@ def parse_args(self): self.accept() return args - def get_response(self, req, url:str, ignore_not_found:bool = False, timeout:int = None) -> Optional[http.client.HTTPResponse]: + def get_response( + self, req, url: str, ignore_not_found: bool = False, timeout: int = None + ) -> Optional[http.client.HTTPResponse]: """Error handling around urllib.request.urlopen :param ignore_not_found Whether status 404 should be logged as an error @@ -327,7 +345,7 @@ def get_response(self, req, url:str, ignore_not_found:bool = False, timeout:int self.logger.debug("Executing %s", summary) response = urllib.request.urlopen(req, timeout=timeout) self.code = response.getcode() - self.logger.debug("headers: " + str(response.headers)) + self.logger.debug("headers: " + str(response.headers)) if self.response_headers: self.logger.info("selector: %s " % (req.selector)) for h, v in response.getheaders(): @@ -337,7 +355,7 @@ def get_response(self, req, url:str, ignore_not_found:bool = False, timeout:int elif lowerh.startswith("x-npo-"): self.logger.info("%s: %s" % (h, v)) else: - for h, v in response.getheaders(): + for h, v in response.getheaders(): lowerh = h.lower() if lowerh.startswith("x-npo-warning"): self.logger.warning("%s" % (v)) @@ -348,14 +366,14 @@ def get_response(self, req, url:str, ignore_not_found:bool = False, timeout:int error_type = str(type(ue)) self.logger.debug("headers: %s" % (str(ue.headers) if hasattr(ue, "headers") else "NONE")) if ignore_not_found and ue.code == 404: - self.logger.debug('%s: %s: %s (%s)', url, summary, ue.reason, error_type) + self.logger.debug("%s: %s: %s (%s)", url, summary, ue.reason, error_type) self.code = 404 return None if type(ue.reason) is str: - self.logger.error('%s: %s: %s (%s)', url, summary, ue.reason, error_type) + self.logger.error("%s: %s: %s (%s)", url, summary, ue.reason, error_type) self.code = ue.code else: - self.logger.error('%s: %s: %s %s (%s)', url, ue.reason.errno, summary, ue.reason.strerror, error_type) + self.logger.error("%s: %s: %s %s (%s)", url, ue.reason.errno, summary, ue.reason.strerror, error_type) self.code = ue.reason.errno if hasattr(ue, "read"): self.logger.error("%s: %s", url, ue.read().decode("utf-8")) @@ -365,10 +383,9 @@ def get_response(self, req, url:str, ignore_not_found:bool = False, timeout:int self.logger.error("%s: %s %s: %s\n%s", url, summary, he.code, he.msg, he.read().decode("utf-8")) return None - def data_to_bytes(self, data, content_type:str = None) -> [bytearray, str]: + def data_to_bytes(self, data, content_type: str = None) -> [bytearray, str]: return npoapi.utils.data_to_bytes(data, content_type) - def write_response(self, response: http.client.HTTPResponse, buffer_size=1024, capture=False) -> Union[None, str]: buffer = response.read(buffer_size) count = 0 @@ -389,14 +406,14 @@ def write_response(self, response: http.client.HTTPResponse, buffer_size=1024, c return result @staticmethod - def isfile(string:str) -> bool: + def isfile(string: str) -> bool: return npoapi.utils.isfile(string) def data_or_from_file(self, data: str) -> str: """""" if os.path.isfile(data): self.logger.debug("" + data + " is file, reading it in") - with codecs.open(data, 'r', 'utf-8') as myfile: + with codecs.open(data, "r", "utf-8") as myfile: data = myfile.read() self.logger.debug("Found data " + data) else: @@ -405,20 +422,22 @@ def data_or_from_file(self, data: str) -> str: self.logger.debug("" + data + " is not a file") return data - def to_object(self, data:str, validate=False, binding=DEFAULT_BINDING) -> Union[object]: + def to_object(self, data: str, validate=False, binding=DEFAULT_BINDING) -> Union[object]: try: return npoapi.utils.to_object(data, validate, binding) except Exception as e: - self.logger.info("Couldn't transform to object %s"%data) + self.logger.info("Couldn't transform to object %s" % data) self.logger.error(str(e)) return None - def to_object_or_none(self, data:str, validate=False, binding=DEFAULT_BINDING) -> object: + def to_object_or_none(self, data: str, validate=False, binding=DEFAULT_BINDING) -> object: import xml + import xsdata + try: return self.to_object(data, validate, binding=binding) - except (xml.sax._exceptions.SAXParseException, xsdata.exceptions.ParserError) as e: + except (xml.sax._exceptions.SAXParseException, xsdata.exceptions.ParserError) as e: self.logger.debug("Not xml") return None @@ -427,22 +446,21 @@ def exit_code(self) -> int: return 0 return self.code // 100 - def exit(self, message:str = None): + def exit(self, message: str = None): if message: self.logger.error(message) sys.exit(self.exit_code()) def pretty_xml(self, string: str) -> str: - from xml.dom.minidom import parseString import xml.parsers.expat + from xml.dom.minidom import parseString + try: - return (parseString(string) - .toprettyxml(indent=" ")) + return parseString(string).toprettyxml(indent=" ") except xml.parsers.expat.ExpatError as e: self.logger.error(e) return string - @abc.abstractmethod def info(self): return "ABSTRACT" diff --git a/src/npoapi/basic_backend.py b/src/npoapi/basic_backend.py index 6cdb809..67dbfce 100644 --- a/src/npoapi/basic_backend.py +++ b/src/npoapi/basic_backend.py @@ -12,12 +12,13 @@ from xsdata.formats.dataclass.serializers import XmlSerializer from xsdata.formats.dataclass.serializers.config import SerializerConfig -from npoapi.base import NpoApiBase, NS_MAP +from npoapi.base import NS_MAP, NpoApiBase from npoapi.xml import mediaupdate class BasicBackend(NpoApiBase): """Base class for backend apis. These use basic authentication. Normally communicate via XML.""" + __author__ = "Michiel Meeuwissen" def __init__(self, description=None, env=None, email: str = None, debug=False, accept=None): @@ -53,12 +54,19 @@ def errors(self, email): self.email = email def get_errors(self): - return self.email or self.settings.get('errors') or self.settings.get('email') + return self.email or self.settings.get("errors") or self.settings.get("email") @override - def command_line_client(self, description=None, read_environment=True, create_config_file=True, exclude_arguments=None): + def command_line_client( + self, description=None, read_environment=True, create_config_file=True, exclude_arguments=None + ): client = super().command_line_client(description, read_environment, create_config_file, exclude_arguments) - client.add_argument('--errors', type=str, default=None, help="""Email address to send asynchronous errors to, or url to post to""") + client.add_argument( + "--errors", + type=str, + default=None, + help="""Email address to send asynchronous errors to, or url to post to""", + ) return client @override @@ -93,15 +101,15 @@ def _basic_authentication(self, settings_key, description): self.logger.debug("Logging in " + user) return self._generate_basic_authorization(user, password) - def _generate_basic_authorization(self, username, password): password_manager = urllib.request.HTTPPasswordMgrWithDefaultRealm() - if self.url is None: + if self.url is None: raise Exception("No url configured for " + str(self)) password_manager.add_password(None, self.url, username, password) urllib.request.install_opener( - urllib.request.build_opener(urllib.request.HTTPBasicAuthHandler(password_manager))) - base64string = base64.encodebytes(('%s:%s' % (username, password)).encode()).decode()[:-1] + urllib.request.build_opener(urllib.request.HTTPBasicAuthHandler(password_manager)) + ) + base64string = base64.encodebytes(("%s:%s" % (username, password)).encode()).decode()[:-1] return "Basic %s" % base64string def _creds(self): @@ -120,24 +128,29 @@ def post_to(self, path, xml, accept=None, **kwargs) -> Tuple[Optional[str], Opti raise Exception("Cant post without xml") return self.post_bytes_to(path, self.xml_to_bytes(xml), accept=accept, **kwargs) - def post_bytes_to(self, path, bytes, accept=None, content_type="application/xml", content_length=None, **kwargs) -> Tuple[Optional[str], Optional[str]]: + def post_bytes_to( + self, path, bytes, accept=None, content_type="application/xml", content_length=None, **kwargs + ) -> Tuple[Optional[str], Optional[str]]: """Post to path on configured server. Add necessary authentication headers""" self._creds() url = self.append_params(self.url + path, **kwargs) - req = urllib.request.Request(url, data=bytes, method='POST') + req = urllib.request.Request(url, data=bytes, method="POST") self.logger.debug("Posting " + str(bytes) + " to " + url) return self._request(req, url, accept=accept, content_type=content_type, content_length=content_length) - - def post_bytes_to_response(self, path, bytes, accept=None, content_type="application/xml", content_length=None, **kwargs) -> Tuple[Optional[str], Optional[str]]: + def post_bytes_to_response( + self, path, bytes, accept=None, content_type="application/xml", content_length=None, **kwargs + ) -> Tuple[Optional[str], Optional[str]]: """Post to path on configured server. Add necessary authentication headers""" self._creds() url = self.append_params(self.url + path, **kwargs) - req = urllib.request.Request(url, data=bytes, method='POST') + req = urllib.request.Request(url, data=bytes, method="POST") self.logger.debug("Posting " + str(bytes) + " to " + url) return self._request_response(req, url, accept=accept, content_type=content_type, content_length=content_length) - def get_from(self, path:str, accept="application/xml", ignore_not_found=False, **kwargs) -> Tuple[Optional[str], Optional[str]]: + def get_from( + self, path: str, accept="application/xml", ignore_not_found=False, **kwargs + ) -> Tuple[Optional[str], Optional[str]]: self._creds() _url = self.append_params(self.url + path, include_errors=False, **kwargs) req = urllib.request.Request(_url) @@ -156,7 +169,7 @@ def _get_xml(self, url: str) -> Optional[bytes]: """Gets XML (as a byte array) from a URL. So this sets the accept header.""" return self._get(url, accept="application/xml") - def _get(self, url:str, accept:str = None) -> Optional[bytes]: + def _get(self, url: str, accept: str = None) -> Optional[bytes]: """Gets response (as a byte array) from a URL""" self._creds() req = urllib.request.Request(url) @@ -169,29 +182,58 @@ def _get(self, url:str, accept:str = None) -> Optional[bytes]: else: return None - def _request(self, req, url, accept=None, needs_authentication=True, authorization=None, ignore_not_found=False, content_type="application/xml", content_length = None) -> Tuple[Optional[str], Optional[str]]: + def _request( + self, + req, + url, + accept=None, + needs_authentication=True, + authorization=None, + ignore_not_found=False, + content_type="application/xml", + content_length=None, + ) -> Tuple[Optional[str], Optional[str]]: try: - response = self._request_response(req, url, ignore_not_found=ignore_not_found, needs_authentication=needs_authentication, authorization=authorization, accept=accept, content_type=content_type, content_length=content_length) + response = self._request_response( + req, + url, + ignore_not_found=ignore_not_found, + needs_authentication=needs_authentication, + authorization=authorization, + accept=accept, + content_type=content_type, + content_length=content_length, + ) if response: result = response.read().decode() - warnings = response.headers.get_all('x-npo-validation-warning') + warnings = response.headers.get_all("x-npo-validation-warning") if warnings: for w in warnings: self.logger.warning("%s", str(w)) - errors = response.headers.get_all('x-npo-validation-error') + errors = response.headers.get_all("x-npo-validation-error") if errors: for e in errors: self.logger.error("%s", str(e)) self.logger.debug("Found: %s", result) - return result, response.headers.get('content-type') + return result, response.headers.get("content-type") else: return None, None except urllib.request.HTTPError as e: logging.error(e.read().decode()) return None, None - def _request_response(self, req, url, accept=None, needs_authentication=True, authorization=None, ignore_not_found=False, content_type="application/xml", content_length = None) -> http.client.HTTPResponse: + def _request_response( + self, + req, + url, + accept=None, + needs_authentication=True, + authorization=None, + ignore_not_found=False, + content_type="application/xml", + content_length=None, + ) -> http.client.HTTPResponse: if needs_authentication: if authorization: req.add_header("Authorization", authorization) @@ -239,17 +281,18 @@ def toxml(update: pyxb.binding.basis.complexTypeDefinition) -> bytes: "xsi:- xml are not working out of the box.." t = type(update) if t == mediaupdate.programUpdateType: - return bytes(update.toxml("utf-8", element_name='program')) + return bytes(update.toxml("utf-8", element_name="program")) elif t == mediaupdate.groupUpdateType: - return bytes(update.toxml("utf-8", element_name='group')) + return bytes(update.toxml("utf-8", element_name="group")) elif t == mediaupdate.segmentUpdateType: - return bytes(update.toxml("utf-8", element_name='segment')) + return bytes(update.toxml("utf-8", element_name="segment")) else: return bytes(update.toxml("utf-8")) def xml_to_bytes(self, xml) -> bytes: """Accepts xml in several formats, and returns it as a byte array, ready for posting""" import xml.etree.ElementTree as ET + import pyxb t = type(xml) @@ -257,27 +300,25 @@ def xml_to_bytes(self, xml) -> bytes: xml, content_type = self.data_to_bytes(xml) return xml elif dataclasses.is_dataclass(xml): - serializer = XmlSerializer(config=SerializerConfig(pretty_print = False)) + serializer = XmlSerializer(config=SerializerConfig(pretty_print=False)) content_type = "application/xml" return serializer.render(xml, ns_map=NS_MAP).encode("utf-8") elif t == minidom.Element: # xml.setAttribute("xmlns", "urn:vpro:media:update:2009") # xml.setAttribute("xmlns:xsi", # "http://www.w3.org/2001/XMLSchema-instance") - return xml.toxml('utf-8') + return xml.toxml("utf-8") elif t == minidom.Document: - return xml.toxml('utf-8') + return xml.toxml("utf-8") elif t == ET.Element: - return ET.tostring(xml, encoding='utf-8') + return ET.tostring(xml, encoding="utf-8") elif isinstance(xml, pyxb.binding.basis.complexTypeDefinition): return self.toxml(xml) elif hasattr(xml, "toDOM"): - return xml.toDOM().toxml('utf-8') + return xml.toDOM().toxml("utf-8") else: raise Exception("unrecognized type " + str(t)) @override def __str__(self) -> str: return "client for " + self.url - - diff --git a/src/npoapi/bin/npo_check_credentials.py b/src/npoapi/bin/npo_check_credentials.py index 6793d3d..ace3ef5 100755 --- a/src/npoapi/bin/npo_check_credentials.py +++ b/src/npoapi/bin/npo_check_credentials.py @@ -1,20 +1,21 @@ #!/usr/bin/env python3 """ - Simple client to get an object from the NPO Frontend API media endpoint. This version accepts explicit key, secret origins. +Simple client to get an object from the NPO Frontend API media endpoint. This version accepts explicit key, secret origins. """ + from npoapi.media import Media def check_credentials(): - client = Media().command_line_client( description="Get an media object from the NPO Frontend API using provided credentials. This lets you easily " - "check whether new credentials do work") + "check whether new credentials do work" + ) - client.add_argument('apikey', type=str, nargs=1, help='key') - client.add_argument('apisecret', type=str, nargs=1, help='secret') - client.add_argument('origin', type=str, nargs=1, help='origin') - client.add_argument('mid', type=str, nargs='?', help='mid', default="WO_NCRV_026201") + client.add_argument("apikey", type=str, nargs=1, help="key") + client.add_argument("apisecret", type=str, nargs=1, help="secret") + client.add_argument("origin", type=str, nargs=1, help="origin") + client.add_argument("mid", type=str, nargs="?", help="mid", default="WO_NCRV_026201") args = client.parse_args() diff --git a/src/npoapi/bin/npo_media_changes.py b/src/npoapi/bin/npo_media_changes.py index 7416573..ef9f11b 100755 --- a/src/npoapi/bin/npo_media_changes.py +++ b/src/npoapi/bin/npo_media_changes.py @@ -1,7 +1,8 @@ #!/usr/bin/env python3 """ - Simple client to get the changes feed from the NPO Frontend API +Simple client to get the changes feed from the NPO Frontend API """ + from datetime import datetime from io import TextIOWrapper from sys import stdout @@ -13,15 +14,26 @@ def media_changes(): client = Media().command_line_client("Get changes feed from the NPO Frontend API", exclude_arguments={"accept"}) - client.add_argument('profile', type=str, nargs='?', help='Profile') - client.add_argument("-s", "--since", type=str, default=None, help="The since date. As millis since epoch, ISO date format, or ISO duration format (which will substracted from the current time)") - client.add_argument('-m', "--max", type=int, default="100", help="The maximal number of changes to return. If not specified 100 will be filled as parameter. If set to -1, no max parameter will be used (which is unbounded).") + client.add_argument("profile", type=str, nargs="?", help="Profile") + client.add_argument( + "-s", + "--since", + type=str, + default=None, + help="The since date. As millis since epoch, ISO date format, or ISO duration format (which will substracted from the current time)", + ) + client.add_argument( + "-m", + "--max", + type=int, + default="100", + help="The maximal number of changes to return. If not specified 100 will be filled as parameter. If set to -1, no max parameter will be used (which is unbounded).", + ) client.add_argument("--backwards", action="store_true") client.add_argument("--deletes", type=str, default="ID_ONLY", choices=("ID_ONLY", "EXCLUDE", "INCLUDE")) client.add_argument("--order", type=str, default=None, choices=("ASC", "DESC")) - client.add_argument("--tail", type=str, default=None, choices=("ALWAYS", "IF_EMPTY", "NEVER")) - client.add_argument('-p', "--properties", type=str, default=None, - help="properties filtering") + client.add_argument("--tail", type=str, default=None, choices=("ALWAYS", "IF_EMPTY", "NEVER")) + client.add_argument("-p", "--properties", type=str, default=None, help="properties filtering") client.add_argument("--reason_filter", type=str, default="") client.add_argument("--buffer_size", type=int, default="1000") @@ -33,18 +45,21 @@ def media_changes(): client.logger.info("Parsed duration " + str(duration) + " to " + str(since)) - - response = TextIOWrapper(client.changes_raw( - profile=args.profile, - since=since, - limit=None if args.max == -1 else args.max, - force_oldstyle=args.backwards, - properties=args.properties, - deletes=args.deletes, - tail=args.tail, - order=args.order, - stream=True, - reason_filter=args.reason_filter), encoding="UTF-8") + response = TextIOWrapper( + client.changes_raw( + profile=args.profile, + since=since, + limit=None if args.max == -1 else args.max, + force_oldstyle=args.backwards, + properties=args.properties, + deletes=args.deletes, + tail=args.tail, + order=args.order, + stream=True, + reason_filter=args.reason_filter, + ), + encoding="UTF-8", + ) buf_size = args.buffer_size buffer = response.read(buf_size) @@ -58,7 +73,7 @@ def media_changes(): response.close() stdout.flush() client.exit() - #time.sleep(300) + # time.sleep(300) if __name__ == "__main__": diff --git a/src/npoapi/bin/npo_media_follow_changes.py b/src/npoapi/bin/npo_media_follow_changes.py index 31f4ed2..85d48fe 100755 --- a/src/npoapi/bin/npo_media_follow_changes.py +++ b/src/npoapi/bin/npo_media_follow_changes.py @@ -1,7 +1,8 @@ #!/usr/bin/env python3 """ - Simple client to get the changes feed from the NPO Frontend API +Simple client to get the changes feed from the NPO Frontend API """ + import json import os import time @@ -15,24 +16,45 @@ class FollowChanges: def __init__(self): - self.client = Media().command_line_client("Get changes feed from the NPO Frontend API", exclude_arguments={"accept"}) + self.client = Media().command_line_client( + "Get changes feed from the NPO Frontend API", exclude_arguments={"accept"} + ) self.logger = self.client.logger - self.client.add_argument('profile', type=str, nargs='?', help='Profile') - self.client.add_argument("-s", "--since", type=str, default=None, help="From what time/mid to stream, or a file containing it. It defaults to a file called since.. Empty string: now, no store.") + self.client.add_argument("profile", type=str, nargs="?", help="Profile") + self.client.add_argument( + "-s", + "--since", + type=str, + default=None, + help="From what time/mid to stream, or a file containing it. It defaults to a file called since.. Empty string: now, no store.", + ) self.client.add_argument("--sleep", type=int, default=5, help="sleep (in seconds) between calls") self.client.add_argument("--deletes", type=str, default="ID_ONLY") - self.client.add_argument("--tail", action='store_true') - self.client.add_argument("--tail-offset", type=int, default=0, help='extra millis to subtract from tail') + self.client.add_argument("--tail", action="store_true") + self.client.add_argument("--tail-offset", type=int, default=0, help="extra millis to subtract from tail") - self.client.add_argument('-p', "--properties", type=str, default=None, - help="properties filtering") - self.client.add_argument("--raw", action='store_true', help="No attempts to stream and handle big results. Everything should fit in memory. Simpler, but less efficient.") - self.client.add_argument("--reasonFilter", type=str, default="", help="reason filtering argument. Defaults to empty string (only reporting)") - self.client.add_argument("--change_to_string", type=str, default="CONCISE", help="dict to string for change. E.g. 'change.get('id', '') + title(change). Or 'CONCISE' for a default concise string.") + self.client.add_argument("-p", "--properties", type=str, default=None, help="properties filtering") + self.client.add_argument( + "--raw", + action="store_true", + help="No attempts to stream and handle big results. Everything should fit in memory. Simpler, but less efficient.", + ) + self.client.add_argument( + "--reasonFilter", + type=str, + default="", + help="reason filtering argument. Defaults to empty string (only reporting)", + ) + self.client.add_argument( + "--change_to_string", + type=str, + default="CONCISE", + help="dict to string for change. E.g. 'change.get('id', '') + title(change). Or 'CONCISE' for a default concise string.", + ) self.args = self.client.parse_args() - self.tail_offset = timedelta(milliseconds = self.args.tail_offset) + self.tail_offset = timedelta(milliseconds=self.args.tail_offset) since = self.args.since self.since_file = None @@ -50,17 +72,16 @@ def __init__(self): self.since = json.loads(open(self.since_file, "r").read().strip()) self.logger.info("Using since %s from %s" % (self.since, self.since_file)) else: - self.since = { - } + self.since = {} if since.isdigit(): - self.since['timestamp'] = int(since) + self.since["timestamp"] = int(since) else: - self.since['timestamp'] = int(datetime.fromisoformat(since).timestamp() * 1000) - 60000 - self.since['mid'] = None + self.since["timestamp"] = int(datetime.fromisoformat(since).timestamp() * 1000) - 60000 + self.since["mid"] = None self.safe_since() self.check_grow = False if self.args.change_to_string == "CONCISE": - #self.change_to_string_function = " self.client.actualenv + ':' + str(change.get('publishDate')) + ':' + timestamp_to_string(change.get('publishDate')) + ':' + change.get('id', '') + ':' + title(change) + ':' + reasons(change)" + # self.change_to_string_function = " self.client.actualenv + ':' + str(change.get('publishDate')) + ':' + timestamp_to_string(change.get('publishDate')) + ':' + change.get('id', '') + ':' + title(change) + ':' + reasons(change)" self.change_to_string_function = " self.client.actualenv + ':' + timestamp_to_string(change.get('publishDate')) + ':' + change.get('id', '') + ':' + title(change) + ':' + reasons(change)" else: self.change_to_string_function = self.args.change_to_string @@ -68,16 +89,20 @@ def __init__(self): def change_to_string(self, change): if self.args.change_to_string: + def timestamp_to_string(timestamp): return self.timestamp_to_string(timestamp) + def title(change): return self.title(change) + def reasons(change): - ar = change.get('reasons', []) + ar = change.get("reasons", []) if len(ar) == 0: self.logger.debug("No reasons in %s" % change) return "" - return ",".join(list(map(lambda r: r['value'], ar))) + return ",".join(list(map(lambda r: r["value"], ar))) + return str(eval(self.change_to_string_function)) else: return json.dumps(change) @@ -93,10 +118,10 @@ def title(change): delete = change.get("delete", False) if delete: return "DELETE" - media = change.get('media') + media = change.get("media") if media: - return media['titles'][0]['value'] + return media["titles"][0]["value"] else: return "" @@ -108,15 +133,17 @@ def modi(change): delete = change.get("delete", False) if delete: return "DELETE" - media = change.get('media') + media = change.get("media") @staticmethod def timestamp_to_string(timestamp): - return datetime.fromtimestamp(timestamp/1000).isoformat(timespec='milliseconds') if not timestamp is None else "" + return ( + datetime.fromtimestamp(timestamp / 1000).isoformat(timespec="milliseconds") if not timestamp is None else "" + ) def set_since(self, timestamp, mid): - self.since['timestamp'] = timestamp - self.since['mid'] = mid + self.since["timestamp"] = timestamp + self.since["mid"] = mid self.safe_since() def safe_since(self): @@ -126,32 +153,41 @@ def safe_since(self): def one_call_raw(self): response = self.client.changes_raw( profile=self.args.profile, - since=self.since['timestamp'], - since_mid = self.since['mid'], + since=self.since["timestamp"], + since_mid=self.since["mid"], properties=self.args.properties, deletes=self.args.deletes, reason_filter=self.args.reasonFilter, - stream=False) - changes = json.loads(response)['changes'] + stream=False, + ) + changes = json.loads(response)["changes"] last_change = changes[-1] - self.set_since(last_change['publishDate'], last_change['id']) + self.set_since(last_change["publishDate"], last_change["id"]) for change in changes: - is_tail = change.get('tail', False) + is_tail = change.get("tail", False) if not is_tail or self.args.tail: stdout.write(self.change_to_string(change) + "\n") def one_call(self): - - self.logger.debug("%s One_calling for %s/%s/%s" % (datetime.now().strftime('%Y-%m-%dT%H:%M:%SZ'), self.since['timestamp'], datetime.fromtimestamp(self.since['timestamp'] / 1000).strftime('%Y-%m-%dT%H:%M:%SZ'), self.since['mid'])) + self.logger.debug( + "%s One_calling for %s/%s/%s" + % ( + datetime.now().strftime("%Y-%m-%dT%H:%M:%SZ"), + self.since["timestamp"], + datetime.fromtimestamp(self.since["timestamp"] / 1000).strftime("%Y-%m-%dT%H:%M:%SZ"), + self.since["mid"], + ) + ) response = self.client.changes_raw( - profile = self.args.profile, - since = self.since['timestamp'], - since_mid = self.since['mid'], + profile=self.args.profile, + since=self.since["timestamp"], + since_mid=self.since["mid"], properties=self.args.properties, deletes=self.args.deletes, reason_filter=self.args.reasonFilter, - stream=True) + stream=True, + ) if response is None: self.logger.debug("No response") @@ -163,21 +199,24 @@ def one_call(self): self.logger.error("Error %d" % response.status) return data = json_stream.load(response) - changes = data['changes'] + changes = data["changes"] new_since = None count = 0 for lazy_change in changes: count += 1 c = json_stream.to_standard_types(lazy_change) - new_since = c.get('publishDate') - is_tail = c.get('tail', False) + new_since = c.get("publishDate") + is_tail = c.get("tail", False) if is_tail: if self.tail_offset.total_seconds() > 0: prev_since = new_since new_since -= int(self.tail_offset.total_seconds() * 1000) self.logger.debug("Offsetting since %s -> %s" % (prev_since, new_since)) - self.logger.debug("Setting since to %s (%s), (%s ms before now)" % (new_since, str(is_tail), int(datetime.now().timestamp() * 1000 - new_since))) - self.set_since(new_since, c.get('id', None)) + self.logger.debug( + "Setting since to %s (%s), (%s ms before now)" + % (new_since, str(is_tail), int(datetime.now().timestamp() * 1000 - new_since)) + ) + self.set_since(new_since, c.get("id", None)) if not new_since: self.logger.error("No publishDate in %s" % c) break @@ -189,7 +228,7 @@ def one_call(self): raise Exception("No changes received!") if new_since is None: raise Exception("No tail received?") - if self.check_grow and new_since < self.since['timestamp']: + if self.check_grow and new_since < self.since["timestamp"]: raise Exception("Since doesn't grow (%s < %s)" % (new_since, self.since)) self.check_grow = True changes.read_all() @@ -199,7 +238,10 @@ def follow_changes(self): self.logger.info("Watching %s " % (self.client.url)) while True: try: - self.logger.debug("since: %s,%s (%s)" % (self.since, self.since['timestamp'], self.timestamp_to_string(self.since['timestamp']))) + self.logger.debug( + "since: %s,%s (%s)" + % (self.since, self.since["timestamp"], self.timestamp_to_string(self.since["timestamp"])) + ) if self.args.raw: self.one_call_raw() else: @@ -220,5 +262,6 @@ def follow_changes(self): def media_follow_changes(): FollowChanges().follow_changes() + if __name__ == "__main__": media_follow_changes() diff --git a/src/npoapi/bin/npo_media_get.py b/src/npoapi/bin/npo_media_get.py index 2525c36..a537c8d 100755 --- a/src/npoapi/bin/npo_media_get.py +++ b/src/npoapi/bin/npo_media_get.py @@ -1,52 +1,60 @@ #!/usr/bin/env python3 """ - Simple client to get an object from the NPO Frontend API media endpoint +Simple client to get an object from the NPO Frontend API media endpoint """ -from npoapi import Media -from npoapi.utils import resolve_mid, MID_HELP +from npoapi import Media +from npoapi.utils import MID_HELP, resolve_mid def media_get(): client = Media().command_line_client(description="Get an media object from the NPO Frontend API") list_of_subs = ["descendants", "members", "episodes", "related", ""] - client.add_argument('mid', type=str, nargs=1, help=MID_HELP) - client.add_argument('sub', type=str, nargs='?', default="", choices=list_of_subs, - help="Sub call for the mediaobject. On default the mediaobject itself is returned, but you can also opt for one of these choices") - client.add_argument('-s', "--sort", type=str, default=None, choices={"asc", "desc"}, - help="sort (only relevant when using sub)") - client.add_argument('-M', "--multiple", action='store_true', - help=""" + client.add_argument("mid", type=str, nargs=1, help=MID_HELP) + client.add_argument( + "sub", + type=str, + nargs="?", + default="", + choices=list_of_subs, + help="Sub call for the mediaobject. On default the mediaobject itself is returned, but you can also opt for one of these choices", + ) + client.add_argument( + "-s", "--sort", type=str, default=None, choices={"asc", "desc"}, help="sort (only relevant when using sub)" + ) + client.add_argument( + "-M", + "--multiple", + action="store_true", + help=""" Use the 'multiple' call. This will result not one media object, but a list. If the argument is a comma separated list of mids or a file (e.g. ~/github/npo-poms/api/examples/media/get-multiple.json). If it is a file, the POST call is done. Sub calls and the sort option are ignored. - """) - client.add_argument('-p', "--properties", type=str, default=None, - help="properties filtering") - client.add_argument('-m', "--max", type=int, default=None, - help="max (only relevant when using sub)") - client.add_argument('-o', "--offset", type=int, default=None, - help="offset (only relevant when using sub)") - client.add_argument('-P', "--profile", type=str, default=None, - help="profile filtering") + """, + ) + client.add_argument("-p", "--properties", type=str, default=None, help="properties filtering") + client.add_argument("-m", "--max", type=int, default=None, help="max (only relevant when using sub)") + client.add_argument("-o", "--offset", type=int, default=None, help="offset (only relevant when using sub)") + client.add_argument("-P", "--profile", type=str, default=None, help="profile filtering") args = client.parse_args() mid = resolve_mid(args.mid[0]) - if args.multiple: print(client.multiple(mid, properties=args.properties, profile=args.profile)) else: - print(client.get(mid, - sub="" if args.sub == "" else "/" + args.sub, - properties=args.properties, - sort=args.sort, - limit=args.max, - offset=args.offset, - profile=args.profile - - )) + print( + client.get( + mid, + sub="" if args.sub == "" else "/" + args.sub, + properties=args.properties, + sort=args.sort, + limit=args.max, + offset=args.offset, + profile=args.profile, + ) + ) client.exit() diff --git a/src/npoapi/bin/npo_media_iterate.py b/src/npoapi/bin/npo_media_iterate.py index 6812fbb..b699d0b 100755 --- a/src/npoapi/bin/npo_media_iterate.py +++ b/src/npoapi/bin/npo_media_iterate.py @@ -1,26 +1,26 @@ #!/usr/bin/env python3 """ - Simple client to search media in the NPO Frontend API +Simple client to search media in the NPO Frontend API """ + +import os +import sys from http.client import IncompleteRead +from typing import Callable import json_stream -from typing import Callable from npoapi import Media -import sys -import os class MediaIterate: - @staticmethod def raw_to_stdout(response, progress: bool, buffer_size: int): buffer = bytearray("-" * buffer_size, "ascii") total_count = 0 while not response.closed: - if progress: - sys.stderr.write('.') + if progress: + sys.stderr.write(".") sys.stderr.flush() try: number_of_bytes_read = response.readinto(buffer) @@ -37,9 +37,9 @@ def raw_to_stdout(response, progress: bool, buffer_size: int): sys.stderr.write("\n%d byte written\n" % total_count) @staticmethod - def stream_to_stdout(response, progress: bool, buffer_size: int, object_to_string:Callable[[dict, int], str]): + def stream_to_stdout(response, progress: bool, buffer_size: int, object_to_string: Callable[[dict, int], str]): data = json_stream.load(response) - mediaobjects = data['mediaobjects'] + mediaobjects = data["mediaobjects"] count = 0 for lazy_mediaobject in mediaobjects: count += 1 @@ -49,36 +49,65 @@ def stream_to_stdout(response, progress: bool, buffer_size: int, object_to_strin response.close() magical_values = { - "LINE": "lambda mo: str(mo)", + "LINE": "lambda mo: str(mo)", "MID": "lambda mo, count: str(count) + ':' + str(mo['mid'])", - "TITLE": "lambda mo, count: str(count) + ':' + str(mo['mid']) + mo['titles'][0]['value']" + "TITLE": "lambda mo, count: str(count) + ':' + str(mo['mid']) + mo['titles'][0]['value']", } - def media_iterate(self): buffer_size = 10000 - client = Media()\ - .command_line_client(description="Iterate the NPO Frontend API. This is the adviced way to download all data or all data relevant to you (via profile and/or form arguments).", exclude_arguments= {"accept"}) - client.add_argument('profile', type=str, nargs='?', - help='The profile to search within. Can be empty string to not use a profile') - client.add_argument('form', type=str, nargs='?', - help='The search form. This may be a json string, or the name of a file containing it') - client.add_argument('-m', "--max", type=int, default="100", help="On default the size is maximized to 100, but unlike with other API calls you can set this max value arbitrary large. -1 means no maximum") - client.add_argument("--progress", action='store_true', help="If set, some progress indication will be written to stderr (a dot for every %s bytes)" % buffer_size) - client.add_argument('-p', "--properties", type=str, default=None, help="properties filtering") - client.add_argument("--object_to_string", type=str, default=None, help= - """ + client = Media().command_line_client( + description="Iterate the NPO Frontend API. This is the adviced way to download all data or all data relevant to you (via profile and/or form arguments).", + exclude_arguments={"accept"}, + ) + client.add_argument( + "profile", + type=str, + nargs="?", + help="The profile to search within. Can be empty string to not use a profile", + ) + client.add_argument( + "form", + type=str, + nargs="?", + help="The search form. This may be a json string, or the name of a file containing it", + ) + client.add_argument( + "-m", + "--max", + type=int, + default="100", + help="On default the size is maximized to 100, but unlike with other API calls you can set this max value arbitrary large. -1 means no maximum", + ) + client.add_argument( + "--progress", + action="store_true", + help="If set, some progress indication will be written to stderr (a dot for every %s bytes)" % buffer_size, + ) + client.add_argument("-p", "--properties", type=str, default=None, help="properties filtering") + client.add_argument( + "--object_to_string", + type=str, + default=None, + help=""" A lambda receiving a dict and a count. Should produce a string. E.g. lambda mo: mo.get('mid', ''). A few magical values are supported: %s - """ % ("\n".join(list(map(lambda item: item[0] + ":" + item[1], self.magical_values.items()))))) - + """ + % ("\n".join(list(map(lambda item: item[0] + ":" + item[1], self.magical_values.items())))), + ) args = client.parse_args() form = args.form - response = client.iterate_raw(form=form, profile=args.profile, limit=None if args.max == -1 else args.max, timeout=100, properties=args.properties) + response = client.iterate_raw( + form=form, + profile=args.profile, + limit=None if args.max == -1 else args.max, + timeout=100, + properties=args.properties, + ) if args.object_to_string: object_to_string = args.object_to_string @@ -109,4 +138,3 @@ def media_iterate(): if __name__ == "__main__": media_iterate() - diff --git a/src/npoapi/bin/npo_media_search.py b/src/npoapi/bin/npo_media_search.py index caacdf4..83309e0 100755 --- a/src/npoapi/bin/npo_media_search.py +++ b/src/npoapi/bin/npo_media_search.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 """ - Simple client to search media in the NPO Frontend API +Simple client to search media in the NPO Frontend API """ import json @@ -10,22 +10,29 @@ def media_frontendsearch(): - client = Media()\ - .command_line_client(description="Search from the NPO Frontend API") + client = Media().command_line_client(description="Search from the NPO Frontend API") list_of_subs = ["descendants", "members", "episodes", "related", ""] - client.add_argument('form', type=str, nargs=1, help='The search form. This may be a json string, or the name of a file containing it. If -, read from stdin') - client.add_argument('mid', type=str, nargs='?', default=None, - help="Mid for use with 'sub'") - client.add_argument('sub', type=str, nargs='?', default="", choices=list_of_subs, - help="Sub call for the mediaobject. On default the mediaobject itself is returned, but you can also opt for one of these choices") - client.add_argument('-s', "--sort", type=str, default=None, choices={"asc", "desc"}) - client.add_argument('-m', "--max", type=int, default="240") - client.add_argument('-o', "--offset", type=int, default=0) - client.add_argument('-f', "--fuzzy", action='store_true') - client.add_argument('-p', "--properties", type=str, default=None, - help="properties filtering") - client.add_argument('-P', "--profile", type=str, default=None, - help="profile filtering") + client.add_argument( + "form", + type=str, + nargs=1, + help="The search form. This may be a json string, or the name of a file containing it. If -, read from stdin", + ) + client.add_argument("mid", type=str, nargs="?", default=None, help="Mid for use with 'sub'") + client.add_argument( + "sub", + type=str, + nargs="?", + default="", + choices=list_of_subs, + help="Sub call for the mediaobject. On default the mediaobject itself is returned, but you can also opt for one of these choices", + ) + client.add_argument("-s", "--sort", type=str, default=None, choices={"asc", "desc"}) + client.add_argument("-m", "--max", type=int, default="240") + client.add_argument("-o", "--offset", type=int, default=0) + client.add_argument("-f", "--fuzzy", action="store_true") + client.add_argument("-p", "--properties", type=str, default=None, help="properties filtering") + client.add_argument("-P", "--profile", type=str, default=None, help="profile filtering") args = client.parse_args() mid = args.mid @@ -33,10 +40,24 @@ def media_frontendsearch(): form = args.form[0] if not looks_like_form(form): - form = "{\"searches\": {\"text\": {\"value\": %s, \"fuzziness\": \"%s\" }}}" % (json.dumps(form), "AUTO" if args.fuzzy else "") + form = '{"searches": {"text": {"value": %s, "fuzziness": "%s" }}}' % ( + json.dumps(form), + "AUTO" if args.fuzzy else "", + ) client.logger.debug("Posting " + form) - print(client.search(form, sort=args.sort, limit=args.max, offset=args.offset, properties=args.properties, mid=mid, sub=sub, profile=args.profile)) + print( + client.search( + form, + sort=args.sort, + limit=args.max, + offset=args.offset, + properties=args.properties, + mid=mid, + sub=sub, + profile=args.profile, + ) + ) client.exit() diff --git a/src/npoapi/bin/npo_mediabackend.py b/src/npoapi/bin/npo_mediabackend.py index 5f0bd81..3caf73f 100755 --- a/src/npoapi/bin/npo_mediabackend.py +++ b/src/npoapi/bin/npo_mediabackend.py @@ -1,53 +1,69 @@ #!/usr/bin/env python3 """ - Simple client to get an object from the NPO Backend API media endpoint +Simple client to get an object from the NPO Backend API media endpoint """ + +import re +from xml.dom.minidom import parseString + from npoapi import MediaBackend -from npoapi.base import Binding, DEFAULT_BINDING +from npoapi.base import DEFAULT_BINDING, Binding from npoapi.xml import media_search -from xml.dom.minidom import parseString -import re def mediabackend(): client = MediaBackend().command_line_client(description="Set an media object from the NPO Backend API") - client.add_argument('xml', type=str, nargs='?', help='The xml to post') - client.add_argument('mid', type=str, nargs='?', help='The mid') + client.add_argument("xml", type=str, nargs="?", help="The xml to post") + client.add_argument("mid", type=str, nargs="?", help="The mid") list_of_subs = ["memberOf", ""] - client.add_argument('sub', type=str, nargs='?', default="", choices=list_of_subs, - help="Sub call for the mediaobject. On default the mediaobject itself is returned, but you can also opt for one of these choices") + client.add_argument( + "sub", + type=str, + nargs="?", + default="", + choices=list_of_subs, + help="Sub call for the mediaobject. On default the mediaobject itself is returned, but you can also opt for one of these choices", + ) - client.add_argument('-S', '--search', action='store_true', - help="""Force that the xml is interpreted as a search""") - client.add_argument('-W', '--writable', action='store_true', - help="""Only writable items are searched""") - client.add_argument('-D', '--delete', action='store_true', - help="""The object with given mid will be deleted.""") + client.add_argument("-S", "--search", action="store_true", help="""Force that the xml is interpreted as a search""") + client.add_argument("-W", "--writable", action="store_true", help="""Only writable items are searched""") + client.add_argument("-D", "--delete", action="store_true", help="""The object with given mid will be deleted.""") - client.add_argument('--raw', action='store_true', help="""The XML will not be parsed first. Implies that the argument is XML, not a MID""") + client.add_argument( + "--raw", + action="store_true", + help="""The XML will not be parsed first. Implies that the argument is XML, not a MID""", + ) - client.add_argument('--validate', action='store_true', help="""Use validateInput argument, when posting XML's.""") + client.add_argument("--validate", action="store_true", help="""Use validateInput argument, when posting XML's.""") - client.add_argument('--client_validate', action='store_true', help="""Make pyxb validate.""") + client.add_argument("--client_validate", action="store_true", help="""Make pyxb validate.""") - client.add_argument('--steal_crids', type=str, default='IF_DELETED', help="""""", choices=['YES', 'NO', 'IF_DELETED']) + client.add_argument( + "--steal_crids", type=str, default="IF_DELETED", help="""""", choices=["YES", "NO", "IF_DELETED"] + ) - client.add_argument('--lookup_crid', type=bool, help="""""", choices=[True, False]) + client.add_argument("--lookup_crid", type=bool, help="""""", choices=[True, False]) - client.add_argument('-p', '--process', type=str, - help="""python code to postprocess. E.g.: + client.add_argument( + "-p", + "--process", + type=str, + help="""python code to postprocess. E.g.: update.midRef ='POMS_S_VPRO_168360' - """ - ) - - client.add_argument('-b', '--binding', - choices=Binding.__members__, - default=DEFAULT_BINDING.name, - help=""" + """, + ) + + client.add_argument( + "-b", + "--binding", + choices=Binding.__members__, + default=DEFAULT_BINDING.name, + help=""" binding to use when unmarshalling to objects (when using --process) - """ - ) + """, + ) args = client.parse_args() @@ -94,21 +110,47 @@ def is_prediction(update): update = client.to_object_or_none(xml, validate=args.client_validate, binding=binding) exec(args.process) client.logger.debug("Execed " + args.process) - if not(type(update) == str) and xml.childNodes[0].namespaceURI == media_search.Namespace.uri(): + if not (type(update) == str) and xml.childNodes[0].namespaceURI == media_search.Namespace.uri(): if args.delete: client.exit("cannot delete with search") - print(client.find(update, writable=args.writable, raw=args.raw, validate_input=args.validate, client_validate=args.client_validate)) + print( + client.find( + update, + writable=args.writable, + raw=args.raw, + validate_input=args.validate, + client_validate=args.client_validate, + ) + ) else: if args.delete: mid = update.mid print(client.delete(mid)) else: if is_prediction(update): - print(client.post(update, raw=args.raw, validate_input=args.validate, client_validate=args.client_validate, lookupcrid=args.lookup_crid)) - else : - print(client.post(update, - raw=args.raw, - validate_input=args.validate, client_validate=args.client_validate, lookupcrid=args.lookup_crid, steal_crids=args.steal_crids, binding=binding, sub=args.sub, mid=mid)) + print( + client.post( + update, + raw=args.raw, + validate_input=args.validate, + client_validate=args.client_validate, + lookupcrid=args.lookup_crid, + ) + ) + else: + print( + client.post( + update, + raw=args.raw, + validate_input=args.validate, + client_validate=args.client_validate, + lookupcrid=args.lookup_crid, + steal_crids=args.steal_crids, + binding=binding, + sub=args.sub, + mid=mid, + ) + ) elif mid: if args.delete: print(client.delete(mid)) diff --git a/src/npoapi/bin/npo_mediabackend_get.py b/src/npoapi/bin/npo_mediabackend_get.py index 5eaeb22..44a1658 100755 --- a/src/npoapi/bin/npo_mediabackend_get.py +++ b/src/npoapi/bin/npo_mediabackend_get.py @@ -1,16 +1,15 @@ #!/usr/bin/env python3 """ - Simple client to get an object from the NPO Backend API media endpoint. You can also call the DELETE endpoint. +Simple client to get an object from the NPO Backend API media endpoint. You can also call the DELETE endpoint. """ -from npoapi import MediaBackend -from npoapi.utils import resolve_mid, MID_HELP +from npoapi import MediaBackend +from npoapi.utils import MID_HELP, resolve_mid def mediabackend_get(): client = MediaBackend().command_line_client( - description="Get an media object from the NPO Backend API", - exclude_arguments="errors" + description="Get an media object from the NPO Backend API", exclude_arguments="errors" ) list_of_subs = [ @@ -26,43 +25,51 @@ def mediabackend_get(): "predictions/INTERNETVOD", "predictions/TVVOD", "predictions/PLUSVOD", - "" - ] - - client.add_argument('mid', type=str, nargs=1, help=MID_HELP) - client.add_argument('sub', type=str, nargs='?', default="", choices=list_of_subs, - help=""" - Sub call for the mediaobject. On default the mediaobject (update view) itself is returned, but you can also opt for one of these choices - """) + "", + ] + + client.add_argument("mid", type=str, nargs=1, help=MID_HELP) + client.add_argument( + "sub", + type=str, + nargs="?", + default="", + choices=list_of_subs, + help=""" + Sub call for the mediaobject. On default the mediaobject (update view) itself is returned, but you can also opt for one of these choices + """, + ) - client.add_argument('-p', '--process', type=str, help="""python code to postprocess. E.g. "update.duration='PT5M'""""") + client.add_argument( + "-p", "--process", type=str, help="""python code to postprocess. E.g. "update.duration='PT5M'""" "" + ) - client.add_argument('--nofollowMerges', action='store_true', help="""implicitely follow merges""") - client.add_argument('--deletes', action='store_true', help="""find deleted objects too""") - client.add_argument('--raw', action='store_true') + client.add_argument("--nofollowMerges", action="store_true", help="""implicitely follow merges""") + client.add_argument("--deletes", action="store_true", help="""find deleted objects too""") + client.add_argument("--raw", action="store_true") - client.add_argument('-D', '--delete', action='store_true', - help="""The mid is deleted""") + client.add_argument("-D", "--delete", action="store_true", help="""The mid is deleted""") - client.add_argument('-F', '--full', action='store_true', help="""full xml version""") + client.add_argument("-F", "--full", action="store_true", help="""full xml version""") args = client.parse_args() process = args.process - sub=args.sub + sub = args.sub mid = resolve_mid(args.mid[0]) def get(): nonlocal sub if sub == "subtitles": return client.subtitles(mid) - elif sub == 'members' or sub == 'episodes': - return client.members_or_episodes(mid, sub, full=args.full, follow_merges=not args.nofollowMerges, deletes=args.deletes, raw=args.raw) + elif sub == "members" or sub == "episodes": + return client.members_or_episodes( + mid, sub, full=args.full, follow_merges=not args.nofollowMerges, deletes=args.deletes, raw=args.raw + ) else: if args.full and sub == "": sub = "full" return client.get_sub(mid, sub, follow_merges=not args.nofollowMerges, deletes=args.deletes) - if not args.delete or process: result = get() else: @@ -72,8 +79,7 @@ def get(): client.delete(resolve_mid(mid)) if type(result) == list: - strings = map(lambda o: - o.toprettyxml(), result) + strings = map(lambda o: o.toprettyxml(), result) for s in strings: print(s) elif result is not None: @@ -81,6 +87,7 @@ def get(): print(client.pretty_xml(result)) else: from npoapi.xml import poms + update = poms.CreateFromDocument(result) exec(process) print(update.toDOM().toprettyxml(indent=" ")) @@ -90,4 +97,3 @@ def get(): if __name__ == "__main__": mediabackend_get() - diff --git a/src/npoapi/bin/npo_pages_get.py b/src/npoapi/bin/npo_pages_get.py index c53099d..9f2cb97 100755 --- a/src/npoapi/bin/npo_pages_get.py +++ b/src/npoapi/bin/npo_pages_get.py @@ -1,13 +1,14 @@ #!/usr/bin/env python3 """ - Simple client to get an page from the NPO Frontend API pages endpoint +Simple client to get an page from the NPO Frontend API pages endpoint """ + from npoapi import Pages def pages_get(): client = Pages().command_line_client(description="Get a page from the NPO Frontend API") - client.add_argument('url', type=str, nargs=1, help='The url or crid of the object to get') + client.add_argument("url", type=str, nargs=1, help="The url or crid of the object to get") args = client.parse_args() diff --git a/src/npoapi/bin/npo_pages_iterate.py b/src/npoapi/bin/npo_pages_iterate.py index 96c9eeb..ef91cb2 100755 --- a/src/npoapi/bin/npo_pages_iterate.py +++ b/src/npoapi/bin/npo_pages_iterate.py @@ -1,28 +1,54 @@ #!/usr/bin/env python3 """ - Simple client to search media in the NPO Frontend API +Simple client to search media in the NPO Frontend API """ -from http.client import IncompleteRead -from npoapi import Pages -import sys import os +import sys +from http.client import IncompleteRead + import json_stream +from npoapi import Pages def pages_iterate(): - client = Pages()\ - .command_line_client(description="Iterate the NPO Frontend API. This is the adviced way to download all data or all data relevant to you (via profile and/or form arguments).", exclude_arguments= {"accept"}) - client.add_argument('profile', type=str, nargs='?', - help='The profile to search within. Can be empty string to not use a profile') - client.add_argument('form', type=str, nargs='?', - help='The search form. This may be a json string, or the name of a file containing it') - client.add_argument('-m', "--max", type=int, default="100", help="On default the size is maximized to 100, but unlike with other API calls you can set this max value arbitrary large.") - client.add_argument("--progress", action='store_true', help="If set to true, some progress indication will be written to stderr") - client.add_argument('-p', "--properties", type=str, default=None, help="properties filtering") - client.add_argument("--object_to_string", type=str, default="CONCISE", help="dict to string for change. E.g. 'change.get('id', '') + title(change). Or 'CONCISE' for a default concise string.") - client.add_argument("--output_size", type=int, default=None, help="If this is used, the 'output' parameter must contain a '%d', and every file will contain an array with this many media objects. Defaults to 1000 if output contains a '%d'") + client = Pages().command_line_client( + description="Iterate the NPO Frontend API. This is the adviced way to download all data or all data relevant to you (via profile and/or form arguments).", + exclude_arguments={"accept"}, + ) + client.add_argument( + "profile", type=str, nargs="?", help="The profile to search within. Can be empty string to not use a profile" + ) + client.add_argument( + "form", + type=str, + nargs="?", + help="The search form. This may be a json string, or the name of a file containing it", + ) + client.add_argument( + "-m", + "--max", + type=int, + default="100", + help="On default the size is maximized to 100, but unlike with other API calls you can set this max value arbitrary large.", + ) + client.add_argument( + "--progress", action="store_true", help="If set to true, some progress indication will be written to stderr" + ) + client.add_argument("-p", "--properties", type=str, default=None, help="properties filtering") + client.add_argument( + "--object_to_string", + type=str, + default="CONCISE", + help="dict to string for change. E.g. 'change.get('id', '') + title(change). Or 'CONCISE' for a default concise string.", + ) + client.add_argument( + "--output_size", + type=int, + default=None, + help="If this is used, the 'output' parameter must contain a '%d', and every file will contain an array with this many media objects. Defaults to 1000 if output contains a '%d'", + ) args = client.parse_args() form = args.form @@ -33,16 +59,17 @@ def pages_iterate(): }} """ - response = client.iterate_raw(profile=args.profile, form=form, limit=args.max, properties=args.properties, timeout=100) + response = client.iterate_raw( + profile=args.profile, form=form, limit=args.max, properties=args.properties, timeout=100 + ) if args.output: - if "%d" in args.output: + if "%d" in args.output: if args.output_size: output_size = args.output_size else: output_size = 1000 - output = args.output % 0 output_count = 0 output_file = open(output, "w") @@ -52,8 +79,8 @@ def pages_iterate(): buffer = bytearray("-" * buffer_size, "ascii") total_count = 0 while not response.closed: - if args.progress: - sys.stderr.write('.') + if args.progress: + sys.stderr.write(".") sys.stderr.flush() try: number_of_bytes_read = response.readinto(buffer) diff --git a/src/npoapi/bin/npo_pages_list.py b/src/npoapi/bin/npo_pages_list.py index 8b85af5..9660bb9 100755 --- a/src/npoapi/bin/npo_pages_list.py +++ b/src/npoapi/bin/npo_pages_list.py @@ -1,17 +1,18 @@ #!/usr/bin/env python3 """ - Simple client to get an page from the NPO Frontend API pages endpoint +Simple client to get an page from the NPO Frontend API pages endpoint """ + from npoapi import Pages def pages_list(): client = Pages().command_line_client(description="Get a pages from the NPO Frontend API") - client.add_argument('max', type=int) + client.add_argument("max", type=int) args = client.parse_args() - print(client.list(max = args.max)) + print(client.list(max=args.max)) client.exit() diff --git a/src/npoapi/bin/npo_pages_search.py b/src/npoapi/bin/npo_pages_search.py index 91e7649..531725f 100755 --- a/src/npoapi/bin/npo_pages_search.py +++ b/src/npoapi/bin/npo_pages_search.py @@ -1,7 +1,8 @@ #!/usr/bin/env python3 """ - Simple client to search media in the NPO Frontend API +Simple client to search media in the NPO Frontend API """ + import json from npoapi import Pages @@ -9,28 +10,37 @@ def pages_search(): - client = Pages()\ - .command_line_client(description="Search from the NPO Frontend API") - client.add_argument('form', type=str, nargs=1, help='The search form. This may be a json string, or the name of a file containing it. It can also be XML, or a string to search on') - client.add_argument('-s', "--sort", type=str, default=None, choices={"asc", "desc"}) - client.add_argument('-m', "--max", type=int, default="240") - client.add_argument('-o', "--offset", type=int, default=0) - client.add_argument("--mids", action="store_true", help='Interpret the form argument as a list of mids. Search pages with these mids embedded') - client.add_argument("--urlprefix", action="store_true", help='') - client.add_argument('-P', "--profile", type=str, default=None, - help="profile filtering") - client.add_argument('-p', "--properties", type=str, default=None, - help="properties filtering") + client = Pages().command_line_client(description="Search from the NPO Frontend API") + client.add_argument( + "form", + type=str, + nargs=1, + help="The search form. This may be a json string, or the name of a file containing it. It can also be XML, or a string to search on", + ) + client.add_argument("-s", "--sort", type=str, default=None, choices={"asc", "desc"}) + client.add_argument("-m", "--max", type=int, default="240") + client.add_argument("-o", "--offset", type=int, default=0) + client.add_argument( + "--mids", + action="store_true", + help="Interpret the form argument as a list of mids. Search pages with these mids embedded", + ) + client.add_argument("--urlprefix", action="store_true", help="") + client.add_argument("-P", "--profile", type=str, default=None, help="profile filtering") + client.add_argument("-p", "--properties", type=str, default=None, help="properties filtering") args = client.parse_args() form = args.form[0] if not looks_like_form(form): if args.mids: - form = "{\"mediaForm\": { \"searches\": {\"mediaIds\": %s}}}" % (json.dumps(form.split(","))) + form = '{"mediaForm": { "searches": {"mediaIds": %s}}}' % (json.dumps(form.split(","))) else: - form = "{\"searches\": {\"text\": %s}}" % json.dumps(form) + form = '{"searches": {"text": %s}}' % json.dumps(form) - print(client.search(form, sort=args.sort, limit=args.max, offset=args.offset, profile=args.profile, - properties=args.properties)) + print( + client.search( + form, sort=args.sort, limit=args.max, offset=args.offset, profile=args.profile, properties=args.properties + ) + ) client.exit() diff --git a/src/npoapi/bin/npo_pagesbackend.py b/src/npoapi/bin/npo_pagesbackend.py index b2629d4..0f5c6a6 100755 --- a/src/npoapi/bin/npo_pagesbackend.py +++ b/src/npoapi/bin/npo_pagesbackend.py @@ -1,22 +1,34 @@ #!/usr/bin/env python3 """ - Simple client publish to and delete pages from the NPO pages api. Using the rest interfaces at http://publish.pages.omroep.nl/api/pages/updates/ +Simple client publish to and delete pages from the NPO pages api. Using the rest interfaces at http://publish.pages.omroep.nl/api/pages/updates/ """ + from npoapi import PagesBackend from npoapi.base import Binding def pagesbackend(): client = PagesBackend().command_line_client(description="Set an page object into NPO API") - client.add_argument('xml', type=str, nargs=1, help='The xml to post (or in case of deletes/get it may be an url)') - client.add_argument('-p', '--process', type=str, help="""python code to postprocess. E.g. "update.embeds.embed[0].midRef ='POMS_S_VPRO_168360'""""") - client.add_argument('-D', '--delete', action='store_true', - help="""Deletes the page object. You can also only specify an URL""") + client.add_argument("xml", type=str, nargs=1, help="The xml to post (or in case of deletes/get it may be an url)") + client.add_argument( + "-p", + "--process", + type=str, + help="""python code to postprocess. E.g. "update.embeds.embed[0].midRef ='POMS_S_VPRO_168360'""" "", + ) + client.add_argument( + "-D", "--delete", action="store_true", help="""Deletes the page object. You can also only specify an URL""" + ) - client.add_argument('-B', '--batch_delete', action='store_true', - help="""Deletes a batch of page objects. You can also only specify a base-url""") - client.add_argument('-G', '--get', action='store_true', - help="""Get the page object. You can also only specify an URL""") + client.add_argument( + "-B", + "--batch_delete", + action="store_true", + help="""Deletes a batch of page objects. You can also only specify a base-url""", + ) + client.add_argument( + "-G", "--get", action="store_true", help="""Get the page object. You can also only specify an URL""" + ) args = client.parse_args() delete = args.delete or args.batch_delete @@ -60,4 +72,3 @@ def pagesbackend(): print(url) client.exit() - diff --git a/src/npoapi/bin/npo_schedule_get.py b/src/npoapi/bin/npo_schedule_get.py index 741238e..2208864 100755 --- a/src/npoapi/bin/npo_schedule_get.py +++ b/src/npoapi/bin/npo_schedule_get.py @@ -1,20 +1,29 @@ #!/usr/bin/env python3 """ - Simple client to get a schedule from the NPO Frontend API2 +Simple client to get a schedule from the NPO Frontend API2 """ + from npoapi import Schedule def schedule_get(): client = Schedule().command_line_client("Get schedule from the NPO Frontend API") - client.add_argument('guideDay', type=str, nargs='?', help='The day to get') - client.add_argument('channel', type=str, nargs='?', help='For channel to get') - client.add_argument('-s', "--sort", type=str, default=None, choices={"asc", "desc"}) - client.add_argument('-m', "--max", type=int, default="240") - client.add_argument('-o', "--offset", type=int, default=0) - client.add_argument('-p', "--properties", type=str, default=None, - help="properties filtering") + client.add_argument("guideDay", type=str, nargs="?", help="The day to get") + client.add_argument("channel", type=str, nargs="?", help="For channel to get") + client.add_argument("-s", "--sort", type=str, default=None, choices={"asc", "desc"}) + client.add_argument("-m", "--max", type=int, default="240") + client.add_argument("-o", "--offset", type=int, default=0) + client.add_argument("-p", "--properties", type=str, default=None, help="properties filtering") args = client.parse_args() - print(client.get(guideDay=args.guideDay, channel=args.channel, sort=args.sort, limit=args.max, offset=args.offset, properties=args.properties)) + print( + client.get( + guideDay=args.guideDay, + channel=args.channel, + sort=args.sort, + limit=args.max, + offset=args.offset, + properties=args.properties, + ) + ) client.exit() diff --git a/src/npoapi/bin/npo_schedule_search.py b/src/npoapi/bin/npo_schedule_search.py index 94e35ae..c8c5c9f 100755 --- a/src/npoapi/bin/npo_schedule_search.py +++ b/src/npoapi/bin/npo_schedule_search.py @@ -1,28 +1,36 @@ #!/usr/bin/env python3 """ - Simple client to search media in the NPO Frontend API +Simple client to search media in the NPO Frontend API """ -from npoapi import Schedule -import os + import json +import os + +from npoapi import Schedule def schedule_search(): - client = Schedule()\ - .command_line_client(description="Search from the NPO Frontend API") - client.add_argument('form', type=str, nargs=1, help='The search form. This may be a json string, or the name of a file containing it') - client.add_argument('-m', "--max", type=int, default="240") - client.add_argument('-o', "--offset", type=int, default=0) - client.add_argument('-p', "--properties", type=str, default=None, - help="properties filtering") - client.add_argument('-P', "--profile", type=str, default=None, - help="profile filtering") + client = Schedule().command_line_client(description="Search from the NPO Frontend API") + client.add_argument( + "form", + type=str, + nargs=1, + help="The search form. This may be a json string, or the name of a file containing it", + ) + client.add_argument("-m", "--max", type=int, default="240") + client.add_argument("-o", "--offset", type=int, default=0) + client.add_argument("-p", "--properties", type=str, default=None, help="properties filtering") + client.add_argument("-P", "--profile", type=str, default=None, help="profile filtering") args = client.parse_args() form = args.form[0] if not os.path.isfile(form) and not form.startswith("{") and not form.startswith("<"): - form = "{\"searches\": {\"text\": %s}}" % json.dumps(form) + form = '{"searches": {"text": %s}}' % json.dumps(form) - print(client.search(form, sort='asc', limit=args.max, offset=args.offset, properties=args.properties, profile=args.profile)) + print( + client.search( + form, sort="asc", limit=args.max, offset=args.offset, properties=args.properties, profile=args.profile + ) + ) client.exit() diff --git a/src/npoapi/bin/npo_subtitles.py b/src/npoapi/bin/npo_subtitles.py index 7596b38..e4507ee 100755 --- a/src/npoapi/bin/npo_subtitles.py +++ b/src/npoapi/bin/npo_subtitles.py @@ -1,29 +1,30 @@ #!/usr/bin/env python3 -""" +""" """ -""" -from npoapi import Subtitles -import os import json +import os + +from npoapi import Subtitles def subtitles(): client = Subtitles().command_line_client(description="Set subtitles") - client.add_argument('mid|text', type=str, nargs=1, help='The mid for wich subtitles to get. Or form description') - client.add_argument('-S', '--search', action='store_true', - help="""The argument is interpreted as a text to search on""") - client.add_argument('language', type=str, nargs='?', default="nl", help='Language. Required when getting mid') - client.add_argument('type', type=str, nargs='?', default="CAPTION", help='', choices={"CAPTION", "TRANSLATION"}) + client.add_argument("mid|text", type=str, nargs=1, help="The mid for wich subtitles to get. Or form description") + client.add_argument( + "-S", "--search", action="store_true", help="""The argument is interpreted as a text to search on""" + ) + client.add_argument("language", type=str, nargs="?", default="nl", help="Language. Required when getting mid") + client.add_argument("type", type=str, nargs="?", default="CAPTION", help="", choices={"CAPTION", "TRANSLATION"}) args = client.parse_args() - mid_or_text = vars(args)['mid|text'][0] + mid_or_text = vars(args)["mid|text"][0] language = args.language search = args.search if search: form = mid_or_text if not os.path.isfile(form) and not form.startswith("{") and not form.startswith("<"): - form = "{\"searches\": {\"text\": %s}}" % json.dumps(form) + form = '{"searches": {"text": %s}}' % json.dumps(form) print(client.search(form)) else: diff --git a/src/npoapi/bin/npo_thesaurus.py b/src/npoapi/bin/npo_thesaurus.py index 8436319..dd24418 100755 --- a/src/npoapi/bin/npo_thesaurus.py +++ b/src/npoapi/bin/npo_thesaurus.py @@ -1,18 +1,18 @@ #!/usr/bin/env python3 """ - Simple client to post thesaurus updates to npo backend api. +Simple client to post thesaurus updates to npo backend api. """ + from npoapi import PagesBackend from npoapi.xml import thesaurus def thesaurus(): client = PagesBackend().command_line_client(description="Submit thesaurus object") - client.add_argument('xml', type=str, nargs='?', help='The xml to post') + client.add_argument("xml", type=str, nargs="?", help="The xml to post") client.add_argument("--given_name", type=str, default=None, help="Override given name") client.add_argument("--family_name", type=str, default=None, help="Override family name") - args = client.parse_args() data = None @@ -24,13 +24,14 @@ def thesaurus(): update = client.to_object_or_none(data) else: import pyxb + update = thesaurus.newPersonRequest() update.person = pyxb.BIND() if args.given_name: update.person.givenName = args.given_name if args.family_name: - update.person.familyName= args.family_name + update.person.familyName = args.family_name response = client.post_person(update) client.logger.info("%s", str(response)) diff --git a/src/npoapi/data/media.py b/src/npoapi/data/media.py index 87ee80e..760f7eb 100644 --- a/src/npoapi/data/media.py +++ b/src/npoapi/data/media.py @@ -1,7 +1,9 @@ from dataclasses import dataclass, field from enum import Enum from typing import List, Optional, Union + from xsdata.models.datatype import XmlDate, XmlDateTime, XmlDuration + from npoapi.data.shared import ( Image, OwnerTypeEnum, @@ -2446,6 +2448,9 @@ class BaseMediaType: :ivar lastModified: :ivar workflow: :ivar mergedTo: + :ivar adoptQualityFromPlus: This attribute is used to indicate whether a program/segment is available in HD + quality for internet VOD. For groups this indicates the default value for its members/episodes. This is + an experimental feature which is/will be used in 2024 for the player. """ class Meta: @@ -2785,6 +2790,12 @@ class Meta: "pattern": r"[ \.a-zA-Z0-9_-]+", }, ) + adoptQualityFromPlus: Optional[bool] = field( + default=None, + metadata={ + "type": "Attribute", + }, + ) @dataclass(slots=True) @@ -2828,12 +2839,6 @@ class Meta: "required": True, }, ) - defaultElement: Optional[int] = field( - default=None, - metadata={ - "type": "Attribute", - }, - ) @dataclass(slots=True) diff --git a/src/npoapi/data/media_search.py b/src/npoapi/data/media_search.py index a1287e8..54715bd 100644 --- a/src/npoapi/data/media_search.py +++ b/src/npoapi/data/media_search.py @@ -1,7 +1,9 @@ from dataclasses import dataclass, field from enum import Enum from typing import List, Optional + from xsdata.models.datatype import XmlDateTime + from npoapi.data.media import ( AvTypeEnum, ChannelEnum, @@ -181,6 +183,38 @@ class Meta: ) +@dataclass(slots=True) +class MediaFormTypeTitle: + class Meta: + global_type = False + + value: str = field( + default="", + metadata={ + "required": True, + }, + ) + typeValue: Optional[TextualTypeEnum] = field( + default=None, + metadata={ + "name": "type", + "type": "Attribute", + }, + ) + owner: Optional[OwnerTypeEnum] = field( + default=None, + metadata={ + "type": "Attribute", + }, + ) + tokenized: bool = field( + default=False, + metadata={ + "type": "Attribute", + }, + ) + + @dataclass(slots=True) class MediaPagerType: class Meta: @@ -341,7 +375,7 @@ class Meta: "namespace": "urn:vpro:media:search:2012", }, ) - title: List["MediaFormType.Title"] = field( + title: List[MediaFormTypeTitle] = field( default_factory=list, metadata={ "type": "Element", @@ -574,34 +608,6 @@ class Meta: }, ) - @dataclass(slots=True) - class Title: - value: str = field( - default="", - metadata={ - "required": True, - }, - ) - typeValue: Optional[TextualTypeEnum] = field( - default=None, - metadata={ - "name": "type", - "type": "Attribute", - }, - ) - owner: Optional[OwnerTypeEnum] = field( - default=None, - metadata={ - "type": "Attribute", - }, - ) - tokenized: bool = field( - default=False, - metadata={ - "type": "Attribute", - }, - ) - @dataclass(slots=True) class MediaForm(MediaFormType): @@ -760,6 +766,13 @@ class Meta: "namespace": "urn:vpro:media:search:2012", }, ) + numberOfPublishedLocations: Optional[int] = field( + default=None, + metadata={ + "type": "Element", + "namespace": "urn:vpro:media:search:2012", + }, + ) tag: List[TagType] = field( default_factory=list, metadata={ diff --git a/src/npoapi/data/mediaupdate.py b/src/npoapi/data/mediaupdate.py index c8bdd6e..2430e91 100644 --- a/src/npoapi/data/mediaupdate.py +++ b/src/npoapi/data/mediaupdate.py @@ -1,7 +1,9 @@ from dataclasses import dataclass, field from enum import Enum from typing import List, Optional, Union + from xsdata.models.datatype import XmlDate, XmlDateTime, XmlDuration + from npoapi.data.media import ( AgeRatingType, AspectRatioEnum, @@ -377,6 +379,20 @@ class TranscodeStatusEnum(Enum): PAUSED = "PAUSED" +@dataclass(slots=True) +class TranscodeStatusTypeBroadcasters: + class Meta: + global_type = False + + broadcaster: List[str] = field( + default_factory=list, + metadata={ + "type": "Element", + "namespace": "urn:vpro:media:update:2009", + }, + ) + + @dataclass(slots=True) class UploadResponseType: class Meta: @@ -803,6 +819,34 @@ class Meta: namespace = "urn:vpro:media:update:2009" +@dataclass(slots=True) +class MediaUpdateTypeIntentions: + class Meta: + global_type = False + + intention: List[IntentionEnum] = field( + default_factory=list, + metadata={ + "type": "Element", + "namespace": "urn:vpro:media:update:2009", + }, + ) + + +@dataclass(slots=True) +class MediaUpdateTypeTargetGroups: + class Meta: + global_type = False + + targetGroup: List[TargetGroupEnum] = field( + default_factory=list, + metadata={ + "type": "Element", + "namespace": "urn:vpro:media:update:2009", + }, + ) + + @dataclass(slots=True) class MemberRef(MemberRefUpdateType): class Meta: @@ -1066,7 +1110,7 @@ class Meta: "namespace": "urn:vpro:media:update:2009", }, ) - broadcasters: Optional["TranscodeStatusType.Broadcasters"] = field( + broadcasters: Optional[TranscodeStatusTypeBroadcasters] = field( default=None, metadata={ "type": "Element", @@ -1086,16 +1130,6 @@ class Meta: }, ) - @dataclass(slots=True) - class Broadcasters: - broadcaster: List[str] = field( - default_factory=list, - metadata={ - "type": "Element", - "namespace": "urn:vpro:media:update:2009", - }, - ) - @dataclass(slots=True) class TranscodeType: @@ -1298,6 +1332,20 @@ class Meta: namespace = "urn:vpro:media:update:2009" +@dataclass(slots=True) +class MediaUpdateTypeImages: + class Meta: + global_type = False + + image: List[ImageUpdateType] = field( + default_factory=list, + metadata={ + "type": "Element", + "namespace": "urn:vpro:media:update:2009", + }, + ) + + @dataclass(slots=True) class MidAndType(MidAndTypeType): class Meta: @@ -1320,87 +1368,31 @@ class Meta: @dataclass(slots=True) -class ScheduleEventUpdateType: +class ScheduleEventUpdateTypeDescriptions: class Meta: - name = "scheduleEventUpdateType" + global_type = False - start: Optional[XmlDateTime] = field( - default=None, - metadata={ - "type": "Element", - "namespace": "urn:vpro:media:update:2009", - "required": True, - }, - ) - guideDay: Optional[XmlDate] = field( - default=None, - metadata={ - "type": "Element", - "namespace": "urn:vpro:media:update:2009", - }, - ) - duration: Optional[XmlDuration] = field( - default=None, - metadata={ - "type": "Element", - "namespace": "urn:vpro:media:update:2009", - "required": True, - }, - ) - repeat: Optional[RepeatType] = field( - default=None, - metadata={ - "type": "Element", - "namespace": "urn:vpro:media:update:2009", - }, - ) - titles: Optional["ScheduleEventUpdateType.Titles"] = field( - default=None, + description: List[DescriptionUpdateType] = field( + default_factory=list, metadata={ "type": "Element", "namespace": "urn:vpro:media:update:2009", }, ) - descriptions: Optional["ScheduleEventUpdateType.Descriptions"] = field( - default=None, + + +@dataclass(slots=True) +class ScheduleEventUpdateTypeTitles: + class Meta: + global_type = False + + title: List[TitleUpdateType] = field( + default_factory=list, metadata={ "type": "Element", "namespace": "urn:vpro:media:update:2009", }, ) - channel: Optional[ChannelEnum] = field( - default=None, - metadata={ - "type": "Attribute", - "required": True, - }, - ) - net: Optional[str] = field( - default=None, - metadata={ - "type": "Attribute", - }, - ) - - @dataclass(slots=True) - class Titles: - title: List[TitleUpdateType] = field( - default_factory=list, - metadata={ - "type": "Element", - "namespace": "urn:vpro:media:update:2009", - }, - ) - - @dataclass(slots=True) - class Descriptions: - description: List[DescriptionUpdateType] = field( - default_factory=list, - metadata={ - "type": "Element", - "namespace": "urn:vpro:media:update:2009", - }, - ) @dataclass(slots=True) @@ -1489,6 +1481,70 @@ class Meta: ) +@dataclass(slots=True) +class ScheduleEventUpdateType: + class Meta: + name = "scheduleEventUpdateType" + + start: Optional[XmlDateTime] = field( + default=None, + metadata={ + "type": "Element", + "namespace": "urn:vpro:media:update:2009", + "required": True, + }, + ) + guideDay: Optional[XmlDate] = field( + default=None, + metadata={ + "type": "Element", + "namespace": "urn:vpro:media:update:2009", + }, + ) + duration: Optional[XmlDuration] = field( + default=None, + metadata={ + "type": "Element", + "namespace": "urn:vpro:media:update:2009", + "required": True, + }, + ) + repeat: Optional[RepeatType] = field( + default=None, + metadata={ + "type": "Element", + "namespace": "urn:vpro:media:update:2009", + }, + ) + titles: Optional[ScheduleEventUpdateTypeTitles] = field( + default=None, + metadata={ + "type": "Element", + "namespace": "urn:vpro:media:update:2009", + }, + ) + descriptions: Optional[ScheduleEventUpdateTypeDescriptions] = field( + default=None, + metadata={ + "type": "Element", + "namespace": "urn:vpro:media:update:2009", + }, + ) + channel: Optional[ChannelEnum] = field( + default=None, + metadata={ + "type": "Attribute", + "required": True, + }, + ) + net: Optional[str] = field( + default=None, + metadata={ + "type": "Attribute", + }, + ) + + @dataclass(slots=True) class Location(LocationUpdateType): class Meta: @@ -1496,6 +1552,34 @@ class Meta: namespace = "urn:vpro:media:update:2009" +@dataclass(slots=True) +class MediaUpdateTypeLocations: + class Meta: + global_type = False + + location: List[LocationUpdateType] = field( + default_factory=list, + metadata={ + "type": "Element", + "namespace": "urn:vpro:media:update:2009", + }, + ) + + +@dataclass(slots=True) +class MediaUpdateTypeScheduleEvents: + class Meta: + global_type = False + + scheduleEvent: List[ScheduleEventUpdateType] = field( + default_factory=list, + metadata={ + "type": "Element", + "namespace": "urn:vpro:media:update:2009", + }, + ) + + @dataclass(slots=True) class MediaUpdateType: """ @@ -1637,14 +1721,14 @@ class Meta: "pattern": r"3(\.[0-9]+)+", }, ) - intentions: Optional["MediaUpdateType.Intentions"] = field( + intentions: Optional[MediaUpdateTypeIntentions] = field( default=None, metadata={ "type": "Element", "namespace": "urn:vpro:media:update:2009", }, ) - targetGroups: Optional["MediaUpdateType.TargetGroups"] = field( + targetGroups: Optional[MediaUpdateTypeTargetGroups] = field( default=None, metadata={ "type": "Element", @@ -1749,14 +1833,14 @@ class Meta: "namespace": "urn:vpro:media:update:2009", }, ) - locations: Optional["MediaUpdateType.Locations"] = field( + locations: Optional[MediaUpdateTypeLocations] = field( default=None, metadata={ "type": "Element", "namespace": "urn:vpro:media:update:2009", }, ) - scheduleEvents: Optional["MediaUpdateType.ScheduleEvents"] = field( + scheduleEvents: Optional[MediaUpdateTypeScheduleEvents] = field( default=None, metadata={ "type": "Element", @@ -1770,7 +1854,7 @@ class Meta: "namespace": "urn:vpro:media:update:2009", }, ) - images: Optional["MediaUpdateType.Images"] = field( + images: Optional[MediaUpdateTypeImages] = field( default=None, metadata={ "type": "Element", @@ -1844,56 +1928,6 @@ class Meta: }, ) - @dataclass(slots=True) - class Intentions: - intention: List[IntentionEnum] = field( - default_factory=list, - metadata={ - "type": "Element", - "namespace": "urn:vpro:media:update:2009", - }, - ) - - @dataclass(slots=True) - class TargetGroups: - targetGroup: List[TargetGroupEnum] = field( - default_factory=list, - metadata={ - "type": "Element", - "namespace": "urn:vpro:media:update:2009", - }, - ) - - @dataclass(slots=True) - class Locations: - location: List[LocationUpdateType] = field( - default_factory=list, - metadata={ - "type": "Element", - "namespace": "urn:vpro:media:update:2009", - }, - ) - - @dataclass(slots=True) - class ScheduleEvents: - scheduleEvent: List[ScheduleEventUpdateType] = field( - default_factory=list, - metadata={ - "type": "Element", - "namespace": "urn:vpro:media:update:2009", - }, - ) - - @dataclass(slots=True) - class Images: - image: List[ImageUpdateType] = field( - default_factory=list, - metadata={ - "type": "Element", - "namespace": "urn:vpro:media:update:2009", - }, - ) - @dataclass(slots=True) class GroupUpdateType(MediaUpdateType): @@ -1962,6 +1996,20 @@ class Meta: namespace = "urn:vpro:media:update:2009" +@dataclass(slots=True) +class ProgramUpdateTypeSegments: + class Meta: + global_type = False + + segment: List[Segment] = field( + default_factory=list, + metadata={ + "type": "Element", + "namespace": "urn:vpro:media:update:2009", + }, + ) + + @dataclass(slots=True) class ProgramUpdateType(MediaUpdateType): """ @@ -1989,7 +2037,7 @@ class Meta: "namespace": "urn:vpro:media:update:2009", }, ) - segments: Optional["ProgramUpdateType.Segments"] = field( + segments: Optional[ProgramUpdateTypeSegments] = field( default=None, metadata={ "type": "Element", @@ -2005,16 +2053,6 @@ class Meta: }, ) - @dataclass(slots=True) - class Segments: - segment: List[Segment] = field( - default_factory=list, - metadata={ - "type": "Element", - "namespace": "urn:vpro:media:update:2009", - }, - ) - @dataclass(slots=True) class Program(ProgramUpdateType): diff --git a/src/npoapi/data/page.py b/src/npoapi/data/page.py index 00bcdbe..01fcddd 100644 --- a/src/npoapi/data/page.py +++ b/src/npoapi/data/page.py @@ -1,7 +1,9 @@ from dataclasses import dataclass, field from enum import Enum from typing import List, Optional, Union + from xsdata.models.datatype import XmlDateTime + from npoapi.data.media import ( BroadcasterType, Group, @@ -50,6 +52,7 @@ class PageIdMatch(Enum): URL = "URL" CRID = "CRID" BOTH = "BOTH" + AUTOMATIC = "AUTOMATIC" class PageTypeEnum(Enum): @@ -329,6 +332,20 @@ class Meta: ) +@dataclass(slots=True) +class PageTypeImages: + class Meta: + global_type = False + + image: List[ImageType] = field( + default_factory=list, + metadata={ + "type": "Element", + "namespace": "urn:vpro:pages:2013", + }, + ) + + @dataclass(slots=True) class ParagraphType: class Meta: @@ -357,6 +374,20 @@ class Meta: ) +@dataclass(slots=True) +class PageTypeParagraphs: + class Meta: + global_type = False + + paragraph: List[ParagraphType] = field( + default_factory=list, + metadata={ + "type": "Element", + "namespace": "urn:vpro:pages:2013", + }, + ) + + @dataclass(slots=True) class PageType: class Meta: @@ -427,7 +458,7 @@ class Meta: "namespace": "urn:vpro:pages:2013", }, ) - paragraphs: Optional["PageType.Paragraphs"] = field( + paragraphs: Optional[PageTypeParagraphs] = field( default=None, metadata={ "type": "Element", @@ -469,7 +500,7 @@ class Meta: "namespace": "urn:vpro:pages:2013", }, ) - images: Optional["PageType.Images"] = field( + images: Optional[PageTypeImages] = field( default=None, metadata={ "type": "Element", @@ -547,26 +578,6 @@ class Meta: }, ) - @dataclass(slots=True) - class Paragraphs: - paragraph: List[ParagraphType] = field( - default_factory=list, - metadata={ - "type": "Element", - "namespace": "urn:vpro:pages:2013", - }, - ) - - @dataclass(slots=True) - class Images: - image: List[ImageType] = field( - default_factory=list, - metadata={ - "type": "Element", - "namespace": "urn:vpro:pages:2013", - }, - ) - @dataclass(slots=True) class Page(PageType): diff --git a/src/npoapi/data/pageupdate.py b/src/npoapi/data/pageupdate.py index 7dae9f7..730f370 100644 --- a/src/npoapi/data/pageupdate.py +++ b/src/npoapi/data/pageupdate.py @@ -1,6 +1,8 @@ from dataclasses import dataclass, field from typing import List, Optional + from xsdata.models.datatype import XmlDateTime, XmlDuration + from npoapi.data.page import ( LinkTypeEnum, PageIdMatch, @@ -266,6 +268,20 @@ class Meta: ) +@dataclass(slots=True) +class PageUpdateTypeEmbeds: + class Meta: + global_type = False + + embed: List[EmbedUpdateType] = field( + default_factory=list, + metadata={ + "type": "Element", + "namespace": "urn:vpro:pages:update:2013", + }, + ) + + @dataclass(slots=True) class PortalUpdateType: class Meta: @@ -350,6 +366,20 @@ class Meta: ) +@dataclass(slots=True) +class PageUpdateTypeParagraphs: + class Meta: + global_type = False + + paragraph: List[ParagraphUpdateType] = field( + default_factory=list, + metadata={ + "type": "Element", + "namespace": "urn:vpro:pages:update:2013", + }, + ) + + @dataclass(slots=True) class PageUpdateType: """ @@ -439,7 +469,7 @@ class Meta: "namespace": "urn:vpro:pages:update:2013", }, ) - paragraphs: Optional["PageUpdateType.Paragraphs"] = field( + paragraphs: Optional[PageUpdateTypeParagraphs] = field( default=None, metadata={ "type": "Element", @@ -467,7 +497,7 @@ class Meta: "namespace": "urn:vpro:pages:update:2013", }, ) - embeds: Optional["PageUpdateType.Embeds"] = field( + embeds: Optional[PageUpdateTypeEmbeds] = field( default=None, metadata={ "type": "Element", @@ -541,26 +571,6 @@ class Meta: }, ) - @dataclass(slots=True) - class Paragraphs: - paragraph: List[ParagraphUpdateType] = field( - default_factory=list, - metadata={ - "type": "Element", - "namespace": "urn:vpro:pages:update:2013", - }, - ) - - @dataclass(slots=True) - class Embeds: - embed: List[EmbedUpdateType] = field( - default_factory=list, - metadata={ - "type": "Element", - "namespace": "urn:vpro:pages:update:2013", - }, - ) - @dataclass(slots=True) class Page(PageUpdateType): diff --git a/src/npoapi/data/poms.py b/src/npoapi/data/poms.py index a72c8ee..252f487 100644 --- a/src/npoapi/data/poms.py +++ b/src/npoapi/data/poms.py @@ -1,31 +1,43 @@ # This file is NOT generated from datetime import datetime -from typing import Union, Optional, Type, List, Dict +from typing import Dict, List, Optional, Type, Union from xsdata.formats.dataclass.models.generics import AnyElement +from xsdata.formats.dataclass.parsers import UserXmlParser, XmlParser from xsdata.formats.dataclass.parsers.bases import Parsed from xsdata.formats.dataclass.parsers.config import ParserConfig from xsdata.formats.dataclass.parsers.mixins import XmlNode -from xsdata.models.datatype import XmlDateTime -from xsdata.formats.dataclass.parsers import XmlParser, UserXmlParser from xsdata.formats.dataclass.serializers import XmlSerializer from xsdata.formats.dataclass.serializers.config import SerializerConfig - +from xsdata.models.datatype import XmlDateTime # imports are implicitly used by parser import npoapi -from npoapi.data.media import Group, Program, Segment, LocationType -from npoapi.data.mediaupdate import Group as GroupUpdate, Program as ProgramUpdate, Segment as SegmentUpdate, \ - Location as LocationUpdate, Image as ImageUpdate -from npoapi.data.pageupdate import Page as PageUpdate +from npoapi.data import api, media, mediaupdate, page, pageupdate from npoapi.data.api import MediaForm, PagesForm -from npoapi.data import api, page, media, mediaupdate, pageupdate +from npoapi.data.media import Group, LocationType, Program, Segment +from npoapi.data.mediaupdate import ( + Group as GroupUpdate, +) +from npoapi.data.mediaupdate import ( + Image as ImageUpdate, +) +from npoapi.data.mediaupdate import ( + Location as LocationUpdate, +) +from npoapi.data.mediaupdate import ( + Program as ProgramUpdate, +) +from npoapi.data.mediaupdate import ( + Segment as SegmentUpdate, +) +from npoapi.data.pageupdate import Page as PageUpdate + class MyParser(XmlParser): def __init__(self): super().__init__() - def start( self, clazz: Optional[Type], @@ -40,7 +52,6 @@ def start( super().start(clazz, queue, objects, qname, attrs, ns_map) - from xsdata.formats.dataclass.context import XmlContext from xsdata.formats.dataclass.parsers import XmlParser from xsdata.formats.dataclass.serializers import XmlSerializer @@ -57,32 +68,36 @@ def start( config = SerializerConfig(pretty_print=False) serializer = XmlSerializer(config=config, context=context) -NS_MAP={ +NS_MAP = { "update": mediaupdate.__NAMESPACE__, "pageupdate": pageupdate.__NAMESPACE__, "media": media.__NAMESPACE__, "pages": page.__NAMESPACE__, "api": api.__NAMESPACE__, - } +} + -def prefix(namespace:str): - for k,v in NS_MAP.items(): +def prefix(namespace: str): + for k, v in NS_MAP.items(): if v == namespace: return k return None + def from_string(source: str): return parser.from_string(source) + def from_bytes(source: bytes, clazz: Optional[Type] = None): return parser.from_bytes(source, clazz) + def to_xml(node: object): return serializer.render(node, ns_map=NS_MAP) def children_from_any(source: AnyElement, qname: str): - return list(filter(lambda a: a.qname == qname, source.children)) + return list(filter(lambda a: a.qname == qname, source.children)) def to_xml_data_time(input: Union[datetime, str, XmlDateTime]) -> Optional[XmlDateTime]: @@ -95,4 +110,3 @@ def to_xml_data_time(input: Union[datetime, str, XmlDateTime]) -> Optional[XmlDa if type(input) == datetime: return XmlDateTime.from_datetime(input) raise ValueError(f"Cannot convert {input} to XmlDateTime") - diff --git a/src/npoapi/data/profile.py b/src/npoapi/data/profile.py index c930c5f..2981177 100644 --- a/src/npoapi/data/profile.py +++ b/src/npoapi/data/profile.py @@ -1,6 +1,8 @@ from dataclasses import dataclass, field from typing import Optional, Union + from xsdata.models.datatype import XmlDateTime + from npoapi.data.api_constraint_media import Filter as MediaFilter from npoapi.data.api_constraint_page import Filter as PageFilter diff --git a/src/npoapi/data/shared.py b/src/npoapi/data/shared.py index e110a7e..fae4e57 100644 --- a/src/npoapi/data/shared.py +++ b/src/npoapi/data/shared.py @@ -1,6 +1,7 @@ from dataclasses import dataclass, field from enum import Enum from typing import List, Optional + from xsdata.models.datatype import XmlDateTime, XmlDuration __NAMESPACE__ = "urn:vpro:shared:2009" @@ -65,11 +66,11 @@ class SubtitlesTypeEnum(Enum): class SubtitlesWorkflowEnum(Enum): IGNORE = "IGNORE" REVOKED = "REVOKED" - FOR_DELETION = "FOR_DELETION" DELETED = "DELETED" + FOR_DELETION = "FOR_DELETION" + PUBLISHED = "PUBLISHED" FOR_PUBLICATION = "FOR_PUBLICATION" FOR_REPUBLICATION = "FOR_REPUBLICATION" - PUBLISHED = "PUBLISHED" PUBLISH_ERROR = "PUBLISH_ERROR" MISSING = "MISSING" diff --git a/src/npoapi/data/subtitles.py b/src/npoapi/data/subtitles.py index 57ab161..34635fa 100644 --- a/src/npoapi/data/subtitles.py +++ b/src/npoapi/data/subtitles.py @@ -1,7 +1,9 @@ from dataclasses import dataclass, field from enum import Enum from typing import Optional + from xsdata.models.datatype import XmlDateTime, XmlDuration + from npoapi.data.shared import ( OwnerTypeEnum, SubtitlesTypeEnum, diff --git a/src/npoapi/data/thesaurus.py b/src/npoapi/data/thesaurus.py index fe7cb76..743680b 100644 --- a/src/npoapi/data/thesaurus.py +++ b/src/npoapi/data/thesaurus.py @@ -1,6 +1,7 @@ from dataclasses import dataclass, field from enum import Enum from typing import List, Optional + from xsdata.models.datatype import XmlDateTime __NAMESPACE__ = "urn:vpro:gtaa:2017" diff --git a/src/npoapi/media.py b/src/npoapi/media.py index e383d49..06d06f8 100644 --- a/src/npoapi/media.py +++ b/src/npoapi/media.py @@ -10,46 +10,94 @@ class Media(NpoApi): - def get(self, mid, sub="", sort=None, accept=None, properties=None, limit=None, offset=None, profile=None, stream=False) -> Union[None, http.client.HTTPResponse, str]: + def get( + self, mid, sub="", sort=None, accept=None, properties=None, limit=None, offset=None, profile=None, stream=False + ) -> Union[None, http.client.HTTPResponse, str]: if isinstance(properties, list): properties = ",".join(properties) - return self.request_or_stream("/api/media/" + urllib.request.quote(mid, safe='') + sub, - params={"sort": sort, "properties": properties, "max": limit, "offset": offset, "profile": profile}, - accept=accept, stream=stream) + return self.request_or_stream( + "/api/media/" + urllib.request.quote(mid, safe="") + sub, + params={"sort": sort, "properties": properties, "max": limit, "offset": offset, "profile": profile}, + accept=accept, + stream=stream, + ) def multiple(self, mids, accept=None, properties=None, profile=None) -> str: if os.path.isfile(mids): - return self.request("/api/media/multiple", data=mids, - params={"properties": properties, "profile": profile}, accept=accept) + return self.request( + "/api/media/multiple", data=mids, params={"properties": properties, "profile": profile}, accept=accept + ) else: - return self.request("/api/media/multiple", - params={"ids": mids, "properties": properties, "profile": profile}, accept=accept) + return self.request( + "/api/media/multiple", params={"ids": mids, "properties": properties, "profile": profile}, accept=accept + ) def list(self) -> str: return self.request("/api/media") - def search(self, form="{}", sort="asc", offset: int = 0, limit: int = 240, profile: str = None, - properties: str = None, accept: str = None, sub="descendants", mid=None) -> str: + def search( + self, + form="{}", + sort="asc", + offset: int = 0, + limit: int = 240, + profile: str = None, + properties: str = None, + accept: str = None, + sub="descendants", + mid=None, + ) -> str: if isinstance(properties, list): properties = ",".join(properties) if mid is None: - return self.request("/api/media", data=form, accept=accept, - params={"profile": profile, "sort": sort, "offset": offset, "max": limit, "properties": properties}) + return self.request( + "/api/media", + data=form, + accept=accept, + params={"profile": profile, "sort": sort, "offset": offset, "max": limit, "properties": properties}, + ) else: if sub is None: raise Exception("Should give sub when having mid") - return self.request("/api/media/" + urllib.request.quote(mid) + "/" + sub, data=form, accept=accept, - params={"profile": profile, "sort": sort, "offset": offset, "max": limit, "properties": properties}) - - def changes(self, profile=None, limit=10, since=None, properties=None, deletes="ID_ONLY", tail=None) -> Union[None, ijson.items]: - return ijson.items(self.changes_raw(stream=True, profile=profile, limit=limit, since=since, properties=properties, deletes=deletes, tail=tail), 'changes.item') - - def changes_raw(self, profile=None, order="ASC", stream=False, limit=None, - since:Union[str, int, datetime.datetime]=None, - since_mid=None, - force_oldstyle=False, properties=None, deletes="ID_ONLY", tail=None, reason_filter="") -> Union[None, http.client.HTTPResponse, str]: + return self.request( + "/api/media/" + urllib.request.quote(mid) + "/" + sub, + data=form, + accept=accept, + params={"profile": profile, "sort": sort, "offset": offset, "max": limit, "properties": properties}, + ) + + def changes( + self, profile=None, limit=10, since=None, properties=None, deletes="ID_ONLY", tail=None + ) -> Union[None, ijson.items]: + return ijson.items( + self.changes_raw( + stream=True, + profile=profile, + limit=limit, + since=since, + properties=properties, + deletes=deletes, + tail=tail, + ), + "changes.item", + ) + + def changes_raw( + self, + profile=None, + order="ASC", + stream=False, + limit=None, + since: Union[str, int, datetime.datetime] = None, + since_mid=None, + force_oldstyle=False, + properties=None, + deletes="ID_ONLY", + tail=None, + reason_filter="", + ) -> Union[None, http.client.HTTPResponse, str]: if isinstance(properties, list): properties = ",".join(properties) sinceLong = None @@ -59,23 +107,26 @@ def changes_raw(self, profile=None, order="ASC", stream=False, limit=None, if not since is None: if isinstance(since, datetime.datetime): sinceDate = str(since).replace(" ", "T") - elif type(since) == int:\ - sinceDate= str(since) + elif type(since) == int: + sinceDate = str(since) elif not force_oldstyle and (not since.isdigit() or int(since) > 946681200000): sinceDate = since else: sinceLong = since - - publishedSince = (sinceDate + (("," + str(since_mid)) if since_mid else "")) if sinceDate else None; - self.logger.debug("publishedSince: (%s, %s)" % ( publishedSince, sinceLong)) - params = { "profile": profile, "order": order, "max": limit, - "since": sinceLong, - "publishedSince": publishedSince, - "properties": properties, - "deletes": deletes, - "tail": tail, - "reasonFilter": reason_filter } + publishedSince = (sinceDate + (("," + str(since_mid)) if since_mid else "")) if sinceDate else None + self.logger.debug("publishedSince: (%s, %s)" % (publishedSince, sinceLong)) + params = { + "profile": profile, + "order": order, + "max": limit, + "since": sinceLong, + "publishedSince": publishedSince, + "properties": properties, + "deletes": deletes, + "tail": tail, + "reasonFilter": reason_filter, + } if stream: return self.stream("/api/media/changes", params=params) else: @@ -84,17 +135,24 @@ def changes_raw(self, profile=None, order="ASC", stream=False, limit=None, def redirects(self) -> str: return self.request("/api/media/redirects") - def iterate_raw(self, form=None, profile=None, stream=True, limit=1000, timeout=None, properties=None) -> Union[None, http.client.HTTPResponse, str]: + def iterate_raw( + self, form=None, profile=None, stream=True, limit=1000, timeout=None, properties=None + ) -> Union[None, http.client.HTTPResponse, str]: if not form: form = "{}" if isinstance(properties, list): properties = ",".join(properties) if stream: - return self.stream("/api/media/iterate", data=form, - params={"profile": profile, "max": limit, "properties": properties}, timeout=timeout) + return self.stream( + "/api/media/iterate", + data=form, + params={"profile": profile, "max": limit, "properties": properties}, + timeout=timeout, + ) else: - return self.request("/api/media/iterate", data=form, - params={"profile": profile, "max": limit, "properties": properties}) + return self.request( + "/api/media/iterate", data=form, params={"profile": profile, "max": limit, "properties": properties} + ) def __str__(self) -> str: return super.__str__(self) + " (media)" diff --git a/src/npoapi/media_backend.py b/src/npoapi/media_backend.py index 024a73c..837d57b 100644 --- a/src/npoapi/media_backend.py +++ b/src/npoapi/media_backend.py @@ -1,30 +1,35 @@ import codecs +import logging import os +import time import urllib.parse from datetime import datetime -from typing import Optional, Union, Dict +from typing import Dict, Optional, Union from xml.dom import minidom import lxml from typing_extensions import override - -from npoapi import data from xsdata.models.datatype import XmlDateTime -from npoapi.xml.mediaupdate import mediaUpdateType -from npoapi.xml.media import baseMediaType, streamingStatus - +from npoapi import data from npoapi.base import DEFAULT_BINDING from npoapi.basic_backend import BasicBackend -from npoapi.data import MediaUpdateType, BaseMediaType, StreamingStatus, LocationUpdateType, PredictionUpdateType, \ - Prediction +from npoapi.data import ( + BaseMediaType, + LocationUpdateType, + MediaUpdateType, + Prediction, + PredictionUpdateType, + StreamingStatus, +) from npoapi.xml import media, mediaupdate, poms -import logging -import time +from npoapi.xml.media import baseMediaType, streamingStatus +from npoapi.xml.mediaupdate import mediaUpdateType class MediaBackend(BasicBackend): """Client for NPO Backend API""" + __author__ = "Michiel Meeuwissen" def __init__(self, env: str = None, email: str = None, debug: bool = False, accept: str = None): @@ -50,34 +55,50 @@ def env(self, e: str): def get(self, mid: str, ignore_not_found=False, accept="application/xml") -> str: """Returns XML or json -representation of a mediaobject (as a string)""" - return self.get_from("media/media/" + urllib.parse.quote(mid, safe=''), ignore_not_found=ignore_not_found, - accept=accept)[0] + return self.get_from( + "media/media/" + urllib.parse.quote(mid, safe=""), ignore_not_found=ignore_not_found, accept=accept + )[0] def get_full(self, mid: str, ignore_not_found=False, accept="application/xml") -> str: """Returns XML-representation of a mediaobject (as a string)""" - return \ - self.get_from("media/media/" + urllib.parse.quote(mid, safe='') + "/full", ignore_not_found=ignore_not_found, - accept=accept)[0] - - def get_object(self, mid: str, ignore_not_found=False, binding=DEFAULT_BINDING) -> Union[ - mediaUpdateType, MediaUpdateType]: + return self.get_from( + "media/media/" + urllib.parse.quote(mid, safe="") + "/full", + ignore_not_found=ignore_not_found, + accept=accept, + )[0] + + def get_object( + self, mid: str, ignore_not_found=False, binding=DEFAULT_BINDING + ) -> Union[mediaUpdateType, MediaUpdateType]: """Returns xsdata/pyxb-representation of a mediaobject""" return self.to_object(self.get(mid, ignore_not_found), validate=False, binding=binding) - def get_full_object(self, mid: str, ignore_not_found=False, binding=DEFAULT_BINDING) -> Union[ - baseMediaType, BaseMediaType]: + def get_full_object( + self, mid: str, ignore_not_found=False, binding=DEFAULT_BINDING + ) -> Union[baseMediaType, BaseMediaType]: """Returns xsdata/pyxb-representation of a mediaobject""" return self.to_object(self.get_full(mid, ignore_not_found), validate=False, binding=binding) def exists(self, mid: str): - return self.get_from("media/exists/" + urllib.parse.quote(mid, safe=''), accept='')[0] == "true" + return self.get_from("media/exists/" + urllib.parse.quote(mid, safe=""), accept="")[0] == "true" def streaming_status(self, mid: str, binding=DEFAULT_BINDING) -> Union[streamingStatus, StreamingStatus]: - return self.to_object(self.get_from("media/streamingstatus/" + urllib.parse.quote(mid, safe=''))[0], - binding=binding) - - def post(self, update, lookupcrid=True, raw=False, steal_crids="IF_DELETED", validate_input=False, - client_validate=True, sub=None, mid=None, binding=DEFAULT_BINDING) -> Optional[str]: + return self.to_object( + self.get_from("media/streamingstatus/" + urllib.parse.quote(mid, safe=""))[0], binding=binding + ) + + def post( + self, + update, + lookupcrid=True, + raw=False, + steal_crids="IF_DELETED", + validate_input=False, + client_validate=True, + sub=None, + mid=None, + binding=DEFAULT_BINDING, + ) -> Optional[str]: if not raw: update = self.to_object(update, validate=client_validate, binding=binding) target = "media/media/" @@ -86,8 +107,15 @@ def post(self, update, lookupcrid=True, raw=False, steal_crids="IF_DELETED", val if sub is not None and len(sub) > 0: target = target + urllib.parse.quote(sub, safe="") + "/" - return self.post_to(target, update, accept="text/plain", errors=self.get_errors(), lookupcrid=lookupcrid, - stealcrids=steal_crids, validateInput=str(validate_input).lower())[0] + return self.post_to( + target, + update, + accept="text/plain", + errors=self.get_errors(), + lookupcrid=lookupcrid, + stealcrids=steal_crids, + validateInput=str(validate_input).lower(), + )[0] def post_prediction(self, mid, update: Prediction) -> Optional[str]: target = "media/media/%s/predictions/%s" % (mid, update.value) @@ -96,7 +124,7 @@ def post_prediction(self, mid, update: Prediction) -> Optional[str]: def delete(self, mid: str) -> Optional[str]: """""" - return self.delete_from("media/media/" + urllib.parse.quote(mid, safe=''))[0] + return self.delete_from("media/media/" + urllib.parse.quote(mid, safe=""))[0] def _parkpost_authentication(self): if not (self.parkpost_authorization): @@ -108,12 +136,14 @@ def parkpost(self, xml) -> Optional[str]: req = urllib.request.Request(url, data=self.xml_to_bytes(xml)) return self._request(req, url, accept="application/xml", authorization=self.parkpost_authorization)[0] - def find(self, form, writable=False, raw=False, validate_input=False, client_validate=True, - binding=DEFAULT_BINDING) -> Optional[str]: + def find( + self, form, writable=False, raw=False, validate_input=False, client_validate=True, binding=DEFAULT_BINDING + ) -> Optional[str]: if not raw: form = self.to_object(form, validate=client_validate, binding=binding) - return self.post_to("media/find", form, accept="application/xml", writable=writable, - validateInput=str(validate_input).lower())[0] + return self.post_to( + "media/find", form, accept="application/xml", writable=writable, validateInput=str(validate_input).lower() + )[0] def subtitles(self, mid: str, language=None, type="CAPTION") -> Optional[str]: path = mid @@ -143,9 +173,20 @@ def add_member(self, mid, owner_mid, position=None, highlighted=False) -> Option return self.post_to(path, memberOf, accept="application/xml")[0] # method to implement both members and episodes calls. - def members_or_episodes(self, mid: str, what: str, limit: int = None, batch: int = 20, log_progress=False, - log_indent="", full=False, follow_merges=True, deletes=False, raw=False, - accept="application/xml") -> Optional[Union[list, str]]: + def members_or_episodes( + self, + mid: str, + what: str, + limit: int = None, + batch: int = 20, + log_progress=False, + log_indent="", + full=False, + follow_merges=True, + deletes=False, + raw=False, + accept="application/xml", + ) -> Optional[Union[list, str]]: """Returns a list of minidom objects""" self._creds() self.logger.log(logging.INFO if log_progress else logging.DEBUG, "loading %s of %s", what, mid) @@ -155,9 +196,19 @@ def members_or_episodes(self, mid: str, what: str, limit: int = None, batch: int sub = "group" if what == "episodes" else "media" w = what + "/full" if full else what while True: - - url = (self.url + 'media/' + sub + '/' + urllib.parse.quote(mid, safe='') + "/" + w + "?max=" + str(b) + - "&offset=" + str(offset)) + url = ( + self.url + + "media/" + + sub + + "/" + + urllib.parse.quote(mid, safe="") + + "/" + + w + + "?max=" + + str(b) + + "&offset=" + + str(offset) + ) if deletes: url = url + "&deletes=true" if not follow_merges: @@ -173,18 +224,33 @@ def members_or_episodes(self, mid: str, what: str, limit: int = None, batch: int return bytes.decode("utf-8") else: xml = minidom.parseString(bytes) - items = xml.getElementsByTagNameNS('*', 'item') + items = xml.getElementsByTagNameNS("*", "item") # result.extend(map(lambda i: poms.CreateFromDOM(i, default_namespace=mediaupdate.Namespace), items)) result.extend(items) total = xml.childNodes[0].getAttribute("totalCount") if len(items) == 0 or (limit and len(result) >= limit): break if len(items) != len(result): - self.logger.log(logging.INFO if log_progress else logging.DEBUG, "%s%s of %s: %s/%s (+%s)", - log_indent, what, mid, len(result), total, len(items)) + self.logger.log( + logging.INFO if log_progress else logging.DEBUG, + "%s%s of %s: %s/%s (+%s)", + log_indent, + what, + mid, + len(result), + total, + len(items), + ) else: - self.logger.log(logging.INFO if log_progress else logging.DEBUG, "%s%s of %s: %s/%s", - log_indent, what, mid, len(result), total) + self.logger.log( + logging.INFO if log_progress else logging.DEBUG, + "%s%s of %s: %s/%s", + log_indent, + what, + mid, + len(result), + total, + ) offset += b # print xml.childNodes[0].toxml('utf-8') self.logger.debug(str(len(result)) + "/" + total + (("/" + str(limit)) if limit else "")) @@ -194,10 +260,19 @@ def members_or_episodes(self, mid: str, what: str, limit: int = None, batch: int return result - def post_location(self, mid: str, programUrl, duration: str = None, bitrate: int = None, height: int = None, - width: int = None, aspectRatio: str = None, - format: str = None, - publishStart=None, publishStop=None) -> str: + def post_location( + self, + mid: str, + programUrl, + duration: str = None, + bitrate: int = None, + height: int = None, + width: int = None, + aspectRatio: str = None, + format: str = None, + publishStart=None, + publishStop=None, + ) -> str: if os.path.isfile(programUrl): self.logger.debug(programUrl + " seems to be a local file") with codecs.open(programUrl, "r", "utf-8") as myfile: @@ -206,11 +281,16 @@ def post_location(self, mid: str, programUrl, duration: str = None, bitrate: int if not format: format = self.guess_format(programUrl) - xml = ("" + - " " + programUrl + "" + - " ") + xml = ( + "" + + " " + + programUrl + + "" + + " " + ) if bitrate: xml += "" + str(bitrate) + "" if format: @@ -248,16 +328,23 @@ def add_image(self, mid: str, image) -> str: def add_location(self, mid: str, location) -> str: return self.post_to("media/media/" + mid + "/location", location, accept="text/plain")[0] - def set_location(self, mid: str, location: Union[str, int], publishStop: Union[str, datetime] = None, - publishStart: Union[str, datetime] = None, programUrl: str = None, only_if_exists: bool = False) -> \ - Optional[str]: + def set_location( + self, + mid: str, + location: Union[str, int], + publishStop: Union[str, datetime] = None, + publishStart: Union[str, datetime] = None, + programUrl: str = None, + only_if_exists: bool = False, + ) -> Optional[str]: locations = data.poms.from_bytes(self.get_locations(mid)) location_object = None for l in locations.otherElement: if type(location) == int or (type(location) == str and location.isdigit()): # given location is given as digit - if (l.urn is not None and str(l.urn).endswith(':' + str(location))) and ( - programUrl is None or str(l.programUrl) == programUrl): + if (l.urn is not None and str(l.urn).endswith(":" + str(location))) and ( + programUrl is None or str(l.programUrl) == programUrl + ): location_object = l break elif str(l.urn).startswith("urn:vpro:media:location:"): @@ -311,10 +398,10 @@ def get_images(self, mid: str) -> bytes: def get_sub(self, mid: str, sub: str, deletes=False, follow_merges=True, accept=None) -> bytes: self._creds() url = self.url + "media/media/" + urllib.parse.quote(mid, safe="") + "/" + sub - sep = '?' + sep = "?" if deletes: url = url + sep + "deletes=true" - sep = '&' + sep = "&" if not follow_merges: url = url + sep + "followMerges=false" return self._get(url, accept=accept) @@ -334,12 +421,11 @@ def upload_audio(self, mid: str, file: str, **kwargs): return self.upload(mid, file, **kwargs) def upload(self, mid: str, file: str, content_type: None, **kwargs): - parseable_response = True post_fix = "" - encryption = kwargs.get('encryption', None) - priority = kwargs.get('priority', None) - transcode = kwargs.get('transcode', True) + encryption = kwargs.get("encryption", None) + priority = kwargs.get("priority", None) + transcode = kwargs.get("transcode", True) if content_type is None: if file.endswith(".mp3"): content_type = "audio/mp3" @@ -350,7 +436,9 @@ def upload(self, mid: str, file: str, content_type: None, **kwargs): if content_type.startswith("video/"): if transcode: post_fix = "/%s/%s" % ( - "NONE" if encryption is None else encryption, "NORMAL" if priority is None else priority) + "NONE" if encryption is None else encryption, + "NORMAL" if priority is None else priority, + ) parseable_response = False if content_type.startswith("audio/"): if encryption is not None or priority is not None: @@ -361,8 +449,9 @@ def upload(self, mid: str, file: str, content_type: None, **kwargs): path = "media/upload/%s%s" % (urllib.parse.quote(mid, safe=""), post_fix) with open(file, "rb") as f: - response = self.post_bytes_to_response(path, f, content_type=content_type, - content_length=os.stat(file).st_size, accept="", **kwargs) + response = self.post_bytes_to_response( + path, f, content_type=content_type, content_length=os.stat(file).st_size, accept="", **kwargs + ) self.logger.info("Response: %s" % str(response)) if response is None: self.logger.error("No response") @@ -372,6 +461,7 @@ def upload(self, mid: str, file: str, content_type: None, **kwargs): if parseable_response: try: from npoapi.data import poms + return poms.from_string(result) except Exception as e: self.logger.error("Error parsing for %s '%s': %s" % (mid, result, e)) diff --git a/src/npoapi/media_backend_util.py b/src/npoapi/media_backend_util.py index 25bfd0f..c0f5bb0 100644 --- a/src/npoapi/media_backend_util.py +++ b/src/npoapi/media_backend_util.py @@ -1,12 +1,11 @@ import logging import os -from typing import Union, Tuple, Optional +from typing import Optional, Tuple, Union from xml.dom import minidom import pyxb import npoapi.utils - from npoapi.base import DEFAULT_BINDING, Binding from npoapi.data import MediaUpdateType, ProgramUpdateType from npoapi.media_backend import MediaBackend @@ -18,21 +17,28 @@ class MediaBackendUtil(object): """ Utilities for dealing with 'update' objects required by the NPO Backend API """ + __author__ = "Michiel Meeuwissen" logger = logging.getLogger("MediaBackendUtil") @staticmethod - def main_title(object: mediaupdate.mediaUpdateType, new_value: str = None) -> Union[str, mediaupdate.titleUpdateType, None]: + def main_title( + object: mediaupdate.mediaUpdateType, new_value: str = None + ) -> Union[str, mediaupdate.titleUpdateType, None]: """Gets/sets main title""" return MediaBackendUtil.title(object, media.textualTypeEnum.MAIN, new_value) @staticmethod - def main_description(object: mediaupdate.mediaUpdateType, new_value: str = None) -> Union[str, mediaupdate.descriptionUpdateType, None]: + def main_description( + object: mediaupdate.mediaUpdateType, new_value: str = None + ) -> Union[str, mediaupdate.descriptionUpdateType, None]: """Gets/set main description""" return MediaBackendUtil.description(object, media.textualTypeEnum.MAIN, new_value) @staticmethod - def title(object: mediaupdate.mediaUpdateType, textual_type, new_value: str = None) -> Union[str, mediaupdate.titleUpdateType, None]: + def title( + object: mediaupdate.mediaUpdateType, textual_type, new_value: str = None + ) -> Union[str, mediaupdate.titleUpdateType, None]: """Gets the title with certain textual type from media update type. Optionally, it can also be set """ @@ -60,10 +66,12 @@ def title(object: mediaupdate.mediaUpdateType, textual_type, new_value: str = No return title.value() if title else None @staticmethod - def description(object: mediaupdate.mediaUpdateType, textual_type, new_value: str) -> Union[str, mediaupdate.descriptionUpdateType, None]: + def description( + object: mediaupdate.mediaUpdateType, textual_type, new_value: str + ) -> Union[str, mediaupdate.descriptionUpdateType, None]: """Gets the description with certain textual type from media update type. - Optionally, it can also be set - """ + Optionally, it can also be set + """ if type(textual_type) is str: textual_type = getattr(media.textualTypeEnum, textual_type) @@ -85,7 +93,7 @@ def description(object: mediaupdate.mediaUpdateType, textual_type, new_value: st return description.value() if description else None @staticmethod - def create_location(programUrl:str, **kwargs) -> mediaupdate.locationUpdateType: + def create_location(programUrl: str, **kwargs) -> mediaupdate.locationUpdateType: # location_object = mediaupdate.locationUpdateType() location_object = mediaupdate.location() location_object.programUrl = programUrl @@ -93,10 +101,14 @@ def create_location(programUrl:str, **kwargs) -> mediaupdate.locationUpdateType: @staticmethod def update_location( - location_object: mediaupdate.locationUpdateType, - avFileFormat=None, bitrate=None, height=None, width=None, aspectratio=None, - embargo=None - ) -> mediaupdate.locationUpdateType: + location_object: mediaupdate.locationUpdateType, + avFileFormat=None, + bitrate=None, + height=None, + width=None, + aspectratio=None, + embargo=None, + ) -> mediaupdate.locationUpdateType: programUrl = location_object.programUrl avAttributes = location_object.avAttributes if avAttributes is None: @@ -104,8 +116,8 @@ def update_location( location_object.avAttributes = avAttributes if avFileFormat is None and avAttributes.avFileFormat is None: - index = programUrl.rfind('.') - ext = programUrl[index + 1:].upper() + index = programUrl.rfind(".") + ext = programUrl[index + 1 :].upper() if hasattr(media.avFileFormatEnum, ext): avFileFormat = getattr(media.avFileFormatEnum, ext) else: @@ -115,8 +127,8 @@ def update_location( avFileFormat = getattr(media.avFileFormatEnum, avFileFormat) if embargo: - location_object.publishStart = embargo['publish_start'] - location_object.publishStop = embargo['publish_stop'] + location_object.publishStart = embargo["publish_start"] + location_object.publishStop = embargo["publish_stop"] if avFileFormat: avAttributes.avFileFormat = avFileFormat @@ -131,7 +143,7 @@ def update_location( return location_object @staticmethod - def add_location(object: mediaupdate.mediaUpdateType, programUrl:str, **kwargs) -> mediaupdate.locationUpdateType: + def add_location(object: mediaupdate.mediaUpdateType, programUrl: str, **kwargs) -> mediaupdate.locationUpdateType: if not object.locations: object.locations = pyxb.BIND() @@ -140,7 +152,7 @@ def add_location(object: mediaupdate.mediaUpdateType, programUrl:str, **kwargs) return location @staticmethod - def get_location(object: mediaupdate.mediaUpdateType, programUrl:str) -> Optional[mediaupdate.locationUpdateType]: + def get_location(object: mediaupdate.mediaUpdateType, programUrl: str) -> Optional[mediaupdate.locationUpdateType]: if not object.locations: return None for loc in object.locations.location: @@ -149,8 +161,9 @@ def get_location(object: mediaupdate.mediaUpdateType, programUrl:str) -> Optiona return None @staticmethod - def add_or_update_location(object: mediaupdate.mediaUpdateType, programUrl: str, - **kwargs) -> mediaupdate.locationUpdateType: + def add_or_update_location( + object: mediaupdate.mediaUpdateType, programUrl: str, **kwargs + ) -> mediaupdate.locationUpdateType: loc = MediaBackendUtil.get_location(object, programUrl) if loc: logging.debug("Found existing %s for %s", loc, programUrl) @@ -182,7 +195,17 @@ def create_image_from_url(imageUrl: str, **kwargs) -> mediaupdate.imageUpdateTyp return image_object @staticmethod - def set_image_fields(image_object: mediaupdate.imageUpdateType , image_type="PICTURE", title=None, description=None, highlighted=False, license="COPYRIGHTED", source=None, source_name=None, credits=None): + def set_image_fields( + image_object: mediaupdate.imageUpdateType, + image_type="PICTURE", + title=None, + description=None, + highlighted=False, + license="COPYRIGHTED", + source=None, + source_name=None, + credits=None, + ): if image_type is None: image_type = "PICTURE" image_object.type = image_type @@ -217,7 +240,6 @@ def clear_invalid_image_fields(object: mediaupdate.mediaUpdateType): if image.width is not None and image.width <= 0: image.width = None - @staticmethod def add_image(object: mediaupdate.mediaUpdateType, image: str, **kwargs) -> mediaupdate.imageUpdateType: if not object.images: @@ -235,7 +257,7 @@ def create_image(image: str, **kwargs) -> mediaupdate.imageUpdateType: return MediaBackendUtil.create_image_from_url(image, **kwargs) @staticmethod - def member_of(object: mediaupdate.mediaUpdateType, group:str, position:int=None): + def member_of(object: mediaupdate.mediaUpdateType, group: str, position: int = None): memberOf = mediaupdate.memberRefUpdateType(group) memberOf.highlighted = False if position is not None: @@ -243,7 +265,18 @@ def member_of(object: mediaupdate.mediaUpdateType, group:str, position:int=None) object.memberOf.append(memberOf) @staticmethod - def descendants(client: MediaBackend, mid: str, batch: int = 200, target: list = None, log_progress: bool = False, log_indent="", episodes=True, segments=False, recurse_programs=False, limit:int = None) -> list: + def descendants( + client: MediaBackend, + mid: str, + batch: int = 200, + target: list = None, + log_progress: bool = False, + log_indent="", + episodes=True, + segments=False, + recurse_programs=False, + limit: int = None, + ) -> list: """Returns a list of minidom item -> mediaUpdate""" if target is None: target = [] @@ -256,10 +289,16 @@ def descendants(client: MediaBackend, mid: str, batch: int = 200, target: list = if episodes: if log_progress: MediaBackendUtil.logger.info("%sGetting episodes of %s", log_indent, mid) - eps = client.episodes(mid, batch=batch,limit=limit - len(members) if limit else None, log_progress=log_progress, log_indent=log_indent) + eps = client.episodes( + mid, + batch=batch, + limit=limit - len(members) if limit else None, + log_progress=log_progress, + log_indent=log_indent, + ) MediaBackendUtil.logger.debug("%s -> found %s episodes", log_indent, str(len(eps))) new_targets.extend(eps) - #print(eps) + # print(eps) if segments: update = minidom.parseString(client.get(mid)).documentElement @@ -284,7 +323,18 @@ def descendants(client: MediaBackend, mid: str, batch: int = 200, target: list = if is_group or recurse_programs: if log_progress: MediaBackendUtil.logger.debug("%sRecursing in %s (group: %s)", log_indent, mid, str(is_group)) - MediaBackendUtil.descendants(client, mid, batch, target, log_progress=log_progress, log_indent=log_indent + " ", limit=limit, episodes=episodes and is_group, recurse_programs=recurse_programs, segments=segments) + MediaBackendUtil.descendants( + client, + mid, + batch, + target, + log_progress=log_progress, + log_indent=log_indent + " ", + limit=limit, + episodes=episodes and is_group, + recurse_programs=recurse_programs, + segments=segments, + ) if limit and len(target) > int(limit): MediaBackendUtil.logger.info("limit reached") break @@ -294,7 +344,9 @@ def descendants(client: MediaBackend, mid: str, batch: int = 200, target: list = target.extend(program_segments) if log_progress: if len(program_segments) > 0: - MediaBackendUtil.logger.info("%sFound %s segments for %s", log_indent, len(program_segments), mid) + MediaBackendUtil.logger.info( + "%sFound %s segments for %s", log_indent, len(program_segments), mid + ) MediaBackendUtil.logger.debug("%sNot recursing in %s (group: %s)", log_indent, mid, str(is_group)) else: MediaBackendUtil.logger.info("Limit reached %s > %s", len(target), limit) @@ -305,14 +357,16 @@ def descendants(client: MediaBackend, mid: str, batch: int = 200, target: list = def segments_as_members(program: Union[str, minidom.Document]) -> list: if type(program) == str: program = minidom.parseString(program) - segments = program.getElementsByTagName('segment') + segments = program.getElementsByTagName("segment") def segment_to_item(m): - item = minidom.parseString('') + item = minidom.parseString( + '' + ) m.tagName = "mediaUpdate" m.setAttributeNS("http://www.w3.org/2001/XMLSchema-instance", "xsi:type", "segmentUpdateType") - #m.setAttribute("xmlns:xsi", "http://www.w3.org/2001/XMLSchema-instance") - #m.setAttribute("xmlns", "urn:vpro:media:update:2009") + # m.setAttribute("xmlns:xsi", "http://www.w3.org/2001/XMLSchema-instance") + # m.setAttribute("xmlns", "urn:vpro:media:update:2009") item.documentElement.appendChild(m) return item @@ -323,7 +377,7 @@ def iterate_objects(members: Union[str, minidom.Document], binding=DEFAULT_BINDI if type(members) == str: members = minidom.parseString(members) if type(members) == minidom.Document: - members = members.getElementsByTagName('item') + members = members.getElementsByTagName("item") result = map(lambda m: MediaBackendUtil.map_member(m, binding), members) return result @@ -335,13 +389,12 @@ def map_member(m, binding): return poms.CreateFromDOM(update, mediaupdate.Namespace) else: # TODO - update.removeAttribute('xsi:type') - update.setAttribute('xmlns', 'urn:vpro:media:update:2009') + update.removeAttribute("xsi:type") + update.setAttribute("xmlns", "urn:vpro:media:update:2009") return npoapi.utils.to_object(update, binding=binding, clazz=ProgramUpdateType) - @staticmethod - def toxml(update: pyxb.binding.basis.complexTypeDefinition) -> bytearray: + def toxml(update: pyxb.binding.basis.complexTypeDefinition) -> bytearray: "xsi:- xml are not working out of the box.." return MediaBackend.toxml(update) @@ -357,12 +410,12 @@ def parse(duration_in_ms: int) -> Tuple[int, int, int, int]: return hours, minutes, seconds, millis @staticmethod - def un_parse(hours: int, minutes: int, seconds:int, millis:int=0) -> int: + def un_parse(hours: int, minutes: int, seconds: int, millis: int = 0) -> int: return ((hours * 60 + minutes) * 60 + seconds) * 1000 + millis @staticmethod def format_duration(duration_in_ms: int) -> str: - """ Format duration as a ISO_8601""" + """Format duration as a ISO_8601""" (hours, minutes, seconds, millis) = MediaBackendUtil.parse(duration_in_ms) if hours == 0 and minutes == 0 and millis == 0: return "P0DT%dS" % seconds @@ -370,13 +423,15 @@ def format_duration(duration_in_ms: int) -> str: return "P0DT%dH%dM%d.%03dS" % (hours, minutes, seconds, millis) @staticmethod - def strip_tags(html:str) -> str: + def strip_tags(html: str) -> str: s = MLStripper() s.feed("" + html + "") return s.get_data() @staticmethod - def mediatype(update: Union[mediaupdate.segmentUpdateType, mediaupdate.groupUpdateType, mediaupdate.programUpdateType]) -> str: + def mediatype( + update: Union[mediaupdate.segmentUpdateType, mediaupdate.groupUpdateType, mediaupdate.programUpdateType], + ) -> str: if type(update) == segmentUpdateType: return "SEGMENT" else: @@ -384,6 +439,8 @@ def mediatype(update: Union[mediaupdate.segmentUpdateType, mediaupdate.groupUpda from html.parser import HTMLParser + + class MLStripper(HTMLParser): def __init__(self): super().__init__() @@ -396,4 +453,4 @@ def handle_data(self, d): self.fed.append(d) def get_data(self): - return ''.join(self.fed) + return "".join(self.fed) diff --git a/src/npoapi/npoapi.py b/src/npoapi/npoapi.py index 015b251..b6fb952 100644 --- a/src/npoapi/npoapi.py +++ b/src/npoapi/npoapi.py @@ -12,9 +12,10 @@ class NpoApi(NpoApiBase): """ - Client API for NPO Frontend Api + Client API for NPO Frontend Api + + """ - """ __author__ = "Michiel Meeuwissen" EPILOG = """ @@ -22,11 +23,19 @@ class NpoApi(NpoApiBase): Credentials are read from a config file. If such a file does not exist it will offer to create one. """ - def __init__(self, key: str = None, secret: str = None, env: str = None, origin: str = None, - debug: bool = False, accept: str = None, interactive: bool = True): + def __init__( + self, + key: str = None, + secret: str = None, + env: str = None, + origin: str = None, + debug: bool = False, + accept: str = None, + interactive: bool = True, + ): + """ + Instantiates a client to the NPO Frontend API """ - Instantiates a client to the NPO Frontend API - """ super().__init__(env=env, debug=debug, accept=accept, interactive=interactive) self.key, self.secret, self.origin = key, secret, origin @@ -53,7 +62,6 @@ def env(self, e): self.url = e return self - def info(self) -> str: return self.key + "@" + self.url @@ -72,8 +80,9 @@ def authenticate(self, uri="", now=utils.formatdate(usegmt=True), interactive=Tr message = "origin:" + self.origin + ",x-npo-date:" + now + ",uri:/v1" + uri self.logger.debug("message: " + message) encoded = base64.b64encode( - hmac.new(self.secret.encode('utf-8'), msg=message.encode('utf-8'), digestmod=hashlib.sha256).digest()) - return "NPO " + self.key + ":" + encoded.decode('utf-8'), now + hmac.new(self.secret.encode("utf-8"), msg=message.encode("utf-8"), digestmod=hashlib.sha256).digest() + ) + return "NPO " + self.key + ":" + encoded.decode("utf-8"), now def _get_url(self, path, params=None) -> [str, str]: if not params: @@ -121,28 +130,58 @@ def _get_data(self, data: str = None, content_type: str = None) -> [bytearray, s return None, None - def request_or_stream(self, path: str, params=None, accept=None, data=None, content_type: str = None, timeout=None, - ignore_not_found=False, stream: bool = False): + def request_or_stream( + self, + path: str, + params=None, + accept=None, + data=None, + content_type: str = None, + timeout=None, + ignore_not_found=False, + stream: bool = False, + ): if stream: - return self.stream(path=path, params=params, accept=accept, data=data, content_type=content_type, - timeout=timeout, ignore_not_found=ignore_not_found) + return self.stream( + path=path, + params=params, + accept=accept, + data=data, + content_type=content_type, + timeout=timeout, + ignore_not_found=ignore_not_found, + ) else: - return self.request(path=path, params=params, accept=accept, data=data, content_type=content_type, - ignore_not_found=ignore_not_found) - - def request(self, path, params=None, accept=None, data=None, content_type: str = None, ignore_not_found=False) -> \ - Optional[str]: + return self.request( + path=path, + params=params, + accept=accept, + data=data, + content_type=content_type, + ignore_not_found=ignore_not_found, + ) + + def request( + self, path, params=None, accept=None, data=None, content_type: str = None, ignore_not_found=False + ) -> Optional[str]: """Executes a request and return the result as a string, or None if not found""" response = self.stream(path, params, accept, data, content_type, ignore_not_found=ignore_not_found) if response: self.logger.debug(response.headers) - return response.read().decode('utf-8') + return response.read().decode("utf-8") else: return None - def stream(self, path: str, params=None, accept=None, data=None, content_type: str = None, timeout=None, - ignore_not_found=False) -> Optional[http.client.HTTPResponse]: - + def stream( + self, + path: str, + params=None, + accept=None, + data=None, + content_type: str = None, + timeout=None, + ignore_not_found=False, + ) -> Optional[http.client.HTTPResponse]: data, content_type = self.data_to_bytes(data, content_type) if data is not None: data_as_string = data.decode("utf-8") diff --git a/src/npoapi/pages.py b/src/npoapi/pages.py index a674800..4c3170f 100644 --- a/src/npoapi/pages.py +++ b/src/npoapi/pages.py @@ -1,40 +1,62 @@ -import http, ijson +import http from typing import Union + +import ijson + from npoapi.npoapi import NpoApi -class Pages(NpoApi): +class Pages(NpoApi): __author__ = "Michiel Meeuwissen" def get(self, url) -> str: return self.request("/api/pages/multiple", params={"ids": url}) - def search(self, form="{}", sort="asc", offset=0, limit=240, profile: str =None, accept : str = None, properties: str = None) -> str: + def search( + self, + form="{}", + sort="asc", + offset=0, + limit=240, + profile: str = None, + accept: str = None, + properties: str = None, + ) -> str: """ Performs a search on the pages api """ - return self.request("/api/pages", data=form, accept=accept, params={"sort": sort, "offset": offset, "max": limit, "profile": profile, "properties": properties}) - + return self.request( + "/api/pages", + data=form, + accept=accept, + params={"sort": sort, "offset": offset, "max": limit, "profile": profile, "properties": properties}, + ) def iterate(self, form="{}", profile=None, limit=None) -> Union[None, ijson.items]: """ - Returns a stream of ijson objects + Returns a stream of ijson objects """ - stream = self.iterate_raw(form=form, profile = profile, limit = limit) + stream = self.iterate_raw(form=form, profile=profile, limit=limit) if not stream is None: return ijson.items(stream, "pages.item") else: return None - def iterate_raw(self, form="{}", profile=None, limit=1000, stream=True, timeout=None, properties=None) -> Union[None, http.client.HTTPResponse, str]: + def iterate_raw( + self, form="{}", profile=None, limit=1000, stream=True, timeout=None, properties=None + ) -> Union[None, http.client.HTTPResponse, str]: if not form: form = "{}" if isinstance(properties, list): properties = ",".join(properties) if stream: - return self.stream("/api/pages/iterate", data=form, - params={"profile": profile, "max": limit, "properties": properties}, timeout=timeout) + return self.stream( + "/api/pages/iterate", + data=form, + params={"profile": profile, "max": limit, "properties": properties}, + timeout=timeout, + ) else: - return self.request("/api/pages/iterate", data=form, - params={"profile": profile, "max": limit, "properties": properties}) - + return self.request( + "/api/pages/iterate", data=form, params={"profile": profile, "max": limit, "properties": properties} + ) diff --git a/src/npoapi/pages_backend.py b/src/npoapi/pages_backend.py index 2460751..a52dcb7 100644 --- a/src/npoapi/pages_backend.py +++ b/src/npoapi/pages_backend.py @@ -1,14 +1,12 @@ +import json from typing import Optional from typing_extensions import override from npoapi.basic_backend import BasicBackend -import json - class PagesBackend(BasicBackend): - __author__ = "Michiel Meeuwissen" def __init__(self, env=None, email: str = None, debug=False, accept=None): @@ -46,7 +44,7 @@ def delete(self, url, batch: bool = False) -> Optional[dict]: result, type = self.delete_from("api/pages/updates", url=url, batch=batch, include_errors=False) if result is None: return None - elif type == 'application/json': + elif type == "application/json": return json.loads(result) else: return result @@ -58,21 +56,22 @@ def get_users(self): return ["pages_user", "user"] def post_person(self, new_person) -> str: - import jwt import datetime + + import jwt + new_person.jws = jwt.encode( - {'subject': 'GTAAPerson', - "usr": "", - "iat": datetime.datetime.now(), - "iss": self.get_setting("thesaurus_user", "Your Thesaurus user") + { + "subject": "GTAAPerson", + "usr": "", + "iat": datetime.datetime.now(), + "iss": self.get_setting("thesaurus_user", "Your Thesaurus user"), }, self.get_setting("thesaurus_secret", "Your Thesaurus secret"), - algorithm='HS256' + algorithm="HS256", ).decode("utf-8") return self.post_to("api/thesaurus/person", new_person)[0] @override def __str__(self) -> str: return super().__str__() + " (pages)" - - diff --git a/src/npoapi/schedule.py b/src/npoapi/schedule.py index 8e30706..072f178 100644 --- a/src/npoapi/schedule.py +++ b/src/npoapi/schedule.py @@ -4,32 +4,30 @@ class Schedule(NpoApi): - def get_schedule_response(self, guideDay=None, channel=None, sort="asc", offset=0, limit=240, properties=None, accept=None) -> Optional[str]: - params = { - 'guideDay': guideDay, - "sort": sort, - "max": limit, - "offset": offset, - "properties": properties - } + def get_schedule_response( + self, guideDay=None, channel=None, sort="asc", offset=0, limit=240, properties=None, accept=None + ) -> Optional[str]: + params = {"guideDay": guideDay, "sort": sort, "max": limit, "offset": offset, "properties": properties} if channel: return self.stream("/api/schedule/channel/" + channel, params=params, accept=accept) else: return self.stream("/api/schedule", params=params) - - - def get_object(self, guideDay=None, channel=None, sort="asc", offset=0, limit=240, properties=None): - response = self.get_schedule_response(guideDay, channel, sort, offset, limit, properties, accept="application/xml") - - - def get(self, guideDay=None, channel=None, sort="asc", offset=0, limit=240, properties=None, accept=None): + def get_object(self, guideDay=None, channel=None, sort="asc", offset=0, limit=240, properties=None): + response = self.get_schedule_response( + guideDay, channel, sort, offset, limit, properties, accept="application/xml" + ) + + def get(self, guideDay=None, channel=None, sort="asc", offset=0, limit=240, properties=None, accept=None): response = self.get_schedule_response(guideDay, channel, sort, offset, limit, properties, accept) if response: - return response.read().decode('utf-8') + return response.read().decode("utf-8") return None def search(self, form="{}", sort="asc", offset=0, limit=240, profile=None, properties=None, accept=None): - return self.request("/api/schedule/", data=form, accept=accept, params={ - "profile": profile, "sort": sort, "offset": offset, "max": limit, "properties": properties} - ) + return self.request( + "/api/schedule/", + data=form, + accept=accept, + params={"profile": profile, "sort": sort, "offset": offset, "max": limit, "properties": properties}, + ) diff --git a/src/npoapi/subtitles.py b/src/npoapi/subtitles.py index a4350aa..ec298ed 100644 --- a/src/npoapi/subtitles.py +++ b/src/npoapi/subtitles.py @@ -1,11 +1,19 @@ import urllib.request +from typing import Optional from npoapi.npoapi import NpoApi -from typing import Optional class Subtitles(NpoApi): - def __init__(self, key: str = None, secret: str = None, env: str = None, origin: str = None, debug: bool = False, accept: str = "text/vtt"): + def __init__( + self, + key: str = None, + secret: str = None, + env: str = None, + origin: str = None, + debug: bool = False, + accept: str = "text/vtt", + ): """ Instantiates a client to the NPO Frontend API """ @@ -15,15 +23,23 @@ def __init__(self, key: str = None, secret: str = None, env: str = None, origin: def accept_choices(self): return {"vtt": "text/vtt", "srt": "text/srt", "ebu": "application/ebu-stl", "tt888": "text/tt888"} - def get(self, mid, language, subtitle_type='CAPTION', ignore_not_found=True) -> Optional[str]: + def get(self, mid, language, subtitle_type="CAPTION", ignore_not_found=True) -> Optional[str]: """Returns subtitles for giving mid, or None of not found""" - return self.request("/api/subtitles/" + urllib.request.quote(mid, safe='') + "/" - + urllib.request.quote(language, safe='') + "/" + subtitle_type, ignore_not_found=ignore_not_found) + return self.request( + "/api/subtitles/" + + urllib.request.quote(mid, safe="") + + "/" + + urllib.request.quote(language, safe="") + + "/" + + subtitle_type, + ignore_not_found=ignore_not_found, + ) def search(self, form="{}", sort="asc", offset=0, limit=240, accept="application/json"): - return self.request("/api/subtitles", data=form, accept=accept, params={"sort": sort, "offset": offset, "max": limit}) + return self.request( + "/api/subtitles", data=form, accept=accept, params={"sort": sort, "offset": offset, "max": limit} + ) def accept(self, arg="text/vtt"): super().accept(arg) return self - diff --git a/src/npoapi/transcoding_util.py b/src/npoapi/transcoding_util.py index daa0c83..26cbf9f 100644 --- a/src/npoapi/transcoding_util.py +++ b/src/npoapi/transcoding_util.py @@ -1,15 +1,16 @@ - -import re import logging +import os +import re import subprocess import urllib -import os from fractions import Fraction + from npoapi import MediaBackendUtil class TranscodingUtil(object): """A common use case for using the NPO backend api is trancoding 'locations'. This provides some utilities for doing that.""" + FFMEG = "ffmpeg" EXIFTOOL = "exiftool" @@ -34,7 +35,7 @@ def exiftool(file): @staticmethod def exiftool_aspectratio(info: dict): - string = info.get('Image Size', None) + string = info.get("Image Size", None) if not string: return None else: @@ -46,7 +47,7 @@ def exiftool_aspectratio(info: dict): @staticmethod def exiftool_duration(info: dict): """Returns the duration reported by exif in ms""" - string = info.get('Media Duration', None) + string = info.get("Media Duration", None) if not string: return None else: @@ -54,8 +55,7 @@ def exiftool_duration(info: dict): if m: return int(float(m.group(1)) * 1000) a = string.split(":") - return 1000 * (3600 * int(a[0]) + 60 * int(a[1]) + int(a[2])) - + return 1000 * (3600 * int(a[0]) + 60 * int(a[1]) + int(a[2])) @staticmethod def exiftool_parsebitrate(string: str): @@ -74,7 +74,6 @@ def exiftool_parsebitrate(string: str): TranscodingUtil.logger.warn("Unrecognized bitrate " + string) return None - @staticmethod def exiftool_bitrate(info: dict): avgbitrate = info.get("Avg Bitrate", None) @@ -86,8 +85,6 @@ def exiftool_bitrate(info: dict): result = TranscodingUtil.exiftool_parsebitrate(audiobitrate) return result - - @staticmethod def system_call(command): TranscodingUtil.logger.info("Calling %s", command) @@ -97,15 +94,21 @@ def system_call(command): @staticmethod def transcode(programUrl, tempFile): - command = [TranscodingUtil.FFMEG, - "-y", "-loglevel", "warning", - "-i", programUrl, - "-profile:v", "main", - tempFile] + command = [ + TranscodingUtil.FFMEG, + "-y", + "-loglevel", + "warning", + "-i", + programUrl, + "-profile:v", + "main", + tempFile, + ] TranscodingUtil.system_call(command) @staticmethod - def ffmpeg_images(sourcefile, dest_dir, offsets=['00:01:00.000', '00:02:00.000', '00:03:00.000']): + def ffmpeg_images(sourcefile, dest_dir, offsets=["00:01:00.000", "00:02:00.000", "00:03:00.000"]): """ Generates a number of stills (files). """ @@ -117,14 +120,14 @@ def ffmpeg_images(sourcefile, dest_dir, offsets=['00:01:00.000', '00:02:00.000', logging.info("offset " + offset) command = [TranscodingUtil.FFMEG, "-loglevel", "warning", "-i", sourcefile] image_file_name = os.path.join(dest_dir, "still." + str(seq) + ".jpg") - command.extend(["-ss", offset, "-vframes", str(1), image_file_name]) + command.extend(["-ss", offset, "-vframes", str(1), image_file_name]) TranscodingUtil.system_call(command) result.append([offset, image_file_name]) seq += 1 return result @staticmethod - def format_offset(offset_in_ms:int): + def format_offset(offset_in_ms: int): return "%02d:%02d:%02d.%03d" % MediaBackendUtil.parse(offset_in_ms) @staticmethod @@ -139,5 +142,3 @@ def check_exists(programUrl): return False else: raise - - diff --git a/src/npoapi/utils.py b/src/npoapi/utils.py index 62365b2..f40a9f7 100644 --- a/src/npoapi/utils.py +++ b/src/npoapi/utils.py @@ -1,29 +1,30 @@ import codecs import dataclasses import json -import os import logging +import os import re import sys from typing import Final, Optional import pyxb -from npoapi.data.poms import NS_MAP from xsdata.formats.dataclass.serializers import XmlSerializer from xsdata.formats.dataclass.serializers.config import SerializerConfig from npoapi.base import DEFAULT_BINDING, Binding +from npoapi.data.poms import NS_MAP logger: Final = logging.getLogger("Npo.Utils") -pattern: Final = re.compile('[a-z0-9]{2,}', re.IGNORECASE) +pattern: Final = re.compile("[a-z0-9]{2,}", re.IGNORECASE) MIDS = ["WO_VPRO_025057", "WO_NOS_2321514 (not from vpro)", "WO_VPRO_025700 (has locations)", "WO_VPRO_4911154"] MID_SHORTHANDS: Final = ", ".join(map(lambda e: "M%d: %s" % e, enumerate(MIDS))) -MID_HELP : Final = """The mid of the object to get. You can use the following shorthands %s""" % MID_SHORTHANDS +MID_HELP: Final = """The mid of the object to get. You can use the following shorthands %s""" % MID_SHORTHANDS MID_SHORTHAND_PATTERN: Final = re.compile("^M[0-9]+$") + def resolve_mid(mid: str) -> str: if MID_SHORTHAND_PATTERN.match(mid): index = int(mid[1:]) @@ -34,6 +35,7 @@ def resolve_mid(mid: str) -> str: else: return mid + def looks_like_form(form: str): """ Checks if the given string looks like a form. E.g. it represents json, xml, a file, or 'stdin'. @@ -59,7 +61,7 @@ def looks_like_form(form: str): return False -def to_object(data:str, validate=False, binding=DEFAULT_BINDING, clazz=None) -> object: +def to_object(data: str, validate=False, binding=DEFAULT_BINDING, clazz=None) -> object: """Converts a string to a pyxb or dataclasses object and optionally validates it""" if data is None: return None @@ -69,6 +71,7 @@ def to_object(data:str, validate=False, binding=DEFAULT_BINDING, clazz=None) -> result = data else: from npoapi.xml import poms + bytes, contenttype = data_to_bytes(data) result = poms.CreateFromDocument(bytes) @@ -80,6 +83,7 @@ def to_object(data:str, validate=False, binding=DEFAULT_BINDING, clazz=None) -> result = data else: from npoapi.data import poms + bytes, contenttype = data_to_bytes(data) result = poms.from_bytes(bytes, clazz) if validate: @@ -87,18 +91,20 @@ def to_object(data:str, validate=False, binding=DEFAULT_BINDING, clazz=None) -> return result -def data_to_bytes(data, content_type:str = None, clazz=None) -> [bytearray, str]: +def data_to_bytes(data, content_type: str = None, clazz=None) -> [bytearray, str]: """ Given some object representing API data returns it as a bytearray and a content type. Recognized are pyxb bindings, a file name, or else a string. """ if data: - import pyxb import xml.dom.minidom + + import pyxb + if data is None: logger.warning("Data is none!") elif dataclasses.is_dataclass(data): - serializer = XmlSerializer(config=SerializerConfig(pretty_print = False)) + serializer = XmlSerializer(config=SerializerConfig(pretty_print=False)) content_type = "application/xml" data = serializer.render(data, ns_map=NS_MAP).encode("utf-8") elif isinstance(data, pyxb.binding.basis.complexTypeDefinition): @@ -117,8 +123,8 @@ def data_to_bytes(data, content_type:str = None, clazz=None) -> [bytearray, str] content_type = "application/xml" logger.debug("" + data + " is file, reading it in as " + content_type) - with codecs.open(data, 'r', 'utf-8') as myfile: - data = myfile.read().encode('utf-8') + with codecs.open(data, "r", "utf-8") as myfile: + data = myfile.read().encode("utf-8") logger.debug("Found data " + data.decode("utf-8")) elif isinstance(data, str): if data == "-": @@ -134,11 +140,10 @@ def data_to_bytes(data, content_type:str = None, clazz=None) -> [bytearray, str] data = json.dumps(data).encode("utf-8") content_type = "application/json" - return data, content_type -def isfile(string:str) -> bool: +def isfile(string: str) -> bool: try: return os.path.isfile(string) except: diff --git a/src/npoapi/xml/media.py b/src/npoapi/xml/media.py index 1f63b12..d289c11 100644 --- a/src/npoapi/xml/media.py +++ b/src/npoapi/xml/media.py @@ -5,19 +5,22 @@ # Namespace urn:vpro:media:2009 [xmlns:media] from __future__ import unicode_literals + +import io +import sys + import pyxb import pyxb.binding import pyxb.binding.saxer -import io -import pyxb.utils.utility import pyxb.utils.domutils -import sys import pyxb.utils.six as _six +import pyxb.utils.utility + # Unique identifier for bindings created at the same time -_GenerationUID = pyxb.utils.utility.UniqueIdentifier('urn:uuid:fa5187de-5153-11ed-9cc8-3e22fb45f01a') +_GenerationUID = pyxb.utils.utility.UniqueIdentifier("urn:uuid:fa5187de-5153-11ed-9cc8-3e22fb45f01a") # Version of PyXB used to generate the bindings -_PyXBVersion = '1.2.6' +_PyXBVersion = "1.2.6" # Generated bindings are not compatible across PyXB versions if pyxb.__version__ != _PyXBVersion: raise pyxb.PyXBVersionError(_PyXBVersion) @@ -29,15 +32,17 @@ # Import bindings for namespaces imported into schema import pyxb.binding.datatypes import pyxb.binding.xml_ + import npoapi.xml.shared as _ImportedBinding_npoapi_xml_shared # NOTE: All namespace declarations are reserved within the binding -Namespace = pyxb.namespace.NamespaceForURI('urn:vpro:media:2009', create_if_missing=True) -Namespace.configureCategories(['typeBinding', 'elementBinding']) +Namespace = pyxb.namespace.NamespaceForURI("urn:vpro:media:2009", create_if_missing=True) +Namespace.configureCategories(["typeBinding", "elementBinding"]) _Namespace_shared = _ImportedBinding_npoapi_xml_shared.Namespace -_Namespace_shared.configureCategories(['typeBinding', 'elementBinding']) +_Namespace_shared.configureCategories(["typeBinding", "elementBinding"]) + -def CreateFromDocument (xml_text, default_namespace=None, location_base=None): +def CreateFromDocument(xml_text, default_namespace=None, location_base=None): """Parse the given XML and use the document element to create a Python instance. @@ -70,7 +75,8 @@ def CreateFromDocument (xml_text, default_namespace=None, location_base=None): instance = handler.rootObject() return instance -def CreateFromDOM (node, default_namespace=None): + +def CreateFromDOM(node, default_namespace=None): """Create a Python instance from the given DOM node. The node tag must correspond to an element declaration in this module. @@ -81,4592 +87,6217 @@ def CreateFromDOM (node, default_namespace=None): # Atomic simple type: {urn:vpro:media:2009}mediaTypeEnum -class mediaTypeEnum (pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): - +class mediaTypeEnum(pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'mediaTypeEnum') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 118, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "mediaTypeEnum") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 118, 2) _Documentation = None + + mediaTypeEnum._CF_enumeration = pyxb.binding.facets.CF_enumeration(value_datatype=mediaTypeEnum, enum_prefix=None) -mediaTypeEnum.MEDIA = mediaTypeEnum._CF_enumeration.addEnumeration(unicode_value='MEDIA', tag='MEDIA') -mediaTypeEnum.GROUP = mediaTypeEnum._CF_enumeration.addEnumeration(unicode_value='GROUP', tag='GROUP') -mediaTypeEnum.PROGRAM = mediaTypeEnum._CF_enumeration.addEnumeration(unicode_value='PROGRAM', tag='PROGRAM') -mediaTypeEnum.SEGMENTTYPE = mediaTypeEnum._CF_enumeration.addEnumeration(unicode_value='SEGMENTTYPE', tag='SEGMENTTYPE') -mediaTypeEnum.STRAND = mediaTypeEnum._CF_enumeration.addEnumeration(unicode_value='STRAND', tag='STRAND') -mediaTypeEnum.ALBUM = mediaTypeEnum._CF_enumeration.addEnumeration(unicode_value='ALBUM', tag='ALBUM') -mediaTypeEnum.PLAYLIST = mediaTypeEnum._CF_enumeration.addEnumeration(unicode_value='PLAYLIST', tag='PLAYLIST') -mediaTypeEnum.ARCHIVE = mediaTypeEnum._CF_enumeration.addEnumeration(unicode_value='ARCHIVE', tag='ARCHIVE') -mediaTypeEnum.SEASON = mediaTypeEnum._CF_enumeration.addEnumeration(unicode_value='SEASON', tag='SEASON') -mediaTypeEnum.SERIES = mediaTypeEnum._CF_enumeration.addEnumeration(unicode_value='SERIES', tag='SERIES') -mediaTypeEnum.UMBRELLA = mediaTypeEnum._CF_enumeration.addEnumeration(unicode_value='UMBRELLA', tag='UMBRELLA') -mediaTypeEnum.BROADCAST = mediaTypeEnum._CF_enumeration.addEnumeration(unicode_value='BROADCAST', tag='BROADCAST') -mediaTypeEnum.MOVIE = mediaTypeEnum._CF_enumeration.addEnumeration(unicode_value='MOVIE', tag='MOVIE') -mediaTypeEnum.TRAILER = mediaTypeEnum._CF_enumeration.addEnumeration(unicode_value='TRAILER', tag='TRAILER') -mediaTypeEnum.CLIP = mediaTypeEnum._CF_enumeration.addEnumeration(unicode_value='CLIP', tag='CLIP') -mediaTypeEnum.TRACK = mediaTypeEnum._CF_enumeration.addEnumeration(unicode_value='TRACK', tag='TRACK') -mediaTypeEnum.SEGMENT = mediaTypeEnum._CF_enumeration.addEnumeration(unicode_value='SEGMENT', tag='SEGMENT') -mediaTypeEnum.VISUALRADIO = mediaTypeEnum._CF_enumeration.addEnumeration(unicode_value='VISUALRADIO', tag='VISUALRADIO') -mediaTypeEnum.VISUALRADIOSEGMENT = mediaTypeEnum._CF_enumeration.addEnumeration(unicode_value='VISUALRADIOSEGMENT', tag='VISUALRADIOSEGMENT') -mediaTypeEnum.PROMO = mediaTypeEnum._CF_enumeration.addEnumeration(unicode_value='PROMO', tag='PROMO') -mediaTypeEnum.RECORDING = mediaTypeEnum._CF_enumeration.addEnumeration(unicode_value='RECORDING', tag='RECORDING') -mediaTypeEnum.COLLECTION = mediaTypeEnum._CF_enumeration.addEnumeration(unicode_value='COLLECTION', tag='COLLECTION') +mediaTypeEnum.MEDIA = mediaTypeEnum._CF_enumeration.addEnumeration(unicode_value="MEDIA", tag="MEDIA") +mediaTypeEnum.GROUP = mediaTypeEnum._CF_enumeration.addEnumeration(unicode_value="GROUP", tag="GROUP") +mediaTypeEnum.PROGRAM = mediaTypeEnum._CF_enumeration.addEnumeration(unicode_value="PROGRAM", tag="PROGRAM") +mediaTypeEnum.SEGMENTTYPE = mediaTypeEnum._CF_enumeration.addEnumeration(unicode_value="SEGMENTTYPE", tag="SEGMENTTYPE") +mediaTypeEnum.STRAND = mediaTypeEnum._CF_enumeration.addEnumeration(unicode_value="STRAND", tag="STRAND") +mediaTypeEnum.ALBUM = mediaTypeEnum._CF_enumeration.addEnumeration(unicode_value="ALBUM", tag="ALBUM") +mediaTypeEnum.PLAYLIST = mediaTypeEnum._CF_enumeration.addEnumeration(unicode_value="PLAYLIST", tag="PLAYLIST") +mediaTypeEnum.ARCHIVE = mediaTypeEnum._CF_enumeration.addEnumeration(unicode_value="ARCHIVE", tag="ARCHIVE") +mediaTypeEnum.SEASON = mediaTypeEnum._CF_enumeration.addEnumeration(unicode_value="SEASON", tag="SEASON") +mediaTypeEnum.SERIES = mediaTypeEnum._CF_enumeration.addEnumeration(unicode_value="SERIES", tag="SERIES") +mediaTypeEnum.UMBRELLA = mediaTypeEnum._CF_enumeration.addEnumeration(unicode_value="UMBRELLA", tag="UMBRELLA") +mediaTypeEnum.BROADCAST = mediaTypeEnum._CF_enumeration.addEnumeration(unicode_value="BROADCAST", tag="BROADCAST") +mediaTypeEnum.MOVIE = mediaTypeEnum._CF_enumeration.addEnumeration(unicode_value="MOVIE", tag="MOVIE") +mediaTypeEnum.TRAILER = mediaTypeEnum._CF_enumeration.addEnumeration(unicode_value="TRAILER", tag="TRAILER") +mediaTypeEnum.CLIP = mediaTypeEnum._CF_enumeration.addEnumeration(unicode_value="CLIP", tag="CLIP") +mediaTypeEnum.TRACK = mediaTypeEnum._CF_enumeration.addEnumeration(unicode_value="TRACK", tag="TRACK") +mediaTypeEnum.SEGMENT = mediaTypeEnum._CF_enumeration.addEnumeration(unicode_value="SEGMENT", tag="SEGMENT") +mediaTypeEnum.VISUALRADIO = mediaTypeEnum._CF_enumeration.addEnumeration(unicode_value="VISUALRADIO", tag="VISUALRADIO") +mediaTypeEnum.VISUALRADIOSEGMENT = mediaTypeEnum._CF_enumeration.addEnumeration( + unicode_value="VISUALRADIOSEGMENT", tag="VISUALRADIOSEGMENT" +) +mediaTypeEnum.PROMO = mediaTypeEnum._CF_enumeration.addEnumeration(unicode_value="PROMO", tag="PROMO") +mediaTypeEnum.RECORDING = mediaTypeEnum._CF_enumeration.addEnumeration(unicode_value="RECORDING", tag="RECORDING") +mediaTypeEnum.COLLECTION = mediaTypeEnum._CF_enumeration.addEnumeration(unicode_value="COLLECTION", tag="COLLECTION") mediaTypeEnum._InitializeFacetMap(mediaTypeEnum._CF_enumeration) -Namespace.addCategoryObject('typeBinding', 'mediaTypeEnum', mediaTypeEnum) +Namespace.addCategoryObject("typeBinding", "mediaTypeEnum", mediaTypeEnum) _module_typeBindings.mediaTypeEnum = mediaTypeEnum -# Atomic simple type: {urn:vpro:media:2009}groupTypeEnum -class groupTypeEnum (pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): +# Atomic simple type: {urn:vpro:media:2009}groupTypeEnum +class groupTypeEnum(pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'groupTypeEnum') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 173, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "groupTypeEnum") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 173, 2) _Documentation = None + + groupTypeEnum._CF_enumeration = pyxb.binding.facets.CF_enumeration(value_datatype=groupTypeEnum, enum_prefix=None) -groupTypeEnum.STRAND = groupTypeEnum._CF_enumeration.addEnumeration(unicode_value='STRAND', tag='STRAND') -groupTypeEnum.ALBUM = groupTypeEnum._CF_enumeration.addEnumeration(unicode_value='ALBUM', tag='ALBUM') -groupTypeEnum.PLAYLIST = groupTypeEnum._CF_enumeration.addEnumeration(unicode_value='PLAYLIST', tag='PLAYLIST') -groupTypeEnum.ARCHIVE = groupTypeEnum._CF_enumeration.addEnumeration(unicode_value='ARCHIVE', tag='ARCHIVE') -groupTypeEnum.COLLECTION = groupTypeEnum._CF_enumeration.addEnumeration(unicode_value='COLLECTION', tag='COLLECTION') -groupTypeEnum.SEASON = groupTypeEnum._CF_enumeration.addEnumeration(unicode_value='SEASON', tag='SEASON') -groupTypeEnum.SERIES = groupTypeEnum._CF_enumeration.addEnumeration(unicode_value='SERIES', tag='SERIES') -groupTypeEnum.UMBRELLA = groupTypeEnum._CF_enumeration.addEnumeration(unicode_value='UMBRELLA', tag='UMBRELLA') +groupTypeEnum.STRAND = groupTypeEnum._CF_enumeration.addEnumeration(unicode_value="STRAND", tag="STRAND") +groupTypeEnum.ALBUM = groupTypeEnum._CF_enumeration.addEnumeration(unicode_value="ALBUM", tag="ALBUM") +groupTypeEnum.PLAYLIST = groupTypeEnum._CF_enumeration.addEnumeration(unicode_value="PLAYLIST", tag="PLAYLIST") +groupTypeEnum.ARCHIVE = groupTypeEnum._CF_enumeration.addEnumeration(unicode_value="ARCHIVE", tag="ARCHIVE") +groupTypeEnum.COLLECTION = groupTypeEnum._CF_enumeration.addEnumeration(unicode_value="COLLECTION", tag="COLLECTION") +groupTypeEnum.SEASON = groupTypeEnum._CF_enumeration.addEnumeration(unicode_value="SEASON", tag="SEASON") +groupTypeEnum.SERIES = groupTypeEnum._CF_enumeration.addEnumeration(unicode_value="SERIES", tag="SERIES") +groupTypeEnum.UMBRELLA = groupTypeEnum._CF_enumeration.addEnumeration(unicode_value="UMBRELLA", tag="UMBRELLA") groupTypeEnum._InitializeFacetMap(groupTypeEnum._CF_enumeration) -Namespace.addCategoryObject('typeBinding', 'groupTypeEnum', groupTypeEnum) +Namespace.addCategoryObject("typeBinding", "groupTypeEnum", groupTypeEnum) _module_typeBindings.groupTypeEnum = groupTypeEnum -# Atomic simple type: {urn:vpro:media:2009}programTypeEnum -class programTypeEnum (pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): +# Atomic simple type: {urn:vpro:media:2009}programTypeEnum +class programTypeEnum(pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'programTypeEnum') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 186, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "programTypeEnum") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 186, 2) _Documentation = None + + programTypeEnum._CF_enumeration = pyxb.binding.facets.CF_enumeration(value_datatype=programTypeEnum, enum_prefix=None) -programTypeEnum.BROADCAST = programTypeEnum._CF_enumeration.addEnumeration(unicode_value='BROADCAST', tag='BROADCAST') -programTypeEnum.MOVIE = programTypeEnum._CF_enumeration.addEnumeration(unicode_value='MOVIE', tag='MOVIE') -programTypeEnum.TRAILER = programTypeEnum._CF_enumeration.addEnumeration(unicode_value='TRAILER', tag='TRAILER') -programTypeEnum.CLIP = programTypeEnum._CF_enumeration.addEnumeration(unicode_value='CLIP', tag='CLIP') -programTypeEnum.STRAND = programTypeEnum._CF_enumeration.addEnumeration(unicode_value='STRAND', tag='STRAND') -programTypeEnum.TRACK = programTypeEnum._CF_enumeration.addEnumeration(unicode_value='TRACK', tag='TRACK') -programTypeEnum.VISUALRADIO = programTypeEnum._CF_enumeration.addEnumeration(unicode_value='VISUALRADIO', tag='VISUALRADIO') -programTypeEnum.PROMO = programTypeEnum._CF_enumeration.addEnumeration(unicode_value='PROMO', tag='PROMO') -programTypeEnum.RECORDING = programTypeEnum._CF_enumeration.addEnumeration(unicode_value='RECORDING', tag='RECORDING') +programTypeEnum.BROADCAST = programTypeEnum._CF_enumeration.addEnumeration(unicode_value="BROADCAST", tag="BROADCAST") +programTypeEnum.MOVIE = programTypeEnum._CF_enumeration.addEnumeration(unicode_value="MOVIE", tag="MOVIE") +programTypeEnum.TRAILER = programTypeEnum._CF_enumeration.addEnumeration(unicode_value="TRAILER", tag="TRAILER") +programTypeEnum.CLIP = programTypeEnum._CF_enumeration.addEnumeration(unicode_value="CLIP", tag="CLIP") +programTypeEnum.STRAND = programTypeEnum._CF_enumeration.addEnumeration(unicode_value="STRAND", tag="STRAND") +programTypeEnum.TRACK = programTypeEnum._CF_enumeration.addEnumeration(unicode_value="TRACK", tag="TRACK") +programTypeEnum.VISUALRADIO = programTypeEnum._CF_enumeration.addEnumeration( + unicode_value="VISUALRADIO", tag="VISUALRADIO" +) +programTypeEnum.PROMO = programTypeEnum._CF_enumeration.addEnumeration(unicode_value="PROMO", tag="PROMO") +programTypeEnum.RECORDING = programTypeEnum._CF_enumeration.addEnumeration(unicode_value="RECORDING", tag="RECORDING") programTypeEnum._InitializeFacetMap(programTypeEnum._CF_enumeration) -Namespace.addCategoryObject('typeBinding', 'programTypeEnum', programTypeEnum) +Namespace.addCategoryObject("typeBinding", "programTypeEnum", programTypeEnum) _module_typeBindings.programTypeEnum = programTypeEnum -# Atomic simple type: {urn:vpro:media:2009}segmentTypeEnum -class segmentTypeEnum (pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): +# Atomic simple type: {urn:vpro:media:2009}segmentTypeEnum +class segmentTypeEnum(pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'segmentTypeEnum') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 200, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "segmentTypeEnum") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 200, 2) _Documentation = None + + segmentTypeEnum._CF_enumeration = pyxb.binding.facets.CF_enumeration(value_datatype=segmentTypeEnum, enum_prefix=None) -segmentTypeEnum.SEGMENT = segmentTypeEnum._CF_enumeration.addEnumeration(unicode_value='SEGMENT', tag='SEGMENT') -segmentTypeEnum.VISUALRADIOSEGMENT = segmentTypeEnum._CF_enumeration.addEnumeration(unicode_value='VISUALRADIOSEGMENT', tag='VISUALRADIOSEGMENT') +segmentTypeEnum.SEGMENT = segmentTypeEnum._CF_enumeration.addEnumeration(unicode_value="SEGMENT", tag="SEGMENT") +segmentTypeEnum.VISUALRADIOSEGMENT = segmentTypeEnum._CF_enumeration.addEnumeration( + unicode_value="VISUALRADIOSEGMENT", tag="VISUALRADIOSEGMENT" +) segmentTypeEnum._InitializeFacetMap(segmentTypeEnum._CF_enumeration) -Namespace.addCategoryObject('typeBinding', 'segmentTypeEnum', segmentTypeEnum) +Namespace.addCategoryObject("typeBinding", "segmentTypeEnum", segmentTypeEnum) _module_typeBindings.segmentTypeEnum = segmentTypeEnum -# Atomic simple type: {urn:vpro:media:2009}workflowTypeEnum -class workflowTypeEnum (pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): +# Atomic simple type: {urn:vpro:media:2009}workflowTypeEnum +class workflowTypeEnum(pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'workflowTypeEnum') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 207, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "workflowTypeEnum") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 207, 2) _Documentation = None + + workflowTypeEnum._CF_enumeration = pyxb.binding.facets.CF_enumeration(value_datatype=workflowTypeEnum, enum_prefix=None) -workflowTypeEnum.PUBLISHED = workflowTypeEnum._CF_enumeration.addEnumeration(unicode_value='PUBLISHED', tag='PUBLISHED') -workflowTypeEnum.REVOKED = workflowTypeEnum._CF_enumeration.addEnumeration(unicode_value='REVOKED', tag='REVOKED') -workflowTypeEnum.FOR_REPUBLICATION = workflowTypeEnum._CF_enumeration.addEnumeration(unicode_value='FOR REPUBLICATION', tag='FOR_REPUBLICATION') -workflowTypeEnum.FOR_PUBLICATION = workflowTypeEnum._CF_enumeration.addEnumeration(unicode_value='FOR PUBLICATION', tag='FOR_PUBLICATION') -workflowTypeEnum.DELETED = workflowTypeEnum._CF_enumeration.addEnumeration(unicode_value='DELETED', tag='DELETED') -workflowTypeEnum.PARENT_REVOKED = workflowTypeEnum._CF_enumeration.addEnumeration(unicode_value='PARENT REVOKED', tag='PARENT_REVOKED') +workflowTypeEnum.PUBLISHED = workflowTypeEnum._CF_enumeration.addEnumeration(unicode_value="PUBLISHED", tag="PUBLISHED") +workflowTypeEnum.REVOKED = workflowTypeEnum._CF_enumeration.addEnumeration(unicode_value="REVOKED", tag="REVOKED") +workflowTypeEnum.FOR_REPUBLICATION = workflowTypeEnum._CF_enumeration.addEnumeration( + unicode_value="FOR REPUBLICATION", tag="FOR_REPUBLICATION" +) +workflowTypeEnum.FOR_PUBLICATION = workflowTypeEnum._CF_enumeration.addEnumeration( + unicode_value="FOR PUBLICATION", tag="FOR_PUBLICATION" +) +workflowTypeEnum.DELETED = workflowTypeEnum._CF_enumeration.addEnumeration(unicode_value="DELETED", tag="DELETED") +workflowTypeEnum.PARENT_REVOKED = workflowTypeEnum._CF_enumeration.addEnumeration( + unicode_value="PARENT REVOKED", tag="PARENT_REVOKED" +) workflowTypeEnum._InitializeFacetMap(workflowTypeEnum._CF_enumeration) -Namespace.addCategoryObject('typeBinding', 'workflowTypeEnum', workflowTypeEnum) +Namespace.addCategoryObject("typeBinding", "workflowTypeEnum", workflowTypeEnum) _module_typeBindings.workflowTypeEnum = workflowTypeEnum -# Atomic simple type: {urn:vpro:media:2009}cridType -class cridType (pyxb.binding.datatypes.anyURI): +# Atomic simple type: {urn:vpro:media:2009}cridType +class cridType(pyxb.binding.datatypes.anyURI): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'cridType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 349, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "cridType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 349, 2) _Documentation = None + + cridType._CF_pattern = pyxb.binding.facets.CF_pattern() -cridType._CF_pattern.addPattern(pattern='(c|C)(r|R)(i|I)(d|D)://.*/.*') +cridType._CF_pattern.addPattern(pattern="(c|C)(r|R)(i|I)(d|D)://.*/.*") cridType._InitializeFacetMap(cridType._CF_pattern) -Namespace.addCategoryObject('typeBinding', 'cridType', cridType) +Namespace.addCategoryObject("typeBinding", "cridType", cridType) _module_typeBindings.cridType = cridType -# Atomic simple type: {urn:vpro:media:2009}platformTypeEnum -class platformTypeEnum (pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): +# Atomic simple type: {urn:vpro:media:2009}platformTypeEnum +class platformTypeEnum(pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'platformTypeEnum') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 355, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "platformTypeEnum") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 355, 2) _Documentation = None + + platformTypeEnum._CF_enumeration = pyxb.binding.facets.CF_enumeration(value_datatype=platformTypeEnum, enum_prefix=None) -platformTypeEnum.INTERNETVOD = platformTypeEnum._CF_enumeration.addEnumeration(unicode_value='INTERNETVOD', tag='INTERNETVOD') -platformTypeEnum.TVVOD = platformTypeEnum._CF_enumeration.addEnumeration(unicode_value='TVVOD', tag='TVVOD') -platformTypeEnum.PLUSVOD = platformTypeEnum._CF_enumeration.addEnumeration(unicode_value='PLUSVOD', tag='PLUSVOD') -platformTypeEnum.NPOPLUSVOD = platformTypeEnum._CF_enumeration.addEnumeration(unicode_value='NPOPLUSVOD', tag='NPOPLUSVOD') +platformTypeEnum.INTERNETVOD = platformTypeEnum._CF_enumeration.addEnumeration( + unicode_value="INTERNETVOD", tag="INTERNETVOD" +) +platformTypeEnum.TVVOD = platformTypeEnum._CF_enumeration.addEnumeration(unicode_value="TVVOD", tag="TVVOD") +platformTypeEnum.PLUSVOD = platformTypeEnum._CF_enumeration.addEnumeration(unicode_value="PLUSVOD", tag="PLUSVOD") +platformTypeEnum.NPOPLUSVOD = platformTypeEnum._CF_enumeration.addEnumeration( + unicode_value="NPOPLUSVOD", tag="NPOPLUSVOD" +) platformTypeEnum._InitializeFacetMap(platformTypeEnum._CF_enumeration) -Namespace.addCategoryObject('typeBinding', 'platformTypeEnum', platformTypeEnum) +Namespace.addCategoryObject("typeBinding", "platformTypeEnum", platformTypeEnum) _module_typeBindings.platformTypeEnum = platformTypeEnum -# Atomic simple type: {urn:vpro:media:2009}textualTypeEnum -class textualTypeEnum (pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): +# Atomic simple type: {urn:vpro:media:2009}textualTypeEnum +class textualTypeEnum(pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'textualTypeEnum') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 393, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "textualTypeEnum") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 393, 2) _Documentation = None + + textualTypeEnum._CF_enumeration = pyxb.binding.facets.CF_enumeration(value_datatype=textualTypeEnum, enum_prefix=None) -textualTypeEnum.MAIN = textualTypeEnum._CF_enumeration.addEnumeration(unicode_value='MAIN', tag='MAIN') -textualTypeEnum.LONG = textualTypeEnum._CF_enumeration.addEnumeration(unicode_value='LONG', tag='LONG') -textualTypeEnum.SHORT = textualTypeEnum._CF_enumeration.addEnumeration(unicode_value='SHORT', tag='SHORT') -textualTypeEnum.SUB = textualTypeEnum._CF_enumeration.addEnumeration(unicode_value='SUB', tag='SUB') -textualTypeEnum.KICKER = textualTypeEnum._CF_enumeration.addEnumeration(unicode_value='KICKER', tag='KICKER') -textualTypeEnum.ORIGINAL = textualTypeEnum._CF_enumeration.addEnumeration(unicode_value='ORIGINAL', tag='ORIGINAL') -textualTypeEnum.EPISODE = textualTypeEnum._CF_enumeration.addEnumeration(unicode_value='EPISODE', tag='EPISODE') -textualTypeEnum.WORK = textualTypeEnum._CF_enumeration.addEnumeration(unicode_value='WORK', tag='WORK') -textualTypeEnum.LEXICO = textualTypeEnum._CF_enumeration.addEnumeration(unicode_value='LEXICO', tag='LEXICO') -textualTypeEnum.ABBREVIATION = textualTypeEnum._CF_enumeration.addEnumeration(unicode_value='ABBREVIATION', tag='ABBREVIATION') +textualTypeEnum.MAIN = textualTypeEnum._CF_enumeration.addEnumeration(unicode_value="MAIN", tag="MAIN") +textualTypeEnum.LONG = textualTypeEnum._CF_enumeration.addEnumeration(unicode_value="LONG", tag="LONG") +textualTypeEnum.SHORT = textualTypeEnum._CF_enumeration.addEnumeration(unicode_value="SHORT", tag="SHORT") +textualTypeEnum.SUB = textualTypeEnum._CF_enumeration.addEnumeration(unicode_value="SUB", tag="SUB") +textualTypeEnum.KICKER = textualTypeEnum._CF_enumeration.addEnumeration(unicode_value="KICKER", tag="KICKER") +textualTypeEnum.ORIGINAL = textualTypeEnum._CF_enumeration.addEnumeration(unicode_value="ORIGINAL", tag="ORIGINAL") +textualTypeEnum.EPISODE = textualTypeEnum._CF_enumeration.addEnumeration(unicode_value="EPISODE", tag="EPISODE") +textualTypeEnum.WORK = textualTypeEnum._CF_enumeration.addEnumeration(unicode_value="WORK", tag="WORK") +textualTypeEnum.LEXICO = textualTypeEnum._CF_enumeration.addEnumeration(unicode_value="LEXICO", tag="LEXICO") +textualTypeEnum.ABBREVIATION = textualTypeEnum._CF_enumeration.addEnumeration( + unicode_value="ABBREVIATION", tag="ABBREVIATION" +) textualTypeEnum._InitializeFacetMap(textualTypeEnum._CF_enumeration) -Namespace.addCategoryObject('typeBinding', 'textualTypeEnum', textualTypeEnum) +Namespace.addCategoryObject("typeBinding", "textualTypeEnum", textualTypeEnum) _module_typeBindings.textualTypeEnum = textualTypeEnum -# Atomic simple type: {urn:vpro:media:2009}intentionEnum -class intentionEnum (pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): +# Atomic simple type: {urn:vpro:media:2009}intentionEnum +class intentionEnum(pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'intentionEnum') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 408, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "intentionEnum") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 408, 2) _Documentation = None + + intentionEnum._CF_enumeration = pyxb.binding.facets.CF_enumeration(value_datatype=intentionEnum, enum_prefix=None) -intentionEnum.INFORM = intentionEnum._CF_enumeration.addEnumeration(unicode_value='INFORM', tag='INFORM') -intentionEnum.INFORM_NEWS_AND_FACTS = intentionEnum._CF_enumeration.addEnumeration(unicode_value='INFORM_NEWS_AND_FACTS', tag='INFORM_NEWS_AND_FACTS') -intentionEnum.INFORM_INDEPTH = intentionEnum._CF_enumeration.addEnumeration(unicode_value='INFORM_INDEPTH', tag='INFORM_INDEPTH') -intentionEnum.INFORM_GENERAL = intentionEnum._CF_enumeration.addEnumeration(unicode_value='INFORM_GENERAL', tag='INFORM_GENERAL') -intentionEnum.ENTERTAINMENT = intentionEnum._CF_enumeration.addEnumeration(unicode_value='ENTERTAINMENT', tag='ENTERTAINMENT') -intentionEnum.ENTERTAINMENT_LEASURE = intentionEnum._CF_enumeration.addEnumeration(unicode_value='ENTERTAINMENT_LEASURE', tag='ENTERTAINMENT_LEASURE') -intentionEnum.ENTERTAINMENT_INFORMATIVE = intentionEnum._CF_enumeration.addEnumeration(unicode_value='ENTERTAINMENT_INFORMATIVE', tag='ENTERTAINMENT_INFORMATIVE') -intentionEnum.ACTIVATING = intentionEnum._CF_enumeration.addEnumeration(unicode_value='ACTIVATING', tag='ACTIVATING') +intentionEnum.INFORM = intentionEnum._CF_enumeration.addEnumeration(unicode_value="INFORM", tag="INFORM") +intentionEnum.INFORM_NEWS_AND_FACTS = intentionEnum._CF_enumeration.addEnumeration( + unicode_value="INFORM_NEWS_AND_FACTS", tag="INFORM_NEWS_AND_FACTS" +) +intentionEnum.INFORM_INDEPTH = intentionEnum._CF_enumeration.addEnumeration( + unicode_value="INFORM_INDEPTH", tag="INFORM_INDEPTH" +) +intentionEnum.INFORM_GENERAL = intentionEnum._CF_enumeration.addEnumeration( + unicode_value="INFORM_GENERAL", tag="INFORM_GENERAL" +) +intentionEnum.ENTERTAINMENT = intentionEnum._CF_enumeration.addEnumeration( + unicode_value="ENTERTAINMENT", tag="ENTERTAINMENT" +) +intentionEnum.ENTERTAINMENT_LEASURE = intentionEnum._CF_enumeration.addEnumeration( + unicode_value="ENTERTAINMENT_LEASURE", tag="ENTERTAINMENT_LEASURE" +) +intentionEnum.ENTERTAINMENT_INFORMATIVE = intentionEnum._CF_enumeration.addEnumeration( + unicode_value="ENTERTAINMENT_INFORMATIVE", tag="ENTERTAINMENT_INFORMATIVE" +) +intentionEnum.ACTIVATING = intentionEnum._CF_enumeration.addEnumeration(unicode_value="ACTIVATING", tag="ACTIVATING") intentionEnum._InitializeFacetMap(intentionEnum._CF_enumeration) -Namespace.addCategoryObject('typeBinding', 'intentionEnum', intentionEnum) +Namespace.addCategoryObject("typeBinding", "intentionEnum", intentionEnum) _module_typeBindings.intentionEnum = intentionEnum -# Atomic simple type: {urn:vpro:media:2009}targetGroupEnum -class targetGroupEnum (pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): +# Atomic simple type: {urn:vpro:media:2009}targetGroupEnum +class targetGroupEnum(pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'targetGroupEnum') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 421, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "targetGroupEnum") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 421, 2) _Documentation = None + + targetGroupEnum._CF_enumeration = pyxb.binding.facets.CF_enumeration(value_datatype=targetGroupEnum, enum_prefix=None) -targetGroupEnum.KIDS_6 = targetGroupEnum._CF_enumeration.addEnumeration(unicode_value='KIDS_6', tag='KIDS_6') -targetGroupEnum.KIDS_12 = targetGroupEnum._CF_enumeration.addEnumeration(unicode_value='KIDS_12', tag='KIDS_12') -targetGroupEnum.YOUNG_ADULTS = targetGroupEnum._CF_enumeration.addEnumeration(unicode_value='YOUNG_ADULTS', tag='YOUNG_ADULTS') -targetGroupEnum.ADULTS = targetGroupEnum._CF_enumeration.addEnumeration(unicode_value='ADULTS', tag='ADULTS') -targetGroupEnum.ADULTS_WITH_KIDS_6 = targetGroupEnum._CF_enumeration.addEnumeration(unicode_value='ADULTS_WITH_KIDS_6', tag='ADULTS_WITH_KIDS_6') -targetGroupEnum.ADULTS_WITH_KIDS_12 = targetGroupEnum._CF_enumeration.addEnumeration(unicode_value='ADULTS_WITH_KIDS_12', tag='ADULTS_WITH_KIDS_12') -targetGroupEnum.EVERYONE = targetGroupEnum._CF_enumeration.addEnumeration(unicode_value='EVERYONE', tag='EVERYONE') +targetGroupEnum.KIDS_6 = targetGroupEnum._CF_enumeration.addEnumeration(unicode_value="KIDS_6", tag="KIDS_6") +targetGroupEnum.KIDS_12 = targetGroupEnum._CF_enumeration.addEnumeration(unicode_value="KIDS_12", tag="KIDS_12") +targetGroupEnum.YOUNG_ADULTS = targetGroupEnum._CF_enumeration.addEnumeration( + unicode_value="YOUNG_ADULTS", tag="YOUNG_ADULTS" +) +targetGroupEnum.ADULTS = targetGroupEnum._CF_enumeration.addEnumeration(unicode_value="ADULTS", tag="ADULTS") +targetGroupEnum.ADULTS_WITH_KIDS_6 = targetGroupEnum._CF_enumeration.addEnumeration( + unicode_value="ADULTS_WITH_KIDS_6", tag="ADULTS_WITH_KIDS_6" +) +targetGroupEnum.ADULTS_WITH_KIDS_12 = targetGroupEnum._CF_enumeration.addEnumeration( + unicode_value="ADULTS_WITH_KIDS_12", tag="ADULTS_WITH_KIDS_12" +) +targetGroupEnum.EVERYONE = targetGroupEnum._CF_enumeration.addEnumeration(unicode_value="EVERYONE", tag="EVERYONE") targetGroupEnum._InitializeFacetMap(targetGroupEnum._CF_enumeration) -Namespace.addCategoryObject('typeBinding', 'targetGroupEnum', targetGroupEnum) +Namespace.addCategoryObject("typeBinding", "targetGroupEnum", targetGroupEnum) _module_typeBindings.targetGroupEnum = targetGroupEnum -# Atomic simple type: {urn:vpro:media:2009}avTypeEnum -class avTypeEnum (pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): +# Atomic simple type: {urn:vpro:media:2009}avTypeEnum +class avTypeEnum(pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'avTypeEnum') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 433, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "avTypeEnum") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 433, 2) _Documentation = None + + avTypeEnum._CF_enumeration = pyxb.binding.facets.CF_enumeration(value_datatype=avTypeEnum, enum_prefix=None) -avTypeEnum.AUDIO = avTypeEnum._CF_enumeration.addEnumeration(unicode_value='AUDIO', tag='AUDIO') -avTypeEnum.VIDEO = avTypeEnum._CF_enumeration.addEnumeration(unicode_value='VIDEO', tag='VIDEO') -avTypeEnum.MIXED = avTypeEnum._CF_enumeration.addEnumeration(unicode_value='MIXED', tag='MIXED') +avTypeEnum.AUDIO = avTypeEnum._CF_enumeration.addEnumeration(unicode_value="AUDIO", tag="AUDIO") +avTypeEnum.VIDEO = avTypeEnum._CF_enumeration.addEnumeration(unicode_value="VIDEO", tag="VIDEO") +avTypeEnum.MIXED = avTypeEnum._CF_enumeration.addEnumeration(unicode_value="MIXED", tag="MIXED") avTypeEnum._InitializeFacetMap(avTypeEnum._CF_enumeration) -Namespace.addCategoryObject('typeBinding', 'avTypeEnum', avTypeEnum) +Namespace.addCategoryObject("typeBinding", "avTypeEnum", avTypeEnum) _module_typeBindings.avTypeEnum = avTypeEnum -# Atomic simple type: {urn:vpro:media:2009}avFileFormatEnum -class avFileFormatEnum (pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): +# Atomic simple type: {urn:vpro:media:2009}avFileFormatEnum +class avFileFormatEnum(pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'avFileFormatEnum') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 479, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "avFileFormatEnum") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 479, 2) _Documentation = None + + avFileFormatEnum._CF_enumeration = pyxb.binding.facets.CF_enumeration(value_datatype=avFileFormatEnum, enum_prefix=None) -avFileFormatEnum.MP3 = avFileFormatEnum._CF_enumeration.addEnumeration(unicode_value='MP3', tag='MP3') -avFileFormatEnum.RA = avFileFormatEnum._CF_enumeration.addEnumeration(unicode_value='RA', tag='RA') -avFileFormatEnum.RM = avFileFormatEnum._CF_enumeration.addEnumeration(unicode_value='RM', tag='RM') -avFileFormatEnum.MP4 = avFileFormatEnum._CF_enumeration.addEnumeration(unicode_value='MP4', tag='MP4') -avFileFormatEnum.WVC1 = avFileFormatEnum._CF_enumeration.addEnumeration(unicode_value='WVC1', tag='WVC1') -avFileFormatEnum.WM = avFileFormatEnum._CF_enumeration.addEnumeration(unicode_value='WM', tag='WM') -avFileFormatEnum.RAM = avFileFormatEnum._CF_enumeration.addEnumeration(unicode_value='RAM', tag='RAM') -avFileFormatEnum.WMP = avFileFormatEnum._CF_enumeration.addEnumeration(unicode_value='WMP', tag='WMP') -avFileFormatEnum.HTML = avFileFormatEnum._CF_enumeration.addEnumeration(unicode_value='HTML', tag='HTML') -avFileFormatEnum.M4A = avFileFormatEnum._CF_enumeration.addEnumeration(unicode_value='M4A', tag='M4A') -avFileFormatEnum.M4V = avFileFormatEnum._CF_enumeration.addEnumeration(unicode_value='M4V', tag='M4V') -avFileFormatEnum.DGPP = avFileFormatEnum._CF_enumeration.addEnumeration(unicode_value='DGPP', tag='DGPP') -avFileFormatEnum.FLV = avFileFormatEnum._CF_enumeration.addEnumeration(unicode_value='FLV', tag='FLV') -avFileFormatEnum.HASP = avFileFormatEnum._CF_enumeration.addEnumeration(unicode_value='HASP', tag='HASP') -avFileFormatEnum.MPEG2 = avFileFormatEnum._CF_enumeration.addEnumeration(unicode_value='MPEG2', tag='MPEG2') -avFileFormatEnum.H264 = avFileFormatEnum._CF_enumeration.addEnumeration(unicode_value='H264', tag='H264') -avFileFormatEnum.UNKNOWN = avFileFormatEnum._CF_enumeration.addEnumeration(unicode_value='UNKNOWN', tag='UNKNOWN') +avFileFormatEnum.MP3 = avFileFormatEnum._CF_enumeration.addEnumeration(unicode_value="MP3", tag="MP3") +avFileFormatEnum.RA = avFileFormatEnum._CF_enumeration.addEnumeration(unicode_value="RA", tag="RA") +avFileFormatEnum.RM = avFileFormatEnum._CF_enumeration.addEnumeration(unicode_value="RM", tag="RM") +avFileFormatEnum.MP4 = avFileFormatEnum._CF_enumeration.addEnumeration(unicode_value="MP4", tag="MP4") +avFileFormatEnum.WVC1 = avFileFormatEnum._CF_enumeration.addEnumeration(unicode_value="WVC1", tag="WVC1") +avFileFormatEnum.WM = avFileFormatEnum._CF_enumeration.addEnumeration(unicode_value="WM", tag="WM") +avFileFormatEnum.RAM = avFileFormatEnum._CF_enumeration.addEnumeration(unicode_value="RAM", tag="RAM") +avFileFormatEnum.WMP = avFileFormatEnum._CF_enumeration.addEnumeration(unicode_value="WMP", tag="WMP") +avFileFormatEnum.HTML = avFileFormatEnum._CF_enumeration.addEnumeration(unicode_value="HTML", tag="HTML") +avFileFormatEnum.M4A = avFileFormatEnum._CF_enumeration.addEnumeration(unicode_value="M4A", tag="M4A") +avFileFormatEnum.M4V = avFileFormatEnum._CF_enumeration.addEnumeration(unicode_value="M4V", tag="M4V") +avFileFormatEnum.DGPP = avFileFormatEnum._CF_enumeration.addEnumeration(unicode_value="DGPP", tag="DGPP") +avFileFormatEnum.FLV = avFileFormatEnum._CF_enumeration.addEnumeration(unicode_value="FLV", tag="FLV") +avFileFormatEnum.HASP = avFileFormatEnum._CF_enumeration.addEnumeration(unicode_value="HASP", tag="HASP") +avFileFormatEnum.MPEG2 = avFileFormatEnum._CF_enumeration.addEnumeration(unicode_value="MPEG2", tag="MPEG2") +avFileFormatEnum.H264 = avFileFormatEnum._CF_enumeration.addEnumeration(unicode_value="H264", tag="H264") +avFileFormatEnum.UNKNOWN = avFileFormatEnum._CF_enumeration.addEnumeration(unicode_value="UNKNOWN", tag="UNKNOWN") avFileFormatEnum._InitializeFacetMap(avFileFormatEnum._CF_enumeration) -Namespace.addCategoryObject('typeBinding', 'avFileFormatEnum', avFileFormatEnum) +Namespace.addCategoryObject("typeBinding", "avFileFormatEnum", avFileFormatEnum) _module_typeBindings.avFileFormatEnum = avFileFormatEnum -# Atomic simple type: {urn:vpro:media:2009}colorType -class colorType (pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): +# Atomic simple type: {urn:vpro:media:2009}colorType +class colorType(pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'colorType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 518, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "colorType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 518, 2) _Documentation = None + + colorType._CF_enumeration = pyxb.binding.facets.CF_enumeration(value_datatype=colorType, enum_prefix=None) -colorType.COLOR = colorType._CF_enumeration.addEnumeration(unicode_value='COLOR', tag='COLOR') -colorType.BLACK_AND_WHITE = colorType._CF_enumeration.addEnumeration(unicode_value='BLACK AND WHITE', tag='BLACK_AND_WHITE') -colorType.BLACK_AND_WHITE_AND_COLOR = colorType._CF_enumeration.addEnumeration(unicode_value='BLACK AND WHITE AND COLOR', tag='BLACK_AND_WHITE_AND_COLOR') -colorType.COLORIZED = colorType._CF_enumeration.addEnumeration(unicode_value='COLORIZED', tag='COLORIZED') +colorType.COLOR = colorType._CF_enumeration.addEnumeration(unicode_value="COLOR", tag="COLOR") +colorType.BLACK_AND_WHITE = colorType._CF_enumeration.addEnumeration( + unicode_value="BLACK AND WHITE", tag="BLACK_AND_WHITE" +) +colorType.BLACK_AND_WHITE_AND_COLOR = colorType._CF_enumeration.addEnumeration( + unicode_value="BLACK AND WHITE AND COLOR", tag="BLACK_AND_WHITE_AND_COLOR" +) +colorType.COLORIZED = colorType._CF_enumeration.addEnumeration(unicode_value="COLORIZED", tag="COLORIZED") colorType._InitializeFacetMap(colorType._CF_enumeration) -Namespace.addCategoryObject('typeBinding', 'colorType', colorType) +Namespace.addCategoryObject("typeBinding", "colorType", colorType) _module_typeBindings.colorType = colorType -# Atomic simple type: {urn:vpro:media:2009}aspectRatioEnum -class aspectRatioEnum (pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): +# Atomic simple type: {urn:vpro:media:2009}aspectRatioEnum +class aspectRatioEnum(pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'aspectRatioEnum') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 527, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "aspectRatioEnum") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 527, 2) _Documentation = None + + aspectRatioEnum._CF_enumeration = pyxb.binding.facets.CF_enumeration(value_datatype=aspectRatioEnum, enum_prefix=None) -aspectRatioEnum.n43 = aspectRatioEnum._CF_enumeration.addEnumeration(unicode_value='4:3', tag='n43') -aspectRatioEnum.n169 = aspectRatioEnum._CF_enumeration.addEnumeration(unicode_value='16:9', tag='n169') +aspectRatioEnum.n43 = aspectRatioEnum._CF_enumeration.addEnumeration(unicode_value="4:3", tag="n43") +aspectRatioEnum.n169 = aspectRatioEnum._CF_enumeration.addEnumeration(unicode_value="16:9", tag="n169") aspectRatioEnum._InitializeFacetMap(aspectRatioEnum._CF_enumeration) -Namespace.addCategoryObject('typeBinding', 'aspectRatioEnum', aspectRatioEnum) +Namespace.addCategoryObject("typeBinding", "aspectRatioEnum", aspectRatioEnum) _module_typeBindings.aspectRatioEnum = aspectRatioEnum -# Atomic simple type: {urn:vpro:media:2009}roleType -class roleType (pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): +# Atomic simple type: {urn:vpro:media:2009}roleType +class roleType(pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'roleType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 571, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "roleType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 571, 2) _Documentation = None + + roleType._CF_enumeration = pyxb.binding.facets.CF_enumeration(value_datatype=roleType, enum_prefix=None) -roleType.DIRECTOR = roleType._CF_enumeration.addEnumeration(unicode_value='DIRECTOR', tag='DIRECTOR') -roleType.CHIEF_EDITOR = roleType._CF_enumeration.addEnumeration(unicode_value='CHIEF_EDITOR', tag='CHIEF_EDITOR') -roleType.EDITOR = roleType._CF_enumeration.addEnumeration(unicode_value='EDITOR', tag='EDITOR') -roleType.PRESENTER = roleType._CF_enumeration.addEnumeration(unicode_value='PRESENTER', tag='PRESENTER') -roleType.INTERVIEWER = roleType._CF_enumeration.addEnumeration(unicode_value='INTERVIEWER', tag='INTERVIEWER') -roleType.PRODUCER = roleType._CF_enumeration.addEnumeration(unicode_value='PRODUCER', tag='PRODUCER') -roleType.RESEARCH = roleType._CF_enumeration.addEnumeration(unicode_value='RESEARCH', tag='RESEARCH') -roleType.GUEST = roleType._CF_enumeration.addEnumeration(unicode_value='GUEST', tag='GUEST') -roleType.REPORTER = roleType._CF_enumeration.addEnumeration(unicode_value='REPORTER', tag='REPORTER') -roleType.ACTOR = roleType._CF_enumeration.addEnumeration(unicode_value='ACTOR', tag='ACTOR') -roleType.COMMENTATOR = roleType._CF_enumeration.addEnumeration(unicode_value='COMMENTATOR', tag='COMMENTATOR') -roleType.SCRIPTWRITER = roleType._CF_enumeration.addEnumeration(unicode_value='SCRIPTWRITER', tag='SCRIPTWRITER') -roleType.COMPOSER = roleType._CF_enumeration.addEnumeration(unicode_value='COMPOSER', tag='COMPOSER') -roleType.SUBJECT = roleType._CF_enumeration.addEnumeration(unicode_value='SUBJECT', tag='SUBJECT') -roleType.PARTICIPANT = roleType._CF_enumeration.addEnumeration(unicode_value='PARTICIPANT', tag='PARTICIPANT') -roleType.SIDEKICK = roleType._CF_enumeration.addEnumeration(unicode_value='SIDEKICK', tag='SIDEKICK') -roleType.NEWS_PRESENTER = roleType._CF_enumeration.addEnumeration(unicode_value='NEWS_PRESENTER', tag='NEWS_PRESENTER') -roleType.ASSISTANT_DIRECTOR = roleType._CF_enumeration.addEnumeration(unicode_value='ASSISTANT_DIRECTOR', tag='ASSISTANT_DIRECTOR') -roleType.CAMERA = roleType._CF_enumeration.addEnumeration(unicode_value='CAMERA', tag='CAMERA') -roleType.CHOREOGRAPHY = roleType._CF_enumeration.addEnumeration(unicode_value='CHOREOGRAPHY', tag='CHOREOGRAPHY') -roleType.DUBBING = roleType._CF_enumeration.addEnumeration(unicode_value='DUBBING', tag='DUBBING') -roleType.MAKEUP = roleType._CF_enumeration.addEnumeration(unicode_value='MAKEUP', tag='MAKEUP') -roleType.PRODUCTION_MANAGEMENT = roleType._CF_enumeration.addEnumeration(unicode_value='PRODUCTION_MANAGEMENT', tag='PRODUCTION_MANAGEMENT') -roleType.STAGING = roleType._CF_enumeration.addEnumeration(unicode_value='STAGING', tag='STAGING') -roleType.STUNT = roleType._CF_enumeration.addEnumeration(unicode_value='STUNT', tag='STUNT') -roleType.VISUAL_EFFECTS = roleType._CF_enumeration.addEnumeration(unicode_value='VISUAL_EFFECTS', tag='VISUAL_EFFECTS') -roleType.UNDEFINED = roleType._CF_enumeration.addEnumeration(unicode_value='UNDEFINED', tag='UNDEFINED') +roleType.DIRECTOR = roleType._CF_enumeration.addEnumeration(unicode_value="DIRECTOR", tag="DIRECTOR") +roleType.CHIEF_EDITOR = roleType._CF_enumeration.addEnumeration(unicode_value="CHIEF_EDITOR", tag="CHIEF_EDITOR") +roleType.EDITOR = roleType._CF_enumeration.addEnumeration(unicode_value="EDITOR", tag="EDITOR") +roleType.PRESENTER = roleType._CF_enumeration.addEnumeration(unicode_value="PRESENTER", tag="PRESENTER") +roleType.INTERVIEWER = roleType._CF_enumeration.addEnumeration(unicode_value="INTERVIEWER", tag="INTERVIEWER") +roleType.PRODUCER = roleType._CF_enumeration.addEnumeration(unicode_value="PRODUCER", tag="PRODUCER") +roleType.RESEARCH = roleType._CF_enumeration.addEnumeration(unicode_value="RESEARCH", tag="RESEARCH") +roleType.GUEST = roleType._CF_enumeration.addEnumeration(unicode_value="GUEST", tag="GUEST") +roleType.REPORTER = roleType._CF_enumeration.addEnumeration(unicode_value="REPORTER", tag="REPORTER") +roleType.ACTOR = roleType._CF_enumeration.addEnumeration(unicode_value="ACTOR", tag="ACTOR") +roleType.COMMENTATOR = roleType._CF_enumeration.addEnumeration(unicode_value="COMMENTATOR", tag="COMMENTATOR") +roleType.SCRIPTWRITER = roleType._CF_enumeration.addEnumeration(unicode_value="SCRIPTWRITER", tag="SCRIPTWRITER") +roleType.COMPOSER = roleType._CF_enumeration.addEnumeration(unicode_value="COMPOSER", tag="COMPOSER") +roleType.SUBJECT = roleType._CF_enumeration.addEnumeration(unicode_value="SUBJECT", tag="SUBJECT") +roleType.PARTICIPANT = roleType._CF_enumeration.addEnumeration(unicode_value="PARTICIPANT", tag="PARTICIPANT") +roleType.SIDEKICK = roleType._CF_enumeration.addEnumeration(unicode_value="SIDEKICK", tag="SIDEKICK") +roleType.NEWS_PRESENTER = roleType._CF_enumeration.addEnumeration(unicode_value="NEWS_PRESENTER", tag="NEWS_PRESENTER") +roleType.ASSISTANT_DIRECTOR = roleType._CF_enumeration.addEnumeration( + unicode_value="ASSISTANT_DIRECTOR", tag="ASSISTANT_DIRECTOR" +) +roleType.CAMERA = roleType._CF_enumeration.addEnumeration(unicode_value="CAMERA", tag="CAMERA") +roleType.CHOREOGRAPHY = roleType._CF_enumeration.addEnumeration(unicode_value="CHOREOGRAPHY", tag="CHOREOGRAPHY") +roleType.DUBBING = roleType._CF_enumeration.addEnumeration(unicode_value="DUBBING", tag="DUBBING") +roleType.MAKEUP = roleType._CF_enumeration.addEnumeration(unicode_value="MAKEUP", tag="MAKEUP") +roleType.PRODUCTION_MANAGEMENT = roleType._CF_enumeration.addEnumeration( + unicode_value="PRODUCTION_MANAGEMENT", tag="PRODUCTION_MANAGEMENT" +) +roleType.STAGING = roleType._CF_enumeration.addEnumeration(unicode_value="STAGING", tag="STAGING") +roleType.STUNT = roleType._CF_enumeration.addEnumeration(unicode_value="STUNT", tag="STUNT") +roleType.VISUAL_EFFECTS = roleType._CF_enumeration.addEnumeration(unicode_value="VISUAL_EFFECTS", tag="VISUAL_EFFECTS") +roleType.UNDEFINED = roleType._CF_enumeration.addEnumeration(unicode_value="UNDEFINED", tag="UNDEFINED") roleType._InitializeFacetMap(roleType._CF_enumeration) -Namespace.addCategoryObject('typeBinding', 'roleType', roleType) +Namespace.addCategoryObject("typeBinding", "roleType", roleType) _module_typeBindings.roleType = roleType -# Atomic simple type: {urn:vpro:media:2009}geoRoleType -class geoRoleType (pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): +# Atomic simple type: {urn:vpro:media:2009}geoRoleType +class geoRoleType(pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'geoRoleType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 614, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "geoRoleType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 614, 2) _Documentation = None + + geoRoleType._CF_enumeration = pyxb.binding.facets.CF_enumeration(value_datatype=geoRoleType, enum_prefix=None) -geoRoleType.RECORDED_IN = geoRoleType._CF_enumeration.addEnumeration(unicode_value='RECORDED_IN', tag='RECORDED_IN') -geoRoleType.SUBJECT = geoRoleType._CF_enumeration.addEnumeration(unicode_value='SUBJECT', tag='SUBJECT') -geoRoleType.PRODUCED_IN = geoRoleType._CF_enumeration.addEnumeration(unicode_value='PRODUCED_IN', tag='PRODUCED_IN') -geoRoleType.UNDEFINED = geoRoleType._CF_enumeration.addEnumeration(unicode_value='UNDEFINED', tag='UNDEFINED') +geoRoleType.RECORDED_IN = geoRoleType._CF_enumeration.addEnumeration(unicode_value="RECORDED_IN", tag="RECORDED_IN") +geoRoleType.SUBJECT = geoRoleType._CF_enumeration.addEnumeration(unicode_value="SUBJECT", tag="SUBJECT") +geoRoleType.PRODUCED_IN = geoRoleType._CF_enumeration.addEnumeration(unicode_value="PRODUCED_IN", tag="PRODUCED_IN") +geoRoleType.UNDEFINED = geoRoleType._CF_enumeration.addEnumeration(unicode_value="UNDEFINED", tag="UNDEFINED") geoRoleType._InitializeFacetMap(geoRoleType._CF_enumeration) -Namespace.addCategoryObject('typeBinding', 'geoRoleType', geoRoleType) +Namespace.addCategoryObject("typeBinding", "geoRoleType", geoRoleType) _module_typeBindings.geoRoleType = geoRoleType -# Atomic simple type: {urn:vpro:media:2009}license -class license (pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): +# Atomic simple type: {urn:vpro:media:2009}license +class license(pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'license') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 661, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "license") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 661, 2) _Documentation = None + + license._CF_enumeration = pyxb.binding.facets.CF_enumeration(value_datatype=license, enum_prefix=None) -license.COPYRIGHTED = license._CF_enumeration.addEnumeration(unicode_value='COPYRIGHTED', tag='COPYRIGHTED') -license.PUBLIC_DOMAIN = license._CF_enumeration.addEnumeration(unicode_value='PUBLIC_DOMAIN', tag='PUBLIC_DOMAIN') -license.CC_BY = license._CF_enumeration.addEnumeration(unicode_value='CC_BY', tag='CC_BY') -license.CC_BY_SA = license._CF_enumeration.addEnumeration(unicode_value='CC_BY_SA', tag='CC_BY_SA') -license.CC_BY_ND = license._CF_enumeration.addEnumeration(unicode_value='CC_BY_ND', tag='CC_BY_ND') -license.CC_BY_NC = license._CF_enumeration.addEnumeration(unicode_value='CC_BY_NC', tag='CC_BY_NC') -license.CC_BY_NC_SA = license._CF_enumeration.addEnumeration(unicode_value='CC_BY_NC_SA', tag='CC_BY_NC_SA') -license.CC_BY_NC_ND = license._CF_enumeration.addEnumeration(unicode_value='CC_BY_NC_ND', tag='CC_BY_NC_ND') +license.COPYRIGHTED = license._CF_enumeration.addEnumeration(unicode_value="COPYRIGHTED", tag="COPYRIGHTED") +license.PUBLIC_DOMAIN = license._CF_enumeration.addEnumeration(unicode_value="PUBLIC_DOMAIN", tag="PUBLIC_DOMAIN") +license.CC_BY = license._CF_enumeration.addEnumeration(unicode_value="CC_BY", tag="CC_BY") +license.CC_BY_SA = license._CF_enumeration.addEnumeration(unicode_value="CC_BY_SA", tag="CC_BY_SA") +license.CC_BY_ND = license._CF_enumeration.addEnumeration(unicode_value="CC_BY_ND", tag="CC_BY_ND") +license.CC_BY_NC = license._CF_enumeration.addEnumeration(unicode_value="CC_BY_NC", tag="CC_BY_NC") +license.CC_BY_NC_SA = license._CF_enumeration.addEnumeration(unicode_value="CC_BY_NC_SA", tag="CC_BY_NC_SA") +license.CC_BY_NC_ND = license._CF_enumeration.addEnumeration(unicode_value="CC_BY_NC_ND", tag="CC_BY_NC_ND") license._InitializeFacetMap(license._CF_enumeration) -Namespace.addCategoryObject('typeBinding', 'license', license) +Namespace.addCategoryObject("typeBinding", "license", license) _module_typeBindings.license = license -# Atomic simple type: {urn:vpro:media:2009}websiteType -class websiteType (pyxb.binding.datatypes.anyURI): +# Atomic simple type: {urn:vpro:media:2009}websiteType +class websiteType(pyxb.binding.datatypes.anyURI): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'websiteType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 680, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "websiteType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 680, 2) _Documentation = None + + websiteType._CF_minLength = pyxb.binding.facets.CF_minLength(value=pyxb.binding.datatypes.nonNegativeInteger(1)) websiteType._CF_maxLength = pyxb.binding.facets.CF_maxLength(value=pyxb.binding.datatypes.nonNegativeInteger(255)) -websiteType._InitializeFacetMap(websiteType._CF_minLength, - websiteType._CF_maxLength) -Namespace.addCategoryObject('typeBinding', 'websiteType', websiteType) +websiteType._InitializeFacetMap(websiteType._CF_minLength, websiteType._CF_maxLength) +Namespace.addCategoryObject("typeBinding", "websiteType", websiteType) _module_typeBindings.websiteType = websiteType -# Atomic simple type: [anonymous] -class STD_ANON (pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): +# Atomic simple type: [anonymous] +class STD_ANON(pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): """An atomic simple type.""" _ExpandedName = None - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 693, 10) + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 693, 10) _Documentation = None + + STD_ANON._CF_enumeration = pyxb.binding.facets.CF_enumeration(value_datatype=STD_ANON, enum_prefix=None) -STD_ANON.ACCOUNT = STD_ANON._CF_enumeration.addEnumeration(unicode_value='ACCOUNT', tag='ACCOUNT') -STD_ANON.HASHTAG = STD_ANON._CF_enumeration.addEnumeration(unicode_value='HASHTAG', tag='HASHTAG') +STD_ANON.ACCOUNT = STD_ANON._CF_enumeration.addEnumeration(unicode_value="ACCOUNT", tag="ACCOUNT") +STD_ANON.HASHTAG = STD_ANON._CF_enumeration.addEnumeration(unicode_value="HASHTAG", tag="HASHTAG") STD_ANON._InitializeFacetMap(STD_ANON._CF_enumeration) _module_typeBindings.STD_ANON = STD_ANON -# Atomic simple type: {urn:vpro:media:2009}scheduleEventTypeEnum -class scheduleEventTypeEnum (pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): +# Atomic simple type: {urn:vpro:media:2009}scheduleEventTypeEnum +class scheduleEventTypeEnum(pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'scheduleEventTypeEnum') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 774, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "scheduleEventTypeEnum") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 774, 2) _Documentation = None -scheduleEventTypeEnum._CF_enumeration = pyxb.binding.facets.CF_enumeration(value_datatype=scheduleEventTypeEnum, enum_prefix=None) -scheduleEventTypeEnum.STRAND = scheduleEventTypeEnum._CF_enumeration.addEnumeration(unicode_value='STRAND', tag='STRAND') + + +scheduleEventTypeEnum._CF_enumeration = pyxb.binding.facets.CF_enumeration( + value_datatype=scheduleEventTypeEnum, enum_prefix=None +) +scheduleEventTypeEnum.STRAND = scheduleEventTypeEnum._CF_enumeration.addEnumeration( + unicode_value="STRAND", tag="STRAND" +) scheduleEventTypeEnum._InitializeFacetMap(scheduleEventTypeEnum._CF_enumeration) -Namespace.addCategoryObject('typeBinding', 'scheduleEventTypeEnum', scheduleEventTypeEnum) +Namespace.addCategoryObject("typeBinding", "scheduleEventTypeEnum", scheduleEventTypeEnum) _module_typeBindings.scheduleEventTypeEnum = scheduleEventTypeEnum -# Atomic simple type: {urn:vpro:media:2009}predictionStateEnum -class predictionStateEnum (pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): +# Atomic simple type: {urn:vpro:media:2009}predictionStateEnum +class predictionStateEnum(pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'predictionStateEnum') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 780, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "predictionStateEnum") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 780, 2) _Documentation = None -predictionStateEnum._CF_enumeration = pyxb.binding.facets.CF_enumeration(value_datatype=predictionStateEnum, enum_prefix=None) -predictionStateEnum.NOT_ANNOUNCED = predictionStateEnum._CF_enumeration.addEnumeration(unicode_value='NOT_ANNOUNCED', tag='NOT_ANNOUNCED') -predictionStateEnum.ANNOUNCED = predictionStateEnum._CF_enumeration.addEnumeration(unicode_value='ANNOUNCED', tag='ANNOUNCED') -predictionStateEnum.REALIZED = predictionStateEnum._CF_enumeration.addEnumeration(unicode_value='REALIZED', tag='REALIZED') -predictionStateEnum.REVOKED = predictionStateEnum._CF_enumeration.addEnumeration(unicode_value='REVOKED', tag='REVOKED') + + +predictionStateEnum._CF_enumeration = pyxb.binding.facets.CF_enumeration( + value_datatype=predictionStateEnum, enum_prefix=None +) +predictionStateEnum.NOT_ANNOUNCED = predictionStateEnum._CF_enumeration.addEnumeration( + unicode_value="NOT_ANNOUNCED", tag="NOT_ANNOUNCED" +) +predictionStateEnum.ANNOUNCED = predictionStateEnum._CF_enumeration.addEnumeration( + unicode_value="ANNOUNCED", tag="ANNOUNCED" +) +predictionStateEnum.REALIZED = predictionStateEnum._CF_enumeration.addEnumeration( + unicode_value="REALIZED", tag="REALIZED" +) +predictionStateEnum.REVOKED = predictionStateEnum._CF_enumeration.addEnumeration(unicode_value="REVOKED", tag="REVOKED") predictionStateEnum._InitializeFacetMap(predictionStateEnum._CF_enumeration) -Namespace.addCategoryObject('typeBinding', 'predictionStateEnum', predictionStateEnum) +Namespace.addCategoryObject("typeBinding", "predictionStateEnum", predictionStateEnum) _module_typeBindings.predictionStateEnum = predictionStateEnum -# Atomic simple type: {urn:vpro:media:2009}locationTypeEnum -class locationTypeEnum (pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): +# Atomic simple type: {urn:vpro:media:2009}locationTypeEnum +class locationTypeEnum(pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'locationTypeEnum') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 835, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "locationTypeEnum") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 835, 2) _Documentation = None + + locationTypeEnum._CF_enumeration = pyxb.binding.facets.CF_enumeration(value_datatype=locationTypeEnum, enum_prefix=None) -locationTypeEnum.INTERNAL = locationTypeEnum._CF_enumeration.addEnumeration(unicode_value='INTERNAL', tag='INTERNAL') -locationTypeEnum.EXTERNAL = locationTypeEnum._CF_enumeration.addEnumeration(unicode_value='EXTERNAL', tag='EXTERNAL') -locationTypeEnum.UNKNOWN = locationTypeEnum._CF_enumeration.addEnumeration(unicode_value='UNKNOWN', tag='UNKNOWN') +locationTypeEnum.INTERNAL = locationTypeEnum._CF_enumeration.addEnumeration(unicode_value="INTERNAL", tag="INTERNAL") +locationTypeEnum.EXTERNAL = locationTypeEnum._CF_enumeration.addEnumeration(unicode_value="EXTERNAL", tag="EXTERNAL") +locationTypeEnum.UNKNOWN = locationTypeEnum._CF_enumeration.addEnumeration(unicode_value="UNKNOWN", tag="UNKNOWN") locationTypeEnum._InitializeFacetMap(locationTypeEnum._CF_enumeration) -Namespace.addCategoryObject('typeBinding', 'locationTypeEnum', locationTypeEnum) +Namespace.addCategoryObject("typeBinding", "locationTypeEnum", locationTypeEnum) _module_typeBindings.locationTypeEnum = locationTypeEnum -# Atomic simple type: {urn:vpro:media:2009}midType -class midType (pyxb.binding.datatypes.string): +# Atomic simple type: {urn:vpro:media:2009}midType +class midType(pyxb.binding.datatypes.string): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'midType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 921, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "midType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 921, 2) _Documentation = None + + midType._CF_minLength = pyxb.binding.facets.CF_minLength(value=pyxb.binding.datatypes.nonNegativeInteger(4)) midType._CF_maxLength = pyxb.binding.facets.CF_maxLength(value=pyxb.binding.datatypes.nonNegativeInteger(255)) midType._CF_pattern = pyxb.binding.facets.CF_pattern() -midType._CF_pattern.addPattern(pattern='[ \\.a-zA-Z0-9_-]+') -midType._InitializeFacetMap(midType._CF_minLength, - midType._CF_maxLength, - midType._CF_pattern) -Namespace.addCategoryObject('typeBinding', 'midType', midType) +midType._CF_pattern.addPattern(pattern="[ \\.a-zA-Z0-9_-]+") +midType._InitializeFacetMap(midType._CF_minLength, midType._CF_maxLength, midType._CF_pattern) +Namespace.addCategoryObject("typeBinding", "midType", midType) _module_typeBindings.midType = midType -# Atomic simple type: {urn:vpro:media:2009}organizationIdType -class organizationIdType (pyxb.binding.datatypes.string): +# Atomic simple type: {urn:vpro:media:2009}organizationIdType +class organizationIdType(pyxb.binding.datatypes.string): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'organizationIdType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 929, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "organizationIdType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 929, 2) _Documentation = None + + organizationIdType._CF_pattern = pyxb.binding.facets.CF_pattern() -organizationIdType._CF_pattern.addPattern(pattern='[A-Z0-9_-]{2,}') +organizationIdType._CF_pattern.addPattern(pattern="[A-Z0-9_-]{2,}") organizationIdType._InitializeFacetMap(organizationIdType._CF_pattern) -Namespace.addCategoryObject('typeBinding', 'organizationIdType', organizationIdType) +Namespace.addCategoryObject("typeBinding", "organizationIdType", organizationIdType) _module_typeBindings.organizationIdType = organizationIdType -# Atomic simple type: {urn:vpro:media:2009}relationTypeType -class relationTypeType (pyxb.binding.datatypes.string): +# Atomic simple type: {urn:vpro:media:2009}relationTypeType +class relationTypeType(pyxb.binding.datatypes.string): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'relationTypeType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 935, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "relationTypeType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 935, 2) _Documentation = None + + relationTypeType._CF_pattern = pyxb.binding.facets.CF_pattern() -relationTypeType._CF_pattern.addPattern(pattern='[A-Z0-9_-]{4,}') +relationTypeType._CF_pattern.addPattern(pattern="[A-Z0-9_-]{4,}") relationTypeType._InitializeFacetMap(relationTypeType._CF_pattern) -Namespace.addCategoryObject('typeBinding', 'relationTypeType', relationTypeType) +Namespace.addCategoryObject("typeBinding", "relationTypeType", relationTypeType) _module_typeBindings.relationTypeType = relationTypeType -# Atomic simple type: {urn:vpro:media:2009}baseTextType -class baseTextType (pyxb.binding.datatypes.string): +# Atomic simple type: {urn:vpro:media:2009}baseTextType +class baseTextType(pyxb.binding.datatypes.string): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'baseTextType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 941, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "baseTextType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 941, 2) _Documentation = None + + baseTextType._CF_minLength = pyxb.binding.facets.CF_minLength(value=pyxb.binding.datatypes.nonNegativeInteger(1)) baseTextType._CF_maxLength = pyxb.binding.facets.CF_maxLength(value=pyxb.binding.datatypes.nonNegativeInteger(255)) -baseTextType._InitializeFacetMap(baseTextType._CF_minLength, - baseTextType._CF_maxLength) -Namespace.addCategoryObject('typeBinding', 'baseTextType', baseTextType) +baseTextType._InitializeFacetMap(baseTextType._CF_minLength, baseTextType._CF_maxLength) +Namespace.addCategoryObject("typeBinding", "baseTextType", baseTextType) _module_typeBindings.baseTextType = baseTextType -# Atomic simple type: {urn:vpro:media:2009}unrequiredBaseTextType -class unrequiredBaseTextType (pyxb.binding.datatypes.string): +# Atomic simple type: {urn:vpro:media:2009}unrequiredBaseTextType +class unrequiredBaseTextType(pyxb.binding.datatypes.string): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'unrequiredBaseTextType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 948, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "unrequiredBaseTextType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 948, 2) _Documentation = None -unrequiredBaseTextType._CF_minLength = pyxb.binding.facets.CF_minLength(value=pyxb.binding.datatypes.nonNegativeInteger(0)) -unrequiredBaseTextType._CF_maxLength = pyxb.binding.facets.CF_maxLength(value=pyxb.binding.datatypes.nonNegativeInteger(255)) -unrequiredBaseTextType._InitializeFacetMap(unrequiredBaseTextType._CF_minLength, - unrequiredBaseTextType._CF_maxLength) -Namespace.addCategoryObject('typeBinding', 'unrequiredBaseTextType', unrequiredBaseTextType) + + +unrequiredBaseTextType._CF_minLength = pyxb.binding.facets.CF_minLength( + value=pyxb.binding.datatypes.nonNegativeInteger(0) +) +unrequiredBaseTextType._CF_maxLength = pyxb.binding.facets.CF_maxLength( + value=pyxb.binding.datatypes.nonNegativeInteger(255) +) +unrequiredBaseTextType._InitializeFacetMap(unrequiredBaseTextType._CF_minLength, unrequiredBaseTextType._CF_maxLength) +Namespace.addCategoryObject("typeBinding", "unrequiredBaseTextType", unrequiredBaseTextType) _module_typeBindings.unrequiredBaseTextType = unrequiredBaseTextType -# Atomic simple type: {urn:vpro:media:2009}unboundedTextType -class unboundedTextType (pyxb.binding.datatypes.string): +# Atomic simple type: {urn:vpro:media:2009}unboundedTextType +class unboundedTextType(pyxb.binding.datatypes.string): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'unboundedTextType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 955, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "unboundedTextType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 955, 2) _Documentation = None + + unboundedTextType._CF_minLength = pyxb.binding.facets.CF_minLength(value=pyxb.binding.datatypes.nonNegativeInteger(1)) unboundedTextType._InitializeFacetMap(unboundedTextType._CF_minLength) -Namespace.addCategoryObject('typeBinding', 'unboundedTextType', unboundedTextType) +Namespace.addCategoryObject("typeBinding", "unboundedTextType", unboundedTextType) _module_typeBindings.unboundedTextType = unboundedTextType -# Atomic simple type: {urn:vpro:media:2009}termType -class termType (pyxb.binding.datatypes.string): +# Atomic simple type: {urn:vpro:media:2009}termType +class termType(pyxb.binding.datatypes.string): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'termType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 968, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "termType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 968, 2) _Documentation = None + + termType._InitializeFacetMap() -Namespace.addCategoryObject('typeBinding', 'termType', termType) +Namespace.addCategoryObject("typeBinding", "termType", termType) _module_typeBindings.termType = termType -# Atomic simple type: {urn:vpro:media:2009}genreIdType -class genreIdType (pyxb.binding.datatypes.string): +# Atomic simple type: {urn:vpro:media:2009}genreIdType +class genreIdType(pyxb.binding.datatypes.string): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'genreIdType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 972, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "genreIdType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 972, 2) _Documentation = None + + genreIdType._CF_pattern = pyxb.binding.facets.CF_pattern() -genreIdType._CF_pattern.addPattern(pattern='3(\\.[0-9]+)+') +genreIdType._CF_pattern.addPattern(pattern="3(\\.[0-9]+)+") genreIdType._InitializeFacetMap(genreIdType._CF_pattern) -Namespace.addCategoryObject('typeBinding', 'genreIdType', genreIdType) +Namespace.addCategoryObject("typeBinding", "genreIdType", genreIdType) _module_typeBindings.genreIdType = genreIdType -# Atomic simple type: {urn:vpro:media:2009}geoRestrictionEnum -class geoRestrictionEnum (pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): +# Atomic simple type: {urn:vpro:media:2009}geoRestrictionEnum +class geoRestrictionEnum(pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'geoRestrictionEnum') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 1032, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "geoRestrictionEnum") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 1032, 2) _Documentation = None -geoRestrictionEnum._CF_enumeration = pyxb.binding.facets.CF_enumeration(value_datatype=geoRestrictionEnum, enum_prefix=None) -geoRestrictionEnum.NL = geoRestrictionEnum._CF_enumeration.addEnumeration(unicode_value='NL', tag='NL') -geoRestrictionEnum.BENELUX = geoRestrictionEnum._CF_enumeration.addEnumeration(unicode_value='BENELUX', tag='BENELUX') -geoRestrictionEnum.NLBES = geoRestrictionEnum._CF_enumeration.addEnumeration(unicode_value='NLBES', tag='NLBES') -geoRestrictionEnum.NLALL = geoRestrictionEnum._CF_enumeration.addEnumeration(unicode_value='NLALL', tag='NLALL') -geoRestrictionEnum.EU = geoRestrictionEnum._CF_enumeration.addEnumeration(unicode_value='EU', tag='EU') -geoRestrictionEnum.EUROPE = geoRestrictionEnum._CF_enumeration.addEnumeration(unicode_value='EUROPE', tag='EUROPE') + + +geoRestrictionEnum._CF_enumeration = pyxb.binding.facets.CF_enumeration( + value_datatype=geoRestrictionEnum, enum_prefix=None +) +geoRestrictionEnum.NL = geoRestrictionEnum._CF_enumeration.addEnumeration(unicode_value="NL", tag="NL") +geoRestrictionEnum.BENELUX = geoRestrictionEnum._CF_enumeration.addEnumeration(unicode_value="BENELUX", tag="BENELUX") +geoRestrictionEnum.NLBES = geoRestrictionEnum._CF_enumeration.addEnumeration(unicode_value="NLBES", tag="NLBES") +geoRestrictionEnum.NLALL = geoRestrictionEnum._CF_enumeration.addEnumeration(unicode_value="NLALL", tag="NLALL") +geoRestrictionEnum.EU = geoRestrictionEnum._CF_enumeration.addEnumeration(unicode_value="EU", tag="EU") +geoRestrictionEnum.EUROPE = geoRestrictionEnum._CF_enumeration.addEnumeration(unicode_value="EUROPE", tag="EUROPE") geoRestrictionEnum._InitializeFacetMap(geoRestrictionEnum._CF_enumeration) -Namespace.addCategoryObject('typeBinding', 'geoRestrictionEnum', geoRestrictionEnum) +Namespace.addCategoryObject("typeBinding", "geoRestrictionEnum", geoRestrictionEnum) _module_typeBindings.geoRestrictionEnum = geoRestrictionEnum -# Atomic simple type: {urn:vpro:media:2009}gtaaStatusType -class gtaaStatusType (pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): +# Atomic simple type: {urn:vpro:media:2009}gtaaStatusType +class gtaaStatusType(pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'gtaaStatusType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 1079, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "gtaaStatusType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 1079, 2) _Documentation = None + + gtaaStatusType._CF_enumeration = pyxb.binding.facets.CF_enumeration(value_datatype=gtaaStatusType, enum_prefix=None) -gtaaStatusType.candidate = gtaaStatusType._CF_enumeration.addEnumeration(unicode_value='candidate', tag='candidate') -gtaaStatusType.approved = gtaaStatusType._CF_enumeration.addEnumeration(unicode_value='approved', tag='approved') -gtaaStatusType.redirected = gtaaStatusType._CF_enumeration.addEnumeration(unicode_value='redirected', tag='redirected') -gtaaStatusType.not_compliant = gtaaStatusType._CF_enumeration.addEnumeration(unicode_value='not_compliant', tag='not_compliant') -gtaaStatusType.rejected = gtaaStatusType._CF_enumeration.addEnumeration(unicode_value='rejected', tag='rejected') -gtaaStatusType.obsolete = gtaaStatusType._CF_enumeration.addEnumeration(unicode_value='obsolete', tag='obsolete') -gtaaStatusType.deleted = gtaaStatusType._CF_enumeration.addEnumeration(unicode_value='deleted', tag='deleted') +gtaaStatusType.candidate = gtaaStatusType._CF_enumeration.addEnumeration(unicode_value="candidate", tag="candidate") +gtaaStatusType.approved = gtaaStatusType._CF_enumeration.addEnumeration(unicode_value="approved", tag="approved") +gtaaStatusType.redirected = gtaaStatusType._CF_enumeration.addEnumeration(unicode_value="redirected", tag="redirected") +gtaaStatusType.not_compliant = gtaaStatusType._CF_enumeration.addEnumeration( + unicode_value="not_compliant", tag="not_compliant" +) +gtaaStatusType.rejected = gtaaStatusType._CF_enumeration.addEnumeration(unicode_value="rejected", tag="rejected") +gtaaStatusType.obsolete = gtaaStatusType._CF_enumeration.addEnumeration(unicode_value="obsolete", tag="obsolete") +gtaaStatusType.deleted = gtaaStatusType._CF_enumeration.addEnumeration(unicode_value="deleted", tag="deleted") gtaaStatusType._InitializeFacetMap(gtaaStatusType._CF_enumeration) -Namespace.addCategoryObject('typeBinding', 'gtaaStatusType', gtaaStatusType) +Namespace.addCategoryObject("typeBinding", "gtaaStatusType", gtaaStatusType) _module_typeBindings.gtaaStatusType = gtaaStatusType -# Atomic simple type: {urn:vpro:media:2009}contentRatingType -class contentRatingType (pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): +# Atomic simple type: {urn:vpro:media:2009}contentRatingType +class contentRatingType(pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'contentRatingType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 1092, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "contentRatingType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 1092, 2) _Documentation = None -contentRatingType._CF_enumeration = pyxb.binding.facets.CF_enumeration(value_datatype=contentRatingType, enum_prefix=None) -contentRatingType.DISCRIMINATIE = contentRatingType._CF_enumeration.addEnumeration(unicode_value='DISCRIMINATIE', tag='DISCRIMINATIE') -contentRatingType.GROF_TAALGEBRUIK = contentRatingType._CF_enumeration.addEnumeration(unicode_value='GROF_TAALGEBRUIK', tag='GROF_TAALGEBRUIK') -contentRatingType.ANGST = contentRatingType._CF_enumeration.addEnumeration(unicode_value='ANGST', tag='ANGST') -contentRatingType.GEWELD = contentRatingType._CF_enumeration.addEnumeration(unicode_value='GEWELD', tag='GEWELD') -contentRatingType.SEKS = contentRatingType._CF_enumeration.addEnumeration(unicode_value='SEKS', tag='SEKS') -contentRatingType.DRUGS_EN_ALCOHOL = contentRatingType._CF_enumeration.addEnumeration(unicode_value='DRUGS_EN_ALCOHOL', tag='DRUGS_EN_ALCOHOL') + + +contentRatingType._CF_enumeration = pyxb.binding.facets.CF_enumeration( + value_datatype=contentRatingType, enum_prefix=None +) +contentRatingType.DISCRIMINATIE = contentRatingType._CF_enumeration.addEnumeration( + unicode_value="DISCRIMINATIE", tag="DISCRIMINATIE" +) +contentRatingType.GROF_TAALGEBRUIK = contentRatingType._CF_enumeration.addEnumeration( + unicode_value="GROF_TAALGEBRUIK", tag="GROF_TAALGEBRUIK" +) +contentRatingType.ANGST = contentRatingType._CF_enumeration.addEnumeration(unicode_value="ANGST", tag="ANGST") +contentRatingType.GEWELD = contentRatingType._CF_enumeration.addEnumeration(unicode_value="GEWELD", tag="GEWELD") +contentRatingType.SEKS = contentRatingType._CF_enumeration.addEnumeration(unicode_value="SEKS", tag="SEKS") +contentRatingType.DRUGS_EN_ALCOHOL = contentRatingType._CF_enumeration.addEnumeration( + unicode_value="DRUGS_EN_ALCOHOL", tag="DRUGS_EN_ALCOHOL" +) contentRatingType._InitializeFacetMap(contentRatingType._CF_enumeration) -Namespace.addCategoryObject('typeBinding', 'contentRatingType', contentRatingType) +Namespace.addCategoryObject("typeBinding", "contentRatingType", contentRatingType) _module_typeBindings.contentRatingType = contentRatingType -# Atomic simple type: {urn:vpro:media:2009}ageRatingType -class ageRatingType (pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): +# Atomic simple type: {urn:vpro:media:2009}ageRatingType +class ageRatingType(pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'ageRatingType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 1139, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "ageRatingType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 1139, 2) _Documentation = None + + ageRatingType._CF_enumeration = pyxb.binding.facets.CF_enumeration(value_datatype=ageRatingType, enum_prefix=None) -ageRatingType.n6 = ageRatingType._CF_enumeration.addEnumeration(unicode_value='6', tag='n6') -ageRatingType.n9 = ageRatingType._CF_enumeration.addEnumeration(unicode_value='9', tag='n9') -ageRatingType.n12 = ageRatingType._CF_enumeration.addEnumeration(unicode_value='12', tag='n12') -ageRatingType.n14 = ageRatingType._CF_enumeration.addEnumeration(unicode_value='14', tag='n14') -ageRatingType.n16 = ageRatingType._CF_enumeration.addEnumeration(unicode_value='16', tag='n16') -ageRatingType.n18 = ageRatingType._CF_enumeration.addEnumeration(unicode_value='18', tag='n18') -ageRatingType.ALL = ageRatingType._CF_enumeration.addEnumeration(unicode_value='ALL', tag='ALL') -ageRatingType.NOT_YET_RATED = ageRatingType._CF_enumeration.addEnumeration(unicode_value='NOT_YET_RATED', tag='NOT_YET_RATED') +ageRatingType.n6 = ageRatingType._CF_enumeration.addEnumeration(unicode_value="6", tag="n6") +ageRatingType.n9 = ageRatingType._CF_enumeration.addEnumeration(unicode_value="9", tag="n9") +ageRatingType.n12 = ageRatingType._CF_enumeration.addEnumeration(unicode_value="12", tag="n12") +ageRatingType.n14 = ageRatingType._CF_enumeration.addEnumeration(unicode_value="14", tag="n14") +ageRatingType.n16 = ageRatingType._CF_enumeration.addEnumeration(unicode_value="16", tag="n16") +ageRatingType.n18 = ageRatingType._CF_enumeration.addEnumeration(unicode_value="18", tag="n18") +ageRatingType.ALL = ageRatingType._CF_enumeration.addEnumeration(unicode_value="ALL", tag="ALL") +ageRatingType.NOT_YET_RATED = ageRatingType._CF_enumeration.addEnumeration( + unicode_value="NOT_YET_RATED", tag="NOT_YET_RATED" +) ageRatingType._InitializeFacetMap(ageRatingType._CF_enumeration) -Namespace.addCategoryObject('typeBinding', 'ageRatingType', ageRatingType) +Namespace.addCategoryObject("typeBinding", "ageRatingType", ageRatingType) _module_typeBindings.ageRatingType = ageRatingType -# Atomic simple type: {urn:vpro:media:2009}countryCodeType -class countryCodeType (pyxb.binding.datatypes.string): +# Atomic simple type: {urn:vpro:media:2009}countryCodeType +class countryCodeType(pyxb.binding.datatypes.string): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'countryCodeType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 1209, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "countryCodeType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 1209, 2) _Documentation = None + + countryCodeType._CF_pattern = pyxb.binding.facets.CF_pattern() -countryCodeType._CF_pattern.addPattern(pattern='(\\w){2,4}') +countryCodeType._CF_pattern.addPattern(pattern="(\\w){2,4}") countryCodeType._InitializeFacetMap(countryCodeType._CF_pattern) -Namespace.addCategoryObject('typeBinding', 'countryCodeType', countryCodeType) +Namespace.addCategoryObject("typeBinding", "countryCodeType", countryCodeType) _module_typeBindings.countryCodeType = countryCodeType -# Atomic simple type: {urn:vpro:media:2009}languageCodeType -class languageCodeType (pyxb.binding.datatypes.string): +# Atomic simple type: {urn:vpro:media:2009}languageCodeType +class languageCodeType(pyxb.binding.datatypes.string): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'languageCodeType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 1229, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "languageCodeType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 1229, 2) _Documentation = None + + languageCodeType._CF_pattern = pyxb.binding.facets.CF_pattern() -languageCodeType._CF_pattern.addPattern(pattern='(\\w){2,4}') +languageCodeType._CF_pattern.addPattern(pattern="(\\w){2,4}") languageCodeType._InitializeFacetMap(languageCodeType._CF_pattern) -Namespace.addCategoryObject('typeBinding', 'languageCodeType', languageCodeType) +Namespace.addCategoryObject("typeBinding", "languageCodeType", languageCodeType) _module_typeBindings.languageCodeType = languageCodeType -# Atomic simple type: {urn:vpro:media:2009}channelEnum -class channelEnum (pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): +# Atomic simple type: {urn:vpro:media:2009}channelEnum +class channelEnum(pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'channelEnum') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 1241, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "channelEnum") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 1241, 2) _Documentation = None + + channelEnum._CF_enumeration = pyxb.binding.facets.CF_enumeration(value_datatype=channelEnum, enum_prefix=None) -channelEnum.NED1 = channelEnum._CF_enumeration.addEnumeration(unicode_value='NED1', tag='NED1') -channelEnum.NED2 = channelEnum._CF_enumeration.addEnumeration(unicode_value='NED2', tag='NED2') -channelEnum.NED3 = channelEnum._CF_enumeration.addEnumeration(unicode_value='NED3', tag='NED3') -channelEnum.NEDE = channelEnum._CF_enumeration.addEnumeration(unicode_value='NEDE', tag='NEDE') -channelEnum.RTL4 = channelEnum._CF_enumeration.addEnumeration(unicode_value='RTL4', tag='RTL4') -channelEnum.RTL5 = channelEnum._CF_enumeration.addEnumeration(unicode_value='RTL5', tag='RTL5') -channelEnum.SBS6 = channelEnum._CF_enumeration.addEnumeration(unicode_value='SBS6', tag='SBS6') -channelEnum.RTL7 = channelEnum._CF_enumeration.addEnumeration(unicode_value='RTL7', tag='RTL7') -channelEnum.VERO = channelEnum._CF_enumeration.addEnumeration(unicode_value='VERO', tag='VERO') -channelEnum.NET5 = channelEnum._CF_enumeration.addEnumeration(unicode_value='NET5', tag='NET5') -channelEnum.RTL8 = channelEnum._CF_enumeration.addEnumeration(unicode_value='RTL8', tag='RTL8') -channelEnum.REGI = channelEnum._CF_enumeration.addEnumeration(unicode_value='REGI', tag='REGI') -channelEnum.OFRY = channelEnum._CF_enumeration.addEnumeration(unicode_value='OFRY', tag='OFRY') -channelEnum.NOOR = channelEnum._CF_enumeration.addEnumeration(unicode_value='NOOR', tag='NOOR') -channelEnum.RTVD = channelEnum._CF_enumeration.addEnumeration(unicode_value='RTVD', tag='RTVD') -channelEnum.OOST = channelEnum._CF_enumeration.addEnumeration(unicode_value='OOST', tag='OOST') -channelEnum.GELD = channelEnum._CF_enumeration.addEnumeration(unicode_value='GELD', tag='GELD') -channelEnum.FLEV = channelEnum._CF_enumeration.addEnumeration(unicode_value='FLEV', tag='FLEV') -channelEnum.BRAB = channelEnum._CF_enumeration.addEnumeration(unicode_value='BRAB', tag='BRAB') -channelEnum.REGU = channelEnum._CF_enumeration.addEnumeration(unicode_value='REGU', tag='REGU') -channelEnum.NORH = channelEnum._CF_enumeration.addEnumeration(unicode_value='NORH', tag='NORH') -channelEnum.WEST = channelEnum._CF_enumeration.addEnumeration(unicode_value='WEST', tag='WEST') -channelEnum.RIJN = channelEnum._CF_enumeration.addEnumeration(unicode_value='RIJN', tag='RIJN') -channelEnum.L1TV = channelEnum._CF_enumeration.addEnumeration(unicode_value='L1TV', tag='L1TV') -channelEnum.OZEE = channelEnum._CF_enumeration.addEnumeration(unicode_value='OZEE', tag='OZEE') -channelEnum.AT5 = channelEnum._CF_enumeration.addEnumeration(unicode_value='AT5_', tag='AT5') -channelEnum.RNN7 = channelEnum._CF_enumeration.addEnumeration(unicode_value='RNN7', tag='RNN7') -channelEnum.BVNT = channelEnum._CF_enumeration.addEnumeration(unicode_value='BVNT', tag='BVNT') -channelEnum.EEN = channelEnum._CF_enumeration.addEnumeration(unicode_value='EEN_', tag='EEN') -channelEnum.KETN = channelEnum._CF_enumeration.addEnumeration(unicode_value='KETN', tag='KETN') -channelEnum.VTM = channelEnum._CF_enumeration.addEnumeration(unicode_value='VTM_', tag='VTM') -channelEnum.KA2 = channelEnum._CF_enumeration.addEnumeration(unicode_value='KA2_', tag='KA2') -channelEnum.VT4 = channelEnum._CF_enumeration.addEnumeration(unicode_value='VT4_', tag='VT4') -channelEnum.LUNE = channelEnum._CF_enumeration.addEnumeration(unicode_value='LUNE', tag='LUNE') -channelEnum.LDUE = channelEnum._CF_enumeration.addEnumeration(unicode_value='LDUE', tag='LDUE') -channelEnum.RTBF = channelEnum._CF_enumeration.addEnumeration(unicode_value='RTBF', tag='RTBF') -channelEnum.ARD = channelEnum._CF_enumeration.addEnumeration(unicode_value='ARD_', tag='ARD') -channelEnum.ZDF = channelEnum._CF_enumeration.addEnumeration(unicode_value='ZDF_', tag='ZDF') -channelEnum.WDR = channelEnum._CF_enumeration.addEnumeration(unicode_value='WDR_', tag='WDR') -channelEnum.N_3 = channelEnum._CF_enumeration.addEnumeration(unicode_value='N_3_', tag='N_3') -channelEnum.SUDW = channelEnum._CF_enumeration.addEnumeration(unicode_value='SUDW', tag='SUDW') -channelEnum.SWF = channelEnum._CF_enumeration.addEnumeration(unicode_value='SWF_', tag='SWF') -channelEnum.RTL = channelEnum._CF_enumeration.addEnumeration(unicode_value='RTL_', tag='RTL') -channelEnum.SAT1 = channelEnum._CF_enumeration.addEnumeration(unicode_value='SAT1', tag='SAT1') -channelEnum.PRO7 = channelEnum._CF_enumeration.addEnumeration(unicode_value='PRO7', tag='PRO7') -channelEnum.n3SAT = channelEnum._CF_enumeration.addEnumeration(unicode_value='3SAT', tag='n3SAT') -channelEnum.KABE = channelEnum._CF_enumeration.addEnumeration(unicode_value='KABE', tag='KABE') -channelEnum.ARTE = channelEnum._CF_enumeration.addEnumeration(unicode_value='ARTE', tag='ARTE') -channelEnum.ART = channelEnum._CF_enumeration.addEnumeration(unicode_value='ART', tag='ART') -channelEnum.T5ME = channelEnum._CF_enumeration.addEnumeration(unicode_value='T5ME', tag='T5ME') -channelEnum.FRA2 = channelEnum._CF_enumeration.addEnumeration(unicode_value='FRA2', tag='FRA2') -channelEnum.FRA3 = channelEnum._CF_enumeration.addEnumeration(unicode_value='FRA3', tag='FRA3') -channelEnum.BBC1 = channelEnum._CF_enumeration.addEnumeration(unicode_value='BBC1', tag='BBC1') -channelEnum.BBC2 = channelEnum._CF_enumeration.addEnumeration(unicode_value='BBC2', tag='BBC2') -channelEnum.BBTH = channelEnum._CF_enumeration.addEnumeration(unicode_value='BBTH', tag='BBTH') -channelEnum.BBTC = channelEnum._CF_enumeration.addEnumeration(unicode_value='BBTC', tag='BBTC') -channelEnum.BBCF = channelEnum._CF_enumeration.addEnumeration(unicode_value='BBCF', tag='BBCF') -channelEnum.BBFC = channelEnum._CF_enumeration.addEnumeration(unicode_value='BBFC', tag='BBFC') -channelEnum.BBCP = channelEnum._CF_enumeration.addEnumeration(unicode_value='BBCP', tag='BBCP') -channelEnum.TRTI = channelEnum._CF_enumeration.addEnumeration(unicode_value='TRTI', tag='TRTI') -channelEnum.SHOW = channelEnum._CF_enumeration.addEnumeration(unicode_value='SHOW', tag='SHOW') -channelEnum.LIGT = channelEnum._CF_enumeration.addEnumeration(unicode_value='LIGT', tag='LIGT') -channelEnum.TURK = channelEnum._CF_enumeration.addEnumeration(unicode_value='TURK', tag='TURK') -channelEnum.ATVT = channelEnum._CF_enumeration.addEnumeration(unicode_value='ATVT', tag='ATVT') -channelEnum.FOXT = channelEnum._CF_enumeration.addEnumeration(unicode_value='FOXT', tag='FOXT') -channelEnum.HABN = channelEnum._CF_enumeration.addEnumeration(unicode_value='HABN', tag='HABN') -channelEnum.STTV = channelEnum._CF_enumeration.addEnumeration(unicode_value='STTV', tag='STTV') -channelEnum.RRTM = channelEnum._CF_enumeration.addEnumeration(unicode_value='RRTM', tag='RRTM') -channelEnum.RMBC = channelEnum._CF_enumeration.addEnumeration(unicode_value='RMBC', tag='RMBC') -channelEnum.RART = channelEnum._CF_enumeration.addEnumeration(unicode_value='RART', tag='RART') -channelEnum.ARTM = channelEnum._CF_enumeration.addEnumeration(unicode_value='ARTM', tag='ARTM') -channelEnum.TVBS = channelEnum._CF_enumeration.addEnumeration(unicode_value='TVBS', tag='TVBS') -channelEnum.ASIA = channelEnum._CF_enumeration.addEnumeration(unicode_value='ASIA', tag='ASIA') -channelEnum.TIVI = channelEnum._CF_enumeration.addEnumeration(unicode_value='TIVI', tag='TIVI') -channelEnum.B4UM = channelEnum._CF_enumeration.addEnumeration(unicode_value='B4UM', tag='B4UM') -channelEnum.PCNE = channelEnum._CF_enumeration.addEnumeration(unicode_value='PCNE', tag='PCNE') -channelEnum.PATN = channelEnum._CF_enumeration.addEnumeration(unicode_value='PATN', tag='PATN') -channelEnum.ZEET = channelEnum._CF_enumeration.addEnumeration(unicode_value='ZEET', tag='ZEET') -channelEnum.ZEEC = channelEnum._CF_enumeration.addEnumeration(unicode_value='ZEEC', tag='ZEEC') -channelEnum.TVE = channelEnum._CF_enumeration.addEnumeration(unicode_value='TVE_', tag='TVE') -channelEnum.RAI = channelEnum._CF_enumeration.addEnumeration(unicode_value='RAI_', tag='RAI') -channelEnum.RAID = channelEnum._CF_enumeration.addEnumeration(unicode_value='RAID', tag='RAID') -channelEnum.RAIT = channelEnum._CF_enumeration.addEnumeration(unicode_value='RAIT', tag='RAIT') -channelEnum.TEVE = channelEnum._CF_enumeration.addEnumeration(unicode_value='TEVE', tag='TEVE') -channelEnum.ERTS = channelEnum._CF_enumeration.addEnumeration(unicode_value='ERTS', tag='ERTS') -channelEnum.STV = channelEnum._CF_enumeration.addEnumeration(unicode_value='STV_', tag='STV') -channelEnum.NTV = channelEnum._CF_enumeration.addEnumeration(unicode_value='NTV_', tag='NTV') -channelEnum.TVPO = channelEnum._CF_enumeration.addEnumeration(unicode_value='TVPO', tag='TVPO') -channelEnum.NOSJ = channelEnum._CF_enumeration.addEnumeration(unicode_value='NOSJ', tag='NOSJ') -channelEnum.CULT = channelEnum._CF_enumeration.addEnumeration(unicode_value='CULT', tag='CULT') -channelEnum.n101 = channelEnum._CF_enumeration.addEnumeration(unicode_value='101_', tag='n101') -channelEnum.PO24 = channelEnum._CF_enumeration.addEnumeration(unicode_value='PO24', tag='PO24') -channelEnum.HILV = channelEnum._CF_enumeration.addEnumeration(unicode_value='HILV', tag='HILV') -channelEnum.HOLL = channelEnum._CF_enumeration.addEnumeration(unicode_value='HOLL', tag='HOLL') -channelEnum.GESC = channelEnum._CF_enumeration.addEnumeration(unicode_value='GESC', tag='GESC') -channelEnum.n3VCN = channelEnum._CF_enumeration.addEnumeration(unicode_value='3VCN', tag='n3VCN') -channelEnum.n3VOS = channelEnum._CF_enumeration.addEnumeration(unicode_value='3VOS', tag='n3VOS') -channelEnum.STER = channelEnum._CF_enumeration.addEnumeration(unicode_value='STER', tag='STER') -channelEnum.NCRV = channelEnum._CF_enumeration.addEnumeration(unicode_value='NCRV', tag='NCRV') -channelEnum.OPVO = channelEnum._CF_enumeration.addEnumeration(unicode_value='OPVO', tag='OPVO') -channelEnum.CONS = channelEnum._CF_enumeration.addEnumeration(unicode_value='CONS', tag='CONS') -channelEnum.HUMO = channelEnum._CF_enumeration.addEnumeration(unicode_value='HUMO', tag='HUMO') -channelEnum.ENTE = channelEnum._CF_enumeration.addEnumeration(unicode_value='ENTE', tag='ENTE') -channelEnum.FASH = channelEnum._CF_enumeration.addEnumeration(unicode_value='FASH', tag='FASH') -channelEnum.COMC = channelEnum._CF_enumeration.addEnumeration(unicode_value='COMC', tag='COMC') -channelEnum.TBN = channelEnum._CF_enumeration.addEnumeration(unicode_value='TBN_', tag='TBN') -channelEnum.DISC = channelEnum._CF_enumeration.addEnumeration(unicode_value='DISC', tag='DISC') -channelEnum.ZONE = channelEnum._CF_enumeration.addEnumeration(unicode_value='ZONE', tag='ZONE') -channelEnum.ANPL = channelEnum._CF_enumeration.addEnumeration(unicode_value='ANPL', tag='ANPL') -channelEnum.CLUB = channelEnum._CF_enumeration.addEnumeration(unicode_value='CLUB', tag='CLUB') -channelEnum.NAGE = channelEnum._CF_enumeration.addEnumeration(unicode_value='NAGE', tag='NAGE') -channelEnum.TRAC = channelEnum._CF_enumeration.addEnumeration(unicode_value='TRAC', tag='TRAC') -channelEnum.NGHD = channelEnum._CF_enumeration.addEnumeration(unicode_value='NGHD', tag='NGHD') -channelEnum.WILD = channelEnum._CF_enumeration.addEnumeration(unicode_value='WILD', tag='WILD') -channelEnum.GARU = channelEnum._CF_enumeration.addEnumeration(unicode_value='GARU', tag='GARU') -channelEnum.ZAZA = channelEnum._CF_enumeration.addEnumeration(unicode_value='ZAZA', tag='ZAZA') -channelEnum.FAM7 = channelEnum._CF_enumeration.addEnumeration(unicode_value='FAM7', tag='FAM7') -channelEnum.DTAL = channelEnum._CF_enumeration.addEnumeration(unicode_value='DTAL', tag='DTAL') -channelEnum.SCIE = channelEnum._CF_enumeration.addEnumeration(unicode_value='SCIE', tag='SCIE') -channelEnum.CIVI = channelEnum._CF_enumeration.addEnumeration(unicode_value='CIVI', tag='CIVI') -channelEnum.DIHD = channelEnum._CF_enumeration.addEnumeration(unicode_value='DIHD', tag='DIHD') -channelEnum.HIST = channelEnum._CF_enumeration.addEnumeration(unicode_value='HIST', tag='HIST') -channelEnum.TRAV = channelEnum._CF_enumeration.addEnumeration(unicode_value='TRAV', tag='TRAV') -channelEnum.HETG = channelEnum._CF_enumeration.addEnumeration(unicode_value='HETG', tag='HETG') -channelEnum.GOED = channelEnum._CF_enumeration.addEnumeration(unicode_value='GOED', tag='GOED') -channelEnum.BABY = channelEnum._CF_enumeration.addEnumeration(unicode_value='BABY', tag='BABY') -channelEnum.DH1 = channelEnum._CF_enumeration.addEnumeration(unicode_value='DH1_', tag='DH1') -channelEnum.LITV = channelEnum._CF_enumeration.addEnumeration(unicode_value='LITV', tag='LITV') -channelEnum.LIVE = channelEnum._CF_enumeration.addEnumeration(unicode_value='LIVE', tag='LIVE') -channelEnum.STAR = channelEnum._CF_enumeration.addEnumeration(unicode_value='STAR', tag='STAR') -channelEnum.WEER = channelEnum._CF_enumeration.addEnumeration(unicode_value='WEER', tag='WEER') -channelEnum.REAL = channelEnum._CF_enumeration.addEnumeration(unicode_value='REAL', tag='REAL') -channelEnum.SCIF = channelEnum._CF_enumeration.addEnumeration(unicode_value='SCIF', tag='SCIF') -channelEnum.n13ST = channelEnum._CF_enumeration.addEnumeration(unicode_value='13ST', tag='n13ST') -channelEnum.CARC = channelEnum._CF_enumeration.addEnumeration(unicode_value='CARC', tag='CARC') -channelEnum.NOSN = channelEnum._CF_enumeration.addEnumeration(unicode_value='NOSN', tag='NOSN') -channelEnum.HISH = channelEnum._CF_enumeration.addEnumeration(unicode_value='HISH', tag='HISH') -channelEnum.BRHD = channelEnum._CF_enumeration.addEnumeration(unicode_value='BRHD', tag='BRHD') -channelEnum.FANT = channelEnum._CF_enumeration.addEnumeration(unicode_value='FANT', tag='FANT') -channelEnum.RACW = channelEnum._CF_enumeration.addEnumeration(unicode_value='RACW', tag='RACW') -channelEnum.COMF = channelEnum._CF_enumeration.addEnumeration(unicode_value='COMF', tag='COMF') -channelEnum.DIER = channelEnum._CF_enumeration.addEnumeration(unicode_value='DIER', tag='DIER') -channelEnum.POKE = channelEnum._CF_enumeration.addEnumeration(unicode_value='POKE', tag='POKE') -channelEnum.MNET = channelEnum._CF_enumeration.addEnumeration(unicode_value='MNET', tag='MNET') -channelEnum.VOOM = channelEnum._CF_enumeration.addEnumeration(unicode_value='VOOM', tag='VOOM') -channelEnum.ZONH = channelEnum._CF_enumeration.addEnumeration(unicode_value='ZONH', tag='ZONH') -channelEnum.KPN1 = channelEnum._CF_enumeration.addEnumeration(unicode_value='KPN1', tag='KPN1') -channelEnum.KPN2 = channelEnum._CF_enumeration.addEnumeration(unicode_value='KPN2', tag='KPN2') -channelEnum.KPN3 = channelEnum._CF_enumeration.addEnumeration(unicode_value='KPN3', tag='KPN3') -channelEnum.KPN4 = channelEnum._CF_enumeration.addEnumeration(unicode_value='KPN4', tag='KPN4') -channelEnum.ZIZO = channelEnum._CF_enumeration.addEnumeration(unicode_value='ZIZO', tag='ZIZO') -channelEnum.DVIC = channelEnum._CF_enumeration.addEnumeration(unicode_value='DVIC', tag='DVIC') -channelEnum.DVB1 = channelEnum._CF_enumeration.addEnumeration(unicode_value='DVB1', tag='DVB1') -channelEnum.DVB2 = channelEnum._CF_enumeration.addEnumeration(unicode_value='DVB2', tag='DVB2') -channelEnum.DVB3 = channelEnum._CF_enumeration.addEnumeration(unicode_value='DVB3', tag='DVB3') -channelEnum.NICK = channelEnum._CF_enumeration.addEnumeration(unicode_value='NICK', tag='NICK') -channelEnum.NIJN = channelEnum._CF_enumeration.addEnumeration(unicode_value='NIJN', tag='NIJN') -channelEnum.NIKT = channelEnum._CF_enumeration.addEnumeration(unicode_value='NIKT', tag='NIKT') -channelEnum.NIKH = channelEnum._CF_enumeration.addEnumeration(unicode_value='NIKH', tag='NIKH') -channelEnum.CART = channelEnum._CF_enumeration.addEnumeration(unicode_value='CART', tag='CART') -channelEnum.BOOM = channelEnum._CF_enumeration.addEnumeration(unicode_value='BOOM', tag='BOOM') -channelEnum.CNN = channelEnum._CF_enumeration.addEnumeration(unicode_value='CNN_', tag='CNN') -channelEnum.BBCW = channelEnum._CF_enumeration.addEnumeration(unicode_value='BBCW', tag='BBCW') -channelEnum.EURN = channelEnum._CF_enumeration.addEnumeration(unicode_value='EURN', tag='EURN') -channelEnum.SKNE = channelEnum._CF_enumeration.addEnumeration(unicode_value='SKNE', tag='SKNE') -channelEnum.BLOO = channelEnum._CF_enumeration.addEnumeration(unicode_value='BLOO', tag='BLOO') -channelEnum.CNBC = channelEnum._CF_enumeration.addEnumeration(unicode_value='CNBC', tag='CNBC') -channelEnum.PALJ = channelEnum._CF_enumeration.addEnumeration(unicode_value='PALJ', tag='PALJ') -channelEnum.ALJA = channelEnum._CF_enumeration.addEnumeration(unicode_value='ALJA', tag='ALJA') -channelEnum.FOXN = channelEnum._CF_enumeration.addEnumeration(unicode_value='FOXN', tag='FOXN') -channelEnum.FXNL = channelEnum._CF_enumeration.addEnumeration(unicode_value='FXNL', tag='FXNL') -channelEnum.MTV = channelEnum._CF_enumeration.addEnumeration(unicode_value='MTV_', tag='MTV') -channelEnum.MTV2 = channelEnum._CF_enumeration.addEnumeration(unicode_value='MTV2', tag='MTV2') -channelEnum.HITS = channelEnum._CF_enumeration.addEnumeration(unicode_value='HITS', tag='HITS') -channelEnum.BASE = channelEnum._CF_enumeration.addEnumeration(unicode_value='BASE', tag='BASE') -channelEnum.MTVB = channelEnum._CF_enumeration.addEnumeration(unicode_value='MTVB', tag='MTVB') -channelEnum.TMF = channelEnum._CF_enumeration.addEnumeration(unicode_value='TMF_', tag='TMF') -channelEnum.TMFN = channelEnum._CF_enumeration.addEnumeration(unicode_value='TMFN', tag='TMFN') -channelEnum.TMFP = channelEnum._CF_enumeration.addEnumeration(unicode_value='TMFP', tag='TMFP') -channelEnum.TMFY = channelEnum._CF_enumeration.addEnumeration(unicode_value='TMFY', tag='TMFY') -channelEnum.TVOR = channelEnum._CF_enumeration.addEnumeration(unicode_value='TVOR', tag='TVOR') -channelEnum.VH1E = channelEnum._CF_enumeration.addEnumeration(unicode_value='VH1E', tag='VH1E') -channelEnum.VH1C = channelEnum._CF_enumeration.addEnumeration(unicode_value='VH1C', tag='VH1C') -channelEnum.PERC = channelEnum._CF_enumeration.addEnumeration(unicode_value='PERC', tag='PERC') -channelEnum.MEZZ = channelEnum._CF_enumeration.addEnumeration(unicode_value='MEZZ', tag='MEZZ') -channelEnum.EURO = channelEnum._CF_enumeration.addEnumeration(unicode_value='EURO', tag='EURO') -channelEnum.EUR2 = channelEnum._CF_enumeration.addEnumeration(unicode_value='EUR2', tag='EUR2') -channelEnum.EXTR = channelEnum._CF_enumeration.addEnumeration(unicode_value='EXTR', tag='EXTR') -channelEnum.MOTO = channelEnum._CF_enumeration.addEnumeration(unicode_value='MOTO', tag='MOTO') -channelEnum.SAIL = channelEnum._CF_enumeration.addEnumeration(unicode_value='SAIL', tag='SAIL') -channelEnum.ESPN = channelEnum._CF_enumeration.addEnumeration(unicode_value='ESPN', tag='ESPN') -channelEnum.NASE = channelEnum._CF_enumeration.addEnumeration(unicode_value='NASE', tag='NASE') -channelEnum.SP11 = channelEnum._CF_enumeration.addEnumeration(unicode_value='SP11', tag='SP11') -channelEnum.SP12 = channelEnum._CF_enumeration.addEnumeration(unicode_value='SP12', tag='SP12') -channelEnum.SP13 = channelEnum._CF_enumeration.addEnumeration(unicode_value='SP13', tag='SP13') -channelEnum.SP14 = channelEnum._CF_enumeration.addEnumeration(unicode_value='SP14', tag='SP14') -channelEnum.SP15 = channelEnum._CF_enumeration.addEnumeration(unicode_value='SP15', tag='SP15') -channelEnum.SP16 = channelEnum._CF_enumeration.addEnumeration(unicode_value='SP16', tag='SP16') -channelEnum.SP17 = channelEnum._CF_enumeration.addEnumeration(unicode_value='SP17', tag='SP17') -channelEnum.SP18 = channelEnum._CF_enumeration.addEnumeration(unicode_value='SP18', tag='SP18') -channelEnum.S1HD = channelEnum._CF_enumeration.addEnumeration(unicode_value='S1HD', tag='S1HD') -channelEnum.FIL1 = channelEnum._CF_enumeration.addEnumeration(unicode_value='FIL1', tag='FIL1') -channelEnum.FIL2 = channelEnum._CF_enumeration.addEnumeration(unicode_value='FIL2', tag='FIL2') -channelEnum.FIL3 = channelEnum._CF_enumeration.addEnumeration(unicode_value='FIL3', tag='FIL3') -channelEnum.FL11 = channelEnum._CF_enumeration.addEnumeration(unicode_value='FL11', tag='FL11') -channelEnum.FL1P = channelEnum._CF_enumeration.addEnumeration(unicode_value='FL1P', tag='FL1P') -channelEnum.FL12 = channelEnum._CF_enumeration.addEnumeration(unicode_value='FL12', tag='FL12') -channelEnum.FL13 = channelEnum._CF_enumeration.addEnumeration(unicode_value='FL13', tag='FL13') -channelEnum.FLHD = channelEnum._CF_enumeration.addEnumeration(unicode_value='FLHD', tag='FLHD') -channelEnum.MGMM = channelEnum._CF_enumeration.addEnumeration(unicode_value='MGMM', tag='MGMM') -channelEnum.TCM = channelEnum._CF_enumeration.addEnumeration(unicode_value='TCM_', tag='TCM') -channelEnum.HALL = channelEnum._CF_enumeration.addEnumeration(unicode_value='HALL', tag='HALL') -channelEnum.ACNW = channelEnum._CF_enumeration.addEnumeration(unicode_value='ACNW', tag='ACNW') -channelEnum.RHUS = channelEnum._CF_enumeration.addEnumeration(unicode_value='RHUS', tag='RHUS') -channelEnum.PLAY = channelEnum._CF_enumeration.addEnumeration(unicode_value='PLAY', tag='PLAY') -channelEnum.ADUL = channelEnum._CF_enumeration.addEnumeration(unicode_value='ADUL', tag='ADUL') -channelEnum.PSPI = channelEnum._CF_enumeration.addEnumeration(unicode_value='PSPI', tag='PSPI') -channelEnum.HUST = channelEnum._CF_enumeration.addEnumeration(unicode_value='HUST', tag='HUST') -channelEnum.OXMO = channelEnum._CF_enumeration.addEnumeration(unicode_value='OXMO', tag='OXMO') -channelEnum.XM24 = channelEnum._CF_enumeration.addEnumeration(unicode_value='XM24', tag='XM24') -channelEnum.OU24 = channelEnum._CF_enumeration.addEnumeration(unicode_value='OU24', tag='OU24') -channelEnum.RAD1 = channelEnum._CF_enumeration.addEnumeration(unicode_value='RAD1', tag='RAD1') -channelEnum.RAD2 = channelEnum._CF_enumeration.addEnumeration(unicode_value='RAD2', tag='RAD2') -channelEnum.R2SJ = channelEnum._CF_enumeration.addEnumeration(unicode_value='R2SJ', tag='R2SJ') -channelEnum.RAD3 = channelEnum._CF_enumeration.addEnumeration(unicode_value='RAD3', tag='RAD3') -channelEnum.R3KX = channelEnum._CF_enumeration.addEnumeration(unicode_value='R3KX', tag='R3KX') -channelEnum.R3AL = channelEnum._CF_enumeration.addEnumeration(unicode_value='R3AL', tag='R3AL') -channelEnum.RAD4 = channelEnum._CF_enumeration.addEnumeration(unicode_value='RAD4', tag='RAD4') -channelEnum.R4CO = channelEnum._CF_enumeration.addEnumeration(unicode_value='R4CO', tag='R4CO') -channelEnum.RAD5 = channelEnum._CF_enumeration.addEnumeration(unicode_value='RAD5', tag='RAD5') -channelEnum.R5ST = channelEnum._CF_enumeration.addEnumeration(unicode_value='R5ST', tag='R5ST') -channelEnum.RAD6 = channelEnum._CF_enumeration.addEnumeration(unicode_value='RAD6', tag='RAD6') -channelEnum.REGR = channelEnum._CF_enumeration.addEnumeration(unicode_value='REGR', tag='REGR') -channelEnum.RFRY = channelEnum._CF_enumeration.addEnumeration(unicode_value='RFRY', tag='RFRY') -channelEnum.DRRD = channelEnum._CF_enumeration.addEnumeration(unicode_value='DRRD', tag='DRRD') -channelEnum.RNOO = channelEnum._CF_enumeration.addEnumeration(unicode_value='RNOO', tag='RNOO') -channelEnum.ROST = channelEnum._CF_enumeration.addEnumeration(unicode_value='ROST', tag='ROST') -channelEnum.RGEL = channelEnum._CF_enumeration.addEnumeration(unicode_value='RGEL', tag='RGEL') -channelEnum.RFLE = channelEnum._CF_enumeration.addEnumeration(unicode_value='RFLE', tag='RFLE') -channelEnum.RBRA = channelEnum._CF_enumeration.addEnumeration(unicode_value='RBRA', tag='RBRA') -channelEnum.RUTR = channelEnum._CF_enumeration.addEnumeration(unicode_value='RUTR', tag='RUTR') -channelEnum.RNOH = channelEnum._CF_enumeration.addEnumeration(unicode_value='RNOH', tag='RNOH') -channelEnum.RWST = channelEnum._CF_enumeration.addEnumeration(unicode_value='RWST', tag='RWST') -channelEnum.RRIJ = channelEnum._CF_enumeration.addEnumeration(unicode_value='RRIJ', tag='RRIJ') -channelEnum.LRAD = channelEnum._CF_enumeration.addEnumeration(unicode_value='LRAD', tag='LRAD') -channelEnum.RZEE = channelEnum._CF_enumeration.addEnumeration(unicode_value='RZEE', tag='RZEE') -channelEnum.COMM = channelEnum._CF_enumeration.addEnumeration(unicode_value='COMM', tag='COMM') -channelEnum.RVER = channelEnum._CF_enumeration.addEnumeration(unicode_value='RVER', tag='RVER') -channelEnum.SLAM = channelEnum._CF_enumeration.addEnumeration(unicode_value='SLAM', tag='SLAM') -channelEnum.SKYR = channelEnum._CF_enumeration.addEnumeration(unicode_value='SKYR', tag='SKYR') -channelEnum.BNRN = channelEnum._CF_enumeration.addEnumeration(unicode_value='BNRN', tag='BNRN') -channelEnum.KINK = channelEnum._CF_enumeration.addEnumeration(unicode_value='KINK', tag='KINK') -channelEnum.PCAZ = channelEnum._CF_enumeration.addEnumeration(unicode_value='PCAZ', tag='PCAZ') -channelEnum.QMUS = channelEnum._CF_enumeration.addEnumeration(unicode_value='QMUS', tag='QMUS') -channelEnum.R538 = channelEnum._CF_enumeration.addEnumeration(unicode_value='R538', tag='R538') -channelEnum.GOLD = channelEnum._CF_enumeration.addEnumeration(unicode_value='GOLD', tag='GOLD') -channelEnum.ARRO = channelEnum._CF_enumeration.addEnumeration(unicode_value='ARRO', tag='ARRO') -channelEnum.FUNX = channelEnum._CF_enumeration.addEnumeration(unicode_value='FUNX', tag='FUNX') -channelEnum.FUNA = channelEnum._CF_enumeration.addEnumeration(unicode_value='FUNA', tag='FUNA') -channelEnum.FUNR = channelEnum._CF_enumeration.addEnumeration(unicode_value='FUNR', tag='FUNR') -channelEnum.FUNU = channelEnum._CF_enumeration.addEnumeration(unicode_value='FUNU', tag='FUNU') -channelEnum.FUNG = channelEnum._CF_enumeration.addEnumeration(unicode_value='FUNG', tag='FUNG') -channelEnum.FUNB = channelEnum._CF_enumeration.addEnumeration(unicode_value='FUNB', tag='FUNB') -channelEnum.FUND = channelEnum._CF_enumeration.addEnumeration(unicode_value='FUND', tag='FUND') -channelEnum.FUNH = channelEnum._CF_enumeration.addEnumeration(unicode_value='FUNH', tag='FUNH') -channelEnum.FUNL = channelEnum._CF_enumeration.addEnumeration(unicode_value='FUNL', tag='FUNL') -channelEnum.FUNJ = channelEnum._CF_enumeration.addEnumeration(unicode_value='FUNJ', tag='FUNJ') -channelEnum.FUNS = channelEnum._CF_enumeration.addEnumeration(unicode_value='FUNS', tag='FUNS') -channelEnum.FUNF = channelEnum._CF_enumeration.addEnumeration(unicode_value='FUNF', tag='FUNF') -channelEnum.CLAS = channelEnum._CF_enumeration.addEnumeration(unicode_value='CLAS', tag='CLAS') -channelEnum.BEL1 = channelEnum._CF_enumeration.addEnumeration(unicode_value='BEL1', tag='BEL1') -channelEnum.BEL2 = channelEnum._CF_enumeration.addEnumeration(unicode_value='BEL2', tag='BEL2') -channelEnum.KLAR = channelEnum._CF_enumeration.addEnumeration(unicode_value='KLAR', tag='KLAR') -channelEnum.BBR1 = channelEnum._CF_enumeration.addEnumeration(unicode_value='BBR1', tag='BBR1') -channelEnum.BBR2 = channelEnum._CF_enumeration.addEnumeration(unicode_value='BBR2', tag='BBR2') -channelEnum.BBR3 = channelEnum._CF_enumeration.addEnumeration(unicode_value='BBR3', tag='BBR3') -channelEnum.BBR4 = channelEnum._CF_enumeration.addEnumeration(unicode_value='BBR4', tag='BBR4') -channelEnum.BBWS = channelEnum._CF_enumeration.addEnumeration(unicode_value='BBWS', tag='BBWS') -channelEnum.BBCX = channelEnum._CF_enumeration.addEnumeration(unicode_value='BBCX', tag='BBCX') -channelEnum.NDR3 = channelEnum._CF_enumeration.addEnumeration(unicode_value='NDR3', tag='NDR3') -channelEnum.WDR4 = channelEnum._CF_enumeration.addEnumeration(unicode_value='WDR4', tag='WDR4') -channelEnum.WDR3 = channelEnum._CF_enumeration.addEnumeration(unicode_value='WDR3', tag='WDR3') -channelEnum.ONL1 = channelEnum._CF_enumeration.addEnumeration(unicode_value='ONL1', tag='ONL1') -channelEnum.OMEG = channelEnum._CF_enumeration.addEnumeration(unicode_value='OMEG', tag='OMEG') -channelEnum.D24K = channelEnum._CF_enumeration.addEnumeration(unicode_value='D24K', tag='D24K') -channelEnum.H1NL = channelEnum._CF_enumeration.addEnumeration(unicode_value='H1NL', tag='H1NL') -channelEnum.SYFY = channelEnum._CF_enumeration.addEnumeration(unicode_value='SYFY', tag='SYFY') -channelEnum.SBS9 = channelEnum._CF_enumeration.addEnumeration(unicode_value='SBS9', tag='SBS9') -channelEnum.DIXD = channelEnum._CF_enumeration.addEnumeration(unicode_value='DIXD', tag='DIXD') -channelEnum.BRNL = channelEnum._CF_enumeration.addEnumeration(unicode_value='BRNL', tag='BRNL') -channelEnum.FOXL = channelEnum._CF_enumeration.addEnumeration(unicode_value='FOXL', tag='FOXL') -channelEnum.TLC = channelEnum._CF_enumeration.addEnumeration(unicode_value='TLC_', tag='TLC') -channelEnum.BCFS = channelEnum._CF_enumeration.addEnumeration(unicode_value='BCFS', tag='BCFS') -channelEnum.AMC = channelEnum._CF_enumeration.addEnumeration(unicode_value='AMC_', tag='AMC') -channelEnum.FLM1 = channelEnum._CF_enumeration.addEnumeration(unicode_value='FLM1', tag='FLM1') -channelEnum.ZGS1 = channelEnum._CF_enumeration.addEnumeration(unicode_value='ZGS1', tag='ZGS1') -channelEnum.BRTZ = channelEnum._CF_enumeration.addEnumeration(unicode_value='BRTZ', tag='BRTZ') -channelEnum.RTLF = channelEnum._CF_enumeration.addEnumeration(unicode_value='RTLF', tag='RTLF') -channelEnum.TVDR = channelEnum._CF_enumeration.addEnumeration(unicode_value='TVDR', tag='TVDR') -channelEnum.VRTC = channelEnum._CF_enumeration.addEnumeration(unicode_value='VRTC', tag='VRTC') -channelEnum.n10TB = channelEnum._CF_enumeration.addEnumeration(unicode_value='10TB', tag='n10TB') -channelEnum.TRT1 = channelEnum._CF_enumeration.addEnumeration(unicode_value='TRT1', tag='TRT1') -channelEnum.ALJI = channelEnum._CF_enumeration.addEnumeration(unicode_value='ALJI', tag='ALJI') -channelEnum.SPID = channelEnum._CF_enumeration.addEnumeration(unicode_value='SPID', tag='SPID') -channelEnum.XXXX = channelEnum._CF_enumeration.addEnumeration(unicode_value='XXXX', tag='XXXX') +channelEnum.NED1 = channelEnum._CF_enumeration.addEnumeration(unicode_value="NED1", tag="NED1") +channelEnum.NED2 = channelEnum._CF_enumeration.addEnumeration(unicode_value="NED2", tag="NED2") +channelEnum.NED3 = channelEnum._CF_enumeration.addEnumeration(unicode_value="NED3", tag="NED3") +channelEnum.NEDE = channelEnum._CF_enumeration.addEnumeration(unicode_value="NEDE", tag="NEDE") +channelEnum.RTL4 = channelEnum._CF_enumeration.addEnumeration(unicode_value="RTL4", tag="RTL4") +channelEnum.RTL5 = channelEnum._CF_enumeration.addEnumeration(unicode_value="RTL5", tag="RTL5") +channelEnum.SBS6 = channelEnum._CF_enumeration.addEnumeration(unicode_value="SBS6", tag="SBS6") +channelEnum.RTL7 = channelEnum._CF_enumeration.addEnumeration(unicode_value="RTL7", tag="RTL7") +channelEnum.VERO = channelEnum._CF_enumeration.addEnumeration(unicode_value="VERO", tag="VERO") +channelEnum.NET5 = channelEnum._CF_enumeration.addEnumeration(unicode_value="NET5", tag="NET5") +channelEnum.RTL8 = channelEnum._CF_enumeration.addEnumeration(unicode_value="RTL8", tag="RTL8") +channelEnum.REGI = channelEnum._CF_enumeration.addEnumeration(unicode_value="REGI", tag="REGI") +channelEnum.OFRY = channelEnum._CF_enumeration.addEnumeration(unicode_value="OFRY", tag="OFRY") +channelEnum.NOOR = channelEnum._CF_enumeration.addEnumeration(unicode_value="NOOR", tag="NOOR") +channelEnum.RTVD = channelEnum._CF_enumeration.addEnumeration(unicode_value="RTVD", tag="RTVD") +channelEnum.OOST = channelEnum._CF_enumeration.addEnumeration(unicode_value="OOST", tag="OOST") +channelEnum.GELD = channelEnum._CF_enumeration.addEnumeration(unicode_value="GELD", tag="GELD") +channelEnum.FLEV = channelEnum._CF_enumeration.addEnumeration(unicode_value="FLEV", tag="FLEV") +channelEnum.BRAB = channelEnum._CF_enumeration.addEnumeration(unicode_value="BRAB", tag="BRAB") +channelEnum.REGU = channelEnum._CF_enumeration.addEnumeration(unicode_value="REGU", tag="REGU") +channelEnum.NORH = channelEnum._CF_enumeration.addEnumeration(unicode_value="NORH", tag="NORH") +channelEnum.WEST = channelEnum._CF_enumeration.addEnumeration(unicode_value="WEST", tag="WEST") +channelEnum.RIJN = channelEnum._CF_enumeration.addEnumeration(unicode_value="RIJN", tag="RIJN") +channelEnum.L1TV = channelEnum._CF_enumeration.addEnumeration(unicode_value="L1TV", tag="L1TV") +channelEnum.OZEE = channelEnum._CF_enumeration.addEnumeration(unicode_value="OZEE", tag="OZEE") +channelEnum.AT5 = channelEnum._CF_enumeration.addEnumeration(unicode_value="AT5_", tag="AT5") +channelEnum.RNN7 = channelEnum._CF_enumeration.addEnumeration(unicode_value="RNN7", tag="RNN7") +channelEnum.BVNT = channelEnum._CF_enumeration.addEnumeration(unicode_value="BVNT", tag="BVNT") +channelEnum.EEN = channelEnum._CF_enumeration.addEnumeration(unicode_value="EEN_", tag="EEN") +channelEnum.KETN = channelEnum._CF_enumeration.addEnumeration(unicode_value="KETN", tag="KETN") +channelEnum.VTM = channelEnum._CF_enumeration.addEnumeration(unicode_value="VTM_", tag="VTM") +channelEnum.KA2 = channelEnum._CF_enumeration.addEnumeration(unicode_value="KA2_", tag="KA2") +channelEnum.VT4 = channelEnum._CF_enumeration.addEnumeration(unicode_value="VT4_", tag="VT4") +channelEnum.LUNE = channelEnum._CF_enumeration.addEnumeration(unicode_value="LUNE", tag="LUNE") +channelEnum.LDUE = channelEnum._CF_enumeration.addEnumeration(unicode_value="LDUE", tag="LDUE") +channelEnum.RTBF = channelEnum._CF_enumeration.addEnumeration(unicode_value="RTBF", tag="RTBF") +channelEnum.ARD = channelEnum._CF_enumeration.addEnumeration(unicode_value="ARD_", tag="ARD") +channelEnum.ZDF = channelEnum._CF_enumeration.addEnumeration(unicode_value="ZDF_", tag="ZDF") +channelEnum.WDR = channelEnum._CF_enumeration.addEnumeration(unicode_value="WDR_", tag="WDR") +channelEnum.N_3 = channelEnum._CF_enumeration.addEnumeration(unicode_value="N_3_", tag="N_3") +channelEnum.SUDW = channelEnum._CF_enumeration.addEnumeration(unicode_value="SUDW", tag="SUDW") +channelEnum.SWF = channelEnum._CF_enumeration.addEnumeration(unicode_value="SWF_", tag="SWF") +channelEnum.RTL = channelEnum._CF_enumeration.addEnumeration(unicode_value="RTL_", tag="RTL") +channelEnum.SAT1 = channelEnum._CF_enumeration.addEnumeration(unicode_value="SAT1", tag="SAT1") +channelEnum.PRO7 = channelEnum._CF_enumeration.addEnumeration(unicode_value="PRO7", tag="PRO7") +channelEnum.n3SAT = channelEnum._CF_enumeration.addEnumeration(unicode_value="3SAT", tag="n3SAT") +channelEnum.KABE = channelEnum._CF_enumeration.addEnumeration(unicode_value="KABE", tag="KABE") +channelEnum.ARTE = channelEnum._CF_enumeration.addEnumeration(unicode_value="ARTE", tag="ARTE") +channelEnum.ART = channelEnum._CF_enumeration.addEnumeration(unicode_value="ART", tag="ART") +channelEnum.T5ME = channelEnum._CF_enumeration.addEnumeration(unicode_value="T5ME", tag="T5ME") +channelEnum.FRA2 = channelEnum._CF_enumeration.addEnumeration(unicode_value="FRA2", tag="FRA2") +channelEnum.FRA3 = channelEnum._CF_enumeration.addEnumeration(unicode_value="FRA3", tag="FRA3") +channelEnum.BBC1 = channelEnum._CF_enumeration.addEnumeration(unicode_value="BBC1", tag="BBC1") +channelEnum.BBC2 = channelEnum._CF_enumeration.addEnumeration(unicode_value="BBC2", tag="BBC2") +channelEnum.BBTH = channelEnum._CF_enumeration.addEnumeration(unicode_value="BBTH", tag="BBTH") +channelEnum.BBTC = channelEnum._CF_enumeration.addEnumeration(unicode_value="BBTC", tag="BBTC") +channelEnum.BBCF = channelEnum._CF_enumeration.addEnumeration(unicode_value="BBCF", tag="BBCF") +channelEnum.BBFC = channelEnum._CF_enumeration.addEnumeration(unicode_value="BBFC", tag="BBFC") +channelEnum.BBCP = channelEnum._CF_enumeration.addEnumeration(unicode_value="BBCP", tag="BBCP") +channelEnum.TRTI = channelEnum._CF_enumeration.addEnumeration(unicode_value="TRTI", tag="TRTI") +channelEnum.SHOW = channelEnum._CF_enumeration.addEnumeration(unicode_value="SHOW", tag="SHOW") +channelEnum.LIGT = channelEnum._CF_enumeration.addEnumeration(unicode_value="LIGT", tag="LIGT") +channelEnum.TURK = channelEnum._CF_enumeration.addEnumeration(unicode_value="TURK", tag="TURK") +channelEnum.ATVT = channelEnum._CF_enumeration.addEnumeration(unicode_value="ATVT", tag="ATVT") +channelEnum.FOXT = channelEnum._CF_enumeration.addEnumeration(unicode_value="FOXT", tag="FOXT") +channelEnum.HABN = channelEnum._CF_enumeration.addEnumeration(unicode_value="HABN", tag="HABN") +channelEnum.STTV = channelEnum._CF_enumeration.addEnumeration(unicode_value="STTV", tag="STTV") +channelEnum.RRTM = channelEnum._CF_enumeration.addEnumeration(unicode_value="RRTM", tag="RRTM") +channelEnum.RMBC = channelEnum._CF_enumeration.addEnumeration(unicode_value="RMBC", tag="RMBC") +channelEnum.RART = channelEnum._CF_enumeration.addEnumeration(unicode_value="RART", tag="RART") +channelEnum.ARTM = channelEnum._CF_enumeration.addEnumeration(unicode_value="ARTM", tag="ARTM") +channelEnum.TVBS = channelEnum._CF_enumeration.addEnumeration(unicode_value="TVBS", tag="TVBS") +channelEnum.ASIA = channelEnum._CF_enumeration.addEnumeration(unicode_value="ASIA", tag="ASIA") +channelEnum.TIVI = channelEnum._CF_enumeration.addEnumeration(unicode_value="TIVI", tag="TIVI") +channelEnum.B4UM = channelEnum._CF_enumeration.addEnumeration(unicode_value="B4UM", tag="B4UM") +channelEnum.PCNE = channelEnum._CF_enumeration.addEnumeration(unicode_value="PCNE", tag="PCNE") +channelEnum.PATN = channelEnum._CF_enumeration.addEnumeration(unicode_value="PATN", tag="PATN") +channelEnum.ZEET = channelEnum._CF_enumeration.addEnumeration(unicode_value="ZEET", tag="ZEET") +channelEnum.ZEEC = channelEnum._CF_enumeration.addEnumeration(unicode_value="ZEEC", tag="ZEEC") +channelEnum.TVE = channelEnum._CF_enumeration.addEnumeration(unicode_value="TVE_", tag="TVE") +channelEnum.RAI = channelEnum._CF_enumeration.addEnumeration(unicode_value="RAI_", tag="RAI") +channelEnum.RAID = channelEnum._CF_enumeration.addEnumeration(unicode_value="RAID", tag="RAID") +channelEnum.RAIT = channelEnum._CF_enumeration.addEnumeration(unicode_value="RAIT", tag="RAIT") +channelEnum.TEVE = channelEnum._CF_enumeration.addEnumeration(unicode_value="TEVE", tag="TEVE") +channelEnum.ERTS = channelEnum._CF_enumeration.addEnumeration(unicode_value="ERTS", tag="ERTS") +channelEnum.STV = channelEnum._CF_enumeration.addEnumeration(unicode_value="STV_", tag="STV") +channelEnum.NTV = channelEnum._CF_enumeration.addEnumeration(unicode_value="NTV_", tag="NTV") +channelEnum.TVPO = channelEnum._CF_enumeration.addEnumeration(unicode_value="TVPO", tag="TVPO") +channelEnum.NOSJ = channelEnum._CF_enumeration.addEnumeration(unicode_value="NOSJ", tag="NOSJ") +channelEnum.CULT = channelEnum._CF_enumeration.addEnumeration(unicode_value="CULT", tag="CULT") +channelEnum.n101 = channelEnum._CF_enumeration.addEnumeration(unicode_value="101_", tag="n101") +channelEnum.PO24 = channelEnum._CF_enumeration.addEnumeration(unicode_value="PO24", tag="PO24") +channelEnum.HILV = channelEnum._CF_enumeration.addEnumeration(unicode_value="HILV", tag="HILV") +channelEnum.HOLL = channelEnum._CF_enumeration.addEnumeration(unicode_value="HOLL", tag="HOLL") +channelEnum.GESC = channelEnum._CF_enumeration.addEnumeration(unicode_value="GESC", tag="GESC") +channelEnum.n3VCN = channelEnum._CF_enumeration.addEnumeration(unicode_value="3VCN", tag="n3VCN") +channelEnum.n3VOS = channelEnum._CF_enumeration.addEnumeration(unicode_value="3VOS", tag="n3VOS") +channelEnum.STER = channelEnum._CF_enumeration.addEnumeration(unicode_value="STER", tag="STER") +channelEnum.NCRV = channelEnum._CF_enumeration.addEnumeration(unicode_value="NCRV", tag="NCRV") +channelEnum.OPVO = channelEnum._CF_enumeration.addEnumeration(unicode_value="OPVO", tag="OPVO") +channelEnum.CONS = channelEnum._CF_enumeration.addEnumeration(unicode_value="CONS", tag="CONS") +channelEnum.HUMO = channelEnum._CF_enumeration.addEnumeration(unicode_value="HUMO", tag="HUMO") +channelEnum.ENTE = channelEnum._CF_enumeration.addEnumeration(unicode_value="ENTE", tag="ENTE") +channelEnum.FASH = channelEnum._CF_enumeration.addEnumeration(unicode_value="FASH", tag="FASH") +channelEnum.COMC = channelEnum._CF_enumeration.addEnumeration(unicode_value="COMC", tag="COMC") +channelEnum.TBN = channelEnum._CF_enumeration.addEnumeration(unicode_value="TBN_", tag="TBN") +channelEnum.DISC = channelEnum._CF_enumeration.addEnumeration(unicode_value="DISC", tag="DISC") +channelEnum.ZONE = channelEnum._CF_enumeration.addEnumeration(unicode_value="ZONE", tag="ZONE") +channelEnum.ANPL = channelEnum._CF_enumeration.addEnumeration(unicode_value="ANPL", tag="ANPL") +channelEnum.CLUB = channelEnum._CF_enumeration.addEnumeration(unicode_value="CLUB", tag="CLUB") +channelEnum.NAGE = channelEnum._CF_enumeration.addEnumeration(unicode_value="NAGE", tag="NAGE") +channelEnum.TRAC = channelEnum._CF_enumeration.addEnumeration(unicode_value="TRAC", tag="TRAC") +channelEnum.NGHD = channelEnum._CF_enumeration.addEnumeration(unicode_value="NGHD", tag="NGHD") +channelEnum.WILD = channelEnum._CF_enumeration.addEnumeration(unicode_value="WILD", tag="WILD") +channelEnum.GARU = channelEnum._CF_enumeration.addEnumeration(unicode_value="GARU", tag="GARU") +channelEnum.ZAZA = channelEnum._CF_enumeration.addEnumeration(unicode_value="ZAZA", tag="ZAZA") +channelEnum.FAM7 = channelEnum._CF_enumeration.addEnumeration(unicode_value="FAM7", tag="FAM7") +channelEnum.DTAL = channelEnum._CF_enumeration.addEnumeration(unicode_value="DTAL", tag="DTAL") +channelEnum.SCIE = channelEnum._CF_enumeration.addEnumeration(unicode_value="SCIE", tag="SCIE") +channelEnum.CIVI = channelEnum._CF_enumeration.addEnumeration(unicode_value="CIVI", tag="CIVI") +channelEnum.DIHD = channelEnum._CF_enumeration.addEnumeration(unicode_value="DIHD", tag="DIHD") +channelEnum.HIST = channelEnum._CF_enumeration.addEnumeration(unicode_value="HIST", tag="HIST") +channelEnum.TRAV = channelEnum._CF_enumeration.addEnumeration(unicode_value="TRAV", tag="TRAV") +channelEnum.HETG = channelEnum._CF_enumeration.addEnumeration(unicode_value="HETG", tag="HETG") +channelEnum.GOED = channelEnum._CF_enumeration.addEnumeration(unicode_value="GOED", tag="GOED") +channelEnum.BABY = channelEnum._CF_enumeration.addEnumeration(unicode_value="BABY", tag="BABY") +channelEnum.DH1 = channelEnum._CF_enumeration.addEnumeration(unicode_value="DH1_", tag="DH1") +channelEnum.LITV = channelEnum._CF_enumeration.addEnumeration(unicode_value="LITV", tag="LITV") +channelEnum.LIVE = channelEnum._CF_enumeration.addEnumeration(unicode_value="LIVE", tag="LIVE") +channelEnum.STAR = channelEnum._CF_enumeration.addEnumeration(unicode_value="STAR", tag="STAR") +channelEnum.WEER = channelEnum._CF_enumeration.addEnumeration(unicode_value="WEER", tag="WEER") +channelEnum.REAL = channelEnum._CF_enumeration.addEnumeration(unicode_value="REAL", tag="REAL") +channelEnum.SCIF = channelEnum._CF_enumeration.addEnumeration(unicode_value="SCIF", tag="SCIF") +channelEnum.n13ST = channelEnum._CF_enumeration.addEnumeration(unicode_value="13ST", tag="n13ST") +channelEnum.CARC = channelEnum._CF_enumeration.addEnumeration(unicode_value="CARC", tag="CARC") +channelEnum.NOSN = channelEnum._CF_enumeration.addEnumeration(unicode_value="NOSN", tag="NOSN") +channelEnum.HISH = channelEnum._CF_enumeration.addEnumeration(unicode_value="HISH", tag="HISH") +channelEnum.BRHD = channelEnum._CF_enumeration.addEnumeration(unicode_value="BRHD", tag="BRHD") +channelEnum.FANT = channelEnum._CF_enumeration.addEnumeration(unicode_value="FANT", tag="FANT") +channelEnum.RACW = channelEnum._CF_enumeration.addEnumeration(unicode_value="RACW", tag="RACW") +channelEnum.COMF = channelEnum._CF_enumeration.addEnumeration(unicode_value="COMF", tag="COMF") +channelEnum.DIER = channelEnum._CF_enumeration.addEnumeration(unicode_value="DIER", tag="DIER") +channelEnum.POKE = channelEnum._CF_enumeration.addEnumeration(unicode_value="POKE", tag="POKE") +channelEnum.MNET = channelEnum._CF_enumeration.addEnumeration(unicode_value="MNET", tag="MNET") +channelEnum.VOOM = channelEnum._CF_enumeration.addEnumeration(unicode_value="VOOM", tag="VOOM") +channelEnum.ZONH = channelEnum._CF_enumeration.addEnumeration(unicode_value="ZONH", tag="ZONH") +channelEnum.KPN1 = channelEnum._CF_enumeration.addEnumeration(unicode_value="KPN1", tag="KPN1") +channelEnum.KPN2 = channelEnum._CF_enumeration.addEnumeration(unicode_value="KPN2", tag="KPN2") +channelEnum.KPN3 = channelEnum._CF_enumeration.addEnumeration(unicode_value="KPN3", tag="KPN3") +channelEnum.KPN4 = channelEnum._CF_enumeration.addEnumeration(unicode_value="KPN4", tag="KPN4") +channelEnum.ZIZO = channelEnum._CF_enumeration.addEnumeration(unicode_value="ZIZO", tag="ZIZO") +channelEnum.DVIC = channelEnum._CF_enumeration.addEnumeration(unicode_value="DVIC", tag="DVIC") +channelEnum.DVB1 = channelEnum._CF_enumeration.addEnumeration(unicode_value="DVB1", tag="DVB1") +channelEnum.DVB2 = channelEnum._CF_enumeration.addEnumeration(unicode_value="DVB2", tag="DVB2") +channelEnum.DVB3 = channelEnum._CF_enumeration.addEnumeration(unicode_value="DVB3", tag="DVB3") +channelEnum.NICK = channelEnum._CF_enumeration.addEnumeration(unicode_value="NICK", tag="NICK") +channelEnum.NIJN = channelEnum._CF_enumeration.addEnumeration(unicode_value="NIJN", tag="NIJN") +channelEnum.NIKT = channelEnum._CF_enumeration.addEnumeration(unicode_value="NIKT", tag="NIKT") +channelEnum.NIKH = channelEnum._CF_enumeration.addEnumeration(unicode_value="NIKH", tag="NIKH") +channelEnum.CART = channelEnum._CF_enumeration.addEnumeration(unicode_value="CART", tag="CART") +channelEnum.BOOM = channelEnum._CF_enumeration.addEnumeration(unicode_value="BOOM", tag="BOOM") +channelEnum.CNN = channelEnum._CF_enumeration.addEnumeration(unicode_value="CNN_", tag="CNN") +channelEnum.BBCW = channelEnum._CF_enumeration.addEnumeration(unicode_value="BBCW", tag="BBCW") +channelEnum.EURN = channelEnum._CF_enumeration.addEnumeration(unicode_value="EURN", tag="EURN") +channelEnum.SKNE = channelEnum._CF_enumeration.addEnumeration(unicode_value="SKNE", tag="SKNE") +channelEnum.BLOO = channelEnum._CF_enumeration.addEnumeration(unicode_value="BLOO", tag="BLOO") +channelEnum.CNBC = channelEnum._CF_enumeration.addEnumeration(unicode_value="CNBC", tag="CNBC") +channelEnum.PALJ = channelEnum._CF_enumeration.addEnumeration(unicode_value="PALJ", tag="PALJ") +channelEnum.ALJA = channelEnum._CF_enumeration.addEnumeration(unicode_value="ALJA", tag="ALJA") +channelEnum.FOXN = channelEnum._CF_enumeration.addEnumeration(unicode_value="FOXN", tag="FOXN") +channelEnum.FXNL = channelEnum._CF_enumeration.addEnumeration(unicode_value="FXNL", tag="FXNL") +channelEnum.MTV = channelEnum._CF_enumeration.addEnumeration(unicode_value="MTV_", tag="MTV") +channelEnum.MTV2 = channelEnum._CF_enumeration.addEnumeration(unicode_value="MTV2", tag="MTV2") +channelEnum.HITS = channelEnum._CF_enumeration.addEnumeration(unicode_value="HITS", tag="HITS") +channelEnum.BASE = channelEnum._CF_enumeration.addEnumeration(unicode_value="BASE", tag="BASE") +channelEnum.MTVB = channelEnum._CF_enumeration.addEnumeration(unicode_value="MTVB", tag="MTVB") +channelEnum.TMF = channelEnum._CF_enumeration.addEnumeration(unicode_value="TMF_", tag="TMF") +channelEnum.TMFN = channelEnum._CF_enumeration.addEnumeration(unicode_value="TMFN", tag="TMFN") +channelEnum.TMFP = channelEnum._CF_enumeration.addEnumeration(unicode_value="TMFP", tag="TMFP") +channelEnum.TMFY = channelEnum._CF_enumeration.addEnumeration(unicode_value="TMFY", tag="TMFY") +channelEnum.TVOR = channelEnum._CF_enumeration.addEnumeration(unicode_value="TVOR", tag="TVOR") +channelEnum.VH1E = channelEnum._CF_enumeration.addEnumeration(unicode_value="VH1E", tag="VH1E") +channelEnum.VH1C = channelEnum._CF_enumeration.addEnumeration(unicode_value="VH1C", tag="VH1C") +channelEnum.PERC = channelEnum._CF_enumeration.addEnumeration(unicode_value="PERC", tag="PERC") +channelEnum.MEZZ = channelEnum._CF_enumeration.addEnumeration(unicode_value="MEZZ", tag="MEZZ") +channelEnum.EURO = channelEnum._CF_enumeration.addEnumeration(unicode_value="EURO", tag="EURO") +channelEnum.EUR2 = channelEnum._CF_enumeration.addEnumeration(unicode_value="EUR2", tag="EUR2") +channelEnum.EXTR = channelEnum._CF_enumeration.addEnumeration(unicode_value="EXTR", tag="EXTR") +channelEnum.MOTO = channelEnum._CF_enumeration.addEnumeration(unicode_value="MOTO", tag="MOTO") +channelEnum.SAIL = channelEnum._CF_enumeration.addEnumeration(unicode_value="SAIL", tag="SAIL") +channelEnum.ESPN = channelEnum._CF_enumeration.addEnumeration(unicode_value="ESPN", tag="ESPN") +channelEnum.NASE = channelEnum._CF_enumeration.addEnumeration(unicode_value="NASE", tag="NASE") +channelEnum.SP11 = channelEnum._CF_enumeration.addEnumeration(unicode_value="SP11", tag="SP11") +channelEnum.SP12 = channelEnum._CF_enumeration.addEnumeration(unicode_value="SP12", tag="SP12") +channelEnum.SP13 = channelEnum._CF_enumeration.addEnumeration(unicode_value="SP13", tag="SP13") +channelEnum.SP14 = channelEnum._CF_enumeration.addEnumeration(unicode_value="SP14", tag="SP14") +channelEnum.SP15 = channelEnum._CF_enumeration.addEnumeration(unicode_value="SP15", tag="SP15") +channelEnum.SP16 = channelEnum._CF_enumeration.addEnumeration(unicode_value="SP16", tag="SP16") +channelEnum.SP17 = channelEnum._CF_enumeration.addEnumeration(unicode_value="SP17", tag="SP17") +channelEnum.SP18 = channelEnum._CF_enumeration.addEnumeration(unicode_value="SP18", tag="SP18") +channelEnum.S1HD = channelEnum._CF_enumeration.addEnumeration(unicode_value="S1HD", tag="S1HD") +channelEnum.FIL1 = channelEnum._CF_enumeration.addEnumeration(unicode_value="FIL1", tag="FIL1") +channelEnum.FIL2 = channelEnum._CF_enumeration.addEnumeration(unicode_value="FIL2", tag="FIL2") +channelEnum.FIL3 = channelEnum._CF_enumeration.addEnumeration(unicode_value="FIL3", tag="FIL3") +channelEnum.FL11 = channelEnum._CF_enumeration.addEnumeration(unicode_value="FL11", tag="FL11") +channelEnum.FL1P = channelEnum._CF_enumeration.addEnumeration(unicode_value="FL1P", tag="FL1P") +channelEnum.FL12 = channelEnum._CF_enumeration.addEnumeration(unicode_value="FL12", tag="FL12") +channelEnum.FL13 = channelEnum._CF_enumeration.addEnumeration(unicode_value="FL13", tag="FL13") +channelEnum.FLHD = channelEnum._CF_enumeration.addEnumeration(unicode_value="FLHD", tag="FLHD") +channelEnum.MGMM = channelEnum._CF_enumeration.addEnumeration(unicode_value="MGMM", tag="MGMM") +channelEnum.TCM = channelEnum._CF_enumeration.addEnumeration(unicode_value="TCM_", tag="TCM") +channelEnum.HALL = channelEnum._CF_enumeration.addEnumeration(unicode_value="HALL", tag="HALL") +channelEnum.ACNW = channelEnum._CF_enumeration.addEnumeration(unicode_value="ACNW", tag="ACNW") +channelEnum.RHUS = channelEnum._CF_enumeration.addEnumeration(unicode_value="RHUS", tag="RHUS") +channelEnum.PLAY = channelEnum._CF_enumeration.addEnumeration(unicode_value="PLAY", tag="PLAY") +channelEnum.ADUL = channelEnum._CF_enumeration.addEnumeration(unicode_value="ADUL", tag="ADUL") +channelEnum.PSPI = channelEnum._CF_enumeration.addEnumeration(unicode_value="PSPI", tag="PSPI") +channelEnum.HUST = channelEnum._CF_enumeration.addEnumeration(unicode_value="HUST", tag="HUST") +channelEnum.OXMO = channelEnum._CF_enumeration.addEnumeration(unicode_value="OXMO", tag="OXMO") +channelEnum.XM24 = channelEnum._CF_enumeration.addEnumeration(unicode_value="XM24", tag="XM24") +channelEnum.OU24 = channelEnum._CF_enumeration.addEnumeration(unicode_value="OU24", tag="OU24") +channelEnum.RAD1 = channelEnum._CF_enumeration.addEnumeration(unicode_value="RAD1", tag="RAD1") +channelEnum.RAD2 = channelEnum._CF_enumeration.addEnumeration(unicode_value="RAD2", tag="RAD2") +channelEnum.R2SJ = channelEnum._CF_enumeration.addEnumeration(unicode_value="R2SJ", tag="R2SJ") +channelEnum.RAD3 = channelEnum._CF_enumeration.addEnumeration(unicode_value="RAD3", tag="RAD3") +channelEnum.R3KX = channelEnum._CF_enumeration.addEnumeration(unicode_value="R3KX", tag="R3KX") +channelEnum.R3AL = channelEnum._CF_enumeration.addEnumeration(unicode_value="R3AL", tag="R3AL") +channelEnum.RAD4 = channelEnum._CF_enumeration.addEnumeration(unicode_value="RAD4", tag="RAD4") +channelEnum.R4CO = channelEnum._CF_enumeration.addEnumeration(unicode_value="R4CO", tag="R4CO") +channelEnum.RAD5 = channelEnum._CF_enumeration.addEnumeration(unicode_value="RAD5", tag="RAD5") +channelEnum.R5ST = channelEnum._CF_enumeration.addEnumeration(unicode_value="R5ST", tag="R5ST") +channelEnum.RAD6 = channelEnum._CF_enumeration.addEnumeration(unicode_value="RAD6", tag="RAD6") +channelEnum.REGR = channelEnum._CF_enumeration.addEnumeration(unicode_value="REGR", tag="REGR") +channelEnum.RFRY = channelEnum._CF_enumeration.addEnumeration(unicode_value="RFRY", tag="RFRY") +channelEnum.DRRD = channelEnum._CF_enumeration.addEnumeration(unicode_value="DRRD", tag="DRRD") +channelEnum.RNOO = channelEnum._CF_enumeration.addEnumeration(unicode_value="RNOO", tag="RNOO") +channelEnum.ROST = channelEnum._CF_enumeration.addEnumeration(unicode_value="ROST", tag="ROST") +channelEnum.RGEL = channelEnum._CF_enumeration.addEnumeration(unicode_value="RGEL", tag="RGEL") +channelEnum.RFLE = channelEnum._CF_enumeration.addEnumeration(unicode_value="RFLE", tag="RFLE") +channelEnum.RBRA = channelEnum._CF_enumeration.addEnumeration(unicode_value="RBRA", tag="RBRA") +channelEnum.RUTR = channelEnum._CF_enumeration.addEnumeration(unicode_value="RUTR", tag="RUTR") +channelEnum.RNOH = channelEnum._CF_enumeration.addEnumeration(unicode_value="RNOH", tag="RNOH") +channelEnum.RWST = channelEnum._CF_enumeration.addEnumeration(unicode_value="RWST", tag="RWST") +channelEnum.RRIJ = channelEnum._CF_enumeration.addEnumeration(unicode_value="RRIJ", tag="RRIJ") +channelEnum.LRAD = channelEnum._CF_enumeration.addEnumeration(unicode_value="LRAD", tag="LRAD") +channelEnum.RZEE = channelEnum._CF_enumeration.addEnumeration(unicode_value="RZEE", tag="RZEE") +channelEnum.COMM = channelEnum._CF_enumeration.addEnumeration(unicode_value="COMM", tag="COMM") +channelEnum.RVER = channelEnum._CF_enumeration.addEnumeration(unicode_value="RVER", tag="RVER") +channelEnum.SLAM = channelEnum._CF_enumeration.addEnumeration(unicode_value="SLAM", tag="SLAM") +channelEnum.SKYR = channelEnum._CF_enumeration.addEnumeration(unicode_value="SKYR", tag="SKYR") +channelEnum.BNRN = channelEnum._CF_enumeration.addEnumeration(unicode_value="BNRN", tag="BNRN") +channelEnum.KINK = channelEnum._CF_enumeration.addEnumeration(unicode_value="KINK", tag="KINK") +channelEnum.PCAZ = channelEnum._CF_enumeration.addEnumeration(unicode_value="PCAZ", tag="PCAZ") +channelEnum.QMUS = channelEnum._CF_enumeration.addEnumeration(unicode_value="QMUS", tag="QMUS") +channelEnum.R538 = channelEnum._CF_enumeration.addEnumeration(unicode_value="R538", tag="R538") +channelEnum.GOLD = channelEnum._CF_enumeration.addEnumeration(unicode_value="GOLD", tag="GOLD") +channelEnum.ARRO = channelEnum._CF_enumeration.addEnumeration(unicode_value="ARRO", tag="ARRO") +channelEnum.FUNX = channelEnum._CF_enumeration.addEnumeration(unicode_value="FUNX", tag="FUNX") +channelEnum.FUNA = channelEnum._CF_enumeration.addEnumeration(unicode_value="FUNA", tag="FUNA") +channelEnum.FUNR = channelEnum._CF_enumeration.addEnumeration(unicode_value="FUNR", tag="FUNR") +channelEnum.FUNU = channelEnum._CF_enumeration.addEnumeration(unicode_value="FUNU", tag="FUNU") +channelEnum.FUNG = channelEnum._CF_enumeration.addEnumeration(unicode_value="FUNG", tag="FUNG") +channelEnum.FUNB = channelEnum._CF_enumeration.addEnumeration(unicode_value="FUNB", tag="FUNB") +channelEnum.FUND = channelEnum._CF_enumeration.addEnumeration(unicode_value="FUND", tag="FUND") +channelEnum.FUNH = channelEnum._CF_enumeration.addEnumeration(unicode_value="FUNH", tag="FUNH") +channelEnum.FUNL = channelEnum._CF_enumeration.addEnumeration(unicode_value="FUNL", tag="FUNL") +channelEnum.FUNJ = channelEnum._CF_enumeration.addEnumeration(unicode_value="FUNJ", tag="FUNJ") +channelEnum.FUNS = channelEnum._CF_enumeration.addEnumeration(unicode_value="FUNS", tag="FUNS") +channelEnum.FUNF = channelEnum._CF_enumeration.addEnumeration(unicode_value="FUNF", tag="FUNF") +channelEnum.CLAS = channelEnum._CF_enumeration.addEnumeration(unicode_value="CLAS", tag="CLAS") +channelEnum.BEL1 = channelEnum._CF_enumeration.addEnumeration(unicode_value="BEL1", tag="BEL1") +channelEnum.BEL2 = channelEnum._CF_enumeration.addEnumeration(unicode_value="BEL2", tag="BEL2") +channelEnum.KLAR = channelEnum._CF_enumeration.addEnumeration(unicode_value="KLAR", tag="KLAR") +channelEnum.BBR1 = channelEnum._CF_enumeration.addEnumeration(unicode_value="BBR1", tag="BBR1") +channelEnum.BBR2 = channelEnum._CF_enumeration.addEnumeration(unicode_value="BBR2", tag="BBR2") +channelEnum.BBR3 = channelEnum._CF_enumeration.addEnumeration(unicode_value="BBR3", tag="BBR3") +channelEnum.BBR4 = channelEnum._CF_enumeration.addEnumeration(unicode_value="BBR4", tag="BBR4") +channelEnum.BBWS = channelEnum._CF_enumeration.addEnumeration(unicode_value="BBWS", tag="BBWS") +channelEnum.BBCX = channelEnum._CF_enumeration.addEnumeration(unicode_value="BBCX", tag="BBCX") +channelEnum.NDR3 = channelEnum._CF_enumeration.addEnumeration(unicode_value="NDR3", tag="NDR3") +channelEnum.WDR4 = channelEnum._CF_enumeration.addEnumeration(unicode_value="WDR4", tag="WDR4") +channelEnum.WDR3 = channelEnum._CF_enumeration.addEnumeration(unicode_value="WDR3", tag="WDR3") +channelEnum.ONL1 = channelEnum._CF_enumeration.addEnumeration(unicode_value="ONL1", tag="ONL1") +channelEnum.OMEG = channelEnum._CF_enumeration.addEnumeration(unicode_value="OMEG", tag="OMEG") +channelEnum.D24K = channelEnum._CF_enumeration.addEnumeration(unicode_value="D24K", tag="D24K") +channelEnum.H1NL = channelEnum._CF_enumeration.addEnumeration(unicode_value="H1NL", tag="H1NL") +channelEnum.SYFY = channelEnum._CF_enumeration.addEnumeration(unicode_value="SYFY", tag="SYFY") +channelEnum.SBS9 = channelEnum._CF_enumeration.addEnumeration(unicode_value="SBS9", tag="SBS9") +channelEnum.DIXD = channelEnum._CF_enumeration.addEnumeration(unicode_value="DIXD", tag="DIXD") +channelEnum.BRNL = channelEnum._CF_enumeration.addEnumeration(unicode_value="BRNL", tag="BRNL") +channelEnum.FOXL = channelEnum._CF_enumeration.addEnumeration(unicode_value="FOXL", tag="FOXL") +channelEnum.TLC = channelEnum._CF_enumeration.addEnumeration(unicode_value="TLC_", tag="TLC") +channelEnum.BCFS = channelEnum._CF_enumeration.addEnumeration(unicode_value="BCFS", tag="BCFS") +channelEnum.AMC = channelEnum._CF_enumeration.addEnumeration(unicode_value="AMC_", tag="AMC") +channelEnum.FLM1 = channelEnum._CF_enumeration.addEnumeration(unicode_value="FLM1", tag="FLM1") +channelEnum.ZGS1 = channelEnum._CF_enumeration.addEnumeration(unicode_value="ZGS1", tag="ZGS1") +channelEnum.BRTZ = channelEnum._CF_enumeration.addEnumeration(unicode_value="BRTZ", tag="BRTZ") +channelEnum.RTLF = channelEnum._CF_enumeration.addEnumeration(unicode_value="RTLF", tag="RTLF") +channelEnum.TVDR = channelEnum._CF_enumeration.addEnumeration(unicode_value="TVDR", tag="TVDR") +channelEnum.VRTC = channelEnum._CF_enumeration.addEnumeration(unicode_value="VRTC", tag="VRTC") +channelEnum.n10TB = channelEnum._CF_enumeration.addEnumeration(unicode_value="10TB", tag="n10TB") +channelEnum.TRT1 = channelEnum._CF_enumeration.addEnumeration(unicode_value="TRT1", tag="TRT1") +channelEnum.ALJI = channelEnum._CF_enumeration.addEnumeration(unicode_value="ALJI", tag="ALJI") +channelEnum.SPID = channelEnum._CF_enumeration.addEnumeration(unicode_value="SPID", tag="SPID") +channelEnum.XXXX = channelEnum._CF_enumeration.addEnumeration(unicode_value="XXXX", tag="XXXX") channelEnum._InitializeFacetMap(channelEnum._CF_enumeration) -Namespace.addCategoryObject('typeBinding', 'channelEnum', channelEnum) +Namespace.addCategoryObject("typeBinding", "channelEnum", channelEnum) _module_typeBindings.channelEnum = channelEnum -# Atomic simple type: {urn:vpro:media:2009}streamingStatusValue -class streamingStatusValue (pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): +# Atomic simple type: {urn:vpro:media:2009}streamingStatusValue +class streamingStatusValue(pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'streamingStatusValue') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 3281, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "streamingStatusValue") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 3281, 2) _Documentation = None -streamingStatusValue._CF_enumeration = pyxb.binding.facets.CF_enumeration(value_datatype=streamingStatusValue, enum_prefix=None) -streamingStatusValue.OFFLINE = streamingStatusValue._CF_enumeration.addEnumeration(unicode_value='OFFLINE', tag='OFFLINE') -streamingStatusValue.ONLINE = streamingStatusValue._CF_enumeration.addEnumeration(unicode_value='ONLINE', tag='ONLINE') -streamingStatusValue.UNSET = streamingStatusValue._CF_enumeration.addEnumeration(unicode_value='UNSET', tag='UNSET') + + +streamingStatusValue._CF_enumeration = pyxb.binding.facets.CF_enumeration( + value_datatype=streamingStatusValue, enum_prefix=None +) +streamingStatusValue.OFFLINE = streamingStatusValue._CF_enumeration.addEnumeration( + unicode_value="OFFLINE", tag="OFFLINE" +) +streamingStatusValue.ONLINE = streamingStatusValue._CF_enumeration.addEnumeration(unicode_value="ONLINE", tag="ONLINE") +streamingStatusValue.UNSET = streamingStatusValue._CF_enumeration.addEnumeration(unicode_value="UNSET", tag="UNSET") streamingStatusValue._InitializeFacetMap(streamingStatusValue._CF_enumeration) -Namespace.addCategoryObject('typeBinding', 'streamingStatusValue', streamingStatusValue) +Namespace.addCategoryObject("typeBinding", "streamingStatusValue", streamingStatusValue) _module_typeBindings.streamingStatusValue = streamingStatusValue -# Atomic simple type: {urn:vpro:media:2009}encryption -class encryption (pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): +# Atomic simple type: {urn:vpro:media:2009}encryption +class encryption(pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'encryption') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 3289, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "encryption") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 3289, 2) _Documentation = None + + encryption._CF_enumeration = pyxb.binding.facets.CF_enumeration(value_datatype=encryption, enum_prefix=None) -encryption.NONE = encryption._CF_enumeration.addEnumeration(unicode_value='NONE', tag='NONE') -encryption.DRM = encryption._CF_enumeration.addEnumeration(unicode_value='DRM', tag='DRM') +encryption.NONE = encryption._CF_enumeration.addEnumeration(unicode_value="NONE", tag="NONE") +encryption.DRM = encryption._CF_enumeration.addEnumeration(unicode_value="DRM", tag="DRM") encryption._InitializeFacetMap(encryption._CF_enumeration) -Namespace.addCategoryObject('typeBinding', 'encryption', encryption) +Namespace.addCategoryObject("typeBinding", "encryption", encryption) _module_typeBindings.encryption = encryption + # Complex type {urn:vpro:media:2009}mediaTableType with content type ELEMENT_ONLY -class mediaTableType (pyxb.binding.basis.complexTypeDefinition): +class mediaTableType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:2009}mediaTableType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'mediaTableType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 57, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "mediaTableType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 57, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - - # Element {urn:vpro:media:2009}schedule uses Python identifier schedule - __schedule = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'schedule'), 'schedule', '__urnvpromedia2009_mediaTableType_urnvpromedia2009schedule', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 46, 2), ) - - schedule = property(__schedule.value, __schedule.set, None, "\n Programs of type 'BROADCAST' can contain schedule events. A schedule indicates on which channel and at what time the program is broadcast. A schedule is a container which contains the schedule events of different programs, for a certain period of time.\n ") + # Element {urn:vpro:media:2009}schedule uses Python identifier schedule + __schedule = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "schedule"), + "schedule", + "__urnvpromedia2009_mediaTableType_urnvpromedia2009schedule", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 46, 2), + ) + + schedule = property( + __schedule.value, + __schedule.set, + None, + "\n Programs of type 'BROADCAST' can contain schedule events. A schedule indicates on which channel and at what time the program is broadcast. A schedule is a container which contains the schedule events of different programs, for a certain period of time.\n ", + ) - # Element {urn:vpro:media:2009}programTable uses Python identifier programTable - __programTable = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'programTable'), 'programTable', '__urnvpromedia2009_mediaTableType_urnvpromedia2009programTable', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 59, 6), ) + __programTable = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "programTable"), + "programTable", + "__urnvpromedia2009_mediaTableType_urnvpromedia2009programTable", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 59, 6), + ) + + programTable = property( + __programTable.value, __programTable.set, None, "A table with all program objects in this container" + ) - - programTable = property(__programTable.value, __programTable.set, None, 'A table with all program objects in this container') - - # Element {urn:vpro:media:2009}groupTable uses Python identifier groupTable - __groupTable = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'groupTable'), 'groupTable', '__urnvpromedia2009_mediaTableType_urnvpromedia2009groupTable', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 64, 6), ) - - - groupTable = property(__groupTable.value, __groupTable.set, None, 'A table with all group objects in this container') + __groupTable = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "groupTable"), + "groupTable", + "__urnvpromedia2009_mediaTableType_urnvpromedia2009groupTable", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 64, 6), + ) + + groupTable = property( + __groupTable.value, __groupTable.set, None, "A table with all group objects in this container" + ) - # Element {urn:vpro:media:2009}locationTable uses Python identifier locationTable - __locationTable = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'locationTable'), 'locationTable', '__urnvpromedia2009_mediaTableType_urnvpromedia2009locationTable', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 69, 6), ) + __locationTable = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "locationTable"), + "locationTable", + "__urnvpromedia2009_mediaTableType_urnvpromedia2009locationTable", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 69, 6), + ) - locationTable = property(__locationTable.value, __locationTable.set, None, None) - # Attribute publisher uses Python identifier publisher - __publisher = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'publisher'), 'publisher', '__urnvpromedia2009_mediaTableType_publisher', pyxb.binding.datatypes.string) - __publisher._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 76, 4) - __publisher._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 76, 4) - + __publisher = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "publisher"), + "publisher", + "__urnvpromedia2009_mediaTableType_publisher", + pyxb.binding.datatypes.string, + ) + __publisher._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 76, 4 + ) + __publisher._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 76, 4) + publisher = property(__publisher.value, __publisher.set, None, None) - # Attribute publicationTime uses Python identifier publicationTime - __publicationTime = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'publicationTime'), 'publicationTime', '__urnvpromedia2009_mediaTableType_publicationTime', pyxb.binding.datatypes.dateTime) - __publicationTime._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 77, 4) - __publicationTime._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 77, 4) - + __publicationTime = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "publicationTime"), + "publicationTime", + "__urnvpromedia2009_mediaTableType_publicationTime", + pyxb.binding.datatypes.dateTime, + ) + __publicationTime._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 77, 4 + ) + __publicationTime._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 77, 4 + ) + publicationTime = property(__publicationTime.value, __publicationTime.set, None, None) - # Attribute version uses Python identifier version - __version = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'version'), 'version', '__urnvpromedia2009_mediaTableType_version', pyxb.binding.datatypes.short) - __version._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 78, 4) - __version._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 78, 4) - + __version = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "version"), + "version", + "__urnvpromedia2009_mediaTableType_version", + pyxb.binding.datatypes.short, + ) + __version._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 78, 4 + ) + __version._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 78, 4) + version = property(__version.value, __version.set, None, None) - _ElementMap.update({ - __schedule.name() : __schedule, - __programTable.name() : __programTable, - __groupTable.name() : __groupTable, - __locationTable.name() : __locationTable - }) - _AttributeMap.update({ - __publisher.name() : __publisher, - __publicationTime.name() : __publicationTime, - __version.name() : __version - }) + _ElementMap.update( + { + __schedule.name(): __schedule, + __programTable.name(): __programTable, + __groupTable.name(): __groupTable, + __locationTable.name(): __locationTable, + } + ) + _AttributeMap.update( + {__publisher.name(): __publisher, __publicationTime.name(): __publicationTime, __version.name(): __version} + ) + + _module_typeBindings.mediaTableType = mediaTableType -Namespace.addCategoryObject('typeBinding', 'mediaTableType', mediaTableType) +Namespace.addCategoryObject("typeBinding", "mediaTableType", mediaTableType) # Complex type {urn:vpro:media:2009}programTableType with content type ELEMENT_ONLY -class programTableType (pyxb.binding.basis.complexTypeDefinition): +class programTableType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:2009}programTableType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'programTableType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 81, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "programTableType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 81, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:2009}program uses Python identifier program - __program = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'program'), 'program', '__urnvpromedia2009_programTableType_urnvpromedia2009program', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 25, 2), ) + __program = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "program"), + "program", + "__urnvpromedia2009_programTableType_urnvpromedia2009program", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 25, 2), + ) + + program = property( + __program.value, + __program.set, + None, + "\n This is the most used entity in POMS. It represents e.g. one broadcast program or one web-only clip. It represent a standalone entity which a consumer can view or listen to.\n ", + ) + + _ElementMap.update({__program.name(): __program}) + _AttributeMap.update({}) - - program = property(__program.value, __program.set, None, '\n This is the most used entity in POMS. It represents e.g. one broadcast program or one web-only clip. It represent a standalone entity which a consumer can view or listen to.\n ') - _ElementMap.update({ - __program.name() : __program - }) - _AttributeMap.update({ - - }) _module_typeBindings.programTableType = programTableType -Namespace.addCategoryObject('typeBinding', 'programTableType', programTableType) +Namespace.addCategoryObject("typeBinding", "programTableType", programTableType) # Complex type {urn:vpro:media:2009}portalRestrictionType with content type SIMPLE -class portalRestrictionType (pyxb.binding.basis.complexTypeDefinition): +class portalRestrictionType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:2009}portalRestrictionType with content type SIMPLE""" + _TypeDefinition = pyxb.binding.datatypes.string _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_SIMPLE _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'portalRestrictionType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 330, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "portalRestrictionType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 330, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.string - + # Attribute start uses Python identifier start - __start = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'start'), 'start', '__urnvpromedia2009_portalRestrictionType_start', pyxb.binding.datatypes.dateTime) - __start._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 326, 4) - __start._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 326, 4) - + __start = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "start"), + "start", + "__urnvpromedia2009_portalRestrictionType_start", + pyxb.binding.datatypes.dateTime, + ) + __start._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 326, 4 + ) + __start._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 326, 4) + start = property(__start.value, __start.set, None, None) - # Attribute stop uses Python identifier stop - __stop = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'stop'), 'stop', '__urnvpromedia2009_portalRestrictionType_stop', pyxb.binding.datatypes.dateTime) - __stop._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 327, 4) - __stop._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 327, 4) - + __stop = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "stop"), + "stop", + "__urnvpromedia2009_portalRestrictionType_stop", + pyxb.binding.datatypes.dateTime, + ) + __stop._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 327, 4 + ) + __stop._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 327, 4) + stop = property(__stop.value, __stop.set, None, None) - # Attribute portalId uses Python identifier portalId - __portalId = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'portalId'), 'portalId', '__urnvpromedia2009_portalRestrictionType_portalId', pyxb.binding.datatypes.string) - __portalId._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 333, 8) - __portalId._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 333, 8) - + __portalId = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "portalId"), + "portalId", + "__urnvpromedia2009_portalRestrictionType_portalId", + pyxb.binding.datatypes.string, + ) + __portalId._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 333, 8 + ) + __portalId._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 333, 8) + portalId = property(__portalId.value, __portalId.set, None, None) - _ElementMap.update({ - - }) - _AttributeMap.update({ - __start.name() : __start, - __stop.name() : __stop, - __portalId.name() : __portalId - }) + _ElementMap.update({}) + _AttributeMap.update({__start.name(): __start, __stop.name(): __stop, __portalId.name(): __portalId}) + + _module_typeBindings.portalRestrictionType = portalRestrictionType -Namespace.addCategoryObject('typeBinding', 'portalRestrictionType', portalRestrictionType) +Namespace.addCategoryObject("typeBinding", "portalRestrictionType", portalRestrictionType) # Complex type {urn:vpro:media:2009}tagType with content type SIMPLE -class tagType (pyxb.binding.basis.complexTypeDefinition): +class tagType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:2009}tagType with content type SIMPLE""" + _TypeDefinition = pyxb.binding.datatypes.string _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_SIMPLE _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'tagType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 372, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "tagType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 372, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.string - + # Attribute {http://www.w3.org/XML/1998/namespace}lang uses Python identifier lang - __lang = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(pyxb.namespace.XML, 'lang'), 'lang', '__urnvpromedia2009_tagType_httpwww_w3_orgXML1998namespacelang', pyxb.binding.xml_.STD_ANON_lang) + __lang = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(pyxb.namespace.XML, "lang"), + "lang", + "__urnvpromedia2009_tagType_httpwww_w3_orgXML1998namespacelang", + pyxb.binding.xml_.STD_ANON_lang, + ) __lang._DeclarationLocation = None - __lang._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 375, 8) - + __lang._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 375, 8) + lang = property(__lang.value, __lang.set, None, None) - _ElementMap.update({ - - }) - _AttributeMap.update({ - __lang.name() : __lang - }) + _ElementMap.update({}) + _AttributeMap.update({__lang.name(): __lang}) + + _module_typeBindings.tagType = tagType -Namespace.addCategoryObject('typeBinding', 'tagType', tagType) +Namespace.addCategoryObject("typeBinding", "tagType", tagType) # Complex type {urn:vpro:media:2009}portalsType with content type ELEMENT_ONLY -class portalsType (pyxb.binding.basis.complexTypeDefinition): +class portalsType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:2009}portalsType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'portalsType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 455, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "portalsType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 455, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:2009}portal uses Python identifier portal - __portal = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'portal'), 'portal', '__urnvpromedia2009_portalsType_urnvpromedia2009portal', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 457, 6), ) + __portal = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "portal"), + "portal", + "__urnvpromedia2009_portalsType_urnvpromedia2009portal", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 457, 6), + ) - portal = property(__portal.value, __portal.set, None, None) - _ElementMap.update({ - __portal.name() : __portal - }) - _AttributeMap.update({ - - }) + _ElementMap.update({__portal.name(): __portal}) + _AttributeMap.update({}) + + _module_typeBindings.portalsType = portalsType -Namespace.addCategoryObject('typeBinding', 'portalsType', portalsType) +Namespace.addCategoryObject("typeBinding", "portalsType", portalsType) # Complex type {urn:vpro:media:2009}repeatType with content type SIMPLE -class repeatType (pyxb.binding.basis.complexTypeDefinition): +class repeatType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:2009}repeatType with content type SIMPLE""" + _TypeDefinition = pyxb.binding.datatypes.string _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_SIMPLE _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'repeatType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 461, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "repeatType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 461, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.string - + # Attribute isRerun uses Python identifier isRerun - __isRerun = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'isRerun'), 'isRerun', '__urnvpromedia2009_repeatType_isRerun', pyxb.binding.datatypes.boolean, required=True) - __isRerun._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 464, 8) - __isRerun._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 464, 8) - + __isRerun = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "isRerun"), + "isRerun", + "__urnvpromedia2009_repeatType_isRerun", + pyxb.binding.datatypes.boolean, + required=True, + ) + __isRerun._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 464, 8 + ) + __isRerun._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 464, 8) + isRerun = property(__isRerun.value, __isRerun.set, None, None) - _ElementMap.update({ - - }) - _AttributeMap.update({ - __isRerun.name() : __isRerun - }) + _ElementMap.update({}) + _AttributeMap.update({__isRerun.name(): __isRerun}) + + _module_typeBindings.repeatType = repeatType -Namespace.addCategoryObject('typeBinding', 'repeatType', repeatType) +Namespace.addCategoryObject("typeBinding", "repeatType", repeatType) # Complex type {urn:vpro:media:2009}avAttributesType with content type ELEMENT_ONLY -class avAttributesType (pyxb.binding.basis.complexTypeDefinition): +class avAttributesType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:2009}avAttributesType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'avAttributesType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 469, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "avAttributesType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 469, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:2009}bitrate uses Python identifier bitrate - __bitrate = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'bitrate'), 'bitrate', '__urnvpromedia2009_avAttributesType_urnvpromedia2009bitrate', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 471, 6), ) + __bitrate = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "bitrate"), + "bitrate", + "__urnvpromedia2009_avAttributesType_urnvpromedia2009bitrate", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 471, 6), + ) - bitrate = property(__bitrate.value, __bitrate.set, None, None) - # Element {urn:vpro:media:2009}byteSize uses Python identifier byteSize - __byteSize = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'byteSize'), 'byteSize', '__urnvpromedia2009_avAttributesType_urnvpromedia2009byteSize', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 472, 6), ) + __byteSize = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "byteSize"), + "byteSize", + "__urnvpromedia2009_avAttributesType_urnvpromedia2009byteSize", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 472, 6), + ) - byteSize = property(__byteSize.value, __byteSize.set, None, None) - # Element {urn:vpro:media:2009}avFileFormat uses Python identifier avFileFormat - __avFileFormat = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'avFileFormat'), 'avFileFormat', '__urnvpromedia2009_avAttributesType_urnvpromedia2009avFileFormat', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 473, 6), ) + __avFileFormat = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "avFileFormat"), + "avFileFormat", + "__urnvpromedia2009_avAttributesType_urnvpromedia2009avFileFormat", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 473, 6), + ) - avFileFormat = property(__avFileFormat.value, __avFileFormat.set, None, None) - # Element {urn:vpro:media:2009}videoAttributes uses Python identifier videoAttributes - __videoAttributes = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'videoAttributes'), 'videoAttributes', '__urnvpromedia2009_avAttributesType_urnvpromedia2009videoAttributes', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 474, 6), ) + __videoAttributes = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "videoAttributes"), + "videoAttributes", + "__urnvpromedia2009_avAttributesType_urnvpromedia2009videoAttributes", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 474, 6), + ) - videoAttributes = property(__videoAttributes.value, __videoAttributes.set, None, None) - # Element {urn:vpro:media:2009}audioAttributes uses Python identifier audioAttributes - __audioAttributes = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'audioAttributes'), 'audioAttributes', '__urnvpromedia2009_avAttributesType_urnvpromedia2009audioAttributes', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 475, 6), ) + __audioAttributes = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "audioAttributes"), + "audioAttributes", + "__urnvpromedia2009_avAttributesType_urnvpromedia2009audioAttributes", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 475, 6), + ) - audioAttributes = property(__audioAttributes.value, __audioAttributes.set, None, None) - _ElementMap.update({ - __bitrate.name() : __bitrate, - __byteSize.name() : __byteSize, - __avFileFormat.name() : __avFileFormat, - __videoAttributes.name() : __videoAttributes, - __audioAttributes.name() : __audioAttributes - }) - _AttributeMap.update({ - - }) + _ElementMap.update( + { + __bitrate.name(): __bitrate, + __byteSize.name(): __byteSize, + __avFileFormat.name(): __avFileFormat, + __videoAttributes.name(): __videoAttributes, + __audioAttributes.name(): __audioAttributes, + } + ) + _AttributeMap.update({}) + + _module_typeBindings.avAttributesType = avAttributesType -Namespace.addCategoryObject('typeBinding', 'avAttributesType', avAttributesType) +Namespace.addCategoryObject("typeBinding", "avAttributesType", avAttributesType) # Complex type {urn:vpro:media:2009}videoAttributesType with content type ELEMENT_ONLY -class videoAttributesType (pyxb.binding.basis.complexTypeDefinition): +class videoAttributesType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:2009}videoAttributesType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'videoAttributesType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 501, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "videoAttributesType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 501, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:2009}color uses Python identifier color - __color = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'color'), 'color', '__urnvpromedia2009_videoAttributesType_urnvpromedia2009color', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 503, 6), ) + __color = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "color"), + "color", + "__urnvpromedia2009_videoAttributesType_urnvpromedia2009color", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 503, 6), + ) - color = property(__color.value, __color.set, None, None) - # Element {urn:vpro:media:2009}videoCoding uses Python identifier videoCoding - __videoCoding = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'videoCoding'), 'videoCoding', '__urnvpromedia2009_videoAttributesType_urnvpromedia2009videoCoding', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 504, 6), ) + __videoCoding = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "videoCoding"), + "videoCoding", + "__urnvpromedia2009_videoAttributesType_urnvpromedia2009videoCoding", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 504, 6), + ) - videoCoding = property(__videoCoding.value, __videoCoding.set, None, None) - # Element {urn:vpro:media:2009}aspectRatio uses Python identifier aspectRatio - __aspectRatio = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'aspectRatio'), 'aspectRatio', '__urnvpromedia2009_videoAttributesType_urnvpromedia2009aspectRatio', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 505, 6), ) + __aspectRatio = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "aspectRatio"), + "aspectRatio", + "__urnvpromedia2009_videoAttributesType_urnvpromedia2009aspectRatio", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 505, 6), + ) - aspectRatio = property(__aspectRatio.value, __aspectRatio.set, None, None) - # Attribute height uses Python identifier height - __height = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'height'), 'height', '__urnvpromedia2009_videoAttributesType_height', pyxb.binding.datatypes.short) - __height._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 507, 4) - __height._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 507, 4) - + __height = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "height"), + "height", + "__urnvpromedia2009_videoAttributesType_height", + pyxb.binding.datatypes.short, + ) + __height._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 507, 4 + ) + __height._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 507, 4) + height = property(__height.value, __height.set, None, None) - # Attribute heigth uses Python identifier heigth - __heigth = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'heigth'), 'heigth', '__urnvpromedia2009_videoAttributesType_heigth', pyxb.binding.datatypes.short) - __heigth._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 508, 4) - __heigth._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 508, 4) - - heigth = property(__heigth.value, __heigth.set, None, '\n This obviously is a typo.\n ') + __heigth = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "heigth"), + "heigth", + "__urnvpromedia2009_videoAttributesType_heigth", + pyxb.binding.datatypes.short, + ) + __heigth._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 508, 4 + ) + __heigth._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 508, 4) + + heigth = property(__heigth.value, __heigth.set, None, "\n This obviously is a typo.\n ") - # Attribute width uses Python identifier width - __width = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'width'), 'width', '__urnvpromedia2009_videoAttributesType_width', pyxb.binding.datatypes.short) - __width._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 515, 4) - __width._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 515, 4) - + __width = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "width"), + "width", + "__urnvpromedia2009_videoAttributesType_width", + pyxb.binding.datatypes.short, + ) + __width._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 515, 4 + ) + __width._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 515, 4) + width = property(__width.value, __width.set, None, None) - _ElementMap.update({ - __color.name() : __color, - __videoCoding.name() : __videoCoding, - __aspectRatio.name() : __aspectRatio - }) - _AttributeMap.update({ - __height.name() : __height, - __heigth.name() : __heigth, - __width.name() : __width - }) + _ElementMap.update( + {__color.name(): __color, __videoCoding.name(): __videoCoding, __aspectRatio.name(): __aspectRatio} + ) + _AttributeMap.update({__height.name(): __height, __heigth.name(): __heigth, __width.name(): __width}) + + _module_typeBindings.videoAttributesType = videoAttributesType -Namespace.addCategoryObject('typeBinding', 'videoAttributesType', videoAttributesType) +Namespace.addCategoryObject("typeBinding", "videoAttributesType", videoAttributesType) # Complex type {urn:vpro:media:2009}audioAttributesType with content type ELEMENT_ONLY -class audioAttributesType (pyxb.binding.basis.complexTypeDefinition): +class audioAttributesType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:2009}audioAttributesType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'audioAttributesType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 534, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "audioAttributesType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 534, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:2009}numberOfChannels uses Python identifier numberOfChannels - __numberOfChannels = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'numberOfChannels'), 'numberOfChannels', '__urnvpromedia2009_audioAttributesType_urnvpromedia2009numberOfChannels', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 536, 6), ) + __numberOfChannels = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "numberOfChannels"), + "numberOfChannels", + "__urnvpromedia2009_audioAttributesType_urnvpromedia2009numberOfChannels", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 536, 6), + ) - numberOfChannels = property(__numberOfChannels.value, __numberOfChannels.set, None, None) - # Element {urn:vpro:media:2009}audioCoding uses Python identifier audioCoding - __audioCoding = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'audioCoding'), 'audioCoding', '__urnvpromedia2009_audioAttributesType_urnvpromedia2009audioCoding', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 537, 6), ) + __audioCoding = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "audioCoding"), + "audioCoding", + "__urnvpromedia2009_audioAttributesType_urnvpromedia2009audioCoding", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 537, 6), + ) - audioCoding = property(__audioCoding.value, __audioCoding.set, None, None) - # Element {urn:vpro:media:2009}language uses Python identifier language - __language = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'language'), 'language', '__urnvpromedia2009_audioAttributesType_urnvpromedia2009language', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 538, 6), ) + __language = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "language"), + "language", + "__urnvpromedia2009_audioAttributesType_urnvpromedia2009language", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 538, 6), + ) - language = property(__language.value, __language.set, None, None) - _ElementMap.update({ - __numberOfChannels.name() : __numberOfChannels, - __audioCoding.name() : __audioCoding, - __language.name() : __language - }) - _AttributeMap.update({ - - }) + _ElementMap.update( + { + __numberOfChannels.name(): __numberOfChannels, + __audioCoding.name(): __audioCoding, + __language.name(): __language, + } + ) + _AttributeMap.update({}) + + _module_typeBindings.audioAttributesType = audioAttributesType -Namespace.addCategoryObject('typeBinding', 'audioAttributesType', audioAttributesType) +Namespace.addCategoryObject("typeBinding", "audioAttributesType", audioAttributesType) # Complex type {urn:vpro:media:2009}creditsType with content type ELEMENT_ONLY -class creditsType (pyxb.binding.basis.complexTypeDefinition): +class creditsType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:2009}creditsType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'creditsType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 542, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "creditsType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 542, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:2009}person uses Python identifier person - __person = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'person'), 'person', '__urnvpromedia2009_creditsType_urnvpromedia2009person', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 545, 8), ) + __person = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "person"), + "person", + "__urnvpromedia2009_creditsType_urnvpromedia2009person", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 545, 8), + ) - person = property(__person.value, __person.set, None, None) - # Element {urn:vpro:media:2009}name uses Python identifier name - __name = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'name'), 'name', '__urnvpromedia2009_creditsType_urnvpromedia2009name', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 546, 8), ) + __name = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "name"), + "name", + "__urnvpromedia2009_creditsType_urnvpromedia2009name", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 546, 8), + ) - name = property(__name.value, __name.set, None, None) - _ElementMap.update({ - __person.name() : __person, - __name.name() : __name - }) - _AttributeMap.update({ - - }) + _ElementMap.update({__person.name(): __person, __name.name(): __name}) + _AttributeMap.update({}) + + _module_typeBindings.creditsType = creditsType -Namespace.addCategoryObject('typeBinding', 'creditsType', creditsType) +Namespace.addCategoryObject("typeBinding", "creditsType", creditsType) # Complex type {urn:vpro:media:2009}segmentsType with content type ELEMENT_ONLY -class segmentsType (pyxb.binding.basis.complexTypeDefinition): +class segmentsType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:2009}segmentsType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'segmentsType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 623, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "segmentsType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 623, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:2009}segment uses Python identifier segment - __segment = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'segment'), 'segment', '__urnvpromedia2009_segmentsType_urnvpromedia2009segment', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 625, 6), ) + __segment = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "segment"), + "segment", + "__urnvpromedia2009_segmentsType_urnvpromedia2009segment", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 625, 6), + ) - segment = property(__segment.value, __segment.set, None, None) - _ElementMap.update({ - __segment.name() : __segment - }) - _AttributeMap.update({ - - }) + _ElementMap.update({__segment.name(): __segment}) + _AttributeMap.update({}) + + _module_typeBindings.segmentsType = segmentsType -Namespace.addCategoryObject('typeBinding', 'segmentsType', segmentsType) +Namespace.addCategoryObject("typeBinding", "segmentsType", segmentsType) # Complex type {urn:vpro:media:2009}imagesType with content type ELEMENT_ONLY -class imagesType (pyxb.binding.basis.complexTypeDefinition): +class imagesType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:2009}imagesType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'imagesType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 655, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "imagesType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 655, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:shared:2009}image uses Python identifier image - __image = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(_Namespace_shared, 'image'), 'image', '__urnvpromedia2009_imagesType_urnvproshared2009image', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 8, 2), ) + __image = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(_Namespace_shared, "image"), + "image", + "__urnvpromedia2009_imagesType_urnvproshared2009image", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 8, 2), + ) - image = property(__image.value, __image.set, None, None) - _ElementMap.update({ - __image.name() : __image - }) - _AttributeMap.update({ - - }) + _ElementMap.update({__image.name(): __image}) + _AttributeMap.update({}) + + _module_typeBindings.imagesType = imagesType -Namespace.addCategoryObject('typeBinding', 'imagesType', imagesType) +Namespace.addCategoryObject("typeBinding", "imagesType", imagesType) # Complex type {urn:vpro:media:2009}groupTableType with content type ELEMENT_ONLY -class groupTableType (pyxb.binding.basis.complexTypeDefinition): +class groupTableType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:2009}groupTableType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'groupTableType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 674, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "groupTableType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 674, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:2009}group uses Python identifier group - __group = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'group'), 'group', '__urnvpromedia2009_groupTableType_urnvpromedia2009group', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 32, 2), ) + __group = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "group"), + "group", + "__urnvpromedia2009_groupTableType_urnvpromedia2009group", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 32, 2), + ) + + group = property( + __group.value, + __group.set, + None, + "\n A groups collects a number of programs and/or other groups. Examples: season, series, playlist and album.\n ", + ) + + _ElementMap.update({__group.name(): __group}) + _AttributeMap.update({}) - - group = property(__group.value, __group.set, None, '\n A groups collects a number of programs and/or other groups. Examples: season, series, playlist and album.\n ') - _ElementMap.update({ - __group.name() : __group - }) - _AttributeMap.update({ - - }) _module_typeBindings.groupTableType = groupTableType -Namespace.addCategoryObject('typeBinding', 'groupTableType', groupTableType) +Namespace.addCategoryObject("typeBinding", "groupTableType", groupTableType) # Complex type {urn:vpro:media:2009}locationTableType with content type ELEMENT_ONLY -class locationTableType (pyxb.binding.basis.complexTypeDefinition): +class locationTableType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:2009}locationTableType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'locationTableType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 704, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "locationTableType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 704, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:2009}location uses Python identifier location - __location = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'location'), 'location', '__urnvpromedia2009_locationTableType_urnvpromedia2009location', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 706, 6), ) + __location = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "location"), + "location", + "__urnvpromedia2009_locationTableType_urnvpromedia2009location", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 706, 6), + ) - location = property(__location.value, __location.set, None, None) - # Element {urn:vpro:media:2009}scheduleEvent uses Python identifier scheduleEvent - __scheduleEvent = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'scheduleEvent'), 'scheduleEvent', '__urnvpromedia2009_locationTableType_urnvpromedia2009scheduleEvent', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 707, 6), ) + __scheduleEvent = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "scheduleEvent"), + "scheduleEvent", + "__urnvpromedia2009_locationTableType_urnvpromedia2009scheduleEvent", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 707, 6), + ) - scheduleEvent = property(__scheduleEvent.value, __scheduleEvent.set, None, None) - _ElementMap.update({ - __location.name() : __location, - __scheduleEvent.name() : __scheduleEvent - }) - _AttributeMap.update({ - - }) + _ElementMap.update({__location.name(): __location, __scheduleEvent.name(): __scheduleEvent}) + _AttributeMap.update({}) + + _module_typeBindings.locationTableType = locationTableType -Namespace.addCategoryObject('typeBinding', 'locationTableType', locationTableType) +Namespace.addCategoryObject("typeBinding", "locationTableType", locationTableType) # Complex type {urn:vpro:media:2009}scheduleEventsType with content type ELEMENT_ONLY -class scheduleEventsType (pyxb.binding.basis.complexTypeDefinition): +class scheduleEventsType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:2009}scheduleEventsType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'scheduleEventsType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 724, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "scheduleEventsType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 724, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:2009}scheduleEvent uses Python identifier scheduleEvent - __scheduleEvent = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'scheduleEvent'), 'scheduleEvent', '__urnvpromedia2009_scheduleEventsType_urnvpromedia2009scheduleEvent', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 726, 6), ) + __scheduleEvent = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "scheduleEvent"), + "scheduleEvent", + "__urnvpromedia2009_scheduleEventsType_urnvpromedia2009scheduleEvent", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 726, 6), + ) - scheduleEvent = property(__scheduleEvent.value, __scheduleEvent.set, None, None) - _ElementMap.update({ - __scheduleEvent.name() : __scheduleEvent - }) - _AttributeMap.update({ - - }) + _ElementMap.update({__scheduleEvent.name(): __scheduleEvent}) + _AttributeMap.update({}) + + _module_typeBindings.scheduleEventsType = scheduleEventsType -Namespace.addCategoryObject('typeBinding', 'scheduleEventsType', scheduleEventsType) +Namespace.addCategoryObject("typeBinding", "scheduleEventsType", scheduleEventsType) # Complex type {urn:vpro:media:2009}locationsType with content type ELEMENT_ONLY -class locationsType (pyxb.binding.basis.complexTypeDefinition): +class locationsType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:2009}locationsType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'locationsType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 815, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "locationsType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 815, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:2009}location uses Python identifier location - __location = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'location'), 'location', '__urnvpromedia2009_locationsType_urnvpromedia2009location', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 817, 6), ) + __location = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "location"), + "location", + "__urnvpromedia2009_locationsType_urnvpromedia2009location", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 817, 6), + ) - location = property(__location.value, __location.set, None, None) - _ElementMap.update({ - __location.name() : __location - }) - _AttributeMap.update({ - - }) + _ElementMap.update({__location.name(): __location}) + _AttributeMap.update({}) + + _module_typeBindings.locationsType = locationsType -Namespace.addCategoryObject('typeBinding', 'locationsType', locationsType) +Namespace.addCategoryObject("typeBinding", "locationsType", locationsType) # Complex type {urn:vpro:media:2009}availableSubtitleType with content type EMPTY -class availableSubtitleType (pyxb.binding.basis.complexTypeDefinition): +class availableSubtitleType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:2009}availableSubtitleType with content type EMPTY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_EMPTY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'availableSubtitleType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 843, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "availableSubtitleType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 843, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Attribute language uses Python identifier language - __language = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'language'), 'language', '__urnvpromedia2009_availableSubtitleType_language', pyxb.binding.datatypes.string) - __language._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 845, 4) - __language._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 845, 4) - + __language = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "language"), + "language", + "__urnvpromedia2009_availableSubtitleType_language", + pyxb.binding.datatypes.string, + ) + __language._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 845, 4 + ) + __language._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 845, 4) + language = property(__language.value, __language.set, None, None) - # Attribute type uses Python identifier type - __type = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'type'), 'type', '__urnvpromedia2009_availableSubtitleType_type', pyxb.binding.datatypes.string) - __type._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 846, 4) - __type._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 846, 4) - + __type = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "type"), + "type", + "__urnvpromedia2009_availableSubtitleType_type", + pyxb.binding.datatypes.string, + ) + __type._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 846, 4 + ) + __type._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 846, 4) + type = property(__type.value, __type.set, None, None) - _ElementMap.update({ - - }) - _AttributeMap.update({ - __language.name() : __language, - __type.name() : __type - }) + _ElementMap.update({}) + _AttributeMap.update({__language.name(): __language, __type.name(): __type}) + + _module_typeBindings.availableSubtitleType = availableSubtitleType -Namespace.addCategoryObject('typeBinding', 'availableSubtitleType', availableSubtitleType) +Namespace.addCategoryObject("typeBinding", "availableSubtitleType", availableSubtitleType) # Complex type {urn:vpro:media:2009}baseMediaType with content type ELEMENT_ONLY -class baseMediaType (pyxb.binding.basis.complexTypeDefinition): +class baseMediaType(pyxb.binding.basis.complexTypeDefinition): + """ + This is the abstract base entity for programs, groups and segments. Actually these objects are very similar and share most properties. """ - This is the abstract base entity for programs, groups and segments. Actually these objects are very similar and share most properties. - """ + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = True - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'baseMediaType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 218, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "baseMediaType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 218, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - - # Element {urn:vpro:media:2009}crid uses Python identifier crid - __crid = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'crid'), 'crid', '__urnvpromedia2009_baseMediaType_urnvpromedia2009crid', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 225, 6), ) - - crid = property(__crid.value, __crid.set, None, '\n A crid (content reference identifier) is a reference to an entity in another system. E.g. a crid like\n crid://broadcast.radiobox2/335793 refers to a broadcast with id 335793 in Radiobox. A crid must be a valid\n URI starting with "crid://". Crids must be unique, but they can be made up freely. It is a good idea to use\n a logical structure which can easily be associated with another system. Any POMS object can have zero or\n more crids. They can refer to different systems, but a POMS object could also actually represent more than\n one entity in a remote system.\n ') + # Element {urn:vpro:media:2009}crid uses Python identifier crid + __crid = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "crid"), + "crid", + "__urnvpromedia2009_baseMediaType_urnvpromedia2009crid", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 225, 6), + ) + + crid = property( + __crid.value, + __crid.set, + None, + '\n A crid (content reference identifier) is a reference to an entity in another system. E.g. a crid like\n crid://broadcast.radiobox2/335793 refers to a broadcast with id 335793 in Radiobox. A crid must be a valid\n URI starting with "crid://". Crids must be unique, but they can be made up freely. It is a good idea to use\n a logical structure which can easily be associated with another system. Any POMS object can have zero or\n more crids. They can refer to different systems, but a POMS object could also actually represent more than\n one entity in a remote system.\n ', + ) - # Element {urn:vpro:media:2009}broadcaster uses Python identifier broadcaster - __broadcaster = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'broadcaster'), 'broadcaster', '__urnvpromedia2009_baseMediaType_urnvpromedia2009broadcaster', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 237, 6), ) - - - broadcaster = property(__broadcaster.value, __broadcaster.set, None, '\n One or more broadcasters can be the owner of a POMS media object. This information is meta information about the object, but it is also used\n for assigning write access to the object in the POMS backend to employees of these given broadcasting companies.\n ') + __broadcaster = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "broadcaster"), + "broadcaster", + "__urnvpromedia2009_baseMediaType_urnvpromedia2009broadcaster", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 237, 6), + ) + + broadcaster = property( + __broadcaster.value, + __broadcaster.set, + None, + "\n One or more broadcasters can be the owner of a POMS media object. This information is meta information about the object, but it is also used\n for assigning write access to the object in the POMS backend to employees of these given broadcasting companies.\n ", + ) - # Element {urn:vpro:media:2009}portal uses Python identifier portal - __portal = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'portal'), 'portal', '__urnvpromedia2009_baseMediaType_urnvpromedia2009portal', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 245, 6), ) + __portal = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "portal"), + "portal", + "__urnvpromedia2009_baseMediaType_urnvpromedia2009portal", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 245, 6), + ) + + portal = property( + __portal.value, + __portal.set, + None, + "\n Optionally 'portals' can be assigned to a media object. Portals are also 'owners', and employees can also work for a certain portal.\n This is because some portal are shared by several broadcasting companies.\n ", + ) - - portal = property(__portal.value, __portal.set, None, "\n Optionally 'portals' can be assigned to a media object. Portals are also 'owners', and employees can also work for a certain portal.\n This is because some portal are shared by several broadcasting companies.\n ") - - # Element {urn:vpro:media:2009}exclusive uses Python identifier exclusive - __exclusive = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'exclusive'), 'exclusive', '__urnvpromedia2009_baseMediaType_urnvpromedia2009exclusive', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 253, 6), ) - - - exclusive = property(__exclusive.value, __exclusive.set, None, "\n Besides having portals, which mainly indicates where the object originates, a media object can also be assigned 'portal restrictions'.\n If a media object has any portal restrictions the media object may only be shown on these portals.\n ") + __exclusive = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "exclusive"), + "exclusive", + "__urnvpromedia2009_baseMediaType_urnvpromedia2009exclusive", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 253, 6), + ) + + exclusive = property( + __exclusive.value, + __exclusive.set, + None, + "\n Besides having portals, which mainly indicates where the object originates, a media object can also be assigned 'portal restrictions'.\n If a media object has any portal restrictions the media object may only be shown on these portals.\n ", + ) - # Element {urn:vpro:media:2009}region uses Python identifier region - __region = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'region'), 'region', '__urnvpromedia2009_baseMediaType_urnvpromedia2009region', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 261, 6), ) - - - region = property(__region.value, __region.set, None, "\n Media with a geo restriction can only be played in the indicated region (NL, BENELUX, WORLD). This\n restriction doesn't apply to the metadata of the media object. It only applies to the actual playable content.\n ") + __region = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "region"), + "region", + "__urnvpromedia2009_baseMediaType_urnvpromedia2009region", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 261, 6), + ) + + region = property( + __region.value, + __region.set, + None, + "\n Media with a geo restriction can only be played in the indicated region (NL, BENELUX, WORLD). This\n restriction doesn't apply to the metadata of the media object. It only applies to the actual playable content.\n ", + ) - # Element {urn:vpro:media:2009}title uses Python identifier title - __title = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'title'), 'title', '__urnvpromedia2009_baseMediaType_urnvpromedia2009title', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 269, 6), ) + __title = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "title"), + "title", + "__urnvpromedia2009_baseMediaType_urnvpromedia2009title", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 269, 6), + ) + + title = property( + __title.value, + __title.set, + None, + "\n A media object has one or more titles. All titles have a type (MAIN, SUB etc.) and an owner (BROADCASTER, MIS etc.).\n The combination of type and owner is always unique for a particular media object, so a media object cannot\n have multiple titles of the same type and owner. Titles are sorted in order of the textualTypeEnum and the in order\n of ownerTypeEnum when published, so the first title in a published document will be a title owned by BROADCASTER of type\n MAIN, if that title exists.\n ", + ) - - title = property(__title.value, __title.set, None, '\n A media object has one or more titles. All titles have a type (MAIN, SUB etc.) and an owner (BROADCASTER, MIS etc.).\n The combination of type and owner is always unique for a particular media object, so a media object cannot\n have multiple titles of the same type and owner. Titles are sorted in order of the textualTypeEnum and the in order\n of ownerTypeEnum when published, so the first title in a published document will be a title owned by BROADCASTER of type\n MAIN, if that title exists.\n ') - - # Element {urn:vpro:media:2009}description uses Python identifier description - __description = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'description'), 'description', '__urnvpromedia2009_baseMediaType_urnvpromedia2009description', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 280, 6), ) - - - description = property(__description.value, __description.set, None, '\n Optional descriptions for the media object. Descriptions have an owner and a type, and are ordered just like titles.\n ') + __description = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "description"), + "description", + "__urnvpromedia2009_baseMediaType_urnvpromedia2009description", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 280, 6), + ) + + description = property( + __description.value, + __description.set, + None, + "\n Optional descriptions for the media object. Descriptions have an owner and a type, and are ordered just like titles.\n ", + ) - # Element {urn:vpro:media:2009}genre uses Python identifier genre - __genre = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'genre'), 'genre', '__urnvpromedia2009_baseMediaType_urnvpromedia2009genre', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 287, 6), ) + __genre = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "genre"), + "genre", + "__urnvpromedia2009_baseMediaType_urnvpromedia2009genre", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 287, 6), + ) - genre = property(__genre.value, __genre.set, None, None) - # Element {urn:vpro:media:2009}tag uses Python identifier tag - __tag = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'tag'), 'tag', '__urnvpromedia2009_baseMediaType_urnvpromedia2009tag', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 288, 6), ) + __tag = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "tag"), + "tag", + "__urnvpromedia2009_baseMediaType_urnvpromedia2009tag", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 288, 6), + ) - tag = property(__tag.value, __tag.set, None, None) - # Element {urn:vpro:media:2009}intentions uses Python identifier intentions - __intentions = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'intentions'), 'intentions', '__urnvpromedia2009_baseMediaType_urnvpromedia2009intentions', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 289, 6), ) + __intentions = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "intentions"), + "intentions", + "__urnvpromedia2009_baseMediaType_urnvpromedia2009intentions", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 289, 6), + ) - intentions = property(__intentions.value, __intentions.set, None, None) - # Element {urn:vpro:media:2009}targetGroups uses Python identifier targetGroups - __targetGroups = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'targetGroups'), 'targetGroups', '__urnvpromedia2009_baseMediaType_urnvpromedia2009targetGroups', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 290, 6), ) + __targetGroups = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "targetGroups"), + "targetGroups", + "__urnvpromedia2009_baseMediaType_urnvpromedia2009targetGroups", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 290, 6), + ) - targetGroups = property(__targetGroups.value, __targetGroups.set, None, None) - # Element {urn:vpro:media:2009}geoLocations uses Python identifier geoLocations - __geoLocations = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'geoLocations'), 'geoLocations', '__urnvpromedia2009_baseMediaType_urnvpromedia2009geoLocations', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 291, 6), ) + __geoLocations = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "geoLocations"), + "geoLocations", + "__urnvpromedia2009_baseMediaType_urnvpromedia2009geoLocations", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 291, 6), + ) - geoLocations = property(__geoLocations.value, __geoLocations.set, None, None) - # Element {urn:vpro:media:2009}topics uses Python identifier topics - __topics = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'topics'), 'topics', '__urnvpromedia2009_baseMediaType_urnvpromedia2009topics', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 292, 6), ) + __topics = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "topics"), + "topics", + "__urnvpromedia2009_baseMediaType_urnvpromedia2009topics", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 292, 6), + ) - topics = property(__topics.value, __topics.set, None, None) - # Element {urn:vpro:media:2009}source uses Python identifier source - __source = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'source'), 'source', '__urnvpromedia2009_baseMediaType_urnvpromedia2009source', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 293, 6), ) + __source = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "source"), + "source", + "__urnvpromedia2009_baseMediaType_urnvpromedia2009source", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 293, 6), + ) - source = property(__source.value, __source.set, None, None) - # Element {urn:vpro:media:2009}country uses Python identifier country - __country = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'country'), 'country', '__urnvpromedia2009_baseMediaType_urnvpromedia2009country', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 294, 6), ) + __country = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "country"), + "country", + "__urnvpromedia2009_baseMediaType_urnvpromedia2009country", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 294, 6), + ) - country = property(__country.value, __country.set, None, None) - # Element {urn:vpro:media:2009}language uses Python identifier language - __language = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'language'), 'language', '__urnvpromedia2009_baseMediaType_urnvpromedia2009language', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 295, 6), ) + __language = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "language"), + "language", + "__urnvpromedia2009_baseMediaType_urnvpromedia2009language", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 295, 6), + ) - language = property(__language.value, __language.set, None, None) - # Element {urn:vpro:media:2009}isDubbed uses Python identifier isDubbed - __isDubbed = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'isDubbed'), 'isDubbed', '__urnvpromedia2009_baseMediaType_urnvpromedia2009isDubbed', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 296, 6), ) + __isDubbed = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "isDubbed"), + "isDubbed", + "__urnvpromedia2009_baseMediaType_urnvpromedia2009isDubbed", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 296, 6), + ) - isDubbed = property(__isDubbed.value, __isDubbed.set, None, None) - # Element {urn:vpro:media:2009}availableSubtitles uses Python identifier availableSubtitles - __availableSubtitles = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'availableSubtitles'), 'availableSubtitles', '__urnvpromedia2009_baseMediaType_urnvpromedia2009availableSubtitles', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 297, 6), ) + __availableSubtitles = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "availableSubtitles"), + "availableSubtitles", + "__urnvpromedia2009_baseMediaType_urnvpromedia2009availableSubtitles", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 297, 6), + ) - availableSubtitles = property(__availableSubtitles.value, __availableSubtitles.set, None, None) - # Element {urn:vpro:media:2009}avAttributes uses Python identifier avAttributes - __avAttributes = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'avAttributes'), 'avAttributes', '__urnvpromedia2009_baseMediaType_urnvpromedia2009avAttributes', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 298, 6), ) + __avAttributes = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "avAttributes"), + "avAttributes", + "__urnvpromedia2009_baseMediaType_urnvpromedia2009avAttributes", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 298, 6), + ) - avAttributes = property(__avAttributes.value, __avAttributes.set, None, None) - # Element {urn:vpro:media:2009}releaseYear uses Python identifier releaseYear - __releaseYear = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'releaseYear'), 'releaseYear', '__urnvpromedia2009_baseMediaType_urnvpromedia2009releaseYear', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 299, 6), ) + __releaseYear = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "releaseYear"), + "releaseYear", + "__urnvpromedia2009_baseMediaType_urnvpromedia2009releaseYear", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 299, 6), + ) - releaseYear = property(__releaseYear.value, __releaseYear.set, None, None) - # Element {urn:vpro:media:2009}duration uses Python identifier duration - __duration = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'duration'), 'duration', '__urnvpromedia2009_baseMediaType_urnvpromedia2009duration', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 300, 6), ) + __duration = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "duration"), + "duration", + "__urnvpromedia2009_baseMediaType_urnvpromedia2009duration", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 300, 6), + ) - duration = property(__duration.value, __duration.set, None, None) - # Element {urn:vpro:media:2009}credits uses Python identifier credits - __credits = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'credits'), 'credits', '__urnvpromedia2009_baseMediaType_urnvpromedia2009credits', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 301, 6), ) + __credits = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "credits"), + "credits", + "__urnvpromedia2009_baseMediaType_urnvpromedia2009credits", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 301, 6), + ) - credits = property(__credits.value, __credits.set, None, None) - # Element {urn:vpro:media:2009}award uses Python identifier award - __award = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'award'), 'award', '__urnvpromedia2009_baseMediaType_urnvpromedia2009award', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 302, 6), ) + __award = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "award"), + "award", + "__urnvpromedia2009_baseMediaType_urnvpromedia2009award", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 302, 6), + ) - award = property(__award.value, __award.set, None, None) - # Element {urn:vpro:media:2009}descendantOf uses Python identifier descendantOf - __descendantOf = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'descendantOf'), 'descendantOf', '__urnvpromedia2009_baseMediaType_urnvpromedia2009descendantOf', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 303, 6), ) + __descendantOf = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "descendantOf"), + "descendantOf", + "__urnvpromedia2009_baseMediaType_urnvpromedia2009descendantOf", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 303, 6), + ) - descendantOf = property(__descendantOf.value, __descendantOf.set, None, None) - # Element {urn:vpro:media:2009}memberOf uses Python identifier memberOf - __memberOf = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'memberOf'), 'memberOf', '__urnvpromedia2009_baseMediaType_urnvpromedia2009memberOf', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 304, 6), ) + __memberOf = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "memberOf"), + "memberOf", + "__urnvpromedia2009_baseMediaType_urnvpromedia2009memberOf", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 304, 6), + ) - memberOf = property(__memberOf.value, __memberOf.set, None, None) - # Element {urn:vpro:media:2009}ageRating uses Python identifier ageRating - __ageRating = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'ageRating'), 'ageRating', '__urnvpromedia2009_baseMediaType_urnvpromedia2009ageRating', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 305, 6), ) + __ageRating = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "ageRating"), + "ageRating", + "__urnvpromedia2009_baseMediaType_urnvpromedia2009ageRating", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 305, 6), + ) - ageRating = property(__ageRating.value, __ageRating.set, None, None) - # Element {urn:vpro:media:2009}contentRating uses Python identifier contentRating - __contentRating = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'contentRating'), 'contentRating', '__urnvpromedia2009_baseMediaType_urnvpromedia2009contentRating', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 306, 6), ) + __contentRating = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "contentRating"), + "contentRating", + "__urnvpromedia2009_baseMediaType_urnvpromedia2009contentRating", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 306, 6), + ) - contentRating = property(__contentRating.value, __contentRating.set, None, None) - # Element {urn:vpro:media:2009}email uses Python identifier email - __email = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'email'), 'email', '__urnvpromedia2009_baseMediaType_urnvpromedia2009email', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 307, 6), ) + __email = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "email"), + "email", + "__urnvpromedia2009_baseMediaType_urnvpromedia2009email", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 307, 6), + ) - email = property(__email.value, __email.set, None, None) - # Element {urn:vpro:media:2009}website uses Python identifier website - __website = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'website'), 'website', '__urnvpromedia2009_baseMediaType_urnvpromedia2009website', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 308, 6), ) + __website = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "website"), + "website", + "__urnvpromedia2009_baseMediaType_urnvpromedia2009website", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 308, 6), + ) - website = property(__website.value, __website.set, None, None) - # Element {urn:vpro:media:2009}twitter uses Python identifier twitter - __twitter = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'twitter'), 'twitter', '__urnvpromedia2009_baseMediaType_urnvpromedia2009twitter', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 309, 6), ) + __twitter = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "twitter"), + "twitter", + "__urnvpromedia2009_baseMediaType_urnvpromedia2009twitter", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 309, 6), + ) - twitter = property(__twitter.value, __twitter.set, None, None) - # Element {urn:vpro:media:2009}teletext uses Python identifier teletext - __teletext = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'teletext'), 'teletext', '__urnvpromedia2009_baseMediaType_urnvpromedia2009teletext', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 310, 6), ) + __teletext = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "teletext"), + "teletext", + "__urnvpromedia2009_baseMediaType_urnvpromedia2009teletext", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 310, 6), + ) - teletext = property(__teletext.value, __teletext.set, None, None) - # Element {urn:vpro:media:2009}prediction uses Python identifier prediction - __prediction = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'prediction'), 'prediction', '__urnvpromedia2009_baseMediaType_urnvpromedia2009prediction', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 311, 6), ) + __prediction = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "prediction"), + "prediction", + "__urnvpromedia2009_baseMediaType_urnvpromedia2009prediction", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 311, 6), + ) - prediction = property(__prediction.value, __prediction.set, None, None) - # Element {urn:vpro:media:2009}locations uses Python identifier locations - __locations = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'locations'), 'locations', '__urnvpromedia2009_baseMediaType_urnvpromedia2009locations', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 312, 6), ) + __locations = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "locations"), + "locations", + "__urnvpromedia2009_baseMediaType_urnvpromedia2009locations", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 312, 6), + ) - locations = property(__locations.value, __locations.set, None, None) - # Element {urn:vpro:media:2009}relation uses Python identifier relation - __relation = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'relation'), 'relation', '__urnvpromedia2009_baseMediaType_urnvpromedia2009relation', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 313, 6), ) + __relation = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "relation"), + "relation", + "__urnvpromedia2009_baseMediaType_urnvpromedia2009relation", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 313, 6), + ) - relation = property(__relation.value, __relation.set, None, None) - # Element {urn:vpro:media:2009}images uses Python identifier images - __images = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'images'), 'images', '__urnvpromedia2009_baseMediaType_urnvpromedia2009images', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 314, 6), ) + __images = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "images"), + "images", + "__urnvpromedia2009_baseMediaType_urnvpromedia2009images", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 314, 6), + ) - images = property(__images.value, __images.set, None, None) - # Attribute mid uses Python identifier mid - __mid = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'mid'), 'mid', '__urnvpromedia2009_baseMediaType_mid', _module_typeBindings.midType) - __mid._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 316, 4) - __mid._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 316, 4) - + __mid = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "mid"), + "mid", + "__urnvpromedia2009_baseMediaType_mid", + _module_typeBindings.midType, + ) + __mid._DeclarationLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 316, 4) + __mid._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 316, 4) + mid = property(__mid.value, __mid.set, None, None) - # Attribute avType uses Python identifier avType - __avType = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'avType'), 'avType', '__urnvpromedia2009_baseMediaType_avType', _module_typeBindings.avTypeEnum, required=True) - __avType._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 317, 4) - __avType._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 317, 4) - + __avType = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "avType"), + "avType", + "__urnvpromedia2009_baseMediaType_avType", + _module_typeBindings.avTypeEnum, + required=True, + ) + __avType._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 317, 4 + ) + __avType._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 317, 4) + avType = property(__avType.value, __avType.set, None, None) - # Attribute sortDate uses Python identifier sortDate - __sortDate = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'sortDate'), 'sortDate', '__urnvpromedia2009_baseMediaType_sortDate', pyxb.binding.datatypes.dateTime) - __sortDate._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 318, 4) - __sortDate._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 318, 4) - + __sortDate = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "sortDate"), + "sortDate", + "__urnvpromedia2009_baseMediaType_sortDate", + pyxb.binding.datatypes.dateTime, + ) + __sortDate._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 318, 4 + ) + __sortDate._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 318, 4) + sortDate = property(__sortDate.value, __sortDate.set, None, None) - # Attribute embeddable uses Python identifier embeddable - __embeddable = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'embeddable'), 'embeddable', '__urnvpromedia2009_baseMediaType_embeddable', pyxb.binding.datatypes.boolean, unicode_default='true') - __embeddable._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 319, 4) - __embeddable._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 319, 4) - + __embeddable = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "embeddable"), + "embeddable", + "__urnvpromedia2009_baseMediaType_embeddable", + pyxb.binding.datatypes.boolean, + unicode_default="true", + ) + __embeddable._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 319, 4 + ) + __embeddable._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 319, 4) + embeddable = property(__embeddable.value, __embeddable.set, None, None) - # Attribute hasSubtitles uses Python identifier hasSubtitles - __hasSubtitles = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'hasSubtitles'), 'hasSubtitles', '__urnvpromedia2009_baseMediaType_hasSubtitles', pyxb.binding.datatypes.boolean, unicode_default='false') - __hasSubtitles._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 320, 4) - __hasSubtitles._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 320, 4) - + __hasSubtitles = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "hasSubtitles"), + "hasSubtitles", + "__urnvpromedia2009_baseMediaType_hasSubtitles", + pyxb.binding.datatypes.boolean, + unicode_default="false", + ) + __hasSubtitles._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 320, 4 + ) + __hasSubtitles._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 320, 4 + ) + hasSubtitles = property(__hasSubtitles.value, __hasSubtitles.set, None, None) - # Attribute mergedTo uses Python identifier mergedTo - __mergedTo = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'mergedTo'), 'mergedTo', '__urnvpromedia2009_baseMediaType_mergedTo', _module_typeBindings.midType) - __mergedTo._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 322, 4) - __mergedTo._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 322, 4) - + __mergedTo = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "mergedTo"), + "mergedTo", + "__urnvpromedia2009_baseMediaType_mergedTo", + _module_typeBindings.midType, + ) + __mergedTo._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 322, 4 + ) + __mergedTo._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 322, 4) + mergedTo = property(__mergedTo.value, __mergedTo.set, None, None) - # Attribute urn uses Python identifier urn - __urn = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'urn'), 'urn', '__urnvpromedia2009_baseMediaType_urn', pyxb.binding.datatypes.anyURI) - __urn._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 11, 4) - __urn._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 11, 4) - + __urn = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "urn"), + "urn", + "__urnvpromedia2009_baseMediaType_urn", + pyxb.binding.datatypes.anyURI, + ) + __urn._DeclarationLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 11, 4) + __urn._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 11, 4) + urn = property(__urn.value, __urn.set, None, None) - # Attribute publishStart uses Python identifier publishStart - __publishStart = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'publishStart'), 'publishStart', '__urnvpromedia2009_baseMediaType_publishStart', pyxb.binding.datatypes.dateTime) - __publishStart._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 12, 4) - __publishStart._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 12, 4) - + __publishStart = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "publishStart"), + "publishStart", + "__urnvpromedia2009_baseMediaType_publishStart", + pyxb.binding.datatypes.dateTime, + ) + __publishStart._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproShared.xsd", 12, 4 + ) + __publishStart._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproShared.xsd", 12, 4 + ) + publishStart = property(__publishStart.value, __publishStart.set, None, None) - # Attribute publishStop uses Python identifier publishStop - __publishStop = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'publishStop'), 'publishStop', '__urnvpromedia2009_baseMediaType_publishStop', pyxb.binding.datatypes.dateTime) - __publishStop._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 13, 4) - __publishStop._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 13, 4) - + __publishStop = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "publishStop"), + "publishStop", + "__urnvpromedia2009_baseMediaType_publishStop", + pyxb.binding.datatypes.dateTime, + ) + __publishStop._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproShared.xsd", 13, 4 + ) + __publishStop._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 13, 4) + publishStop = property(__publishStop.value, __publishStop.set, None, None) - # Attribute publishDate uses Python identifier publishDate - __publishDate = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'publishDate'), 'publishDate', '__urnvpromedia2009_baseMediaType_publishDate', pyxb.binding.datatypes.dateTime) - __publishDate._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 14, 4) - __publishDate._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 14, 4) - + __publishDate = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "publishDate"), + "publishDate", + "__urnvpromedia2009_baseMediaType_publishDate", + pyxb.binding.datatypes.dateTime, + ) + __publishDate._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproShared.xsd", 14, 4 + ) + __publishDate._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 14, 4) + publishDate = property(__publishDate.value, __publishDate.set, None, None) - # Attribute creationDate uses Python identifier creationDate - __creationDate = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'creationDate'), 'creationDate', '__urnvpromedia2009_baseMediaType_creationDate', pyxb.binding.datatypes.dateTime) - __creationDate._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 15, 4) - __creationDate._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 15, 4) - + __creationDate = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "creationDate"), + "creationDate", + "__urnvpromedia2009_baseMediaType_creationDate", + pyxb.binding.datatypes.dateTime, + ) + __creationDate._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproShared.xsd", 15, 4 + ) + __creationDate._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproShared.xsd", 15, 4 + ) + creationDate = property(__creationDate.value, __creationDate.set, None, None) - # Attribute lastModified uses Python identifier lastModified - __lastModified = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'lastModified'), 'lastModified', '__urnvpromedia2009_baseMediaType_lastModified', pyxb.binding.datatypes.dateTime) - __lastModified._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 16, 4) - __lastModified._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 16, 4) - + __lastModified = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "lastModified"), + "lastModified", + "__urnvpromedia2009_baseMediaType_lastModified", + pyxb.binding.datatypes.dateTime, + ) + __lastModified._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproShared.xsd", 16, 4 + ) + __lastModified._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproShared.xsd", 16, 4 + ) + lastModified = property(__lastModified.value, __lastModified.set, None, None) - # Attribute workflow uses Python identifier workflow - __workflow = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'workflow'), 'workflow', '__urnvpromedia2009_baseMediaType_workflow', _ImportedBinding_npoapi_xml_shared.workflowEnumType) - __workflow._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 17, 4) - __workflow._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 17, 4) - + __workflow = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "workflow"), + "workflow", + "__urnvpromedia2009_baseMediaType_workflow", + _ImportedBinding_npoapi_xml_shared.workflowEnumType, + ) + __workflow._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproShared.xsd", 17, 4 + ) + __workflow._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 17, 4) + workflow = property(__workflow.value, __workflow.set, None, None) - _ElementMap.update({ - __crid.name() : __crid, - __broadcaster.name() : __broadcaster, - __portal.name() : __portal, - __exclusive.name() : __exclusive, - __region.name() : __region, - __title.name() : __title, - __description.name() : __description, - __genre.name() : __genre, - __tag.name() : __tag, - __intentions.name() : __intentions, - __targetGroups.name() : __targetGroups, - __geoLocations.name() : __geoLocations, - __topics.name() : __topics, - __source.name() : __source, - __country.name() : __country, - __language.name() : __language, - __isDubbed.name() : __isDubbed, - __availableSubtitles.name() : __availableSubtitles, - __avAttributes.name() : __avAttributes, - __releaseYear.name() : __releaseYear, - __duration.name() : __duration, - __credits.name() : __credits, - __award.name() : __award, - __descendantOf.name() : __descendantOf, - __memberOf.name() : __memberOf, - __ageRating.name() : __ageRating, - __contentRating.name() : __contentRating, - __email.name() : __email, - __website.name() : __website, - __twitter.name() : __twitter, - __teletext.name() : __teletext, - __prediction.name() : __prediction, - __locations.name() : __locations, - __relation.name() : __relation, - __images.name() : __images - }) - _AttributeMap.update({ - __mid.name() : __mid, - __avType.name() : __avType, - __sortDate.name() : __sortDate, - __embeddable.name() : __embeddable, - __hasSubtitles.name() : __hasSubtitles, - __mergedTo.name() : __mergedTo, - __urn.name() : __urn, - __publishStart.name() : __publishStart, - __publishStop.name() : __publishStop, - __publishDate.name() : __publishDate, - __creationDate.name() : __creationDate, - __lastModified.name() : __lastModified, - __workflow.name() : __workflow - }) + _ElementMap.update( + { + __crid.name(): __crid, + __broadcaster.name(): __broadcaster, + __portal.name(): __portal, + __exclusive.name(): __exclusive, + __region.name(): __region, + __title.name(): __title, + __description.name(): __description, + __genre.name(): __genre, + __tag.name(): __tag, + __intentions.name(): __intentions, + __targetGroups.name(): __targetGroups, + __geoLocations.name(): __geoLocations, + __topics.name(): __topics, + __source.name(): __source, + __country.name(): __country, + __language.name(): __language, + __isDubbed.name(): __isDubbed, + __availableSubtitles.name(): __availableSubtitles, + __avAttributes.name(): __avAttributes, + __releaseYear.name(): __releaseYear, + __duration.name(): __duration, + __credits.name(): __credits, + __award.name(): __award, + __descendantOf.name(): __descendantOf, + __memberOf.name(): __memberOf, + __ageRating.name(): __ageRating, + __contentRating.name(): __contentRating, + __email.name(): __email, + __website.name(): __website, + __twitter.name(): __twitter, + __teletext.name(): __teletext, + __prediction.name(): __prediction, + __locations.name(): __locations, + __relation.name(): __relation, + __images.name(): __images, + } + ) + _AttributeMap.update( + { + __mid.name(): __mid, + __avType.name(): __avType, + __sortDate.name(): __sortDate, + __embeddable.name(): __embeddable, + __hasSubtitles.name(): __hasSubtitles, + __mergedTo.name(): __mergedTo, + __urn.name(): __urn, + __publishStart.name(): __publishStart, + __publishStop.name(): __publishStop, + __publishDate.name(): __publishDate, + __creationDate.name(): __creationDate, + __lastModified.name(): __lastModified, + __workflow.name(): __workflow, + } + ) + + _module_typeBindings.baseMediaType = baseMediaType -Namespace.addCategoryObject('typeBinding', 'baseMediaType', baseMediaType) +Namespace.addCategoryObject("typeBinding", "baseMediaType", baseMediaType) # Complex type {urn:vpro:media:2009}geoRestrictionType with content type SIMPLE -class geoRestrictionType (pyxb.binding.basis.complexTypeDefinition): +class geoRestrictionType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:2009}geoRestrictionType with content type SIMPLE""" + _TypeDefinition = pyxb.binding.datatypes.string _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_SIMPLE _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'geoRestrictionType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 339, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "geoRestrictionType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 339, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.string - + # Attribute start uses Python identifier start - __start = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'start'), 'start', '__urnvpromedia2009_geoRestrictionType_start', pyxb.binding.datatypes.dateTime) - __start._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 326, 4) - __start._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 326, 4) - + __start = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "start"), + "start", + "__urnvpromedia2009_geoRestrictionType_start", + pyxb.binding.datatypes.dateTime, + ) + __start._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 326, 4 + ) + __start._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 326, 4) + start = property(__start.value, __start.set, None, None) - # Attribute stop uses Python identifier stop - __stop = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'stop'), 'stop', '__urnvpromedia2009_geoRestrictionType_stop', pyxb.binding.datatypes.dateTime) - __stop._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 327, 4) - __stop._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 327, 4) - + __stop = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "stop"), + "stop", + "__urnvpromedia2009_geoRestrictionType_stop", + pyxb.binding.datatypes.dateTime, + ) + __stop._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 327, 4 + ) + __stop._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 327, 4) + stop = property(__stop.value, __stop.set, None, None) - # Attribute regionId uses Python identifier regionId - __regionId = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'regionId'), 'regionId', '__urnvpromedia2009_geoRestrictionType_regionId', _module_typeBindings.geoRestrictionEnum) - __regionId._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 342, 8) - __regionId._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 342, 8) - + __regionId = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "regionId"), + "regionId", + "__urnvpromedia2009_geoRestrictionType_regionId", + _module_typeBindings.geoRestrictionEnum, + ) + __regionId._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 342, 8 + ) + __regionId._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 342, 8) + regionId = property(__regionId.value, __regionId.set, None, None) - # Attribute platform uses Python identifier platform - __platform = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'platform'), 'platform', '__urnvpromedia2009_geoRestrictionType_platform', _module_typeBindings.platformTypeEnum) - __platform._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 344, 8) - __platform._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 344, 8) - + __platform = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "platform"), + "platform", + "__urnvpromedia2009_geoRestrictionType_platform", + _module_typeBindings.platformTypeEnum, + ) + __platform._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 344, 8 + ) + __platform._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 344, 8) + platform = property(__platform.value, __platform.set, None, None) - _ElementMap.update({ - - }) - _AttributeMap.update({ - __start.name() : __start, - __stop.name() : __stop, - __regionId.name() : __regionId, - __platform.name() : __platform - }) + _ElementMap.update({}) + _AttributeMap.update( + {__start.name(): __start, __stop.name(): __stop, __regionId.name(): __regionId, __platform.name(): __platform} + ) + + _module_typeBindings.geoRestrictionType = geoRestrictionType -Namespace.addCategoryObject('typeBinding', 'geoRestrictionType', geoRestrictionType) +Namespace.addCategoryObject("typeBinding", "geoRestrictionType", geoRestrictionType) # Complex type {urn:vpro:media:2009}titleType with content type SIMPLE -class titleType (pyxb.binding.basis.complexTypeDefinition): +class titleType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:2009}titleType with content type SIMPLE""" + _TypeDefinition = pyxb.binding.datatypes.string _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_SIMPLE _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'titleType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 364, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "titleType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 364, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.string - + # Attribute type uses Python identifier type - __type = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'type'), 'type', '__urnvpromedia2009_titleType_type', _module_typeBindings.textualTypeEnum) - __type._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 389, 4) - __type._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 389, 4) - + __type = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "type"), + "type", + "__urnvpromedia2009_titleType_type", + _module_typeBindings.textualTypeEnum, + ) + __type._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 389, 4 + ) + __type._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 389, 4) + type = property(__type.value, __type.set, None, None) - # Attribute owner uses Python identifier owner - __owner = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'owner'), 'owner', '__urnvpromedia2009_titleType_owner', _ImportedBinding_npoapi_xml_shared.ownerTypeEnum, required=True) - __owner._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 390, 4) - __owner._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 390, 4) - + __owner = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "owner"), + "owner", + "__urnvpromedia2009_titleType_owner", + _ImportedBinding_npoapi_xml_shared.ownerTypeEnum, + required=True, + ) + __owner._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 390, 4 + ) + __owner._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 390, 4) + owner = property(__owner.value, __owner.set, None, None) - _ElementMap.update({ - - }) - _AttributeMap.update({ - __type.name() : __type, - __owner.name() : __owner - }) + _ElementMap.update({}) + _AttributeMap.update({__type.name(): __type, __owner.name(): __owner}) + + _module_typeBindings.titleType = titleType -Namespace.addCategoryObject('typeBinding', 'titleType', titleType) +Namespace.addCategoryObject("typeBinding", "titleType", titleType) # Complex type {urn:vpro:media:2009}descriptionType with content type SIMPLE -class descriptionType (pyxb.binding.basis.complexTypeDefinition): +class descriptionType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:2009}descriptionType with content type SIMPLE""" + _TypeDefinition = pyxb.binding.datatypes.string _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_SIMPLE _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'descriptionType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 380, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "descriptionType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 380, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.string - + # Attribute type uses Python identifier type - __type = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'type'), 'type', '__urnvpromedia2009_descriptionType_type', _module_typeBindings.textualTypeEnum) - __type._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 389, 4) - __type._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 389, 4) - + __type = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "type"), + "type", + "__urnvpromedia2009_descriptionType_type", + _module_typeBindings.textualTypeEnum, + ) + __type._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 389, 4 + ) + __type._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 389, 4) + type = property(__type.value, __type.set, None, None) - # Attribute owner uses Python identifier owner - __owner = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'owner'), 'owner', '__urnvpromedia2009_descriptionType_owner', _ImportedBinding_npoapi_xml_shared.ownerTypeEnum, required=True) - __owner._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 390, 4) - __owner._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 390, 4) - + __owner = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "owner"), + "owner", + "__urnvpromedia2009_descriptionType_owner", + _ImportedBinding_npoapi_xml_shared.ownerTypeEnum, + required=True, + ) + __owner._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 390, 4 + ) + __owner._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 390, 4) + owner = property(__owner.value, __owner.set, None, None) - _ElementMap.update({ - - }) - _AttributeMap.update({ - __type.name() : __type, - __owner.name() : __owner - }) + _ElementMap.update({}) + _AttributeMap.update({__type.name(): __type, __owner.name(): __owner}) + + _module_typeBindings.descriptionType = descriptionType -Namespace.addCategoryObject('typeBinding', 'descriptionType', descriptionType) +Namespace.addCategoryObject("typeBinding", "descriptionType", descriptionType) # Complex type {urn:vpro:media:2009}organizationType with content type SIMPLE -class organizationType (pyxb.binding.basis.complexTypeDefinition): +class organizationType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:2009}organizationType with content type SIMPLE""" + _TypeDefinition = pyxb.binding.datatypes.string _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_SIMPLE _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'organizationType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 447, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "organizationType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 447, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.string - + # Attribute id uses Python identifier id - __id = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'id'), 'id', '__urnvpromedia2009_organizationType_id', _module_typeBindings.organizationIdType) - __id._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 450, 8) - __id._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 450, 8) - + __id = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "id"), + "id", + "__urnvpromedia2009_organizationType_id", + _module_typeBindings.organizationIdType, + ) + __id._DeclarationLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 450, 8) + __id._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 450, 8) + id = property(__id.value, __id.set, None, None) - _ElementMap.update({ - - }) - _AttributeMap.update({ - __id.name() : __id - }) + _ElementMap.update({}) + _AttributeMap.update({__id.name(): __id}) + + _module_typeBindings.organizationType = organizationType -Namespace.addCategoryObject('typeBinding', 'organizationType', organizationType) +Namespace.addCategoryObject("typeBinding", "organizationType", organizationType) # Complex type {urn:vpro:media:2009}personType with content type ELEMENT_ONLY -class personType (pyxb.binding.basis.complexTypeDefinition): +class personType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:2009}personType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'personType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 551, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "personType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 551, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:2009}givenName uses Python identifier givenName - __givenName = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'givenName'), 'givenName', '__urnvpromedia2009_personType_urnvpromedia2009givenName', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 553, 6), ) + __givenName = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "givenName"), + "givenName", + "__urnvpromedia2009_personType_urnvpromedia2009givenName", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 553, 6), + ) - givenName = property(__givenName.value, __givenName.set, None, None) - # Element {urn:vpro:media:2009}familyName uses Python identifier familyName - __familyName = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'familyName'), 'familyName', '__urnvpromedia2009_personType_urnvpromedia2009familyName', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 554, 6), ) + __familyName = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "familyName"), + "familyName", + "__urnvpromedia2009_personType_urnvpromedia2009familyName", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 554, 6), + ) - familyName = property(__familyName.value, __familyName.set, None, None) - # Attribute role uses Python identifier role - __role = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'role'), 'role', '__urnvpromedia2009_personType_role', _module_typeBindings.roleType, required=True) - __role._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 556, 4) - __role._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 556, 4) - + __role = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "role"), + "role", + "__urnvpromedia2009_personType_role", + _module_typeBindings.roleType, + required=True, + ) + __role._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 556, 4 + ) + __role._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 556, 4) + role = property(__role.value, __role.set, None, None) - # Attribute gtaaUri uses Python identifier gtaaUri - __gtaaUri = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'gtaaUri'), 'gtaaUri', '__urnvpromedia2009_personType_gtaaUri', pyxb.binding.datatypes.string) - __gtaaUri._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 557, 4) - __gtaaUri._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 557, 4) - + __gtaaUri = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "gtaaUri"), + "gtaaUri", + "__urnvpromedia2009_personType_gtaaUri", + pyxb.binding.datatypes.string, + ) + __gtaaUri._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 557, 4 + ) + __gtaaUri._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 557, 4) + gtaaUri = property(__gtaaUri.value, __gtaaUri.set, None, None) - # Attribute gtaaStatus uses Python identifier gtaaStatus - __gtaaStatus = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'gtaaStatus'), 'gtaaStatus', '__urnvpromedia2009_personType_gtaaStatus', _module_typeBindings.gtaaStatusType) - __gtaaStatus._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 558, 4) - __gtaaStatus._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 558, 4) - + __gtaaStatus = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "gtaaStatus"), + "gtaaStatus", + "__urnvpromedia2009_personType_gtaaStatus", + _module_typeBindings.gtaaStatusType, + ) + __gtaaStatus._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 558, 4 + ) + __gtaaStatus._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 558, 4) + gtaaStatus = property(__gtaaStatus.value, __gtaaStatus.set, None, None) - _ElementMap.update({ - __givenName.name() : __givenName, - __familyName.name() : __familyName - }) - _AttributeMap.update({ - __role.name() : __role, - __gtaaUri.name() : __gtaaUri, - __gtaaStatus.name() : __gtaaStatus - }) + _ElementMap.update({__givenName.name(): __givenName, __familyName.name(): __familyName}) + _AttributeMap.update({__role.name(): __role, __gtaaUri.name(): __gtaaUri, __gtaaStatus.name(): __gtaaStatus}) + + _module_typeBindings.personType = personType -Namespace.addCategoryObject('typeBinding', 'personType', personType) +Namespace.addCategoryObject("typeBinding", "personType", personType) # Complex type {urn:vpro:media:2009}nameType with content type ELEMENT_ONLY -class nameType (pyxb.binding.basis.complexTypeDefinition): +class nameType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:2009}nameType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'nameType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 561, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "nameType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 561, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:2009}name uses Python identifier name - __name = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'name'), 'name', '__urnvpromedia2009_nameType_urnvpromedia2009name', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 563, 6), ) + __name = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "name"), + "name", + "__urnvpromedia2009_nameType_urnvpromedia2009name", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 563, 6), + ) - name = property(__name.value, __name.set, None, None) - # Element {urn:vpro:media:2009}scopeNote uses Python identifier scopeNote - __scopeNote = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'scopeNote'), 'scopeNote', '__urnvpromedia2009_nameType_urnvpromedia2009scopeNote', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 564, 6), ) + __scopeNote = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "scopeNote"), + "scopeNote", + "__urnvpromedia2009_nameType_urnvpromedia2009scopeNote", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 564, 6), + ) - scopeNote = property(__scopeNote.value, __scopeNote.set, None, None) - # Attribute role uses Python identifier role - __role = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'role'), 'role', '__urnvpromedia2009_nameType_role', _module_typeBindings.roleType, required=True) - __role._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 566, 4) - __role._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 566, 4) - + __role = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "role"), + "role", + "__urnvpromedia2009_nameType_role", + _module_typeBindings.roleType, + required=True, + ) + __role._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 566, 4 + ) + __role._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 566, 4) + role = property(__role.value, __role.set, None, None) - # Attribute gtaaUri uses Python identifier gtaaUri - __gtaaUri = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'gtaaUri'), 'gtaaUri', '__urnvpromedia2009_nameType_gtaaUri', pyxb.binding.datatypes.string) - __gtaaUri._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 567, 4) - __gtaaUri._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 567, 4) - + __gtaaUri = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "gtaaUri"), + "gtaaUri", + "__urnvpromedia2009_nameType_gtaaUri", + pyxb.binding.datatypes.string, + ) + __gtaaUri._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 567, 4 + ) + __gtaaUri._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 567, 4) + gtaaUri = property(__gtaaUri.value, __gtaaUri.set, None, None) - # Attribute gtaaStatus uses Python identifier gtaaStatus - __gtaaStatus = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'gtaaStatus'), 'gtaaStatus', '__urnvpromedia2009_nameType_gtaaStatus', _module_typeBindings.gtaaStatusType) - __gtaaStatus._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 568, 4) - __gtaaStatus._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 568, 4) - + __gtaaStatus = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "gtaaStatus"), + "gtaaStatus", + "__urnvpromedia2009_nameType_gtaaStatus", + _module_typeBindings.gtaaStatusType, + ) + __gtaaStatus._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 568, 4 + ) + __gtaaStatus._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 568, 4) + gtaaStatus = property(__gtaaStatus.value, __gtaaStatus.set, None, None) - _ElementMap.update({ - __name.name() : __name, - __scopeNote.name() : __scopeNote - }) - _AttributeMap.update({ - __role.name() : __role, - __gtaaUri.name() : __gtaaUri, - __gtaaStatus.name() : __gtaaStatus - }) + _ElementMap.update({__name.name(): __name, __scopeNote.name(): __scopeNote}) + _AttributeMap.update({__role.name(): __role, __gtaaUri.name(): __gtaaUri, __gtaaStatus.name(): __gtaaStatus}) + + _module_typeBindings.nameType = nameType -Namespace.addCategoryObject('typeBinding', 'nameType', nameType) +Namespace.addCategoryObject("typeBinding", "nameType", nameType) # Complex type {urn:vpro:media:2009}relationType with content type SIMPLE -class relationType (pyxb.binding.basis.complexTypeDefinition): +class relationType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:2009}relationType with content type SIMPLE""" + _TypeDefinition = pyxb.binding.datatypes.string _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_SIMPLE _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'relationType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 644, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "relationType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 644, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.string - + # Attribute type uses Python identifier type - __type = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'type'), 'type', '__urnvpromedia2009_relationType_type', _module_typeBindings.relationTypeType, required=True) - __type._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 647, 8) - __type._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 647, 8) - + __type = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "type"), + "type", + "__urnvpromedia2009_relationType_type", + _module_typeBindings.relationTypeType, + required=True, + ) + __type._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 647, 8 + ) + __type._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 647, 8) + type = property(__type.value, __type.set, None, None) - # Attribute broadcaster uses Python identifier broadcaster - __broadcaster = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'broadcaster'), 'broadcaster', '__urnvpromedia2009_relationType_broadcaster', pyxb.binding.datatypes.string, required=True) - __broadcaster._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 648, 8) - __broadcaster._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 648, 8) - + __broadcaster = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "broadcaster"), + "broadcaster", + "__urnvpromedia2009_relationType_broadcaster", + pyxb.binding.datatypes.string, + required=True, + ) + __broadcaster._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 648, 8 + ) + __broadcaster._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 648, 8) + broadcaster = property(__broadcaster.value, __broadcaster.set, None, None) - # Attribute uriRef uses Python identifier uriRef - __uriRef = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'uriRef'), 'uriRef', '__urnvpromedia2009_relationType_uriRef', pyxb.binding.datatypes.anyURI) - __uriRef._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 649, 8) - __uriRef._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 649, 8) - + __uriRef = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "uriRef"), + "uriRef", + "__urnvpromedia2009_relationType_uriRef", + pyxb.binding.datatypes.anyURI, + ) + __uriRef._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 649, 8 + ) + __uriRef._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 649, 8) + uriRef = property(__uriRef.value, __uriRef.set, None, None) - # Attribute urn uses Python identifier urn - __urn = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'urn'), 'urn', '__urnvpromedia2009_relationType_urn', pyxb.binding.datatypes.anyURI) - __urn._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 650, 8) - __urn._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 650, 8) - + __urn = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "urn"), + "urn", + "__urnvpromedia2009_relationType_urn", + pyxb.binding.datatypes.anyURI, + ) + __urn._DeclarationLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 650, 8) + __urn._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 650, 8) + urn = property(__urn.value, __urn.set, None, None) - _ElementMap.update({ - - }) - _AttributeMap.update({ - __type.name() : __type, - __broadcaster.name() : __broadcaster, - __uriRef.name() : __uriRef, - __urn.name() : __urn - }) + _ElementMap.update({}) + _AttributeMap.update( + {__type.name(): __type, __broadcaster.name(): __broadcaster, __uriRef.name(): __uriRef, __urn.name(): __urn} + ) + + _module_typeBindings.relationType = relationType -Namespace.addCategoryObject('typeBinding', 'relationType', relationType) +Namespace.addCategoryObject("typeBinding", "relationType", relationType) # Complex type {urn:vpro:media:2009}twitterType with content type SIMPLE -class twitterType (pyxb.binding.basis.complexTypeDefinition): +class twitterType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:2009}twitterType with content type SIMPLE""" + _TypeDefinition = pyxb.binding.datatypes.string _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_SIMPLE _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'twitterType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 689, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "twitterType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 689, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.string - + # Attribute type uses Python identifier type - __type = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'type'), 'type', '__urnvpromedia2009_twitterType_type', _module_typeBindings.STD_ANON) - __type._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 692, 8) - __type._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 692, 8) - + __type = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "type"), + "type", + "__urnvpromedia2009_twitterType_type", + _module_typeBindings.STD_ANON, + ) + __type._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 692, 8 + ) + __type._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 692, 8) + type = property(__type.value, __type.set, None, None) - _ElementMap.update({ - - }) - _AttributeMap.update({ - __type.name() : __type - }) + _ElementMap.update({}) + _AttributeMap.update({__type.name(): __type}) + + _module_typeBindings.twitterType = twitterType -Namespace.addCategoryObject('typeBinding', 'twitterType', twitterType) +Namespace.addCategoryObject("typeBinding", "twitterType", twitterType) # Complex type {urn:vpro:media:2009}scheduleType with content type ELEMENT_ONLY -class scheduleType (pyxb.binding.basis.complexTypeDefinition): +class scheduleType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:2009}scheduleType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'scheduleType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 711, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "scheduleType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 711, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:2009}scheduleEvent uses Python identifier scheduleEvent - __scheduleEvent = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'scheduleEvent'), 'scheduleEvent', '__urnvpromedia2009_scheduleType_urnvpromedia2009scheduleEvent', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 713, 6), ) + __scheduleEvent = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "scheduleEvent"), + "scheduleEvent", + "__urnvpromedia2009_scheduleType_urnvpromedia2009scheduleEvent", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 713, 6), + ) - scheduleEvent = property(__scheduleEvent.value, __scheduleEvent.set, None, None) - # Attribute channel uses Python identifier channel - __channel = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'channel'), 'channel', '__urnvpromedia2009_scheduleType_channel', _module_typeBindings.channelEnum) - __channel._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 715, 4) - __channel._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 715, 4) - + __channel = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "channel"), + "channel", + "__urnvpromedia2009_scheduleType_channel", + _module_typeBindings.channelEnum, + ) + __channel._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 715, 4 + ) + __channel._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 715, 4) + channel = property(__channel.value, __channel.set, None, None) - # Attribute net uses Python identifier net - __net = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'net'), 'net', '__urnvpromedia2009_scheduleType_net', pyxb.binding.datatypes.string) - __net._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 716, 4) - __net._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 716, 4) - + __net = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "net"), + "net", + "__urnvpromedia2009_scheduleType_net", + pyxb.binding.datatypes.string, + ) + __net._DeclarationLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 716, 4) + __net._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 716, 4) + net = property(__net.value, __net.set, None, None) - # Attribute date uses Python identifier date - __date = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'date'), 'date', '__urnvpromedia2009_scheduleType_date', pyxb.binding.datatypes.date) - __date._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 717, 4) - __date._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 717, 4) - + __date = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "date"), + "date", + "__urnvpromedia2009_scheduleType_date", + pyxb.binding.datatypes.date, + ) + __date._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 717, 4 + ) + __date._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 717, 4) + date = property(__date.value, __date.set, None, None) - # Attribute releaseVersion uses Python identifier releaseVersion - __releaseVersion = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'releaseVersion'), 'releaseVersion', '__urnvpromedia2009_scheduleType_releaseVersion', pyxb.binding.datatypes.short) - __releaseVersion._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 718, 4) - __releaseVersion._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 718, 4) - + __releaseVersion = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "releaseVersion"), + "releaseVersion", + "__urnvpromedia2009_scheduleType_releaseVersion", + pyxb.binding.datatypes.short, + ) + __releaseVersion._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 718, 4 + ) + __releaseVersion._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 718, 4 + ) + releaseVersion = property(__releaseVersion.value, __releaseVersion.set, None, None) - # Attribute start uses Python identifier start - __start = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'start'), 'start', '__urnvpromedia2009_scheduleType_start', pyxb.binding.datatypes.dateTime) - __start._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 719, 4) - __start._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 719, 4) - + __start = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "start"), + "start", + "__urnvpromedia2009_scheduleType_start", + pyxb.binding.datatypes.dateTime, + ) + __start._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 719, 4 + ) + __start._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 719, 4) + start = property(__start.value, __start.set, None, None) - # Attribute stop uses Python identifier stop - __stop = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'stop'), 'stop', '__urnvpromedia2009_scheduleType_stop', pyxb.binding.datatypes.dateTime) - __stop._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 720, 4) - __stop._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 720, 4) - + __stop = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "stop"), + "stop", + "__urnvpromedia2009_scheduleType_stop", + pyxb.binding.datatypes.dateTime, + ) + __stop._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 720, 4 + ) + __stop._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 720, 4) + stop = property(__stop.value, __stop.set, None, None) - # Attribute reruns uses Python identifier reruns - __reruns = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'reruns'), 'reruns', '__urnvpromedia2009_scheduleType_reruns', pyxb.binding.datatypes.boolean) - __reruns._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 721, 4) - __reruns._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 721, 4) - + __reruns = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "reruns"), + "reruns", + "__urnvpromedia2009_scheduleType_reruns", + pyxb.binding.datatypes.boolean, + ) + __reruns._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 721, 4 + ) + __reruns._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 721, 4) + reruns = property(__reruns.value, __reruns.set, None, None) - _ElementMap.update({ - __scheduleEvent.name() : __scheduleEvent - }) - _AttributeMap.update({ - __channel.name() : __channel, - __net.name() : __net, - __date.name() : __date, - __releaseVersion.name() : __releaseVersion, - __start.name() : __start, - __stop.name() : __stop, - __reruns.name() : __reruns - }) + _ElementMap.update({__scheduleEvent.name(): __scheduleEvent}) + _AttributeMap.update( + { + __channel.name(): __channel, + __net.name(): __net, + __date.name(): __date, + __releaseVersion.name(): __releaseVersion, + __start.name(): __start, + __stop.name(): __stop, + __reruns.name(): __reruns, + } + ) + + _module_typeBindings.scheduleType = scheduleType -Namespace.addCategoryObject('typeBinding', 'scheduleType', scheduleType) +Namespace.addCategoryObject("typeBinding", "scheduleType", scheduleType) # Complex type {urn:vpro:media:2009}scheduleEventType with content type ELEMENT_ONLY -class scheduleEventType (pyxb.binding.basis.complexTypeDefinition): +class scheduleEventType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:2009}scheduleEventType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'scheduleEventType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 730, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "scheduleEventType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 730, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:2009}title uses Python identifier title - __title = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'title'), 'title', '__urnvpromedia2009_scheduleEventType_urnvpromedia2009title', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 732, 6), ) + __title = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "title"), + "title", + "__urnvpromedia2009_scheduleEventType_urnvpromedia2009title", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 732, 6), + ) - title = property(__title.value, __title.set, None, None) - # Element {urn:vpro:media:2009}description uses Python identifier description - __description = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'description'), 'description', '__urnvpromedia2009_scheduleEventType_urnvpromedia2009description', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 733, 6), ) + __description = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "description"), + "description", + "__urnvpromedia2009_scheduleEventType_urnvpromedia2009description", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 733, 6), + ) - description = property(__description.value, __description.set, None, None) - # Element {urn:vpro:media:2009}repeat uses Python identifier repeat - __repeat = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'repeat'), 'repeat', '__urnvpromedia2009_scheduleEventType_urnvpromedia2009repeat', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 734, 6), ) + __repeat = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "repeat"), + "repeat", + "__urnvpromedia2009_scheduleEventType_urnvpromedia2009repeat", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 734, 6), + ) - repeat = property(__repeat.value, __repeat.set, None, None) - # Element {urn:vpro:media:2009}memberOf uses Python identifier memberOf - __memberOf = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'memberOf'), 'memberOf', '__urnvpromedia2009_scheduleEventType_urnvpromedia2009memberOf', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 735, 6), ) + __memberOf = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "memberOf"), + "memberOf", + "__urnvpromedia2009_scheduleEventType_urnvpromedia2009memberOf", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 735, 6), + ) - memberOf = property(__memberOf.value, __memberOf.set, None, None) - # Element {urn:vpro:media:2009}avAttributes uses Python identifier avAttributes - __avAttributes = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'avAttributes'), 'avAttributes', '__urnvpromedia2009_scheduleEventType_urnvpromedia2009avAttributes', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 736, 6), ) + __avAttributes = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "avAttributes"), + "avAttributes", + "__urnvpromedia2009_scheduleEventType_urnvpromedia2009avAttributes", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 736, 6), + ) - avAttributes = property(__avAttributes.value, __avAttributes.set, None, None) - # Element {urn:vpro:media:2009}textSubtitles uses Python identifier textSubtitles - __textSubtitles = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'textSubtitles'), 'textSubtitles', '__urnvpromedia2009_scheduleEventType_urnvpromedia2009textSubtitles', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 737, 6), ) + __textSubtitles = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "textSubtitles"), + "textSubtitles", + "__urnvpromedia2009_scheduleEventType_urnvpromedia2009textSubtitles", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 737, 6), + ) - textSubtitles = property(__textSubtitles.value, __textSubtitles.set, None, None) - # Element {urn:vpro:media:2009}textPage uses Python identifier textPage - __textPage = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'textPage'), 'textPage', '__urnvpromedia2009_scheduleEventType_urnvpromedia2009textPage', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 738, 6), ) + __textPage = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "textPage"), + "textPage", + "__urnvpromedia2009_scheduleEventType_urnvpromedia2009textPage", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 738, 6), + ) - textPage = property(__textPage.value, __textPage.set, None, None) - # Element {urn:vpro:media:2009}guideDay uses Python identifier guideDay - __guideDay = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'guideDay'), 'guideDay', '__urnvpromedia2009_scheduleEventType_urnvpromedia2009guideDay', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 739, 6), ) + __guideDay = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "guideDay"), + "guideDay", + "__urnvpromedia2009_scheduleEventType_urnvpromedia2009guideDay", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 739, 6), + ) - guideDay = property(__guideDay.value, __guideDay.set, None, None) - # Element {urn:vpro:media:2009}start uses Python identifier start - __start = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'start'), 'start', '__urnvpromedia2009_scheduleEventType_urnvpromedia2009start', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 740, 6), ) + __start = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "start"), + "start", + "__urnvpromedia2009_scheduleEventType_urnvpromedia2009start", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 740, 6), + ) - start = property(__start.value, __start.set, None, None) - # Element {urn:vpro:media:2009}offset uses Python identifier offset - __offset = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'offset'), 'offset', '__urnvpromedia2009_scheduleEventType_urnvpromedia2009offset', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 741, 6), ) + __offset = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "offset"), + "offset", + "__urnvpromedia2009_scheduleEventType_urnvpromedia2009offset", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 741, 6), + ) - offset = property(__offset.value, __offset.set, None, None) - # Element {urn:vpro:media:2009}duration uses Python identifier duration - __duration = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'duration'), 'duration', '__urnvpromedia2009_scheduleEventType_urnvpromedia2009duration', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 742, 6), ) + __duration = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "duration"), + "duration", + "__urnvpromedia2009_scheduleEventType_urnvpromedia2009duration", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 742, 6), + ) - duration = property(__duration.value, __duration.set, None, None) - # Element {urn:vpro:media:2009}poProgID uses Python identifier poProgID - __poProgID = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'poProgID'), 'poProgID', '__urnvpromedia2009_scheduleEventType_urnvpromedia2009poProgID', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 743, 6), ) + __poProgID = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "poProgID"), + "poProgID", + "__urnvpromedia2009_scheduleEventType_urnvpromedia2009poProgID", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 743, 6), + ) - poProgID = property(__poProgID.value, __poProgID.set, None, None) - # Element {urn:vpro:media:2009}primaryLifestyle uses Python identifier primaryLifestyle - __primaryLifestyle = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'primaryLifestyle'), 'primaryLifestyle', '__urnvpromedia2009_scheduleEventType_urnvpromedia2009primaryLifestyle', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 744, 6), ) + __primaryLifestyle = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "primaryLifestyle"), + "primaryLifestyle", + "__urnvpromedia2009_scheduleEventType_urnvpromedia2009primaryLifestyle", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 744, 6), + ) - primaryLifestyle = property(__primaryLifestyle.value, __primaryLifestyle.set, None, None) - # Element {urn:vpro:media:2009}secondaryLifestyle uses Python identifier secondaryLifestyle - __secondaryLifestyle = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'secondaryLifestyle'), 'secondaryLifestyle', '__urnvpromedia2009_scheduleEventType_urnvpromedia2009secondaryLifestyle', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 745, 6), ) + __secondaryLifestyle = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "secondaryLifestyle"), + "secondaryLifestyle", + "__urnvpromedia2009_scheduleEventType_urnvpromedia2009secondaryLifestyle", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 745, 6), + ) - secondaryLifestyle = property(__secondaryLifestyle.value, __secondaryLifestyle.set, None, None) - # Attribute imi uses Python identifier imi - __imi = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'imi'), 'imi', '__urnvpromedia2009_scheduleEventType_imi', pyxb.binding.datatypes.string) - __imi._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 747, 4) - __imi._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 747, 4) - + __imi = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "imi"), + "imi", + "__urnvpromedia2009_scheduleEventType_imi", + pyxb.binding.datatypes.string, + ) + __imi._DeclarationLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 747, 4) + __imi._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 747, 4) + imi = property(__imi.value, __imi.set, None, None) - # Attribute channel uses Python identifier channel - __channel = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'channel'), 'channel', '__urnvpromedia2009_scheduleEventType_channel', _module_typeBindings.channelEnum) - __channel._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 748, 4) - __channel._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 748, 4) - + __channel = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "channel"), + "channel", + "__urnvpromedia2009_scheduleEventType_channel", + _module_typeBindings.channelEnum, + ) + __channel._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 748, 4 + ) + __channel._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 748, 4) + channel = property(__channel.value, __channel.set, None, None) - # Attribute net uses Python identifier net - __net = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'net'), 'net', '__urnvpromedia2009_scheduleEventType_net', pyxb.binding.datatypes.string) - __net._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 749, 4) - __net._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 749, 4) - + __net = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "net"), + "net", + "__urnvpromedia2009_scheduleEventType_net", + pyxb.binding.datatypes.string, + ) + __net._DeclarationLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 749, 4) + __net._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 749, 4) + net = property(__net.value, __net.set, None, None) - # Attribute guideDay uses Python identifier guideDay_ - __guideDay_ = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'guideDay'), 'guideDay_', '__urnvpromedia2009_scheduleEventType_guideDay', pyxb.binding.datatypes.date) - __guideDay_._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 750, 4) - __guideDay_._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 750, 4) - + __guideDay_ = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "guideDay"), + "guideDay_", + "__urnvpromedia2009_scheduleEventType_guideDay", + pyxb.binding.datatypes.date, + ) + __guideDay_._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 750, 4 + ) + __guideDay_._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 750, 4) + guideDay_ = property(__guideDay_.value, __guideDay_.set, None, None) - # Attribute midRef uses Python identifier midRef - __midRef = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'midRef'), 'midRef', '__urnvpromedia2009_scheduleEventType_midRef', _module_typeBindings.midType, required=True) - __midRef._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 751, 4) - __midRef._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 751, 4) - + __midRef = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "midRef"), + "midRef", + "__urnvpromedia2009_scheduleEventType_midRef", + _module_typeBindings.midType, + required=True, + ) + __midRef._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 751, 4 + ) + __midRef._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 751, 4) + midRef = property(__midRef.value, __midRef.set, None, None) - # Attribute urnRef uses Python identifier urnRef - __urnRef = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'urnRef'), 'urnRef', '__urnvpromedia2009_scheduleEventType_urnRef', pyxb.binding.datatypes.anyURI, required=True) - __urnRef._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 752, 4) - __urnRef._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 752, 4) - + __urnRef = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "urnRef"), + "urnRef", + "__urnvpromedia2009_scheduleEventType_urnRef", + pyxb.binding.datatypes.anyURI, + required=True, + ) + __urnRef._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 752, 4 + ) + __urnRef._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 752, 4) + urnRef = property(__urnRef.value, __urnRef.set, None, None) - # Attribute type uses Python identifier type - __type = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'type'), 'type', '__urnvpromedia2009_scheduleEventType_type', _module_typeBindings.scheduleEventTypeEnum) - __type._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 753, 4) - __type._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 753, 4) - + __type = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "type"), + "type", + "__urnvpromedia2009_scheduleEventType_type", + _module_typeBindings.scheduleEventTypeEnum, + ) + __type._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 753, 4 + ) + __type._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 753, 4) + type = property(__type.value, __type.set, None, None) - _ElementMap.update({ - __title.name() : __title, - __description.name() : __description, - __repeat.name() : __repeat, - __memberOf.name() : __memberOf, - __avAttributes.name() : __avAttributes, - __textSubtitles.name() : __textSubtitles, - __textPage.name() : __textPage, - __guideDay.name() : __guideDay, - __start.name() : __start, - __offset.name() : __offset, - __duration.name() : __duration, - __poProgID.name() : __poProgID, - __primaryLifestyle.name() : __primaryLifestyle, - __secondaryLifestyle.name() : __secondaryLifestyle - }) - _AttributeMap.update({ - __imi.name() : __imi, - __channel.name() : __channel, - __net.name() : __net, - __guideDay_.name() : __guideDay_, - __midRef.name() : __midRef, - __urnRef.name() : __urnRef, - __type.name() : __type - }) + _ElementMap.update( + { + __title.name(): __title, + __description.name(): __description, + __repeat.name(): __repeat, + __memberOf.name(): __memberOf, + __avAttributes.name(): __avAttributes, + __textSubtitles.name(): __textSubtitles, + __textPage.name(): __textPage, + __guideDay.name(): __guideDay, + __start.name(): __start, + __offset.name(): __offset, + __duration.name(): __duration, + __poProgID.name(): __poProgID, + __primaryLifestyle.name(): __primaryLifestyle, + __secondaryLifestyle.name(): __secondaryLifestyle, + } + ) + _AttributeMap.update( + { + __imi.name(): __imi, + __channel.name(): __channel, + __net.name(): __net, + __guideDay_.name(): __guideDay_, + __midRef.name(): __midRef, + __urnRef.name(): __urnRef, + __type.name(): __type, + } + ) + + _module_typeBindings.scheduleEventType = scheduleEventType -Namespace.addCategoryObject('typeBinding', 'scheduleEventType', scheduleEventType) +Namespace.addCategoryObject("typeBinding", "scheduleEventType", scheduleEventType) # Complex type {urn:vpro:media:2009}scheduleEventTitle with content type SIMPLE -class scheduleEventTitle (pyxb.binding.basis.complexTypeDefinition): +class scheduleEventTitle(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:2009}scheduleEventTitle with content type SIMPLE""" + _TypeDefinition = pyxb.binding.datatypes.string _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_SIMPLE _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'scheduleEventTitle') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 756, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "scheduleEventTitle") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 756, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.string - + # Attribute owner uses Python identifier owner - __owner = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'owner'), 'owner', '__urnvpromedia2009_scheduleEventTitle_owner', _ImportedBinding_npoapi_xml_shared.ownerTypeEnum, required=True) - __owner._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 759, 8) - __owner._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 759, 8) - + __owner = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "owner"), + "owner", + "__urnvpromedia2009_scheduleEventTitle_owner", + _ImportedBinding_npoapi_xml_shared.ownerTypeEnum, + required=True, + ) + __owner._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 759, 8 + ) + __owner._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 759, 8) + owner = property(__owner.value, __owner.set, None, None) - # Attribute type uses Python identifier type - __type = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'type'), 'type', '__urnvpromedia2009_scheduleEventTitle_type', _module_typeBindings.textualTypeEnum, required=True) - __type._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 760, 8) - __type._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 760, 8) - + __type = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "type"), + "type", + "__urnvpromedia2009_scheduleEventTitle_type", + _module_typeBindings.textualTypeEnum, + required=True, + ) + __type._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 760, 8 + ) + __type._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 760, 8) + type = property(__type.value, __type.set, None, None) - _ElementMap.update({ - - }) - _AttributeMap.update({ - __owner.name() : __owner, - __type.name() : __type - }) + _ElementMap.update({}) + _AttributeMap.update({__owner.name(): __owner, __type.name(): __type}) + + _module_typeBindings.scheduleEventTitle = scheduleEventTitle -Namespace.addCategoryObject('typeBinding', 'scheduleEventTitle', scheduleEventTitle) +Namespace.addCategoryObject("typeBinding", "scheduleEventTitle", scheduleEventTitle) # Complex type {urn:vpro:media:2009}scheduleEventDescription with content type SIMPLE -class scheduleEventDescription (pyxb.binding.basis.complexTypeDefinition): +class scheduleEventDescription(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:2009}scheduleEventDescription with content type SIMPLE""" + _TypeDefinition = pyxb.binding.datatypes.string _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_SIMPLE _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'scheduleEventDescription') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 765, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "scheduleEventDescription") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 765, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.string - + # Attribute owner uses Python identifier owner - __owner = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'owner'), 'owner', '__urnvpromedia2009_scheduleEventDescription_owner', _ImportedBinding_npoapi_xml_shared.ownerTypeEnum, required=True) - __owner._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 768, 8) - __owner._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 768, 8) - + __owner = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "owner"), + "owner", + "__urnvpromedia2009_scheduleEventDescription_owner", + _ImportedBinding_npoapi_xml_shared.ownerTypeEnum, + required=True, + ) + __owner._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 768, 8 + ) + __owner._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 768, 8) + owner = property(__owner.value, __owner.set, None, None) - # Attribute type uses Python identifier type - __type = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'type'), 'type', '__urnvpromedia2009_scheduleEventDescription_type', _module_typeBindings.textualTypeEnum, required=True) - __type._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 769, 8) - __type._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 769, 8) - + __type = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "type"), + "type", + "__urnvpromedia2009_scheduleEventDescription_type", + _module_typeBindings.textualTypeEnum, + required=True, + ) + __type._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 769, 8 + ) + __type._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 769, 8) + type = property(__type.value, __type.set, None, None) - _ElementMap.update({ - - }) - _AttributeMap.update({ - __owner.name() : __owner, - __type.name() : __type - }) + _ElementMap.update({}) + _AttributeMap.update({__owner.name(): __owner, __type.name(): __type}) + + _module_typeBindings.scheduleEventDescription = scheduleEventDescription -Namespace.addCategoryObject('typeBinding', 'scheduleEventDescription', scheduleEventDescription) +Namespace.addCategoryObject("typeBinding", "scheduleEventDescription", scheduleEventDescription) # Complex type {urn:vpro:media:2009}predictionType with content type SIMPLE -class predictionType (pyxb.binding.basis.complexTypeDefinition): +class predictionType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:2009}predictionType with content type SIMPLE""" + _TypeDefinition = pyxb.binding.datatypes.string _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_SIMPLE _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'predictionType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 805, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "predictionType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 805, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.string - + # Attribute state uses Python identifier state - __state = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'state'), 'state', '__urnvpromedia2009_predictionType_state', _module_typeBindings.predictionStateEnum) - __state._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 808, 8) - __state._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 808, 8) - + __state = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "state"), + "state", + "__urnvpromedia2009_predictionType_state", + _module_typeBindings.predictionStateEnum, + ) + __state._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 808, 8 + ) + __state._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 808, 8) + state = property(__state.value, __state.set, None, None) - # Attribute publishStart uses Python identifier publishStart - __publishStart = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'publishStart'), 'publishStart', '__urnvpromedia2009_predictionType_publishStart', pyxb.binding.datatypes.dateTime) - __publishStart._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 809, 8) - __publishStart._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 809, 8) - + __publishStart = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "publishStart"), + "publishStart", + "__urnvpromedia2009_predictionType_publishStart", + pyxb.binding.datatypes.dateTime, + ) + __publishStart._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 809, 8 + ) + __publishStart._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 809, 8 + ) + publishStart = property(__publishStart.value, __publishStart.set, None, None) - # Attribute publishStop uses Python identifier publishStop - __publishStop = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'publishStop'), 'publishStop', '__urnvpromedia2009_predictionType_publishStop', pyxb.binding.datatypes.dateTime) - __publishStop._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 810, 8) - __publishStop._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 810, 8) - + __publishStop = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "publishStop"), + "publishStop", + "__urnvpromedia2009_predictionType_publishStop", + pyxb.binding.datatypes.dateTime, + ) + __publishStop._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 810, 8 + ) + __publishStop._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 810, 8) + publishStop = property(__publishStop.value, __publishStop.set, None, None) - _ElementMap.update({ - - }) - _AttributeMap.update({ - __state.name() : __state, - __publishStart.name() : __publishStart, - __publishStop.name() : __publishStop - }) + _ElementMap.update({}) + _AttributeMap.update( + {__state.name(): __state, __publishStart.name(): __publishStart, __publishStop.name(): __publishStop} + ) + + _module_typeBindings.predictionType = predictionType -Namespace.addCategoryObject('typeBinding', 'predictionType', predictionType) +Namespace.addCategoryObject("typeBinding", "predictionType", predictionType) # Complex type {urn:vpro:media:2009}locationType with content type ELEMENT_ONLY -class locationType (pyxb.binding.basis.complexTypeDefinition): +class locationType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:2009}locationType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'locationType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 821, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "locationType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 821, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:2009}programUrl uses Python identifier programUrl - __programUrl = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'programUrl'), 'programUrl', '__urnvpromedia2009_locationType_urnvpromedia2009programUrl', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 823, 6), ) + __programUrl = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "programUrl"), + "programUrl", + "__urnvpromedia2009_locationType_urnvpromedia2009programUrl", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 823, 6), + ) - programUrl = property(__programUrl.value, __programUrl.set, None, None) - # Element {urn:vpro:media:2009}avAttributes uses Python identifier avAttributes - __avAttributes = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'avAttributes'), 'avAttributes', '__urnvpromedia2009_locationType_urnvpromedia2009avAttributes', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 824, 6), ) + __avAttributes = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "avAttributes"), + "avAttributes", + "__urnvpromedia2009_locationType_urnvpromedia2009avAttributes", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 824, 6), + ) - avAttributes = property(__avAttributes.value, __avAttributes.set, None, None) - # Element {urn:vpro:media:2009}subtitles uses Python identifier subtitles - __subtitles = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'subtitles'), 'subtitles', '__urnvpromedia2009_locationType_urnvpromedia2009subtitles', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 825, 6), ) + __subtitles = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "subtitles"), + "subtitles", + "__urnvpromedia2009_locationType_urnvpromedia2009subtitles", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 825, 6), + ) - subtitles = property(__subtitles.value, __subtitles.set, None, None) - # Element {urn:vpro:media:2009}offset uses Python identifier offset - __offset = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'offset'), 'offset', '__urnvpromedia2009_locationType_urnvpromedia2009offset', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 826, 6), ) + __offset = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "offset"), + "offset", + "__urnvpromedia2009_locationType_urnvpromedia2009offset", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 826, 6), + ) - offset = property(__offset.value, __offset.set, None, None) - # Element {urn:vpro:media:2009}duration uses Python identifier duration - __duration = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'duration'), 'duration', '__urnvpromedia2009_locationType_urnvpromedia2009duration', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 827, 6), ) + __duration = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "duration"), + "duration", + "__urnvpromedia2009_locationType_urnvpromedia2009duration", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 827, 6), + ) - duration = property(__duration.value, __duration.set, None, None) - # Attribute type uses Python identifier type - __type = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'type'), 'type', '__urnvpromedia2009_locationType_type', _module_typeBindings.locationTypeEnum) - __type._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 829, 4) - __type._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 829, 4) - + __type = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "type"), + "type", + "__urnvpromedia2009_locationType_type", + _module_typeBindings.locationTypeEnum, + ) + __type._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 829, 4 + ) + __type._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 829, 4) + type = property(__type.value, __type.set, None, None) - # Attribute platform uses Python identifier platform - __platform = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'platform'), 'platform', '__urnvpromedia2009_locationType_platform', _module_typeBindings.platformTypeEnum) - __platform._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 830, 4) - __platform._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 830, 4) - + __platform = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "platform"), + "platform", + "__urnvpromedia2009_locationType_platform", + _module_typeBindings.platformTypeEnum, + ) + __platform._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 830, 4 + ) + __platform._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 830, 4) + platform = property(__platform.value, __platform.set, None, None) - # Attribute owner uses Python identifier owner - __owner = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'owner'), 'owner', '__urnvpromedia2009_locationType_owner', _ImportedBinding_npoapi_xml_shared.ownerTypeEnum, required=True) - __owner._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 831, 4) - __owner._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 831, 4) - + __owner = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "owner"), + "owner", + "__urnvpromedia2009_locationType_owner", + _ImportedBinding_npoapi_xml_shared.ownerTypeEnum, + required=True, + ) + __owner._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 831, 4 + ) + __owner._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 831, 4) + owner = property(__owner.value, __owner.set, None, None) - # Attribute urn uses Python identifier urn - __urn = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'urn'), 'urn', '__urnvpromedia2009_locationType_urn', pyxb.binding.datatypes.anyURI) - __urn._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 11, 4) - __urn._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 11, 4) - + __urn = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "urn"), + "urn", + "__urnvpromedia2009_locationType_urn", + pyxb.binding.datatypes.anyURI, + ) + __urn._DeclarationLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 11, 4) + __urn._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 11, 4) + urn = property(__urn.value, __urn.set, None, None) - # Attribute publishStart uses Python identifier publishStart - __publishStart = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'publishStart'), 'publishStart', '__urnvpromedia2009_locationType_publishStart', pyxb.binding.datatypes.dateTime) - __publishStart._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 12, 4) - __publishStart._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 12, 4) - + __publishStart = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "publishStart"), + "publishStart", + "__urnvpromedia2009_locationType_publishStart", + pyxb.binding.datatypes.dateTime, + ) + __publishStart._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproShared.xsd", 12, 4 + ) + __publishStart._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproShared.xsd", 12, 4 + ) + publishStart = property(__publishStart.value, __publishStart.set, None, None) - # Attribute publishStop uses Python identifier publishStop - __publishStop = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'publishStop'), 'publishStop', '__urnvpromedia2009_locationType_publishStop', pyxb.binding.datatypes.dateTime) - __publishStop._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 13, 4) - __publishStop._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 13, 4) - + __publishStop = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "publishStop"), + "publishStop", + "__urnvpromedia2009_locationType_publishStop", + pyxb.binding.datatypes.dateTime, + ) + __publishStop._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproShared.xsd", 13, 4 + ) + __publishStop._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 13, 4) + publishStop = property(__publishStop.value, __publishStop.set, None, None) - # Attribute publishDate uses Python identifier publishDate - __publishDate = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'publishDate'), 'publishDate', '__urnvpromedia2009_locationType_publishDate', pyxb.binding.datatypes.dateTime) - __publishDate._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 14, 4) - __publishDate._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 14, 4) - + __publishDate = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "publishDate"), + "publishDate", + "__urnvpromedia2009_locationType_publishDate", + pyxb.binding.datatypes.dateTime, + ) + __publishDate._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproShared.xsd", 14, 4 + ) + __publishDate._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 14, 4) + publishDate = property(__publishDate.value, __publishDate.set, None, None) - # Attribute creationDate uses Python identifier creationDate - __creationDate = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'creationDate'), 'creationDate', '__urnvpromedia2009_locationType_creationDate', pyxb.binding.datatypes.dateTime) - __creationDate._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 15, 4) - __creationDate._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 15, 4) - + __creationDate = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "creationDate"), + "creationDate", + "__urnvpromedia2009_locationType_creationDate", + pyxb.binding.datatypes.dateTime, + ) + __creationDate._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproShared.xsd", 15, 4 + ) + __creationDate._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproShared.xsd", 15, 4 + ) + creationDate = property(__creationDate.value, __creationDate.set, None, None) - # Attribute lastModified uses Python identifier lastModified - __lastModified = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'lastModified'), 'lastModified', '__urnvpromedia2009_locationType_lastModified', pyxb.binding.datatypes.dateTime) - __lastModified._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 16, 4) - __lastModified._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 16, 4) - + __lastModified = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "lastModified"), + "lastModified", + "__urnvpromedia2009_locationType_lastModified", + pyxb.binding.datatypes.dateTime, + ) + __lastModified._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproShared.xsd", 16, 4 + ) + __lastModified._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproShared.xsd", 16, 4 + ) + lastModified = property(__lastModified.value, __lastModified.set, None, None) - # Attribute workflow uses Python identifier workflow - __workflow = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'workflow'), 'workflow', '__urnvpromedia2009_locationType_workflow', _ImportedBinding_npoapi_xml_shared.workflowEnumType) - __workflow._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 17, 4) - __workflow._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 17, 4) - + __workflow = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "workflow"), + "workflow", + "__urnvpromedia2009_locationType_workflow", + _ImportedBinding_npoapi_xml_shared.workflowEnumType, + ) + __workflow._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproShared.xsd", 17, 4 + ) + __workflow._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 17, 4) + workflow = property(__workflow.value, __workflow.set, None, None) - _ElementMap.update({ - __programUrl.name() : __programUrl, - __avAttributes.name() : __avAttributes, - __subtitles.name() : __subtitles, - __offset.name() : __offset, - __duration.name() : __duration - }) - _AttributeMap.update({ - __type.name() : __type, - __platform.name() : __platform, - __owner.name() : __owner, - __urn.name() : __urn, - __publishStart.name() : __publishStart, - __publishStop.name() : __publishStop, - __publishDate.name() : __publishDate, - __creationDate.name() : __creationDate, - __lastModified.name() : __lastModified, - __workflow.name() : __workflow - }) + _ElementMap.update( + { + __programUrl.name(): __programUrl, + __avAttributes.name(): __avAttributes, + __subtitles.name(): __subtitles, + __offset.name(): __offset, + __duration.name(): __duration, + } + ) + _AttributeMap.update( + { + __type.name(): __type, + __platform.name(): __platform, + __owner.name(): __owner, + __urn.name(): __urn, + __publishStart.name(): __publishStart, + __publishStop.name(): __publishStop, + __publishDate.name(): __publishDate, + __creationDate.name(): __creationDate, + __lastModified.name(): __lastModified, + __workflow.name(): __workflow, + } + ) + + _module_typeBindings.locationType = locationType -Namespace.addCategoryObject('typeBinding', 'locationType', locationType) +Namespace.addCategoryObject("typeBinding", "locationType", locationType) # Complex type {urn:vpro:media:2009}descendantRefType with content type EMPTY -class descendantRefType (pyxb.binding.basis.complexTypeDefinition): +class descendantRefType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:2009}descendantRefType with content type EMPTY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_EMPTY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'descendantRefType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 862, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "descendantRefType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 862, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Attribute midRef uses Python identifier midRef - __midRef = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'midRef'), 'midRef', '__urnvpromedia2009_descendantRefType_midRef', _module_typeBindings.midType) - __midRef._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 863, 4) - __midRef._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 863, 4) - + __midRef = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "midRef"), + "midRef", + "__urnvpromedia2009_descendantRefType_midRef", + _module_typeBindings.midType, + ) + __midRef._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 863, 4 + ) + __midRef._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 863, 4) + midRef = property(__midRef.value, __midRef.set, None, None) - # Attribute urnRef uses Python identifier urnRef - __urnRef = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'urnRef'), 'urnRef', '__urnvpromedia2009_descendantRefType_urnRef', pyxb.binding.datatypes.anyURI) - __urnRef._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 864, 4) - __urnRef._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 864, 4) - + __urnRef = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "urnRef"), + "urnRef", + "__urnvpromedia2009_descendantRefType_urnRef", + pyxb.binding.datatypes.anyURI, + ) + __urnRef._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 864, 4 + ) + __urnRef._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 864, 4) + urnRef = property(__urnRef.value, __urnRef.set, None, None) - # Attribute type uses Python identifier type - __type = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'type'), 'type', '__urnvpromedia2009_descendantRefType_type', _module_typeBindings.mediaTypeEnum, required=True) - __type._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 865, 4) - __type._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 865, 4) - + __type = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "type"), + "type", + "__urnvpromedia2009_descendantRefType_type", + _module_typeBindings.mediaTypeEnum, + required=True, + ) + __type._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 865, 4 + ) + __type._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 865, 4) + type = property(__type.value, __type.set, None, None) - _ElementMap.update({ - - }) - _AttributeMap.update({ - __midRef.name() : __midRef, - __urnRef.name() : __urnRef, - __type.name() : __type - }) + _ElementMap.update({}) + _AttributeMap.update({__midRef.name(): __midRef, __urnRef.name(): __urnRef, __type.name(): __type}) + + _module_typeBindings.descendantRefType = descendantRefType -Namespace.addCategoryObject('typeBinding', 'descendantRefType', descendantRefType) +Namespace.addCategoryObject("typeBinding", "descendantRefType", descendantRefType) # Complex type {urn:vpro:media:2009}memberRefType with content type ELEMENT_ONLY -class memberRefType (pyxb.binding.basis.complexTypeDefinition): +class memberRefType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:2009}memberRefType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'memberRefType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 871, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "memberRefType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 871, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:2009}episodeOf uses Python identifier episodeOf - __episodeOf = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'episodeOf'), 'episodeOf', '__urnvpromedia2009_memberRefType_urnvpromedia2009episodeOf', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 873, 6), ) + __episodeOf = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "episodeOf"), + "episodeOf", + "__urnvpromedia2009_memberRefType_urnvpromedia2009episodeOf", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 873, 6), + ) - episodeOf = property(__episodeOf.value, __episodeOf.set, None, None) - # Element {urn:vpro:media:2009}memberOf uses Python identifier memberOf - __memberOf = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'memberOf'), 'memberOf', '__urnvpromedia2009_memberRefType_urnvpromedia2009memberOf', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 874, 6), ) + __memberOf = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "memberOf"), + "memberOf", + "__urnvpromedia2009_memberRefType_urnvpromedia2009memberOf", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 874, 6), + ) - memberOf = property(__memberOf.value, __memberOf.set, None, None) - # Element {urn:vpro:media:2009}segmentOf uses Python identifier segmentOf - __segmentOf = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'segmentOf'), 'segmentOf', '__urnvpromedia2009_memberRefType_urnvpromedia2009segmentOf', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 875, 6), ) + __segmentOf = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "segmentOf"), + "segmentOf", + "__urnvpromedia2009_memberRefType_urnvpromedia2009segmentOf", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 875, 6), + ) - segmentOf = property(__segmentOf.value, __segmentOf.set, None, None) - # Attribute midRef uses Python identifier midRef - __midRef = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'midRef'), 'midRef', '__urnvpromedia2009_memberRefType_midRef', _module_typeBindings.midType) - __midRef._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 877, 4) - __midRef._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 877, 4) - - midRef = property(__midRef.value, __midRef.set, None, '\n Reference to the MID of the parent of this object.\n ') + __midRef = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "midRef"), + "midRef", + "__urnvpromedia2009_memberRefType_midRef", + _module_typeBindings.midType, + ) + __midRef._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 877, 4 + ) + __midRef._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 877, 4) + + midRef = property( + __midRef.value, __midRef.set, None, "\n Reference to the MID of the parent of this object.\n " + ) - # Attribute urnRef uses Python identifier urnRef - __urnRef = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'urnRef'), 'urnRef', '__urnvpromedia2009_memberRefType_urnRef', pyxb.binding.datatypes.anyURI) - __urnRef._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 884, 4) - __urnRef._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 884, 4) - - urnRef = property(__urnRef.value, __urnRef.set, None, "\n Reference to the URN of the parent of this object. URN's are no longer actively used, but the attribute is\n still available for backwards compatibility.\n ") + __urnRef = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "urnRef"), + "urnRef", + "__urnvpromedia2009_memberRefType_urnRef", + pyxb.binding.datatypes.anyURI, + ) + __urnRef._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 884, 4 + ) + __urnRef._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 884, 4) + + urnRef = property( + __urnRef.value, + __urnRef.set, + None, + "\n Reference to the URN of the parent of this object. URN's are no longer actively used, but the attribute is\n still available for backwards compatibility.\n ", + ) - # Attribute cridRef uses Python identifier cridRef - __cridRef = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'cridRef'), 'cridRef', '__urnvpromedia2009_memberRefType_cridRef', pyxb.binding.datatypes.anyURI) - __cridRef._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 892, 4) - __cridRef._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 892, 4) - - cridRef = property(__cridRef.value, __cridRef.set, None, '\n Reference to a crid of the parent of this object. This is only used for imports from systems that cannot\n supply a MID or URN. POMS does not export or publish parent crids.\n ') + __cridRef = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "cridRef"), + "cridRef", + "__urnvpromedia2009_memberRefType_cridRef", + pyxb.binding.datatypes.anyURI, + ) + __cridRef._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 892, 4 + ) + __cridRef._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 892, 4) + + cridRef = property( + __cridRef.value, + __cridRef.set, + None, + "\n Reference to a crid of the parent of this object. This is only used for imports from systems that cannot\n supply a MID or URN. POMS does not export or publish parent crids.\n ", + ) - # Attribute type uses Python identifier type - __type = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'type'), 'type', '__urnvpromedia2009_memberRefType_type', _module_typeBindings.mediaTypeEnum) - __type._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 900, 4) - __type._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 900, 4) - + __type = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "type"), + "type", + "__urnvpromedia2009_memberRefType_type", + _module_typeBindings.mediaTypeEnum, + ) + __type._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 900, 4 + ) + __type._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 900, 4) + type = property(__type.value, __type.set, None, None) - # Attribute index uses Python identifier index - __index = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'index'), 'index', '__urnvpromedia2009_memberRefType_index', pyxb.binding.datatypes.positiveInteger) - __index._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 901, 4) - __index._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 901, 4) - + __index = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "index"), + "index", + "__urnvpromedia2009_memberRefType_index", + pyxb.binding.datatypes.positiveInteger, + ) + __index._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 901, 4 + ) + __index._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 901, 4) + index = property(__index.value, __index.set, None, None) - # Attribute highlighted uses Python identifier highlighted - __highlighted = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'highlighted'), 'highlighted', '__urnvpromedia2009_memberRefType_highlighted', pyxb.binding.datatypes.boolean, unicode_default='false') - __highlighted._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 902, 4) - __highlighted._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 902, 4) - + __highlighted = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "highlighted"), + "highlighted", + "__urnvpromedia2009_memberRefType_highlighted", + pyxb.binding.datatypes.boolean, + unicode_default="false", + ) + __highlighted._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 902, 4 + ) + __highlighted._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 902, 4) + highlighted = property(__highlighted.value, __highlighted.set, None, None) - # Attribute added uses Python identifier added - __added = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'added'), 'added', '__urnvpromedia2009_memberRefType_added', pyxb.binding.datatypes.dateTime) - __added._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 903, 4) - __added._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 903, 4) - + __added = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "added"), + "added", + "__urnvpromedia2009_memberRefType_added", + pyxb.binding.datatypes.dateTime, + ) + __added._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 903, 4 + ) + __added._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 903, 4) + added = property(__added.value, __added.set, None, None) - _ElementMap.update({ - __episodeOf.name() : __episodeOf, - __memberOf.name() : __memberOf, - __segmentOf.name() : __segmentOf - }) - _AttributeMap.update({ - __midRef.name() : __midRef, - __urnRef.name() : __urnRef, - __cridRef.name() : __cridRef, - __type.name() : __type, - __index.name() : __index, - __highlighted.name() : __highlighted, - __added.name() : __added - }) + _ElementMap.update( + {__episodeOf.name(): __episodeOf, __memberOf.name(): __memberOf, __segmentOf.name(): __segmentOf} + ) + _AttributeMap.update( + { + __midRef.name(): __midRef, + __urnRef.name(): __urnRef, + __cridRef.name(): __cridRef, + __type.name(): __type, + __index.name(): __index, + __highlighted.name(): __highlighted, + __added.name(): __added, + } + ) + + _module_typeBindings.memberRefType = memberRefType -Namespace.addCategoryObject('typeBinding', 'memberRefType', memberRefType) +Namespace.addCategoryObject("typeBinding", "memberRefType", memberRefType) # Complex type {urn:vpro:media:2009}recursiveMemberRef with content type ELEMENT_ONLY -class recursiveMemberRef (pyxb.binding.basis.complexTypeDefinition): +class recursiveMemberRef(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:2009}recursiveMemberRef with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'recursiveMemberRef') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 909, 1) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "recursiveMemberRef") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 909, 1) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:2009}memberOf uses Python identifier memberOf - __memberOf = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'memberOf'), 'memberOf', '__urnvpromedia2009_recursiveMemberRef_urnvpromedia2009memberOf', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 911, 6), ) + __memberOf = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "memberOf"), + "memberOf", + "__urnvpromedia2009_recursiveMemberRef_urnvpromedia2009memberOf", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 911, 6), + ) - memberOf = property(__memberOf.value, __memberOf.set, None, None) - # Element {urn:vpro:media:2009}episodeOf uses Python identifier episodeOf - __episodeOf = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'episodeOf'), 'episodeOf', '__urnvpromedia2009_recursiveMemberRef_urnvpromedia2009episodeOf', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 912, 6), ) + __episodeOf = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "episodeOf"), + "episodeOf", + "__urnvpromedia2009_recursiveMemberRef_urnvpromedia2009episodeOf", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 912, 6), + ) - episodeOf = property(__episodeOf.value, __episodeOf.set, None, None) - # Element {urn:vpro:media:2009}segmentOf uses Python identifier segmentOf - __segmentOf = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'segmentOf'), 'segmentOf', '__urnvpromedia2009_recursiveMemberRef_urnvpromedia2009segmentOf', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 913, 6), ) + __segmentOf = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "segmentOf"), + "segmentOf", + "__urnvpromedia2009_recursiveMemberRef_urnvpromedia2009segmentOf", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 913, 6), + ) - segmentOf = property(__segmentOf.value, __segmentOf.set, None, None) - # Attribute midRef uses Python identifier midRef - __midRef = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'midRef'), 'midRef', '__urnvpromedia2009_recursiveMemberRef_midRef', pyxb.binding.datatypes.string) - __midRef._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 915, 4) - __midRef._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 915, 4) - + __midRef = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "midRef"), + "midRef", + "__urnvpromedia2009_recursiveMemberRef_midRef", + pyxb.binding.datatypes.string, + ) + __midRef._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 915, 4 + ) + __midRef._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 915, 4) + midRef = property(__midRef.value, __midRef.set, None, None) - # Attribute type uses Python identifier type - __type = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'type'), 'type', '__urnvpromedia2009_recursiveMemberRef_type', _module_typeBindings.mediaTypeEnum) - __type._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 916, 4) - __type._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 916, 4) - + __type = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "type"), + "type", + "__urnvpromedia2009_recursiveMemberRef_type", + _module_typeBindings.mediaTypeEnum, + ) + __type._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 916, 4 + ) + __type._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 916, 4) + type = property(__type.value, __type.set, None, None) - # Attribute index uses Python identifier index - __index = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'index'), 'index', '__urnvpromedia2009_recursiveMemberRef_index', pyxb.binding.datatypes.int) - __index._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 917, 4) - __index._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 917, 4) - + __index = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "index"), + "index", + "__urnvpromedia2009_recursiveMemberRef_index", + pyxb.binding.datatypes.int, + ) + __index._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 917, 4 + ) + __index._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 917, 4) + index = property(__index.value, __index.set, None, None) - # Attribute highlighted uses Python identifier highlighted - __highlighted = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'highlighted'), 'highlighted', '__urnvpromedia2009_recursiveMemberRef_highlighted', pyxb.binding.datatypes.boolean, unicode_default='false') - __highlighted._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 918, 4) - __highlighted._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 918, 4) - + __highlighted = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "highlighted"), + "highlighted", + "__urnvpromedia2009_recursiveMemberRef_highlighted", + pyxb.binding.datatypes.boolean, + unicode_default="false", + ) + __highlighted._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 918, 4 + ) + __highlighted._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 918, 4) + highlighted = property(__highlighted.value, __highlighted.set, None, None) - _ElementMap.update({ - __memberOf.name() : __memberOf, - __episodeOf.name() : __episodeOf, - __segmentOf.name() : __segmentOf - }) - _AttributeMap.update({ - __midRef.name() : __midRef, - __type.name() : __type, - __index.name() : __index, - __highlighted.name() : __highlighted - }) + _ElementMap.update( + {__memberOf.name(): __memberOf, __episodeOf.name(): __episodeOf, __segmentOf.name(): __segmentOf} + ) + _AttributeMap.update( + {__midRef.name(): __midRef, __type.name(): __type, __index.name(): __index, __highlighted.name(): __highlighted} + ) + + _module_typeBindings.recursiveMemberRef = recursiveMemberRef -Namespace.addCategoryObject('typeBinding', 'recursiveMemberRef', recursiveMemberRef) +Namespace.addCategoryObject("typeBinding", "recursiveMemberRef", recursiveMemberRef) # Complex type {urn:vpro:media:2009}genreType with content type ELEMENT_ONLY -class genreType (pyxb.binding.basis.complexTypeDefinition): +class genreType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:2009}genreType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'genreType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 961, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "genreType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 961, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:2009}term uses Python identifier term - __term = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'term'), 'term', '__urnvpromedia2009_genreType_urnvpromedia2009term', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 963, 6), ) + __term = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "term"), + "term", + "__urnvpromedia2009_genreType_urnvpromedia2009term", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 963, 6), + ) - term = property(__term.value, __term.set, None, None) - # Attribute id uses Python identifier id - __id = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'id'), 'id', '__urnvpromedia2009_genreType_id', _module_typeBindings.genreIdType, required=True) - __id._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 965, 4) - __id._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 965, 4) - + __id = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "id"), + "id", + "__urnvpromedia2009_genreType_id", + _module_typeBindings.genreIdType, + required=True, + ) + __id._DeclarationLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 965, 4) + __id._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 965, 4) + id = property(__id.value, __id.set, None, None) - _ElementMap.update({ - __term.name() : __term - }) - _AttributeMap.update({ - __id.name() : __id - }) + _ElementMap.update({__term.name(): __term}) + _AttributeMap.update({__id.name(): __id}) + + _module_typeBindings.genreType = genreType -Namespace.addCategoryObject('typeBinding', 'genreType', genreType) +Namespace.addCategoryObject("typeBinding", "genreType", genreType) # Complex type {urn:vpro:media:2009}geoLocationsType with content type ELEMENT_ONLY -class geoLocationsType (pyxb.binding.basis.complexTypeDefinition): +class geoLocationsType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:2009}geoLocationsType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'geoLocationsType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 984, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "geoLocationsType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 984, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:2009}geoLocation uses Python identifier geoLocation - __geoLocation = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'geoLocation'), 'geoLocation', '__urnvpromedia2009_geoLocationsType_urnvpromedia2009geoLocation', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 986, 6), ) + __geoLocation = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "geoLocation"), + "geoLocation", + "__urnvpromedia2009_geoLocationsType_urnvpromedia2009geoLocation", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 986, 6), + ) - geoLocation = property(__geoLocation.value, __geoLocation.set, None, None) - # Attribute owner uses Python identifier owner - __owner = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'owner'), 'owner', '__urnvpromedia2009_geoLocationsType_owner', _ImportedBinding_npoapi_xml_shared.ownerTypeEnum) - __owner._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 988, 4) - __owner._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 988, 4) - + __owner = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "owner"), + "owner", + "__urnvpromedia2009_geoLocationsType_owner", + _ImportedBinding_npoapi_xml_shared.ownerTypeEnum, + ) + __owner._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 988, 4 + ) + __owner._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 988, 4) + owner = property(__owner.value, __owner.set, None, None) - _ElementMap.update({ - __geoLocation.name() : __geoLocation - }) - _AttributeMap.update({ - __owner.name() : __owner - }) + _ElementMap.update({__geoLocation.name(): __geoLocation}) + _AttributeMap.update({__owner.name(): __owner}) + + _module_typeBindings.geoLocationsType = geoLocationsType -Namespace.addCategoryObject('typeBinding', 'geoLocationsType', geoLocationsType) +Namespace.addCategoryObject("typeBinding", "geoLocationsType", geoLocationsType) # Complex type {urn:vpro:media:2009}geoLocationType with content type ELEMENT_ONLY -class geoLocationType (pyxb.binding.basis.complexTypeDefinition): +class geoLocationType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:2009}geoLocationType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'geoLocationType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 991, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "geoLocationType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 991, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:2009}name uses Python identifier name - __name = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'name'), 'name', '__urnvpromedia2009_geoLocationType_urnvpromedia2009name', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 993, 6), ) + __name = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "name"), + "name", + "__urnvpromedia2009_geoLocationType_urnvpromedia2009name", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 993, 6), + ) - name = property(__name.value, __name.set, None, None) - # Element {urn:vpro:media:2009}scopeNote uses Python identifier scopeNote - __scopeNote = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'scopeNote'), 'scopeNote', '__urnvpromedia2009_geoLocationType_urnvpromedia2009scopeNote', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 994, 6), ) + __scopeNote = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "scopeNote"), + "scopeNote", + "__urnvpromedia2009_geoLocationType_urnvpromedia2009scopeNote", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 994, 6), + ) - scopeNote = property(__scopeNote.value, __scopeNote.set, None, None) - # Attribute role uses Python identifier role - __role = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'role'), 'role', '__urnvpromedia2009_geoLocationType_role', _module_typeBindings.geoRoleType, required=True) - __role._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 996, 4) - __role._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 996, 4) - + __role = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "role"), + "role", + "__urnvpromedia2009_geoLocationType_role", + _module_typeBindings.geoRoleType, + required=True, + ) + __role._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 996, 4 + ) + __role._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 996, 4) + role = property(__role.value, __role.set, None, None) - # Attribute gtaaUri uses Python identifier gtaaUri - __gtaaUri = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'gtaaUri'), 'gtaaUri', '__urnvpromedia2009_geoLocationType_gtaaUri', pyxb.binding.datatypes.string) - __gtaaUri._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 997, 4) - __gtaaUri._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 997, 4) - + __gtaaUri = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "gtaaUri"), + "gtaaUri", + "__urnvpromedia2009_geoLocationType_gtaaUri", + pyxb.binding.datatypes.string, + ) + __gtaaUri._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 997, 4 + ) + __gtaaUri._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 997, 4) + gtaaUri = property(__gtaaUri.value, __gtaaUri.set, None, None) - # Attribute gtaaStatus uses Python identifier gtaaStatus - __gtaaStatus = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'gtaaStatus'), 'gtaaStatus', '__urnvpromedia2009_geoLocationType_gtaaStatus', _module_typeBindings.gtaaStatusType) - __gtaaStatus._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 998, 4) - __gtaaStatus._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 998, 4) - + __gtaaStatus = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "gtaaStatus"), + "gtaaStatus", + "__urnvpromedia2009_geoLocationType_gtaaStatus", + _module_typeBindings.gtaaStatusType, + ) + __gtaaStatus._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 998, 4 + ) + __gtaaStatus._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 998, 4) + gtaaStatus = property(__gtaaStatus.value, __gtaaStatus.set, None, None) - _ElementMap.update({ - __name.name() : __name, - __scopeNote.name() : __scopeNote - }) - _AttributeMap.update({ - __role.name() : __role, - __gtaaUri.name() : __gtaaUri, - __gtaaStatus.name() : __gtaaStatus - }) + _ElementMap.update({__name.name(): __name, __scopeNote.name(): __scopeNote}) + _AttributeMap.update({__role.name(): __role, __gtaaUri.name(): __gtaaUri, __gtaaStatus.name(): __gtaaStatus}) + + _module_typeBindings.geoLocationType = geoLocationType -Namespace.addCategoryObject('typeBinding', 'geoLocationType', geoLocationType) +Namespace.addCategoryObject("typeBinding", "geoLocationType", geoLocationType) # Complex type {urn:vpro:media:2009}topicsType with content type ELEMENT_ONLY -class topicsType (pyxb.binding.basis.complexTypeDefinition): +class topicsType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:2009}topicsType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'topicsType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 1001, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "topicsType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 1001, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:2009}topic uses Python identifier topic - __topic = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'topic'), 'topic', '__urnvpromedia2009_topicsType_urnvpromedia2009topic', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 1003, 6), ) + __topic = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "topic"), + "topic", + "__urnvpromedia2009_topicsType_urnvpromedia2009topic", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 1003, 6), + ) - topic = property(__topic.value, __topic.set, None, None) - # Attribute owner uses Python identifier owner - __owner = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'owner'), 'owner', '__urnvpromedia2009_topicsType_owner', _ImportedBinding_npoapi_xml_shared.ownerTypeEnum) - __owner._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 1005, 4) - __owner._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 1005, 4) - + __owner = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "owner"), + "owner", + "__urnvpromedia2009_topicsType_owner", + _ImportedBinding_npoapi_xml_shared.ownerTypeEnum, + ) + __owner._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 1005, 4 + ) + __owner._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 1005, 4) + owner = property(__owner.value, __owner.set, None, None) - _ElementMap.update({ - __topic.name() : __topic - }) - _AttributeMap.update({ - __owner.name() : __owner - }) + _ElementMap.update({__topic.name(): __topic}) + _AttributeMap.update({__owner.name(): __owner}) + + _module_typeBindings.topicsType = topicsType -Namespace.addCategoryObject('typeBinding', 'topicsType', topicsType) +Namespace.addCategoryObject("typeBinding", "topicsType", topicsType) # Complex type {urn:vpro:media:2009}topicType with content type ELEMENT_ONLY -class topicType (pyxb.binding.basis.complexTypeDefinition): +class topicType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:2009}topicType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'topicType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 1008, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "topicType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 1008, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:2009}name uses Python identifier name - __name = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'name'), 'name', '__urnvpromedia2009_topicType_urnvpromedia2009name', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 1010, 6), ) + __name = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "name"), + "name", + "__urnvpromedia2009_topicType_urnvpromedia2009name", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 1010, 6), + ) - name = property(__name.value, __name.set, None, None) - # Element {urn:vpro:media:2009}scopeNote uses Python identifier scopeNote - __scopeNote = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'scopeNote'), 'scopeNote', '__urnvpromedia2009_topicType_urnvpromedia2009scopeNote', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 1011, 6), ) + __scopeNote = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "scopeNote"), + "scopeNote", + "__urnvpromedia2009_topicType_urnvpromedia2009scopeNote", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 1011, 6), + ) - scopeNote = property(__scopeNote.value, __scopeNote.set, None, None) - # Attribute gtaaUri uses Python identifier gtaaUri - __gtaaUri = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'gtaaUri'), 'gtaaUri', '__urnvpromedia2009_topicType_gtaaUri', pyxb.binding.datatypes.string) - __gtaaUri._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 1013, 4) - __gtaaUri._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 1013, 4) - + __gtaaUri = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "gtaaUri"), + "gtaaUri", + "__urnvpromedia2009_topicType_gtaaUri", + pyxb.binding.datatypes.string, + ) + __gtaaUri._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 1013, 4 + ) + __gtaaUri._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 1013, 4) + gtaaUri = property(__gtaaUri.value, __gtaaUri.set, None, None) - # Attribute gtaaStatus uses Python identifier gtaaStatus - __gtaaStatus = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'gtaaStatus'), 'gtaaStatus', '__urnvpromedia2009_topicType_gtaaStatus', _module_typeBindings.gtaaStatusType) - __gtaaStatus._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 1014, 4) - __gtaaStatus._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 1014, 4) - + __gtaaStatus = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "gtaaStatus"), + "gtaaStatus", + "__urnvpromedia2009_topicType_gtaaStatus", + _module_typeBindings.gtaaStatusType, + ) + __gtaaStatus._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 1014, 4 + ) + __gtaaStatus._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 1014, 4) + gtaaStatus = property(__gtaaStatus.value, __gtaaStatus.set, None, None) - _ElementMap.update({ - __name.name() : __name, - __scopeNote.name() : __scopeNote - }) - _AttributeMap.update({ - __gtaaUri.name() : __gtaaUri, - __gtaaStatus.name() : __gtaaStatus - }) + _ElementMap.update({__name.name(): __name, __scopeNote.name(): __scopeNote}) + _AttributeMap.update({__gtaaUri.name(): __gtaaUri, __gtaaStatus.name(): __gtaaStatus}) + + _module_typeBindings.topicType = topicType -Namespace.addCategoryObject('typeBinding', 'topicType', topicType) +Namespace.addCategoryObject("typeBinding", "topicType", topicType) # Complex type {urn:vpro:media:2009}intentionType with content type ELEMENT_ONLY -class intentionType (pyxb.binding.basis.complexTypeDefinition): +class intentionType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:2009}intentionType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'intentionType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 1017, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "intentionType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 1017, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:2009}intention uses Python identifier intention - __intention = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'intention'), 'intention', '__urnvpromedia2009_intentionType_urnvpromedia2009intention', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 1019, 6), ) + __intention = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "intention"), + "intention", + "__urnvpromedia2009_intentionType_urnvpromedia2009intention", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 1019, 6), + ) - intention = property(__intention.value, __intention.set, None, None) - # Attribute owner uses Python identifier owner - __owner = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'owner'), 'owner', '__urnvpromedia2009_intentionType_owner', _ImportedBinding_npoapi_xml_shared.ownerTypeEnum) - __owner._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 1021, 4) - __owner._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 1021, 4) - + __owner = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "owner"), + "owner", + "__urnvpromedia2009_intentionType_owner", + _ImportedBinding_npoapi_xml_shared.ownerTypeEnum, + ) + __owner._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 1021, 4 + ) + __owner._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 1021, 4) + owner = property(__owner.value, __owner.set, None, None) - _ElementMap.update({ - __intention.name() : __intention - }) - _AttributeMap.update({ - __owner.name() : __owner - }) + _ElementMap.update({__intention.name(): __intention}) + _AttributeMap.update({__owner.name(): __owner}) + + _module_typeBindings.intentionType = intentionType -Namespace.addCategoryObject('typeBinding', 'intentionType', intentionType) +Namespace.addCategoryObject("typeBinding", "intentionType", intentionType) # Complex type {urn:vpro:media:2009}targetGroupsType with content type ELEMENT_ONLY -class targetGroupsType (pyxb.binding.basis.complexTypeDefinition): +class targetGroupsType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:2009}targetGroupsType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'targetGroupsType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 1024, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "targetGroupsType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 1024, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:2009}targetGroup uses Python identifier targetGroup - __targetGroup = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'targetGroup'), 'targetGroup', '__urnvpromedia2009_targetGroupsType_urnvpromedia2009targetGroup', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 1026, 6), ) + __targetGroup = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "targetGroup"), + "targetGroup", + "__urnvpromedia2009_targetGroupsType_urnvpromedia2009targetGroup", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 1026, 6), + ) - targetGroup = property(__targetGroup.value, __targetGroup.set, None, None) - # Attribute owner uses Python identifier owner - __owner = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'owner'), 'owner', '__urnvpromedia2009_targetGroupsType_owner', _ImportedBinding_npoapi_xml_shared.ownerTypeEnum) - __owner._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 1028, 4) - __owner._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 1028, 4) - + __owner = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "owner"), + "owner", + "__urnvpromedia2009_targetGroupsType_owner", + _ImportedBinding_npoapi_xml_shared.ownerTypeEnum, + ) + __owner._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 1028, 4 + ) + __owner._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 1028, 4) + owner = property(__owner.value, __owner.set, None, None) - _ElementMap.update({ - __targetGroup.name() : __targetGroup - }) - _AttributeMap.update({ - __owner.name() : __owner - }) + _ElementMap.update({__targetGroup.name(): __targetGroup}) + _AttributeMap.update({__owner.name(): __owner}) + + _module_typeBindings.targetGroupsType = targetGroupsType -Namespace.addCategoryObject('typeBinding', 'targetGroupsType', targetGroupsType) +Namespace.addCategoryObject("typeBinding", "targetGroupsType", targetGroupsType) # Complex type {urn:vpro:media:2009}countryType with content type SIMPLE -class countryType (pyxb.binding.basis.complexTypeDefinition): +class countryType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:2009}countryType with content type SIMPLE""" + _TypeDefinition = pyxb.binding.datatypes.string _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_SIMPLE _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'countryType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 1201, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "countryType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 1201, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.string - + # Attribute code uses Python identifier code - __code = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'code'), 'code', '__urnvpromedia2009_countryType_code', _module_typeBindings.countryCodeType) - __code._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 1204, 8) - __code._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 1204, 8) - + __code = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "code"), + "code", + "__urnvpromedia2009_countryType_code", + _module_typeBindings.countryCodeType, + ) + __code._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 1204, 8 + ) + __code._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 1204, 8) + code = property(__code.value, __code.set, None, None) - _ElementMap.update({ - - }) - _AttributeMap.update({ - __code.name() : __code - }) + _ElementMap.update({}) + _AttributeMap.update({__code.name(): __code}) + + _module_typeBindings.countryType = countryType -Namespace.addCategoryObject('typeBinding', 'countryType', countryType) +Namespace.addCategoryObject("typeBinding", "countryType", countryType) # Complex type {urn:vpro:media:2009}languageType with content type SIMPLE -class languageType (pyxb.binding.basis.complexTypeDefinition): +class languageType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:2009}languageType with content type SIMPLE""" + _TypeDefinition = pyxb.binding.datatypes.string _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_SIMPLE _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'languageType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 1221, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "languageType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 1221, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.string - + # Attribute code uses Python identifier code - __code = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'code'), 'code', '__urnvpromedia2009_languageType_code', _module_typeBindings.languageCodeType) - __code._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 1224, 8) - __code._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 1224, 8) - + __code = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "code"), + "code", + "__urnvpromedia2009_languageType_code", + _module_typeBindings.languageCodeType, + ) + __code._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 1224, 8 + ) + __code._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 1224, 8) + code = property(__code.value, __code.set, None, None) - _ElementMap.update({ - - }) - _AttributeMap.update({ - __code.name() : __code - }) + _ElementMap.update({}) + _AttributeMap.update({__code.name(): __code}) + + _module_typeBindings.languageType = languageType -Namespace.addCategoryObject('typeBinding', 'languageType', languageType) +Namespace.addCategoryObject("typeBinding", "languageType", languageType) # Complex type {urn:vpro:media:2009}streamingStatus with content type EMPTY -class streamingStatus_ (pyxb.binding.basis.complexTypeDefinition): +class streamingStatus_(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:2009}streamingStatus with content type EMPTY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_EMPTY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'streamingStatus') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 3274, 3) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "streamingStatus") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 3274, 3) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Attribute withDrm uses Python identifier withDrm - __withDrm = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'withDrm'), 'withDrm', '__urnvpromedia2009_streamingStatus__withDrm', _module_typeBindings.streamingStatusValue) - __withDrm._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 3276, 4) - __withDrm._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 3276, 4) - + __withDrm = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "withDrm"), + "withDrm", + "__urnvpromedia2009_streamingStatus__withDrm", + _module_typeBindings.streamingStatusValue, + ) + __withDrm._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 3276, 4 + ) + __withDrm._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 3276, 4) + withDrm = property(__withDrm.value, __withDrm.set, None, None) - # Attribute withoutDrm uses Python identifier withoutDrm - __withoutDrm = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'withoutDrm'), 'withoutDrm', '__urnvpromedia2009_streamingStatus__withoutDrm', _module_typeBindings.streamingStatusValue) - __withoutDrm._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 3277, 4) - __withoutDrm._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 3277, 4) - + __withoutDrm = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "withoutDrm"), + "withoutDrm", + "__urnvpromedia2009_streamingStatus__withoutDrm", + _module_typeBindings.streamingStatusValue, + ) + __withoutDrm._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 3277, 4 + ) + __withoutDrm._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 3277, 4) + withoutDrm = property(__withoutDrm.value, __withoutDrm.set, None, None) - _ElementMap.update({ - - }) - _AttributeMap.update({ - __withDrm.name() : __withDrm, - __withoutDrm.name() : __withoutDrm - }) + _ElementMap.update({}) + _AttributeMap.update({__withDrm.name(): __withDrm, __withoutDrm.name(): __withoutDrm}) + + _module_typeBindings.streamingStatus_ = streamingStatus_ -Namespace.addCategoryObject('typeBinding', 'streamingStatus', streamingStatus_) +Namespace.addCategoryObject("typeBinding", "streamingStatus", streamingStatus_) # Complex type {urn:vpro:media:2009}programType with content type ELEMENT_ONLY -class programType (baseMediaType): +class programType(baseMediaType): """Complex type {urn:vpro:media:2009}programType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'programType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 87, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "programType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 87, 2) _ElementMap = baseMediaType._ElementMap.copy() _AttributeMap = baseMediaType._AttributeMap.copy() # Base type is baseMediaType - + # Element {urn:vpro:media:2009}scheduleEvents uses Python identifier scheduleEvents - __scheduleEvents = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'scheduleEvents'), 'scheduleEvents', '__urnvpromedia2009_programType_urnvpromedia2009scheduleEvents', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 91, 10), ) + __scheduleEvents = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "scheduleEvents"), + "scheduleEvents", + "__urnvpromedia2009_programType_urnvpromedia2009scheduleEvents", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 91, 10), + ) - scheduleEvents = property(__scheduleEvents.value, __scheduleEvents.set, None, None) - # Element {urn:vpro:media:2009}episodeOf uses Python identifier episodeOf - __episodeOf = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'episodeOf'), 'episodeOf', '__urnvpromedia2009_programType_urnvpromedia2009episodeOf', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 92, 10), ) + __episodeOf = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "episodeOf"), + "episodeOf", + "__urnvpromedia2009_programType_urnvpromedia2009episodeOf", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 92, 10), + ) + + episodeOf = property( + __episodeOf.value, + __episodeOf.set, + None, + "\n A program (only if its type is 'BROADCAST') can be an episode of a group of type 'SERIES' or 'SEASON'.\n ", + ) - - episodeOf = property(__episodeOf.value, __episodeOf.set, None, "\n A program (only if its type is 'BROADCAST') can be an episode of a group of type 'SERIES' or 'SEASON'.\n ") - - # Element {urn:vpro:media:2009}segments uses Python identifier segments - __segments = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'segments'), 'segments', '__urnvpromedia2009_programType_urnvpromedia2009segments', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 99, 10), ) + __segments = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "segments"), + "segments", + "__urnvpromedia2009_programType_urnvpromedia2009segments", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 99, 10), + ) - segments = property(__segments.value, __segments.set, None, None) - # Element crid ({urn:vpro:media:2009}crid) inherited from {urn:vpro:media:2009}baseMediaType - + # Element broadcaster ({urn:vpro:media:2009}broadcaster) inherited from {urn:vpro:media:2009}baseMediaType - + # Element portal ({urn:vpro:media:2009}portal) inherited from {urn:vpro:media:2009}baseMediaType - + # Element exclusive ({urn:vpro:media:2009}exclusive) inherited from {urn:vpro:media:2009}baseMediaType - + # Element region ({urn:vpro:media:2009}region) inherited from {urn:vpro:media:2009}baseMediaType - + # Element title ({urn:vpro:media:2009}title) inherited from {urn:vpro:media:2009}baseMediaType - + # Element description ({urn:vpro:media:2009}description) inherited from {urn:vpro:media:2009}baseMediaType - + # Element genre ({urn:vpro:media:2009}genre) inherited from {urn:vpro:media:2009}baseMediaType - + # Element tag ({urn:vpro:media:2009}tag) inherited from {urn:vpro:media:2009}baseMediaType - + # Element intentions ({urn:vpro:media:2009}intentions) inherited from {urn:vpro:media:2009}baseMediaType - + # Element targetGroups ({urn:vpro:media:2009}targetGroups) inherited from {urn:vpro:media:2009}baseMediaType - + # Element geoLocations ({urn:vpro:media:2009}geoLocations) inherited from {urn:vpro:media:2009}baseMediaType - + # Element topics ({urn:vpro:media:2009}topics) inherited from {urn:vpro:media:2009}baseMediaType - + # Element source ({urn:vpro:media:2009}source) inherited from {urn:vpro:media:2009}baseMediaType - + # Element country ({urn:vpro:media:2009}country) inherited from {urn:vpro:media:2009}baseMediaType - + # Element language ({urn:vpro:media:2009}language) inherited from {urn:vpro:media:2009}baseMediaType - + # Element isDubbed ({urn:vpro:media:2009}isDubbed) inherited from {urn:vpro:media:2009}baseMediaType - + # Element availableSubtitles ({urn:vpro:media:2009}availableSubtitles) inherited from {urn:vpro:media:2009}baseMediaType - + # Element avAttributes ({urn:vpro:media:2009}avAttributes) inherited from {urn:vpro:media:2009}baseMediaType - + # Element releaseYear ({urn:vpro:media:2009}releaseYear) inherited from {urn:vpro:media:2009}baseMediaType - + # Element duration ({urn:vpro:media:2009}duration) inherited from {urn:vpro:media:2009}baseMediaType - + # Element credits ({urn:vpro:media:2009}credits) inherited from {urn:vpro:media:2009}baseMediaType - + # Element award ({urn:vpro:media:2009}award) inherited from {urn:vpro:media:2009}baseMediaType - + # Element descendantOf ({urn:vpro:media:2009}descendantOf) inherited from {urn:vpro:media:2009}baseMediaType - + # Element memberOf ({urn:vpro:media:2009}memberOf) inherited from {urn:vpro:media:2009}baseMediaType - + # Element ageRating ({urn:vpro:media:2009}ageRating) inherited from {urn:vpro:media:2009}baseMediaType - + # Element contentRating ({urn:vpro:media:2009}contentRating) inherited from {urn:vpro:media:2009}baseMediaType - + # Element email ({urn:vpro:media:2009}email) inherited from {urn:vpro:media:2009}baseMediaType - + # Element website ({urn:vpro:media:2009}website) inherited from {urn:vpro:media:2009}baseMediaType - + # Element twitter ({urn:vpro:media:2009}twitter) inherited from {urn:vpro:media:2009}baseMediaType - + # Element teletext ({urn:vpro:media:2009}teletext) inherited from {urn:vpro:media:2009}baseMediaType - + # Element prediction ({urn:vpro:media:2009}prediction) inherited from {urn:vpro:media:2009}baseMediaType - + # Element locations ({urn:vpro:media:2009}locations) inherited from {urn:vpro:media:2009}baseMediaType - + # Element relation ({urn:vpro:media:2009}relation) inherited from {urn:vpro:media:2009}baseMediaType - + # Element images ({urn:vpro:media:2009}images) inherited from {urn:vpro:media:2009}baseMediaType - + # Attribute type uses Python identifier type - __type = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'type'), 'type', '__urnvpromedia2009_programType_type', _module_typeBindings.programTypeEnum, required=True) - __type._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 107, 8) - __type._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 107, 8) - - type = property(__type.value, __type.set, None, '\n The type of this program (e.g. BROADCAST, TRACK, CLIP)\n ') + __type = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "type"), + "type", + "__urnvpromedia2009_programType_type", + _module_typeBindings.programTypeEnum, + required=True, + ) + __type._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 107, 8 + ) + __type._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 107, 8) + + type = property( + __type.value, + __type.set, + None, + "\n The type of this program (e.g. BROADCAST, TRACK, CLIP)\n ", + ) - # Attribute mid inherited from {urn:vpro:media:2009}baseMediaType - + # Attribute avType inherited from {urn:vpro:media:2009}baseMediaType - + # Attribute sortDate inherited from {urn:vpro:media:2009}baseMediaType - + # Attribute embeddable inherited from {urn:vpro:media:2009}baseMediaType - + # Attribute hasSubtitles inherited from {urn:vpro:media:2009}baseMediaType - + # Attribute mergedTo inherited from {urn:vpro:media:2009}baseMediaType - + # Attribute urn inherited from {urn:vpro:media:2009}baseMediaType - + # Attribute publishStart inherited from {urn:vpro:media:2009}baseMediaType - + # Attribute publishStop inherited from {urn:vpro:media:2009}baseMediaType - + # Attribute publishDate inherited from {urn:vpro:media:2009}baseMediaType - + # Attribute creationDate inherited from {urn:vpro:media:2009}baseMediaType - + # Attribute lastModified inherited from {urn:vpro:media:2009}baseMediaType - + # Attribute workflow inherited from {urn:vpro:media:2009}baseMediaType - _ElementMap.update({ - __scheduleEvents.name() : __scheduleEvents, - __episodeOf.name() : __episodeOf, - __segments.name() : __segments - }) - _AttributeMap.update({ - __type.name() : __type - }) + _ElementMap.update( + {__scheduleEvents.name(): __scheduleEvents, __episodeOf.name(): __episodeOf, __segments.name(): __segments} + ) + _AttributeMap.update({__type.name(): __type}) + + _module_typeBindings.programType = programType -Namespace.addCategoryObject('typeBinding', 'programType', programType) +Namespace.addCategoryObject("typeBinding", "programType", programType) # Complex type {urn:vpro:media:2009}broadcasterType with content type SIMPLE -class broadcasterType (organizationType): +class broadcasterType(organizationType): """Complex type {urn:vpro:media:2009}broadcasterType with content type SIMPLE""" + _TypeDefinition = pyxb.binding.datatypes.string _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_SIMPLE _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'broadcasterType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 441, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "broadcasterType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 441, 2) _ElementMap = organizationType._ElementMap.copy() _AttributeMap = organizationType._AttributeMap.copy() # Base type is organizationType - + # Attribute id inherited from {urn:vpro:media:2009}organizationType - _ElementMap.update({ - - }) - _AttributeMap.update({ - - }) + _ElementMap.update({}) + _AttributeMap.update({}) + + _module_typeBindings.broadcasterType = broadcasterType -Namespace.addCategoryObject('typeBinding', 'broadcasterType', broadcasterType) +Namespace.addCategoryObject("typeBinding", "broadcasterType", broadcasterType) # Complex type {urn:vpro:media:2009}segmentType with content type ELEMENT_ONLY -class segmentType (baseMediaType): +class segmentType(baseMediaType): """Complex type {urn:vpro:media:2009}segmentType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'segmentType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 629, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "segmentType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 629, 2) _ElementMap = baseMediaType._ElementMap.copy() _AttributeMap = baseMediaType._AttributeMap.copy() # Base type is baseMediaType - + # Element crid ({urn:vpro:media:2009}crid) inherited from {urn:vpro:media:2009}baseMediaType - + # Element broadcaster ({urn:vpro:media:2009}broadcaster) inherited from {urn:vpro:media:2009}baseMediaType - + # Element portal ({urn:vpro:media:2009}portal) inherited from {urn:vpro:media:2009}baseMediaType - + # Element exclusive ({urn:vpro:media:2009}exclusive) inherited from {urn:vpro:media:2009}baseMediaType - + # Element region ({urn:vpro:media:2009}region) inherited from {urn:vpro:media:2009}baseMediaType - + # Element title ({urn:vpro:media:2009}title) inherited from {urn:vpro:media:2009}baseMediaType - + # Element description ({urn:vpro:media:2009}description) inherited from {urn:vpro:media:2009}baseMediaType - + # Element genre ({urn:vpro:media:2009}genre) inherited from {urn:vpro:media:2009}baseMediaType - + # Element tag ({urn:vpro:media:2009}tag) inherited from {urn:vpro:media:2009}baseMediaType - + # Element intentions ({urn:vpro:media:2009}intentions) inherited from {urn:vpro:media:2009}baseMediaType - + # Element targetGroups ({urn:vpro:media:2009}targetGroups) inherited from {urn:vpro:media:2009}baseMediaType - + # Element geoLocations ({urn:vpro:media:2009}geoLocations) inherited from {urn:vpro:media:2009}baseMediaType - + # Element topics ({urn:vpro:media:2009}topics) inherited from {urn:vpro:media:2009}baseMediaType - + # Element source ({urn:vpro:media:2009}source) inherited from {urn:vpro:media:2009}baseMediaType - + # Element country ({urn:vpro:media:2009}country) inherited from {urn:vpro:media:2009}baseMediaType - + # Element language ({urn:vpro:media:2009}language) inherited from {urn:vpro:media:2009}baseMediaType - + # Element isDubbed ({urn:vpro:media:2009}isDubbed) inherited from {urn:vpro:media:2009}baseMediaType - + # Element availableSubtitles ({urn:vpro:media:2009}availableSubtitles) inherited from {urn:vpro:media:2009}baseMediaType - + # Element avAttributes ({urn:vpro:media:2009}avAttributes) inherited from {urn:vpro:media:2009}baseMediaType - + # Element releaseYear ({urn:vpro:media:2009}releaseYear) inherited from {urn:vpro:media:2009}baseMediaType - + # Element duration ({urn:vpro:media:2009}duration) inherited from {urn:vpro:media:2009}baseMediaType - + # Element credits ({urn:vpro:media:2009}credits) inherited from {urn:vpro:media:2009}baseMediaType - + # Element award ({urn:vpro:media:2009}award) inherited from {urn:vpro:media:2009}baseMediaType - + # Element descendantOf ({urn:vpro:media:2009}descendantOf) inherited from {urn:vpro:media:2009}baseMediaType - + # Element memberOf ({urn:vpro:media:2009}memberOf) inherited from {urn:vpro:media:2009}baseMediaType - + # Element ageRating ({urn:vpro:media:2009}ageRating) inherited from {urn:vpro:media:2009}baseMediaType - + # Element contentRating ({urn:vpro:media:2009}contentRating) inherited from {urn:vpro:media:2009}baseMediaType - + # Element email ({urn:vpro:media:2009}email) inherited from {urn:vpro:media:2009}baseMediaType - + # Element website ({urn:vpro:media:2009}website) inherited from {urn:vpro:media:2009}baseMediaType - + # Element twitter ({urn:vpro:media:2009}twitter) inherited from {urn:vpro:media:2009}baseMediaType - + # Element teletext ({urn:vpro:media:2009}teletext) inherited from {urn:vpro:media:2009}baseMediaType - + # Element prediction ({urn:vpro:media:2009}prediction) inherited from {urn:vpro:media:2009}baseMediaType - + # Element locations ({urn:vpro:media:2009}locations) inherited from {urn:vpro:media:2009}baseMediaType - + # Element relation ({urn:vpro:media:2009}relation) inherited from {urn:vpro:media:2009}baseMediaType - + # Element images ({urn:vpro:media:2009}images) inherited from {urn:vpro:media:2009}baseMediaType - + # Element {urn:vpro:media:2009}segmentOf uses Python identifier segmentOf - __segmentOf = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'segmentOf'), 'segmentOf', '__urnvpromedia2009_segmentType_urnvpromedia2009segmentOf', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 633, 10), ) + __segmentOf = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "segmentOf"), + "segmentOf", + "__urnvpromedia2009_segmentType_urnvpromedia2009segmentOf", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 633, 10), + ) - segmentOf = property(__segmentOf.value, __segmentOf.set, None, None) - # Element {urn:vpro:media:2009}start uses Python identifier start - __start = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'start'), 'start', '__urnvpromedia2009_segmentType_urnvpromedia2009start', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 634, 10), ) + __start = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "start"), + "start", + "__urnvpromedia2009_segmentType_urnvpromedia2009start", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 634, 10), + ) - start = property(__start.value, __start.set, None, None) - # Attribute mid inherited from {urn:vpro:media:2009}baseMediaType - + # Attribute avType inherited from {urn:vpro:media:2009}baseMediaType - + # Attribute sortDate inherited from {urn:vpro:media:2009}baseMediaType - + # Attribute embeddable inherited from {urn:vpro:media:2009}baseMediaType - + # Attribute hasSubtitles inherited from {urn:vpro:media:2009}baseMediaType - + # Attribute mergedTo inherited from {urn:vpro:media:2009}baseMediaType - + # Attribute midRef uses Python identifier midRef - __midRef = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'midRef'), 'midRef', '__urnvpromedia2009_segmentType_midRef', _module_typeBindings.midType, required=True) - __midRef._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 636, 8) - __midRef._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 636, 8) - + __midRef = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "midRef"), + "midRef", + "__urnvpromedia2009_segmentType_midRef", + _module_typeBindings.midType, + required=True, + ) + __midRef._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 636, 8 + ) + __midRef._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 636, 8) + midRef = property(__midRef.value, __midRef.set, None, None) - # Attribute urnRef uses Python identifier urnRef - __urnRef = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'urnRef'), 'urnRef', '__urnvpromedia2009_segmentType_urnRef', pyxb.binding.datatypes.anyURI, required=True) - __urnRef._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 637, 8) - __urnRef._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 637, 8) - + __urnRef = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "urnRef"), + "urnRef", + "__urnvpromedia2009_segmentType_urnRef", + pyxb.binding.datatypes.anyURI, + required=True, + ) + __urnRef._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 637, 8 + ) + __urnRef._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 637, 8) + urnRef = property(__urnRef.value, __urnRef.set, None, None) - # Attribute type uses Python identifier type - __type = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'type'), 'type', '__urnvpromedia2009_segmentType_type', _module_typeBindings.segmentTypeEnum, required=True) - __type._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 638, 8) - __type._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 638, 8) - + __type = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "type"), + "type", + "__urnvpromedia2009_segmentType_type", + _module_typeBindings.segmentTypeEnum, + required=True, + ) + __type._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 638, 8 + ) + __type._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 638, 8) + type = property(__type.value, __type.set, None, None) - # Attribute urn inherited from {urn:vpro:media:2009}baseMediaType - + # Attribute publishStart inherited from {urn:vpro:media:2009}baseMediaType - + # Attribute publishStop inherited from {urn:vpro:media:2009}baseMediaType - + # Attribute publishDate inherited from {urn:vpro:media:2009}baseMediaType - + # Attribute creationDate inherited from {urn:vpro:media:2009}baseMediaType - + # Attribute lastModified inherited from {urn:vpro:media:2009}baseMediaType - + # Attribute workflow inherited from {urn:vpro:media:2009}baseMediaType - _ElementMap.update({ - __segmentOf.name() : __segmentOf, - __start.name() : __start - }) - _AttributeMap.update({ - __midRef.name() : __midRef, - __urnRef.name() : __urnRef, - __type.name() : __type - }) + _ElementMap.update({__segmentOf.name(): __segmentOf, __start.name(): __start}) + _AttributeMap.update({__midRef.name(): __midRef, __urnRef.name(): __urnRef, __type.name(): __type}) + + _module_typeBindings.segmentType = segmentType -Namespace.addCategoryObject('typeBinding', 'segmentType', segmentType) +Namespace.addCategoryObject("typeBinding", "segmentType", segmentType) # Complex type {urn:vpro:media:2009}groupType with content type ELEMENT_ONLY -class groupType (baseMediaType): +class groupType(baseMediaType): """Complex type {urn:vpro:media:2009}groupType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'groupType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 849, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "groupType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 849, 2) _ElementMap = baseMediaType._ElementMap.copy() _AttributeMap = baseMediaType._AttributeMap.copy() # Base type is baseMediaType - + # Element crid ({urn:vpro:media:2009}crid) inherited from {urn:vpro:media:2009}baseMediaType - + # Element broadcaster ({urn:vpro:media:2009}broadcaster) inherited from {urn:vpro:media:2009}baseMediaType - + # Element portal ({urn:vpro:media:2009}portal) inherited from {urn:vpro:media:2009}baseMediaType - + # Element exclusive ({urn:vpro:media:2009}exclusive) inherited from {urn:vpro:media:2009}baseMediaType - + # Element region ({urn:vpro:media:2009}region) inherited from {urn:vpro:media:2009}baseMediaType - + # Element title ({urn:vpro:media:2009}title) inherited from {urn:vpro:media:2009}baseMediaType - + # Element description ({urn:vpro:media:2009}description) inherited from {urn:vpro:media:2009}baseMediaType - + # Element genre ({urn:vpro:media:2009}genre) inherited from {urn:vpro:media:2009}baseMediaType - + # Element tag ({urn:vpro:media:2009}tag) inherited from {urn:vpro:media:2009}baseMediaType - + # Element intentions ({urn:vpro:media:2009}intentions) inherited from {urn:vpro:media:2009}baseMediaType - + # Element targetGroups ({urn:vpro:media:2009}targetGroups) inherited from {urn:vpro:media:2009}baseMediaType - + # Element geoLocations ({urn:vpro:media:2009}geoLocations) inherited from {urn:vpro:media:2009}baseMediaType - + # Element topics ({urn:vpro:media:2009}topics) inherited from {urn:vpro:media:2009}baseMediaType - + # Element source ({urn:vpro:media:2009}source) inherited from {urn:vpro:media:2009}baseMediaType - + # Element country ({urn:vpro:media:2009}country) inherited from {urn:vpro:media:2009}baseMediaType - + # Element language ({urn:vpro:media:2009}language) inherited from {urn:vpro:media:2009}baseMediaType - + # Element isDubbed ({urn:vpro:media:2009}isDubbed) inherited from {urn:vpro:media:2009}baseMediaType - + # Element availableSubtitles ({urn:vpro:media:2009}availableSubtitles) inherited from {urn:vpro:media:2009}baseMediaType - + # Element avAttributes ({urn:vpro:media:2009}avAttributes) inherited from {urn:vpro:media:2009}baseMediaType - + # Element releaseYear ({urn:vpro:media:2009}releaseYear) inherited from {urn:vpro:media:2009}baseMediaType - + # Element duration ({urn:vpro:media:2009}duration) inherited from {urn:vpro:media:2009}baseMediaType - + # Element credits ({urn:vpro:media:2009}credits) inherited from {urn:vpro:media:2009}baseMediaType - + # Element award ({urn:vpro:media:2009}award) inherited from {urn:vpro:media:2009}baseMediaType - + # Element descendantOf ({urn:vpro:media:2009}descendantOf) inherited from {urn:vpro:media:2009}baseMediaType - + # Element memberOf ({urn:vpro:media:2009}memberOf) inherited from {urn:vpro:media:2009}baseMediaType - + # Element ageRating ({urn:vpro:media:2009}ageRating) inherited from {urn:vpro:media:2009}baseMediaType - + # Element contentRating ({urn:vpro:media:2009}contentRating) inherited from {urn:vpro:media:2009}baseMediaType - + # Element email ({urn:vpro:media:2009}email) inherited from {urn:vpro:media:2009}baseMediaType - + # Element website ({urn:vpro:media:2009}website) inherited from {urn:vpro:media:2009}baseMediaType - + # Element twitter ({urn:vpro:media:2009}twitter) inherited from {urn:vpro:media:2009}baseMediaType - + # Element teletext ({urn:vpro:media:2009}teletext) inherited from {urn:vpro:media:2009}baseMediaType - + # Element prediction ({urn:vpro:media:2009}prediction) inherited from {urn:vpro:media:2009}baseMediaType - + # Element locations ({urn:vpro:media:2009}locations) inherited from {urn:vpro:media:2009}baseMediaType - + # Element relation ({urn:vpro:media:2009}relation) inherited from {urn:vpro:media:2009}baseMediaType - + # Element images ({urn:vpro:media:2009}images) inherited from {urn:vpro:media:2009}baseMediaType - + # Element {urn:vpro:media:2009}poSeriesID uses Python identifier poSeriesID - __poSeriesID = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'poSeriesID'), 'poSeriesID', '__urnvpromedia2009_groupType_urnvpromedia2009poSeriesID', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 853, 10), ) + __poSeriesID = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "poSeriesID"), + "poSeriesID", + "__urnvpromedia2009_groupType_urnvpromedia2009poSeriesID", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 853, 10), + ) - poSeriesID = property(__poSeriesID.value, __poSeriesID.set, None, None) - # Attribute mid inherited from {urn:vpro:media:2009}baseMediaType - + # Attribute avType inherited from {urn:vpro:media:2009}baseMediaType - + # Attribute sortDate inherited from {urn:vpro:media:2009}baseMediaType - + # Attribute embeddable inherited from {urn:vpro:media:2009}baseMediaType - + # Attribute hasSubtitles inherited from {urn:vpro:media:2009}baseMediaType - + # Attribute mergedTo inherited from {urn:vpro:media:2009}baseMediaType - + # Attribute isOrdered uses Python identifier isOrdered - __isOrdered = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'isOrdered'), 'isOrdered', '__urnvpromedia2009_groupType_isOrdered', pyxb.binding.datatypes.boolean, required=True) - __isOrdered._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 855, 8) - __isOrdered._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 855, 8) - + __isOrdered = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "isOrdered"), + "isOrdered", + "__urnvpromedia2009_groupType_isOrdered", + pyxb.binding.datatypes.boolean, + required=True, + ) + __isOrdered._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 855, 8 + ) + __isOrdered._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 855, 8) + isOrdered = property(__isOrdered.value, __isOrdered.set, None, None) - # Attribute type uses Python identifier type - __type = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'type'), 'type', '__urnvpromedia2009_groupType_type', _module_typeBindings.groupTypeEnum, required=True) - __type._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 856, 8) - __type._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 856, 8) - + __type = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "type"), + "type", + "__urnvpromedia2009_groupType_type", + _module_typeBindings.groupTypeEnum, + required=True, + ) + __type._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 856, 8 + ) + __type._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 856, 8) + type = property(__type.value, __type.set, None, None) - # Attribute defaultElement uses Python identifier defaultElement - __defaultElement = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'defaultElement'), 'defaultElement', '__urnvpromedia2009_groupType_defaultElement', pyxb.binding.datatypes.long) - __defaultElement._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 857, 8) - __defaultElement._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 857, 8) - + __defaultElement = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "defaultElement"), + "defaultElement", + "__urnvpromedia2009_groupType_defaultElement", + pyxb.binding.datatypes.long, + ) + __defaultElement._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 857, 8 + ) + __defaultElement._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 857, 8 + ) + defaultElement = property(__defaultElement.value, __defaultElement.set, None, None) - # Attribute urn inherited from {urn:vpro:media:2009}baseMediaType - - # Attribute publishStart inherited from {urn:vpro:media:2009}baseMediaType - - # Attribute publishStop inherited from {urn:vpro:media:2009}baseMediaType - - # Attribute publishDate inherited from {urn:vpro:media:2009}baseMediaType - - # Attribute creationDate inherited from {urn:vpro:media:2009}baseMediaType - - # Attribute lastModified inherited from {urn:vpro:media:2009}baseMediaType - - # Attribute workflow inherited from {urn:vpro:media:2009}baseMediaType - _ElementMap.update({ - __poSeriesID.name() : __poSeriesID - }) - _AttributeMap.update({ - __isOrdered.name() : __isOrdered, - __type.name() : __type, - __defaultElement.name() : __defaultElement - }) -_module_typeBindings.groupType = groupType -Namespace.addCategoryObject('typeBinding', 'groupType', groupType) - - -mediaInformation = pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'mediaInformation'), mediaTableType, documentation='\n Base element only used when programs, groups and schedule information need to be bundled in one XML. E.g. when distributing to cable companies.\n ', location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 18, 2)) -Namespace.addCategoryObject('elementBinding', mediaInformation.name().localName(), mediaInformation) - -schedule = pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'schedule'), scheduleType, documentation="\n Programs of type 'BROADCAST' can contain schedule events. A schedule indicates on which channel and at what time the program is broadcast. A schedule is a container which contains the schedule events of different programs, for a certain period of time.\n ", location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 46, 2)) -Namespace.addCategoryObject('elementBinding', schedule.name().localName(), schedule) -streamingStatus = pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'streamingStatus'), streamingStatus_, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 54, 4)) -Namespace.addCategoryObject('elementBinding', streamingStatus.name().localName(), streamingStatus) - -program = pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'program'), programType, documentation='\n This is the most used entity in POMS. It represents e.g. one broadcast program or one web-only clip. It represent a standalone entity which a consumer can view or listen to.\n ', location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 25, 2)) -Namespace.addCategoryObject('elementBinding', program.name().localName(), program) - -group = pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'group'), groupType, documentation='\n A groups collects a number of programs and/or other groups. Examples: season, series, playlist and album.\n ', location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 32, 2)) -Namespace.addCategoryObject('elementBinding', group.name().localName(), group) - -segment = pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'segment'), segmentType, documentation='\n A program can contain a number of segments. A segment is an identifiable part of a program.\n ', location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 39, 2)) -Namespace.addCategoryObject('elementBinding', segment.name().localName(), segment) + # Attribute publishStart inherited from {urn:vpro:media:2009}baseMediaType + # Attribute publishStop inherited from {urn:vpro:media:2009}baseMediaType + # Attribute publishDate inherited from {urn:vpro:media:2009}baseMediaType -mediaTableType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'schedule'), scheduleType, scope=mediaTableType, documentation="\n Programs of type 'BROADCAST' can contain schedule events. A schedule indicates on which channel and at what time the program is broadcast. A schedule is a container which contains the schedule events of different programs, for a certain period of time.\n ", location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 46, 2))) + # Attribute creationDate inherited from {urn:vpro:media:2009}baseMediaType -mediaTableType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'programTable'), programTableType, scope=mediaTableType, documentation='A table with all program objects in this container', location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 59, 6))) + # Attribute lastModified inherited from {urn:vpro:media:2009}baseMediaType -mediaTableType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'groupTable'), groupTableType, scope=mediaTableType, documentation='A table with all group objects in this container', location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 64, 6))) + # Attribute workflow inherited from {urn:vpro:media:2009}baseMediaType + _ElementMap.update({__poSeriesID.name(): __poSeriesID}) + _AttributeMap.update( + {__isOrdered.name(): __isOrdered, __type.name(): __type, __defaultElement.name(): __defaultElement} + ) -mediaTableType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'locationTable'), locationTableType, scope=mediaTableType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 69, 6))) -def _BuildAutomaton (): +_module_typeBindings.groupType = groupType +Namespace.addCategoryObject("typeBinding", "groupType", groupType) + + +mediaInformation = pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "mediaInformation"), + mediaTableType, + documentation="\n Base element only used when programs, groups and schedule information need to be bundled in one XML. E.g. when distributing to cable companies.\n ", + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 18, 2), +) +Namespace.addCategoryObject("elementBinding", mediaInformation.name().localName(), mediaInformation) + +schedule = pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "schedule"), + scheduleType, + documentation="\n Programs of type 'BROADCAST' can contain schedule events. A schedule indicates on which channel and at what time the program is broadcast. A schedule is a container which contains the schedule events of different programs, for a certain period of time.\n ", + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 46, 2), +) +Namespace.addCategoryObject("elementBinding", schedule.name().localName(), schedule) + +streamingStatus = pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "streamingStatus"), + streamingStatus_, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 54, 4), +) +Namespace.addCategoryObject("elementBinding", streamingStatus.name().localName(), streamingStatus) + +program = pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "program"), + programType, + documentation="\n This is the most used entity in POMS. It represents e.g. one broadcast program or one web-only clip. It represent a standalone entity which a consumer can view or listen to.\n ", + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 25, 2), +) +Namespace.addCategoryObject("elementBinding", program.name().localName(), program) + +group = pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "group"), + groupType, + documentation="\n A groups collects a number of programs and/or other groups. Examples: season, series, playlist and album.\n ", + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 32, 2), +) +Namespace.addCategoryObject("elementBinding", group.name().localName(), group) + +segment = pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "segment"), + segmentType, + documentation="\n A program can contain a number of segments. A segment is an identifiable part of a program.\n ", + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 39, 2), +) +Namespace.addCategoryObject("elementBinding", segment.name().localName(), segment) + + +mediaTableType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "schedule"), + scheduleType, + scope=mediaTableType, + documentation="\n Programs of type 'BROADCAST' can contain schedule events. A schedule indicates on which channel and at what time the program is broadcast. A schedule is a container which contains the schedule events of different programs, for a certain period of time.\n ", + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 46, 2), + ) +) + +mediaTableType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "programTable"), + programTableType, + scope=mediaTableType, + documentation="A table with all program objects in this container", + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 59, 6), + ) +) + +mediaTableType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "groupTable"), + groupTableType, + scope=mediaTableType, + documentation="A table with all group objects in this container", + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 64, 6), + ) +) + +mediaTableType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "locationTable"), + locationTableType, + scope=mediaTableType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 69, 6), + ) +) + + +def _BuildAutomaton(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton del _BuildAutomaton import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 59, 6)) + cc_0 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 59, 6) + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 64, 6)) + cc_1 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 64, 6) + ) counters.add(cc_1) - cc_2 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 69, 6)) + cc_2 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 69, 6) + ) counters.add(cc_2) - cc_3 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 70, 6)) + cc_3 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 70, 6) + ) counters.add(cc_3) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(mediaTableType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'programTable')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 59, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaTableType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "programTable")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 59, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() final_update.add(fac.UpdateInstruction(cc_1, False)) - symbol = pyxb.binding.content.ElementUse(mediaTableType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'groupTable')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 64, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaTableType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "groupTable")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 64, 6), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) final_update = set() final_update.add(fac.UpdateInstruction(cc_2, False)) - symbol = pyxb.binding.content.ElementUse(mediaTableType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'locationTable')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 69, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaTableType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "locationTable")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 69, 6), + ) st_2 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_2) final_update = set() final_update.add(fac.UpdateInstruction(cc_3, False)) - symbol = pyxb.binding.content.ElementUse(mediaTableType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'schedule')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 70, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaTableType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "schedule")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 70, 6), + ) st_3 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_3) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_0, False)])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_1, True) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_1, False) ])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_1, True)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_1, False)])) st_1._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_2, True) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_2, False) ])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_2, True)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_2, False)])) st_2._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_3, True) ])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_3, True)])) st_3._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -mediaTableType._Automaton = _BuildAutomaton() +mediaTableType._Automaton = _BuildAutomaton() + +programTableType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "program"), + programType, + scope=programTableType, + documentation="\n This is the most used entity in POMS. It represents e.g. one broadcast program or one web-only clip. It represent a standalone entity which a consumer can view or listen to.\n ", + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 25, 2), + ) +) -programTableType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'program'), programType, scope=programTableType, documentation='\n This is the most used entity in POMS. It represents e.g. one broadcast program or one web-only clip. It represent a standalone entity which a consumer can view or listen to.\n ', location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 25, 2))) -def _BuildAutomaton_ (): +def _BuildAutomaton_(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_ del _BuildAutomaton_ import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 83, 6)) + cc_0 = fac.CounterCondition( + min=0, max=None, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 83, 6) + ) counters.add(cc_0) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(programTableType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'program')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 83, 6)) + symbol = pyxb.binding.content.ElementUse( + programTableType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "program")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 83, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) st_0._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -programTableType._Automaton = _BuildAutomaton_() +programTableType._Automaton = _BuildAutomaton_() + +portalsType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "portal"), + organizationType, + scope=portalsType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 457, 6), + ) +) -portalsType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'portal'), organizationType, scope=portalsType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 457, 6))) -def _BuildAutomaton_2 (): +def _BuildAutomaton_2(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_2 del _BuildAutomaton_2 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 457, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 457, 6), + ) counters.add(cc_0) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(portalsType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'portal')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 457, 6)) + symbol = pyxb.binding.content.ElementUse( + portalsType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "portal")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 457, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) st_0._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -portalsType._Automaton = _BuildAutomaton_2() - - - -avAttributesType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'bitrate'), pyxb.binding.datatypes.long, scope=avAttributesType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 471, 6))) -avAttributesType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'byteSize'), pyxb.binding.datatypes.long, scope=avAttributesType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 472, 6))) - -avAttributesType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'avFileFormat'), avFileFormatEnum, scope=avAttributesType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 473, 6))) - -avAttributesType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'videoAttributes'), videoAttributesType, scope=avAttributesType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 474, 6))) +portalsType._Automaton = _BuildAutomaton_2() -avAttributesType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'audioAttributes'), audioAttributesType, scope=avAttributesType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 475, 6))) -def _BuildAutomaton_3 (): +avAttributesType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "bitrate"), + pyxb.binding.datatypes.long, + scope=avAttributesType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 471, 6), + ) +) + +avAttributesType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "byteSize"), + pyxb.binding.datatypes.long, + scope=avAttributesType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 472, 6), + ) +) + +avAttributesType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "avFileFormat"), + avFileFormatEnum, + scope=avAttributesType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 473, 6), + ) +) + +avAttributesType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "videoAttributes"), + videoAttributesType, + scope=avAttributesType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 474, 6), + ) +) + +avAttributesType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "audioAttributes"), + audioAttributesType, + scope=avAttributesType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 475, 6), + ) +) + + +def _BuildAutomaton_3(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_3 del _BuildAutomaton_3 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 471, 6)) + cc_0 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 471, 6) + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 472, 6)) + cc_1 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 472, 6) + ) counters.add(cc_1) - cc_2 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 473, 6)) + cc_2 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 473, 6) + ) counters.add(cc_2) - cc_3 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 474, 6)) + cc_3 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 474, 6) + ) counters.add(cc_3) - cc_4 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 475, 6)) + cc_4 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 475, 6) + ) counters.add(cc_4) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(avAttributesType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'bitrate')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 471, 6)) + symbol = pyxb.binding.content.ElementUse( + avAttributesType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "bitrate")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 471, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() final_update.add(fac.UpdateInstruction(cc_1, False)) - symbol = pyxb.binding.content.ElementUse(avAttributesType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'byteSize')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 472, 6)) + symbol = pyxb.binding.content.ElementUse( + avAttributesType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "byteSize")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 472, 6), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) final_update = set() final_update.add(fac.UpdateInstruction(cc_2, False)) - symbol = pyxb.binding.content.ElementUse(avAttributesType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'avFileFormat')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 473, 6)) + symbol = pyxb.binding.content.ElementUse( + avAttributesType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "avFileFormat")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 473, 6), + ) st_2 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_2) final_update = set() final_update.add(fac.UpdateInstruction(cc_3, False)) - symbol = pyxb.binding.content.ElementUse(avAttributesType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'videoAttributes')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 474, 6)) + symbol = pyxb.binding.content.ElementUse( + avAttributesType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "videoAttributes")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 474, 6), + ) st_3 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_3) final_update = set() final_update.add(fac.UpdateInstruction(cc_4, False)) - symbol = pyxb.binding.content.ElementUse(avAttributesType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'audioAttributes')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 475, 6)) + symbol = pyxb.binding.content.ElementUse( + avAttributesType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "audioAttributes")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 475, 6), + ) st_4 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_4) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_0, False)])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_1, True) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_1, False) ])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_1, True)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_1, False)])) st_1._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_2, True) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_2, False) ])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_2, True)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_2, False)])) st_2._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_3, True) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_3, False) ])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_3, True)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_3, False)])) st_3._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_4, True) ])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_4, True)])) st_4._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -avAttributesType._Automaton = _BuildAutomaton_3() +avAttributesType._Automaton = _BuildAutomaton_3() -videoAttributesType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'color'), colorType, scope=videoAttributesType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 503, 6))) - -videoAttributesType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'videoCoding'), pyxb.binding.datatypes.string, scope=videoAttributesType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 504, 6))) - -videoAttributesType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'aspectRatio'), aspectRatioEnum, scope=videoAttributesType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 505, 6))) - -def _BuildAutomaton_4 (): +videoAttributesType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "color"), + colorType, + scope=videoAttributesType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 503, 6), + ) +) + +videoAttributesType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "videoCoding"), + pyxb.binding.datatypes.string, + scope=videoAttributesType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 504, 6), + ) +) + +videoAttributesType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "aspectRatio"), + aspectRatioEnum, + scope=videoAttributesType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 505, 6), + ) +) + + +def _BuildAutomaton_4(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_4 del _BuildAutomaton_4 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 503, 6)) + cc_0 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 503, 6) + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 504, 6)) + cc_1 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 504, 6) + ) counters.add(cc_1) - cc_2 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 505, 6)) + cc_2 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 505, 6) + ) counters.add(cc_2) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(videoAttributesType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'color')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 503, 6)) + symbol = pyxb.binding.content.ElementUse( + videoAttributesType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "color")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 503, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() final_update.add(fac.UpdateInstruction(cc_1, False)) - symbol = pyxb.binding.content.ElementUse(videoAttributesType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'videoCoding')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 504, 6)) + symbol = pyxb.binding.content.ElementUse( + videoAttributesType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "videoCoding")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 504, 6), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) final_update = set() final_update.add(fac.UpdateInstruction(cc_2, False)) - symbol = pyxb.binding.content.ElementUse(videoAttributesType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'aspectRatio')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 505, 6)) + symbol = pyxb.binding.content.ElementUse( + videoAttributesType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "aspectRatio")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 505, 6), + ) st_2 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_2) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_0, False)])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_1, True) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_1, False) ])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_1, True)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_1, False)])) st_1._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_2, True) ])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_2, True)])) st_2._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -videoAttributesType._Automaton = _BuildAutomaton_4() - - - -audioAttributesType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'numberOfChannels'), pyxb.binding.datatypes.short, scope=audioAttributesType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 536, 6))) -audioAttributesType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'audioCoding'), pyxb.binding.datatypes.string, scope=audioAttributesType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 537, 6))) +videoAttributesType._Automaton = _BuildAutomaton_4() -audioAttributesType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'language'), pyxb.binding.datatypes.string, scope=audioAttributesType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 538, 6))) -def _BuildAutomaton_5 (): +audioAttributesType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "numberOfChannels"), + pyxb.binding.datatypes.short, + scope=audioAttributesType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 536, 6), + ) +) + +audioAttributesType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "audioCoding"), + pyxb.binding.datatypes.string, + scope=audioAttributesType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 537, 6), + ) +) + +audioAttributesType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "language"), + pyxb.binding.datatypes.string, + scope=audioAttributesType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 538, 6), + ) +) + + +def _BuildAutomaton_5(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_5 del _BuildAutomaton_5 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 536, 6)) + cc_0 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 536, 6) + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 537, 6)) + cc_1 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 537, 6) + ) counters.add(cc_1) - cc_2 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 538, 6)) + cc_2 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 538, 6) + ) counters.add(cc_2) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(audioAttributesType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'numberOfChannels')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 536, 6)) + symbol = pyxb.binding.content.ElementUse( + audioAttributesType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "numberOfChannels")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 536, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() final_update.add(fac.UpdateInstruction(cc_1, False)) - symbol = pyxb.binding.content.ElementUse(audioAttributesType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'audioCoding')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 537, 6)) + symbol = pyxb.binding.content.ElementUse( + audioAttributesType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "audioCoding")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 537, 6), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) final_update = set() final_update.add(fac.UpdateInstruction(cc_2, False)) - symbol = pyxb.binding.content.ElementUse(audioAttributesType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'language')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 538, 6)) + symbol = pyxb.binding.content.ElementUse( + audioAttributesType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "language")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 538, 6), + ) st_2 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_2) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_0, False)])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_1, True) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_1, False) ])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_1, True)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_1, False)])) st_1._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_2, True) ])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_2, True)])) st_2._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -audioAttributesType._Automaton = _BuildAutomaton_5() +audioAttributesType._Automaton = _BuildAutomaton_5() + +creditsType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "person"), + personType, + scope=creditsType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 545, 8), + ) +) -creditsType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'person'), personType, scope=creditsType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 545, 8))) +creditsType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "name"), + nameType, + scope=creditsType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 546, 8), + ) +) -creditsType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'name'), nameType, scope=creditsType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 546, 8))) -def _BuildAutomaton_6 (): +def _BuildAutomaton_6(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_6 del _BuildAutomaton_6 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 544, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 544, 6), + ) counters.add(cc_0) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(creditsType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'person')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 545, 8)) + symbol = pyxb.binding.content.ElementUse( + creditsType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "person")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 545, 8), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(creditsType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'name')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 546, 8)) + symbol = pyxb.binding.content.ElementUse( + creditsType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "name")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 546, 8), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, True) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, True)])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, True) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, True)])) st_1._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -creditsType._Automaton = _BuildAutomaton_6() +creditsType._Automaton = _BuildAutomaton_6() + +segmentsType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "segment"), + segmentType, + scope=segmentsType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 625, 6), + ) +) -segmentsType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'segment'), segmentType, scope=segmentsType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 625, 6))) -def _BuildAutomaton_7 (): +def _BuildAutomaton_7(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_7 del _BuildAutomaton_7 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 625, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 625, 6), + ) counters.add(cc_0) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(segmentsType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'segment')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 625, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentsType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "segment")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 625, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) st_0._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -segmentsType._Automaton = _BuildAutomaton_7() +segmentsType._Automaton = _BuildAutomaton_7() + +imagesType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(_Namespace_shared, "image"), + _ImportedBinding_npoapi_xml_shared.imageType, + scope=imagesType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 8, 2), + ) +) -imagesType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(_Namespace_shared, 'image'), _ImportedBinding_npoapi_xml_shared.imageType, scope=imagesType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 8, 2))) -def _BuildAutomaton_8 (): +def _BuildAutomaton_8(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_8 del _BuildAutomaton_8 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 657, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 657, 6), + ) counters.add(cc_0) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(imagesType._UseForTag(pyxb.namespace.ExpandedName(_Namespace_shared, 'image')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 657, 6)) + symbol = pyxb.binding.content.ElementUse( + imagesType._UseForTag(pyxb.namespace.ExpandedName(_Namespace_shared, "image")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 657, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) st_0._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -imagesType._Automaton = _BuildAutomaton_8() +imagesType._Automaton = _BuildAutomaton_8() + +groupTableType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "group"), + groupType, + scope=groupTableType, + documentation="\n A groups collects a number of programs and/or other groups. Examples: season, series, playlist and album.\n ", + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 32, 2), + ) +) -groupTableType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'group'), groupType, scope=groupTableType, documentation='\n A groups collects a number of programs and/or other groups. Examples: season, series, playlist and album.\n ', location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 32, 2))) -def _BuildAutomaton_9 (): +def _BuildAutomaton_9(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_9 del _BuildAutomaton_9 @@ -4675,1471 +6306,1531 @@ def _BuildAutomaton_9 (): counters = set() states = [] final_update = set() - symbol = pyxb.binding.content.ElementUse(groupTableType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'group')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 676, 6)) + symbol = pyxb.binding.content.ElementUse( + groupTableType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "group")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 676, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) transitions = [] - transitions.append(fac.Transition(st_0, [ - ])) + transitions.append(fac.Transition(st_0, [])) st_0._set_transitionSet(transitions) return fac.Automaton(states, counters, False, containing_state=None) -groupTableType._Automaton = _BuildAutomaton_9() +groupTableType._Automaton = _BuildAutomaton_9() + +locationTableType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "location"), + locationType, + scope=locationTableType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 706, 6), + ) +) -locationTableType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'location'), locationType, scope=locationTableType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 706, 6))) +locationTableType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "scheduleEvent"), + scheduleEventType, + scope=locationTableType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 707, 6), + ) +) -locationTableType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'scheduleEvent'), scheduleEventType, scope=locationTableType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 707, 6))) -def _BuildAutomaton_10 (): +def _BuildAutomaton_10(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_10 del _BuildAutomaton_10 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 706, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 706, 6), + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 707, 6)) + cc_1 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 707, 6), + ) counters.add(cc_1) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(locationTableType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'location')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 706, 6)) + symbol = pyxb.binding.content.ElementUse( + locationTableType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "location")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 706, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() final_update.add(fac.UpdateInstruction(cc_1, False)) - symbol = pyxb.binding.content.ElementUse(locationTableType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'scheduleEvent')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 707, 6)) + symbol = pyxb.binding.content.ElementUse( + locationTableType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "scheduleEvent")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 707, 6), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, False)])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_1, True) ])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_1, True)])) st_1._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -locationTableType._Automaton = _BuildAutomaton_10() +locationTableType._Automaton = _BuildAutomaton_10() + +scheduleEventsType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "scheduleEvent"), + scheduleEventType, + scope=scheduleEventsType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 726, 6), + ) +) -scheduleEventsType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'scheduleEvent'), scheduleEventType, scope=scheduleEventsType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 726, 6))) -def _BuildAutomaton_11 (): +def _BuildAutomaton_11(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_11 del _BuildAutomaton_11 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 726, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 726, 6), + ) counters.add(cc_0) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(scheduleEventsType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'scheduleEvent')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 726, 6)) + symbol = pyxb.binding.content.ElementUse( + scheduleEventsType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "scheduleEvent")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 726, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) st_0._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -scheduleEventsType._Automaton = _BuildAutomaton_11() +scheduleEventsType._Automaton = _BuildAutomaton_11() + +locationsType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "location"), + locationType, + scope=locationsType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 817, 6), + ) +) -locationsType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'location'), locationType, scope=locationsType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 817, 6))) -def _BuildAutomaton_12 (): +def _BuildAutomaton_12(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_12 del _BuildAutomaton_12 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 817, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 817, 6), + ) counters.add(cc_0) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(locationsType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'location')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 817, 6)) + symbol = pyxb.binding.content.ElementUse( + locationsType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "location")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 817, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) st_0._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -locationsType._Automaton = _BuildAutomaton_12() - - - - -baseMediaType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'crid'), pyxb.binding.datatypes.anyURI, scope=baseMediaType, documentation='\n A crid (content reference identifier) is a reference to an entity in another system. E.g. a crid like\n crid://broadcast.radiobox2/335793 refers to a broadcast with id 335793 in Radiobox. A crid must be a valid\n URI starting with "crid://". Crids must be unique, but they can be made up freely. It is a good idea to use\n a logical structure which can easily be associated with another system. Any POMS object can have zero or\n more crids. They can refer to different systems, but a POMS object could also actually represent more than\n one entity in a remote system.\n ', location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 225, 6))) - -baseMediaType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'broadcaster'), broadcasterType, scope=baseMediaType, documentation='\n One or more broadcasters can be the owner of a POMS media object. This information is meta information about the object, but it is also used\n for assigning write access to the object in the POMS backend to employees of these given broadcasting companies.\n ', location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 237, 6))) - -baseMediaType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'portal'), organizationType, scope=baseMediaType, documentation="\n Optionally 'portals' can be assigned to a media object. Portals are also 'owners', and employees can also work for a certain portal.\n This is because some portal are shared by several broadcasting companies.\n ", location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 245, 6))) - -baseMediaType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'exclusive'), portalRestrictionType, scope=baseMediaType, documentation="\n Besides having portals, which mainly indicates where the object originates, a media object can also be assigned 'portal restrictions'.\n If a media object has any portal restrictions the media object may only be shown on these portals.\n ", location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 253, 6))) - -baseMediaType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'region'), geoRestrictionType, scope=baseMediaType, documentation="\n Media with a geo restriction can only be played in the indicated region (NL, BENELUX, WORLD). This\n restriction doesn't apply to the metadata of the media object. It only applies to the actual playable content.\n ", location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 261, 6))) - -baseMediaType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'title'), titleType, scope=baseMediaType, documentation='\n A media object has one or more titles. All titles have a type (MAIN, SUB etc.) and an owner (BROADCASTER, MIS etc.).\n The combination of type and owner is always unique for a particular media object, so a media object cannot\n have multiple titles of the same type and owner. Titles are sorted in order of the textualTypeEnum and the in order\n of ownerTypeEnum when published, so the first title in a published document will be a title owned by BROADCASTER of type\n MAIN, if that title exists.\n ', location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 269, 6))) - -baseMediaType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'description'), descriptionType, scope=baseMediaType, documentation='\n Optional descriptions for the media object. Descriptions have an owner and a type, and are ordered just like titles.\n ', location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 280, 6))) - -baseMediaType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'genre'), genreType, scope=baseMediaType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 287, 6))) - -baseMediaType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'tag'), tagType, scope=baseMediaType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 288, 6))) - -baseMediaType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'intentions'), intentionType, scope=baseMediaType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 289, 6))) - -baseMediaType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'targetGroups'), targetGroupsType, scope=baseMediaType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 290, 6))) - -baseMediaType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'geoLocations'), geoLocationsType, scope=baseMediaType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 291, 6))) - -baseMediaType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'topics'), topicsType, scope=baseMediaType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 292, 6))) - -baseMediaType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'source'), pyxb.binding.datatypes.string, scope=baseMediaType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 293, 6))) -baseMediaType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'country'), countryType, scope=baseMediaType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 294, 6))) -baseMediaType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'language'), languageType, scope=baseMediaType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 295, 6))) - -baseMediaType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'isDubbed'), pyxb.binding.datatypes.boolean, scope=baseMediaType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 296, 6))) - -baseMediaType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'availableSubtitles'), availableSubtitleType, scope=baseMediaType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 297, 6))) - -baseMediaType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'avAttributes'), avAttributesType, scope=baseMediaType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 298, 6))) - -baseMediaType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'releaseYear'), pyxb.binding.datatypes.short, scope=baseMediaType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 299, 6))) - -baseMediaType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'duration'), pyxb.binding.datatypes.duration, scope=baseMediaType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 300, 6))) - -baseMediaType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'credits'), creditsType, scope=baseMediaType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 301, 6))) - -baseMediaType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'award'), pyxb.binding.datatypes.string, scope=baseMediaType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 302, 6))) - -baseMediaType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'descendantOf'), descendantRefType, scope=baseMediaType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 303, 6))) - -baseMediaType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'memberOf'), memberRefType, scope=baseMediaType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 304, 6))) - -baseMediaType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'ageRating'), ageRatingType, scope=baseMediaType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 305, 6))) - -baseMediaType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'contentRating'), contentRatingType, scope=baseMediaType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 306, 6))) - -baseMediaType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'email'), pyxb.binding.datatypes.anyURI, scope=baseMediaType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 307, 6))) - -baseMediaType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'website'), websiteType, scope=baseMediaType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 308, 6))) - -baseMediaType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'twitter'), twitterType, scope=baseMediaType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 309, 6))) - -baseMediaType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'teletext'), pyxb.binding.datatypes.short, scope=baseMediaType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 310, 6))) - -baseMediaType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'prediction'), predictionType, scope=baseMediaType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 311, 6))) - -baseMediaType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'locations'), locationsType, scope=baseMediaType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 312, 6))) - -baseMediaType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'relation'), relationType, scope=baseMediaType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 313, 6))) +locationsType._Automaton = _BuildAutomaton_12() -baseMediaType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'images'), imagesType, scope=baseMediaType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 314, 6))) -def _BuildAutomaton_13 (): +baseMediaType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "crid"), + pyxb.binding.datatypes.anyURI, + scope=baseMediaType, + documentation='\n A crid (content reference identifier) is a reference to an entity in another system. E.g. a crid like\n crid://broadcast.radiobox2/335793 refers to a broadcast with id 335793 in Radiobox. A crid must be a valid\n URI starting with "crid://". Crids must be unique, but they can be made up freely. It is a good idea to use\n a logical structure which can easily be associated with another system. Any POMS object can have zero or\n more crids. They can refer to different systems, but a POMS object could also actually represent more than\n one entity in a remote system.\n ', + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 225, 6), + ) +) + +baseMediaType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "broadcaster"), + broadcasterType, + scope=baseMediaType, + documentation="\n One or more broadcasters can be the owner of a POMS media object. This information is meta information about the object, but it is also used\n for assigning write access to the object in the POMS backend to employees of these given broadcasting companies.\n ", + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 237, 6), + ) +) + +baseMediaType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "portal"), + organizationType, + scope=baseMediaType, + documentation="\n Optionally 'portals' can be assigned to a media object. Portals are also 'owners', and employees can also work for a certain portal.\n This is because some portal are shared by several broadcasting companies.\n ", + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 245, 6), + ) +) + +baseMediaType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "exclusive"), + portalRestrictionType, + scope=baseMediaType, + documentation="\n Besides having portals, which mainly indicates where the object originates, a media object can also be assigned 'portal restrictions'.\n If a media object has any portal restrictions the media object may only be shown on these portals.\n ", + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 253, 6), + ) +) + +baseMediaType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "region"), + geoRestrictionType, + scope=baseMediaType, + documentation="\n Media with a geo restriction can only be played in the indicated region (NL, BENELUX, WORLD). This\n restriction doesn't apply to the metadata of the media object. It only applies to the actual playable content.\n ", + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 261, 6), + ) +) + +baseMediaType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "title"), + titleType, + scope=baseMediaType, + documentation="\n A media object has one or more titles. All titles have a type (MAIN, SUB etc.) and an owner (BROADCASTER, MIS etc.).\n The combination of type and owner is always unique for a particular media object, so a media object cannot\n have multiple titles of the same type and owner. Titles are sorted in order of the textualTypeEnum and the in order\n of ownerTypeEnum when published, so the first title in a published document will be a title owned by BROADCASTER of type\n MAIN, if that title exists.\n ", + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 269, 6), + ) +) + +baseMediaType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "description"), + descriptionType, + scope=baseMediaType, + documentation="\n Optional descriptions for the media object. Descriptions have an owner and a type, and are ordered just like titles.\n ", + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 280, 6), + ) +) + +baseMediaType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "genre"), + genreType, + scope=baseMediaType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 287, 6), + ) +) + +baseMediaType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "tag"), + tagType, + scope=baseMediaType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 288, 6), + ) +) + +baseMediaType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "intentions"), + intentionType, + scope=baseMediaType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 289, 6), + ) +) + +baseMediaType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "targetGroups"), + targetGroupsType, + scope=baseMediaType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 290, 6), + ) +) + +baseMediaType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "geoLocations"), + geoLocationsType, + scope=baseMediaType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 291, 6), + ) +) + +baseMediaType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "topics"), + topicsType, + scope=baseMediaType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 292, 6), + ) +) + +baseMediaType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "source"), + pyxb.binding.datatypes.string, + scope=baseMediaType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 293, 6), + ) +) + +baseMediaType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "country"), + countryType, + scope=baseMediaType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 294, 6), + ) +) + +baseMediaType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "language"), + languageType, + scope=baseMediaType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 295, 6), + ) +) + +baseMediaType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "isDubbed"), + pyxb.binding.datatypes.boolean, + scope=baseMediaType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 296, 6), + ) +) + +baseMediaType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "availableSubtitles"), + availableSubtitleType, + scope=baseMediaType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 297, 6), + ) +) + +baseMediaType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "avAttributes"), + avAttributesType, + scope=baseMediaType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 298, 6), + ) +) + +baseMediaType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "releaseYear"), + pyxb.binding.datatypes.short, + scope=baseMediaType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 299, 6), + ) +) + +baseMediaType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "duration"), + pyxb.binding.datatypes.duration, + scope=baseMediaType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 300, 6), + ) +) + +baseMediaType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "credits"), + creditsType, + scope=baseMediaType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 301, 6), + ) +) + +baseMediaType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "award"), + pyxb.binding.datatypes.string, + scope=baseMediaType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 302, 6), + ) +) + +baseMediaType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "descendantOf"), + descendantRefType, + scope=baseMediaType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 303, 6), + ) +) + +baseMediaType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "memberOf"), + memberRefType, + scope=baseMediaType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 304, 6), + ) +) + +baseMediaType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "ageRating"), + ageRatingType, + scope=baseMediaType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 305, 6), + ) +) + +baseMediaType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "contentRating"), + contentRatingType, + scope=baseMediaType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 306, 6), + ) +) + +baseMediaType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "email"), + pyxb.binding.datatypes.anyURI, + scope=baseMediaType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 307, 6), + ) +) + +baseMediaType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "website"), + websiteType, + scope=baseMediaType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 308, 6), + ) +) + +baseMediaType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "twitter"), + twitterType, + scope=baseMediaType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 309, 6), + ) +) + +baseMediaType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "teletext"), + pyxb.binding.datatypes.short, + scope=baseMediaType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 310, 6), + ) +) + +baseMediaType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "prediction"), + predictionType, + scope=baseMediaType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 311, 6), + ) +) + +baseMediaType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "locations"), + locationsType, + scope=baseMediaType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 312, 6), + ) +) + +baseMediaType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "relation"), + relationType, + scope=baseMediaType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 313, 6), + ) +) + +baseMediaType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "images"), + imagesType, + scope=baseMediaType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 314, 6), + ) +) + + +def _BuildAutomaton_13(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_13 del _BuildAutomaton_13 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 225, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 225, 6), + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 245, 6)) + cc_1 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 245, 6), + ) counters.add(cc_1) - cc_2 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 253, 6)) + cc_2 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 253, 6), + ) counters.add(cc_2) - cc_3 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 261, 6)) + cc_3 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 261, 6), + ) counters.add(cc_3) - cc_4 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 280, 6)) + cc_4 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 280, 6), + ) counters.add(cc_4) - cc_5 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 287, 6)) + cc_5 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 287, 6), + ) counters.add(cc_5) - cc_6 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 288, 6)) + cc_6 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 288, 6), + ) counters.add(cc_6) - cc_7 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 289, 6)) + cc_7 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 289, 6), + ) counters.add(cc_7) - cc_8 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 290, 6)) + cc_8 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 290, 6), + ) counters.add(cc_8) - cc_9 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 291, 6)) + cc_9 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 291, 6), + ) counters.add(cc_9) - cc_10 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 292, 6)) + cc_10 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 292, 6), + ) counters.add(cc_10) - cc_11 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 293, 6)) + cc_11 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 293, 6) + ) counters.add(cc_11) - cc_12 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 294, 6)) + cc_12 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 294, 6), + ) counters.add(cc_12) - cc_13 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 295, 6)) + cc_13 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 295, 6), + ) counters.add(cc_13) - cc_14 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 296, 6)) + cc_14 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 296, 6) + ) counters.add(cc_14) - cc_15 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 297, 6)) + cc_15 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 297, 6), + ) counters.add(cc_15) - cc_16 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 298, 6)) + cc_16 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 298, 6) + ) counters.add(cc_16) - cc_17 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 299, 6)) + cc_17 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 299, 6) + ) counters.add(cc_17) - cc_18 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 300, 6)) + cc_18 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 300, 6) + ) counters.add(cc_18) - cc_19 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 301, 6)) + cc_19 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 301, 6) + ) counters.add(cc_19) - cc_20 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 302, 6)) + cc_20 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 302, 6), + ) counters.add(cc_20) - cc_21 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 303, 6)) + cc_21 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 303, 6), + ) counters.add(cc_21) - cc_22 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 304, 6)) + cc_22 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 304, 6), + ) counters.add(cc_22) - cc_23 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 305, 6)) + cc_23 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 305, 6) + ) counters.add(cc_23) - cc_24 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 306, 6)) + cc_24 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 306, 6), + ) counters.add(cc_24) - cc_25 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 307, 6)) + cc_25 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 307, 6), + ) counters.add(cc_25) - cc_26 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 308, 6)) + cc_26 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 308, 6), + ) counters.add(cc_26) - cc_27 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 309, 6)) + cc_27 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 309, 6), + ) counters.add(cc_27) - cc_28 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 310, 6)) + cc_28 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 310, 6) + ) counters.add(cc_28) - cc_29 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 311, 6)) + cc_29 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 311, 6), + ) counters.add(cc_29) - cc_30 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 312, 6)) + cc_30 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 312, 6) + ) counters.add(cc_30) - cc_31 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 313, 6)) + cc_31 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 313, 6), + ) counters.add(cc_31) - cc_32 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 314, 6)) + cc_32 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 314, 6) + ) counters.add(cc_32) states = [] final_update = None - symbol = pyxb.binding.content.ElementUse(baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'crid')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 225, 6)) + symbol = pyxb.binding.content.ElementUse( + baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "crid")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 225, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = None - symbol = pyxb.binding.content.ElementUse(baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'broadcaster')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 237, 6)) + symbol = pyxb.binding.content.ElementUse( + baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "broadcaster")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 237, 6), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) final_update = None - symbol = pyxb.binding.content.ElementUse(baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'portal')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 245, 6)) + symbol = pyxb.binding.content.ElementUse( + baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "portal")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 245, 6), + ) st_2 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_2) final_update = None - symbol = pyxb.binding.content.ElementUse(baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'exclusive')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 253, 6)) + symbol = pyxb.binding.content.ElementUse( + baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "exclusive")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 253, 6), + ) st_3 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_3) final_update = None - symbol = pyxb.binding.content.ElementUse(baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'region')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 261, 6)) + symbol = pyxb.binding.content.ElementUse( + baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "region")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 261, 6), + ) st_4 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_4) final_update = set() - symbol = pyxb.binding.content.ElementUse(baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'title')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 269, 6)) + symbol = pyxb.binding.content.ElementUse( + baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "title")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 269, 6), + ) st_5 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_5) final_update = set() final_update.add(fac.UpdateInstruction(cc_4, False)) - symbol = pyxb.binding.content.ElementUse(baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'description')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 280, 6)) + symbol = pyxb.binding.content.ElementUse( + baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "description")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 280, 6), + ) st_6 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_6) final_update = set() final_update.add(fac.UpdateInstruction(cc_5, False)) - symbol = pyxb.binding.content.ElementUse(baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'genre')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 287, 6)) + symbol = pyxb.binding.content.ElementUse( + baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "genre")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 287, 6), + ) st_7 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_7) final_update = set() final_update.add(fac.UpdateInstruction(cc_6, False)) - symbol = pyxb.binding.content.ElementUse(baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'tag')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 288, 6)) + symbol = pyxb.binding.content.ElementUse( + baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "tag")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 288, 6), + ) st_8 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_8) final_update = set() final_update.add(fac.UpdateInstruction(cc_7, False)) - symbol = pyxb.binding.content.ElementUse(baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'intentions')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 289, 6)) + symbol = pyxb.binding.content.ElementUse( + baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "intentions")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 289, 6), + ) st_9 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_9) final_update = set() final_update.add(fac.UpdateInstruction(cc_8, False)) - symbol = pyxb.binding.content.ElementUse(baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'targetGroups')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 290, 6)) + symbol = pyxb.binding.content.ElementUse( + baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "targetGroups")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 290, 6), + ) st_10 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_10) final_update = set() final_update.add(fac.UpdateInstruction(cc_9, False)) - symbol = pyxb.binding.content.ElementUse(baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'geoLocations')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 291, 6)) + symbol = pyxb.binding.content.ElementUse( + baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "geoLocations")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 291, 6), + ) st_11 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_11) final_update = set() final_update.add(fac.UpdateInstruction(cc_10, False)) - symbol = pyxb.binding.content.ElementUse(baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'topics')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 292, 6)) + symbol = pyxb.binding.content.ElementUse( + baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "topics")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 292, 6), + ) st_12 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_12) final_update = set() final_update.add(fac.UpdateInstruction(cc_11, False)) - symbol = pyxb.binding.content.ElementUse(baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'source')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 293, 6)) + symbol = pyxb.binding.content.ElementUse( + baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "source")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 293, 6), + ) st_13 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_13) final_update = set() final_update.add(fac.UpdateInstruction(cc_12, False)) - symbol = pyxb.binding.content.ElementUse(baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'country')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 294, 6)) + symbol = pyxb.binding.content.ElementUse( + baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "country")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 294, 6), + ) st_14 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_14) final_update = set() final_update.add(fac.UpdateInstruction(cc_13, False)) - symbol = pyxb.binding.content.ElementUse(baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'language')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 295, 6)) + symbol = pyxb.binding.content.ElementUse( + baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "language")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 295, 6), + ) st_15 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_15) final_update = set() final_update.add(fac.UpdateInstruction(cc_14, False)) - symbol = pyxb.binding.content.ElementUse(baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'isDubbed')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 296, 6)) + symbol = pyxb.binding.content.ElementUse( + baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "isDubbed")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 296, 6), + ) st_16 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_16) final_update = set() final_update.add(fac.UpdateInstruction(cc_15, False)) - symbol = pyxb.binding.content.ElementUse(baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'availableSubtitles')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 297, 6)) + symbol = pyxb.binding.content.ElementUse( + baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "availableSubtitles")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 297, 6), + ) st_17 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_17) final_update = set() final_update.add(fac.UpdateInstruction(cc_16, False)) - symbol = pyxb.binding.content.ElementUse(baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'avAttributes')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 298, 6)) + symbol = pyxb.binding.content.ElementUse( + baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "avAttributes")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 298, 6), + ) st_18 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_18) final_update = set() final_update.add(fac.UpdateInstruction(cc_17, False)) - symbol = pyxb.binding.content.ElementUse(baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'releaseYear')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 299, 6)) + symbol = pyxb.binding.content.ElementUse( + baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "releaseYear")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 299, 6), + ) st_19 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_19) final_update = set() final_update.add(fac.UpdateInstruction(cc_18, False)) - symbol = pyxb.binding.content.ElementUse(baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'duration')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 300, 6)) + symbol = pyxb.binding.content.ElementUse( + baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "duration")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 300, 6), + ) st_20 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_20) final_update = set() final_update.add(fac.UpdateInstruction(cc_19, False)) - symbol = pyxb.binding.content.ElementUse(baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'credits')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 301, 6)) + symbol = pyxb.binding.content.ElementUse( + baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "credits")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 301, 6), + ) st_21 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_21) final_update = set() final_update.add(fac.UpdateInstruction(cc_20, False)) - symbol = pyxb.binding.content.ElementUse(baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'award')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 302, 6)) + symbol = pyxb.binding.content.ElementUse( + baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "award")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 302, 6), + ) st_22 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_22) final_update = set() final_update.add(fac.UpdateInstruction(cc_21, False)) - symbol = pyxb.binding.content.ElementUse(baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'descendantOf')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 303, 6)) + symbol = pyxb.binding.content.ElementUse( + baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "descendantOf")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 303, 6), + ) st_23 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_23) final_update = set() final_update.add(fac.UpdateInstruction(cc_22, False)) - symbol = pyxb.binding.content.ElementUse(baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'memberOf')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 304, 6)) + symbol = pyxb.binding.content.ElementUse( + baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "memberOf")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 304, 6), + ) st_24 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_24) final_update = set() final_update.add(fac.UpdateInstruction(cc_23, False)) - symbol = pyxb.binding.content.ElementUse(baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'ageRating')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 305, 6)) + symbol = pyxb.binding.content.ElementUse( + baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "ageRating")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 305, 6), + ) st_25 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_25) final_update = set() final_update.add(fac.UpdateInstruction(cc_24, False)) - symbol = pyxb.binding.content.ElementUse(baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'contentRating')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 306, 6)) + symbol = pyxb.binding.content.ElementUse( + baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "contentRating")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 306, 6), + ) st_26 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_26) final_update = set() final_update.add(fac.UpdateInstruction(cc_25, False)) - symbol = pyxb.binding.content.ElementUse(baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'email')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 307, 6)) + symbol = pyxb.binding.content.ElementUse( + baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "email")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 307, 6), + ) st_27 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_27) final_update = set() final_update.add(fac.UpdateInstruction(cc_26, False)) - symbol = pyxb.binding.content.ElementUse(baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'website')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 308, 6)) + symbol = pyxb.binding.content.ElementUse( + baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "website")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 308, 6), + ) st_28 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_28) final_update = set() final_update.add(fac.UpdateInstruction(cc_27, False)) - symbol = pyxb.binding.content.ElementUse(baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'twitter')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 309, 6)) + symbol = pyxb.binding.content.ElementUse( + baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "twitter")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 309, 6), + ) st_29 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_29) final_update = set() final_update.add(fac.UpdateInstruction(cc_28, False)) - symbol = pyxb.binding.content.ElementUse(baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'teletext')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 310, 6)) + symbol = pyxb.binding.content.ElementUse( + baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "teletext")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 310, 6), + ) st_30 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_30) final_update = set() final_update.add(fac.UpdateInstruction(cc_29, False)) - symbol = pyxb.binding.content.ElementUse(baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'prediction')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 311, 6)) + symbol = pyxb.binding.content.ElementUse( + baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "prediction")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 311, 6), + ) st_31 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_31) final_update = set() final_update.add(fac.UpdateInstruction(cc_30, False)) - symbol = pyxb.binding.content.ElementUse(baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'locations')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 312, 6)) + symbol = pyxb.binding.content.ElementUse( + baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "locations")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 312, 6), + ) st_32 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_32) final_update = set() final_update.add(fac.UpdateInstruction(cc_31, False)) - symbol = pyxb.binding.content.ElementUse(baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'relation')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 313, 6)) + symbol = pyxb.binding.content.ElementUse( + baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "relation")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 313, 6), + ) st_33 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_33) final_update = set() final_update.add(fac.UpdateInstruction(cc_32, False)) - symbol = pyxb.binding.content.ElementUse(baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'images')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 314, 6)) + symbol = pyxb.binding.content.ElementUse( + baseMediaType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "images")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 314, 6), + ) st_34 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_34) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, False)])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - ])) - transitions.append(fac.Transition(st_2, [ - ])) - transitions.append(fac.Transition(st_3, [ - ])) - transitions.append(fac.Transition(st_4, [ - ])) - transitions.append(fac.Transition(st_5, [ - ])) + transitions.append(fac.Transition(st_1, [])) + transitions.append(fac.Transition(st_2, [])) + transitions.append(fac.Transition(st_3, [])) + transitions.append(fac.Transition(st_4, [])) + transitions.append(fac.Transition(st_5, [])) st_1._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_1, True) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_1, False) ])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_1, True)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_1, False)])) st_2._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_2, True) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_2, False) ])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_2, True)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_2, False)])) st_3._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_3, True) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_3, False) ])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_3, True)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_3, False)])) st_4._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_5, [ - ])) - transitions.append(fac.Transition(st_6, [ - ])) - transitions.append(fac.Transition(st_7, [ - ])) - transitions.append(fac.Transition(st_8, [ - ])) - transitions.append(fac.Transition(st_9, [ - ])) - transitions.append(fac.Transition(st_10, [ - ])) - transitions.append(fac.Transition(st_11, [ - ])) - transitions.append(fac.Transition(st_12, [ - ])) - transitions.append(fac.Transition(st_13, [ - ])) - transitions.append(fac.Transition(st_14, [ - ])) - transitions.append(fac.Transition(st_15, [ - ])) - transitions.append(fac.Transition(st_16, [ - ])) - transitions.append(fac.Transition(st_17, [ - ])) - transitions.append(fac.Transition(st_18, [ - ])) - transitions.append(fac.Transition(st_19, [ - ])) - transitions.append(fac.Transition(st_20, [ - ])) - transitions.append(fac.Transition(st_21, [ - ])) - transitions.append(fac.Transition(st_22, [ - ])) - transitions.append(fac.Transition(st_23, [ - ])) - transitions.append(fac.Transition(st_24, [ - ])) - transitions.append(fac.Transition(st_25, [ - ])) - transitions.append(fac.Transition(st_26, [ - ])) - transitions.append(fac.Transition(st_27, [ - ])) - transitions.append(fac.Transition(st_28, [ - ])) - transitions.append(fac.Transition(st_29, [ - ])) - transitions.append(fac.Transition(st_30, [ - ])) - transitions.append(fac.Transition(st_31, [ - ])) - transitions.append(fac.Transition(st_32, [ - ])) - transitions.append(fac.Transition(st_33, [ - ])) - transitions.append(fac.Transition(st_34, [ - ])) + transitions.append(fac.Transition(st_5, [])) + transitions.append(fac.Transition(st_6, [])) + transitions.append(fac.Transition(st_7, [])) + transitions.append(fac.Transition(st_8, [])) + transitions.append(fac.Transition(st_9, [])) + transitions.append(fac.Transition(st_10, [])) + transitions.append(fac.Transition(st_11, [])) + transitions.append(fac.Transition(st_12, [])) + transitions.append(fac.Transition(st_13, [])) + transitions.append(fac.Transition(st_14, [])) + transitions.append(fac.Transition(st_15, [])) + transitions.append(fac.Transition(st_16, [])) + transitions.append(fac.Transition(st_17, [])) + transitions.append(fac.Transition(st_18, [])) + transitions.append(fac.Transition(st_19, [])) + transitions.append(fac.Transition(st_20, [])) + transitions.append(fac.Transition(st_21, [])) + transitions.append(fac.Transition(st_22, [])) + transitions.append(fac.Transition(st_23, [])) + transitions.append(fac.Transition(st_24, [])) + transitions.append(fac.Transition(st_25, [])) + transitions.append(fac.Transition(st_26, [])) + transitions.append(fac.Transition(st_27, [])) + transitions.append(fac.Transition(st_28, [])) + transitions.append(fac.Transition(st_29, [])) + transitions.append(fac.Transition(st_30, [])) + transitions.append(fac.Transition(st_31, [])) + transitions.append(fac.Transition(st_32, [])) + transitions.append(fac.Transition(st_33, [])) + transitions.append(fac.Transition(st_34, [])) st_5._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_4, True) ])) - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_4, False) ])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_4, True)])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_4, False)])) st_6._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_5, True) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_5, False) ])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_5, True)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_5, False)])) st_7._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_6, True) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_6, False) ])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_6, True)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_6, False)])) st_8._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_7, True) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_7, False) ])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_7, True)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_7, False)])) st_9._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_8, True) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_8, False) ])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_8, True)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_8, False)])) st_10._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_9, True) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_9, False) ])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_9, True)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_9, False)])) st_11._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_10, True) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_10, False) ])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_10, True)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_10, False)])) st_12._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_11, True) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_11, False) ])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_11, True)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_11, False)])) st_13._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_12, True) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_12, False) ])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_12, True)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_12, False)])) st_14._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_13, True) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_13, False) ])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_13, True)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_13, False)])) st_15._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_14, True) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_14, False) ])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_14, True)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_14, False)])) st_16._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_15, True) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_15, False) ])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_15, True)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_15, False)])) st_17._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_16, True) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_16, False) ])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_16, True)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_16, False)])) st_18._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_17, True) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_17, False) ])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_17, True)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_17, False)])) st_19._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_18, True) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_18, False) ])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_18, True)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_18, False)])) st_20._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_19, True) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_19, False) ])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_19, True)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_19, False)])) st_21._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_20, True) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_20, False) ])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_20, True)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_20, False)])) st_22._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_21, True) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_21, False) ])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_21, True)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_21, False)])) st_23._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_22, True) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_22, False) ])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_22, True)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_22, False)])) st_24._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_23, True) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_23, False) ])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_23, True)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_23, False)])) st_25._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_24, True) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_24, False) ])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_24, True)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_24, False)])) st_26._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_25, True) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_25, False) ])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_25, True)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_25, False)])) st_27._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_26, True) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_26, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_26, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_26, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_26, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_26, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_26, False) ])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_26, True)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_26, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_26, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_26, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_26, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_26, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_26, False)])) st_28._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_27, True) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_27, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_27, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_27, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_27, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_27, False) ])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_27, True)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_27, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_27, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_27, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_27, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_27, False)])) st_29._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_28, True) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_28, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_28, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_28, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_28, False) ])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_28, True)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_28, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_28, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_28, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_28, False)])) st_30._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_29, True) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_29, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_29, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_29, False) ])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_29, True)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_29, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_29, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_29, False)])) st_31._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_30, True) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_30, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_30, False) ])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_30, True)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_30, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_30, False)])) st_32._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_31, True) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_31, False) ])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_31, True)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_31, False)])) st_33._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_32, True) ])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_32, True)])) st_34._set_transitionSet(transitions) return fac.Automaton(states, counters, False, containing_state=None) -baseMediaType._Automaton = _BuildAutomaton_13() +baseMediaType._Automaton = _BuildAutomaton_13() + +personType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "givenName"), + pyxb.binding.datatypes.string, + scope=personType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 553, 6), + ) +) -personType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'givenName'), pyxb.binding.datatypes.string, scope=personType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 553, 6))) +personType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "familyName"), + pyxb.binding.datatypes.string, + scope=personType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 554, 6), + ) +) -personType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'familyName'), pyxb.binding.datatypes.string, scope=personType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 554, 6))) -def _BuildAutomaton_14 (): +def _BuildAutomaton_14(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_14 del _BuildAutomaton_14 @@ -6148,70 +7839,107 @@ def _BuildAutomaton_14 (): counters = set() states = [] final_update = None - symbol = pyxb.binding.content.ElementUse(personType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'givenName')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 553, 6)) + symbol = pyxb.binding.content.ElementUse( + personType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "givenName")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 553, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() - symbol = pyxb.binding.content.ElementUse(personType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'familyName')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 554, 6)) + symbol = pyxb.binding.content.ElementUse( + personType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "familyName")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 554, 6), + ) st_1 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_1) transitions = [] - transitions.append(fac.Transition(st_1, [ - ])) + transitions.append(fac.Transition(st_1, [])) st_0._set_transitionSet(transitions) transitions = [] st_1._set_transitionSet(transitions) return fac.Automaton(states, counters, False, containing_state=None) -personType._Automaton = _BuildAutomaton_14() +personType._Automaton = _BuildAutomaton_14() + +nameType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "name"), + pyxb.binding.datatypes.string, + scope=nameType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 563, 6), + ) +) -nameType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'name'), pyxb.binding.datatypes.string, scope=nameType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 563, 6))) +nameType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "scopeNote"), + pyxb.binding.datatypes.string, + scope=nameType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 564, 6), + ) +) -nameType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'scopeNote'), pyxb.binding.datatypes.string, scope=nameType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 564, 6))) -def _BuildAutomaton_15 (): +def _BuildAutomaton_15(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_15 del _BuildAutomaton_15 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 563, 6)) + cc_0 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 563, 6) + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 564, 6)) + cc_1 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 564, 6), + ) counters.add(cc_1) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(nameType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'name')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 563, 6)) + symbol = pyxb.binding.content.ElementUse( + nameType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "name")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 563, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() final_update.add(fac.UpdateInstruction(cc_1, False)) - symbol = pyxb.binding.content.ElementUse(nameType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'scopeNote')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 564, 6)) + symbol = pyxb.binding.content.ElementUse( + nameType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "scopeNote")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 564, 6), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, False)])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_1, True) ])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_1, True)])) st_1._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -nameType._Automaton = _BuildAutomaton_15() +nameType._Automaton = _BuildAutomaton_15() + +scheduleType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "scheduleEvent"), + scheduleEventType, + scope=scheduleType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 713, 6), + ) +) -scheduleType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'scheduleEvent'), scheduleEventType, scope=scheduleType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 713, 6))) -def _BuildAutomaton_16 (): +def _BuildAutomaton_16(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_16 del _BuildAutomaton_16 @@ -6220,4937 +7948,4384 @@ def _BuildAutomaton_16 (): counters = set() states = [] final_update = set() - symbol = pyxb.binding.content.ElementUse(scheduleType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'scheduleEvent')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 713, 6)) + symbol = pyxb.binding.content.ElementUse( + scheduleType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "scheduleEvent")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 713, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) transitions = [] - transitions.append(fac.Transition(st_0, [ - ])) + transitions.append(fac.Transition(st_0, [])) st_0._set_transitionSet(transitions) return fac.Automaton(states, counters, False, containing_state=None) -scheduleType._Automaton = _BuildAutomaton_16() - - - -scheduleEventType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'title'), scheduleEventTitle, scope=scheduleEventType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 732, 6))) -scheduleEventType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'description'), scheduleEventDescription, scope=scheduleEventType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 733, 6))) - -scheduleEventType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'repeat'), repeatType, scope=scheduleEventType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 734, 6))) - -scheduleEventType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'memberOf'), pyxb.binding.datatypes.anyURI, scope=scheduleEventType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 735, 6))) - -scheduleEventType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'avAttributes'), avAttributesType, scope=scheduleEventType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 736, 6))) - -scheduleEventType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'textSubtitles'), pyxb.binding.datatypes.string, scope=scheduleEventType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 737, 6))) - -scheduleEventType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'textPage'), pyxb.binding.datatypes.string, scope=scheduleEventType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 738, 6))) - -scheduleEventType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'guideDay'), pyxb.binding.datatypes.date, scope=scheduleEventType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 739, 6))) - -scheduleEventType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'start'), pyxb.binding.datatypes.dateTime, scope=scheduleEventType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 740, 6))) - -scheduleEventType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'offset'), pyxb.binding.datatypes.duration, scope=scheduleEventType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 741, 6))) - -scheduleEventType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'duration'), pyxb.binding.datatypes.duration, scope=scheduleEventType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 742, 6))) - -scheduleEventType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'poProgID'), pyxb.binding.datatypes.string, scope=scheduleEventType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 743, 6))) - -scheduleEventType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'primaryLifestyle'), pyxb.binding.datatypes.string, scope=scheduleEventType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 744, 6))) +scheduleType._Automaton = _BuildAutomaton_16() -scheduleEventType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'secondaryLifestyle'), pyxb.binding.datatypes.string, scope=scheduleEventType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 745, 6))) -def _BuildAutomaton_17 (): +scheduleEventType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "title"), + scheduleEventTitle, + scope=scheduleEventType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 732, 6), + ) +) + +scheduleEventType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "description"), + scheduleEventDescription, + scope=scheduleEventType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 733, 6), + ) +) + +scheduleEventType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "repeat"), + repeatType, + scope=scheduleEventType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 734, 6), + ) +) + +scheduleEventType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "memberOf"), + pyxb.binding.datatypes.anyURI, + scope=scheduleEventType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 735, 6), + ) +) + +scheduleEventType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "avAttributes"), + avAttributesType, + scope=scheduleEventType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 736, 6), + ) +) + +scheduleEventType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "textSubtitles"), + pyxb.binding.datatypes.string, + scope=scheduleEventType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 737, 6), + ) +) + +scheduleEventType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "textPage"), + pyxb.binding.datatypes.string, + scope=scheduleEventType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 738, 6), + ) +) + +scheduleEventType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "guideDay"), + pyxb.binding.datatypes.date, + scope=scheduleEventType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 739, 6), + ) +) + +scheduleEventType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "start"), + pyxb.binding.datatypes.dateTime, + scope=scheduleEventType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 740, 6), + ) +) + +scheduleEventType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "offset"), + pyxb.binding.datatypes.duration, + scope=scheduleEventType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 741, 6), + ) +) + +scheduleEventType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "duration"), + pyxb.binding.datatypes.duration, + scope=scheduleEventType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 742, 6), + ) +) + +scheduleEventType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "poProgID"), + pyxb.binding.datatypes.string, + scope=scheduleEventType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 743, 6), + ) +) + +scheduleEventType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "primaryLifestyle"), + pyxb.binding.datatypes.string, + scope=scheduleEventType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 744, 6), + ) +) + +scheduleEventType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "secondaryLifestyle"), + pyxb.binding.datatypes.string, + scope=scheduleEventType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 745, 6), + ) +) + + +def _BuildAutomaton_17(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_17 del _BuildAutomaton_17 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 732, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 732, 6), + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 733, 6)) + cc_1 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 733, 6), + ) counters.add(cc_1) - cc_2 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 734, 6)) + cc_2 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 734, 6) + ) counters.add(cc_2) - cc_3 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 735, 6)) + cc_3 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 735, 6) + ) counters.add(cc_3) - cc_4 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 736, 6)) + cc_4 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 736, 6) + ) counters.add(cc_4) - cc_5 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 737, 6)) + cc_5 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 737, 6) + ) counters.add(cc_5) - cc_6 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 738, 6)) + cc_6 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 738, 6) + ) counters.add(cc_6) - cc_7 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 741, 6)) + cc_7 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 741, 6) + ) counters.add(cc_7) - cc_8 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 743, 6)) + cc_8 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 743, 6) + ) counters.add(cc_8) - cc_9 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 744, 6)) + cc_9 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 744, 6) + ) counters.add(cc_9) - cc_10 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 745, 6)) + cc_10 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 745, 6) + ) counters.add(cc_10) states = [] final_update = None - symbol = pyxb.binding.content.ElementUse(scheduleEventType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'title')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 732, 6)) + symbol = pyxb.binding.content.ElementUse( + scheduleEventType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "title")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 732, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = None - symbol = pyxb.binding.content.ElementUse(scheduleEventType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'description')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 733, 6)) + symbol = pyxb.binding.content.ElementUse( + scheduleEventType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "description")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 733, 6), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) final_update = None - symbol = pyxb.binding.content.ElementUse(scheduleEventType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'repeat')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 734, 6)) + symbol = pyxb.binding.content.ElementUse( + scheduleEventType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "repeat")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 734, 6), + ) st_2 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_2) final_update = None - symbol = pyxb.binding.content.ElementUse(scheduleEventType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'memberOf')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 735, 6)) + symbol = pyxb.binding.content.ElementUse( + scheduleEventType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "memberOf")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 735, 6), + ) st_3 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_3) final_update = None - symbol = pyxb.binding.content.ElementUse(scheduleEventType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'avAttributes')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 736, 6)) + symbol = pyxb.binding.content.ElementUse( + scheduleEventType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "avAttributes")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 736, 6), + ) st_4 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_4) final_update = None - symbol = pyxb.binding.content.ElementUse(scheduleEventType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'textSubtitles')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 737, 6)) + symbol = pyxb.binding.content.ElementUse( + scheduleEventType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "textSubtitles")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 737, 6), + ) st_5 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_5) final_update = None - symbol = pyxb.binding.content.ElementUse(scheduleEventType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'textPage')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 738, 6)) + symbol = pyxb.binding.content.ElementUse( + scheduleEventType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "textPage")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 738, 6), + ) st_6 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_6) final_update = None - symbol = pyxb.binding.content.ElementUse(scheduleEventType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'guideDay')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 739, 6)) + symbol = pyxb.binding.content.ElementUse( + scheduleEventType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "guideDay")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 739, 6), + ) st_7 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_7) final_update = None - symbol = pyxb.binding.content.ElementUse(scheduleEventType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'start')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 740, 6)) + symbol = pyxb.binding.content.ElementUse( + scheduleEventType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "start")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 740, 6), + ) st_8 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_8) final_update = None - symbol = pyxb.binding.content.ElementUse(scheduleEventType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'offset')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 741, 6)) + symbol = pyxb.binding.content.ElementUse( + scheduleEventType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "offset")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 741, 6), + ) st_9 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_9) final_update = set() - symbol = pyxb.binding.content.ElementUse(scheduleEventType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'duration')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 742, 6)) + symbol = pyxb.binding.content.ElementUse( + scheduleEventType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "duration")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 742, 6), + ) st_10 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_10) final_update = set() final_update.add(fac.UpdateInstruction(cc_8, False)) - symbol = pyxb.binding.content.ElementUse(scheduleEventType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'poProgID')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 743, 6)) + symbol = pyxb.binding.content.ElementUse( + scheduleEventType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "poProgID")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 743, 6), + ) st_11 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_11) final_update = set() final_update.add(fac.UpdateInstruction(cc_9, False)) - symbol = pyxb.binding.content.ElementUse(scheduleEventType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'primaryLifestyle')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 744, 6)) + symbol = pyxb.binding.content.ElementUse( + scheduleEventType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "primaryLifestyle")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 744, 6), + ) st_12 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_12) final_update = set() final_update.add(fac.UpdateInstruction(cc_10, False)) - symbol = pyxb.binding.content.ElementUse(scheduleEventType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'secondaryLifestyle')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 745, 6)) + symbol = pyxb.binding.content.ElementUse( + scheduleEventType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "secondaryLifestyle")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 745, 6), + ) st_13 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_13) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_0, False)])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_1, True) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_1, False) ])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_1, True)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_1, False)])) st_1._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_2, True) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_2, False) ])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_2, True)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_2, False)])) st_2._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_3, True) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_3, False) ])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_3, True)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_3, False)])) st_3._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_4, True) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_4, False) ])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_4, True)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_4, False)])) st_4._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_5, True) ])) - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_5, False) ])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_5, True)])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_5, False)])) st_5._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_6, True) ])) - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_6, False) ])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_6, True)])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_6, False)])) st_6._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_8, [ - ])) + transitions.append(fac.Transition(st_8, [])) st_7._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_9, [ - ])) - transitions.append(fac.Transition(st_10, [ - ])) + transitions.append(fac.Transition(st_9, [])) + transitions.append(fac.Transition(st_10, [])) st_8._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_7, True) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_7, False) ])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_7, True)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_7, False)])) st_9._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_11, [ - ])) - transitions.append(fac.Transition(st_12, [ - ])) - transitions.append(fac.Transition(st_13, [ - ])) + transitions.append(fac.Transition(st_11, [])) + transitions.append(fac.Transition(st_12, [])) + transitions.append(fac.Transition(st_13, [])) st_10._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_8, True) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_8, False) ])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_8, True)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_8, False)])) st_11._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_9, True) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_9, False) ])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_9, True)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_9, False)])) st_12._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_10, True) ])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_10, True)])) st_13._set_transitionSet(transitions) return fac.Automaton(states, counters, False, containing_state=None) -scheduleEventType._Automaton = _BuildAutomaton_17() - - - -locationType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'programUrl'), pyxb.binding.datatypes.anyURI, scope=locationType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 823, 6))) -locationType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'avAttributes'), avAttributesType, scope=locationType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 824, 6))) - -locationType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'subtitles'), pyxb.binding.datatypes.string, scope=locationType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 825, 6))) - -locationType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'offset'), pyxb.binding.datatypes.duration, scope=locationType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 826, 6))) +scheduleEventType._Automaton = _BuildAutomaton_17() -locationType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'duration'), pyxb.binding.datatypes.duration, scope=locationType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 827, 6))) -def _BuildAutomaton_18 (): +locationType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "programUrl"), + pyxb.binding.datatypes.anyURI, + scope=locationType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 823, 6), + ) +) + +locationType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "avAttributes"), + avAttributesType, + scope=locationType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 824, 6), + ) +) + +locationType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "subtitles"), + pyxb.binding.datatypes.string, + scope=locationType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 825, 6), + ) +) + +locationType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "offset"), + pyxb.binding.datatypes.duration, + scope=locationType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 826, 6), + ) +) + +locationType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "duration"), + pyxb.binding.datatypes.duration, + scope=locationType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 827, 6), + ) +) + + +def _BuildAutomaton_18(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_18 del _BuildAutomaton_18 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 824, 6)) + cc_0 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 824, 6) + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 825, 6)) + cc_1 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 825, 6) + ) counters.add(cc_1) - cc_2 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 826, 6)) + cc_2 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 826, 6) + ) counters.add(cc_2) - cc_3 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 827, 6)) + cc_3 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 827, 6) + ) counters.add(cc_3) states = [] final_update = set() - symbol = pyxb.binding.content.ElementUse(locationType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'programUrl')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 823, 6)) + symbol = pyxb.binding.content.ElementUse( + locationType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "programUrl")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 823, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(locationType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'avAttributes')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 824, 6)) + symbol = pyxb.binding.content.ElementUse( + locationType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "avAttributes")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 824, 6), + ) st_1 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_1) final_update = set() final_update.add(fac.UpdateInstruction(cc_1, False)) - symbol = pyxb.binding.content.ElementUse(locationType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'subtitles')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 825, 6)) + symbol = pyxb.binding.content.ElementUse( + locationType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "subtitles")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 825, 6), + ) st_2 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_2) final_update = set() final_update.add(fac.UpdateInstruction(cc_2, False)) - symbol = pyxb.binding.content.ElementUse(locationType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'offset')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 826, 6)) + symbol = pyxb.binding.content.ElementUse( + locationType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "offset")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 826, 6), + ) st_3 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_3) final_update = set() final_update.add(fac.UpdateInstruction(cc_3, False)) - symbol = pyxb.binding.content.ElementUse(locationType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'duration')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 827, 6)) + symbol = pyxb.binding.content.ElementUse( + locationType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "duration")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 827, 6), + ) st_4 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_4) transitions = [] - transitions.append(fac.Transition(st_1, [ - ])) - transitions.append(fac.Transition(st_2, [ - ])) - transitions.append(fac.Transition(st_3, [ - ])) - transitions.append(fac.Transition(st_4, [ - ])) + transitions.append(fac.Transition(st_1, [])) + transitions.append(fac.Transition(st_2, [])) + transitions.append(fac.Transition(st_3, [])) + transitions.append(fac.Transition(st_4, [])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_0, False)])) st_1._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_1, True) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_1, False) ])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_1, True)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_1, False)])) st_2._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_2, True) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_2, False) ])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_2, True)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_2, False)])) st_3._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_3, True) ])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_3, True)])) st_4._set_transitionSet(transitions) return fac.Automaton(states, counters, False, containing_state=None) -locationType._Automaton = _BuildAutomaton_18() +locationType._Automaton = _BuildAutomaton_18() -memberRefType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'episodeOf'), recursiveMemberRef, scope=memberRefType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 873, 6))) - -memberRefType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'memberOf'), recursiveMemberRef, scope=memberRefType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 874, 6))) - -memberRefType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'segmentOf'), recursiveMemberRef, scope=memberRefType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 875, 6))) - -def _BuildAutomaton_19 (): +memberRefType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "episodeOf"), + recursiveMemberRef, + scope=memberRefType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 873, 6), + ) +) + +memberRefType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "memberOf"), + recursiveMemberRef, + scope=memberRefType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 874, 6), + ) +) + +memberRefType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "segmentOf"), + recursiveMemberRef, + scope=memberRefType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 875, 6), + ) +) + + +def _BuildAutomaton_19(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_19 del _BuildAutomaton_19 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 873, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 873, 6), + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 874, 6)) + cc_1 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 874, 6), + ) counters.add(cc_1) - cc_2 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 875, 6)) + cc_2 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 875, 6) + ) counters.add(cc_2) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(memberRefType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'episodeOf')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 873, 6)) + symbol = pyxb.binding.content.ElementUse( + memberRefType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "episodeOf")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 873, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() final_update.add(fac.UpdateInstruction(cc_1, False)) - symbol = pyxb.binding.content.ElementUse(memberRefType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'memberOf')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 874, 6)) + symbol = pyxb.binding.content.ElementUse( + memberRefType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "memberOf")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 874, 6), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) final_update = set() final_update.add(fac.UpdateInstruction(cc_2, False)) - symbol = pyxb.binding.content.ElementUse(memberRefType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'segmentOf')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 875, 6)) + symbol = pyxb.binding.content.ElementUse( + memberRefType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "segmentOf")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 875, 6), + ) st_2 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_2) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_0, False)])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_1, True) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_1, False) ])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_1, True)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_1, False)])) st_1._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_2, True) ])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_2, True)])) st_2._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -memberRefType._Automaton = _BuildAutomaton_19() - - - -recursiveMemberRef._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'memberOf'), recursiveMemberRef, scope=recursiveMemberRef, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 911, 6))) -recursiveMemberRef._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'episodeOf'), recursiveMemberRef, scope=recursiveMemberRef, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 912, 6))) +memberRefType._Automaton = _BuildAutomaton_19() -recursiveMemberRef._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'segmentOf'), recursiveMemberRef, scope=recursiveMemberRef, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 913, 6))) -def _BuildAutomaton_20 (): +recursiveMemberRef._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "memberOf"), + recursiveMemberRef, + scope=recursiveMemberRef, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 911, 6), + ) +) + +recursiveMemberRef._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "episodeOf"), + recursiveMemberRef, + scope=recursiveMemberRef, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 912, 6), + ) +) + +recursiveMemberRef._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "segmentOf"), + recursiveMemberRef, + scope=recursiveMemberRef, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 913, 6), + ) +) + + +def _BuildAutomaton_20(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_20 del _BuildAutomaton_20 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 911, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 911, 6), + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 912, 6)) + cc_1 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 912, 6), + ) counters.add(cc_1) - cc_2 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 913, 6)) + cc_2 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 913, 6) + ) counters.add(cc_2) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(recursiveMemberRef._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'memberOf')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 911, 6)) + symbol = pyxb.binding.content.ElementUse( + recursiveMemberRef._UseForTag(pyxb.namespace.ExpandedName(Namespace, "memberOf")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 911, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() final_update.add(fac.UpdateInstruction(cc_1, False)) - symbol = pyxb.binding.content.ElementUse(recursiveMemberRef._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'episodeOf')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 912, 6)) + symbol = pyxb.binding.content.ElementUse( + recursiveMemberRef._UseForTag(pyxb.namespace.ExpandedName(Namespace, "episodeOf")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 912, 6), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) final_update = set() final_update.add(fac.UpdateInstruction(cc_2, False)) - symbol = pyxb.binding.content.ElementUse(recursiveMemberRef._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'segmentOf')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 913, 6)) + symbol = pyxb.binding.content.ElementUse( + recursiveMemberRef._UseForTag(pyxb.namespace.ExpandedName(Namespace, "segmentOf")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 913, 6), + ) st_2 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_2) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_0, False)])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_1, True) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_1, False) ])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_1, True)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_1, False)])) st_1._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_2, True) ])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_2, True)])) st_2._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -recursiveMemberRef._Automaton = _BuildAutomaton_20() +recursiveMemberRef._Automaton = _BuildAutomaton_20() + +genreType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "term"), + termType, + scope=genreType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 963, 6), + ) +) -genreType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'term'), termType, scope=genreType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 963, 6))) -def _BuildAutomaton_21 (): +def _BuildAutomaton_21(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_21 del _BuildAutomaton_21 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 963, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 963, 6), + ) counters.add(cc_0) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(genreType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'term')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 963, 6)) + symbol = pyxb.binding.content.ElementUse( + genreType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "term")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 963, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) st_0._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -genreType._Automaton = _BuildAutomaton_21() +genreType._Automaton = _BuildAutomaton_21() + +geoLocationsType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "geoLocation"), + geoLocationType, + scope=geoLocationsType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 986, 6), + ) +) -geoLocationsType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'geoLocation'), geoLocationType, scope=geoLocationsType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 986, 6))) -def _BuildAutomaton_22 (): +def _BuildAutomaton_22(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_22 del _BuildAutomaton_22 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 986, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 986, 6), + ) counters.add(cc_0) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(geoLocationsType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'geoLocation')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 986, 6)) + symbol = pyxb.binding.content.ElementUse( + geoLocationsType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "geoLocation")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 986, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) st_0._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -geoLocationsType._Automaton = _BuildAutomaton_22() +geoLocationsType._Automaton = _BuildAutomaton_22() + +geoLocationType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "name"), + pyxb.binding.datatypes.string, + scope=geoLocationType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 993, 6), + ) +) -geoLocationType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'name'), pyxb.binding.datatypes.string, scope=geoLocationType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 993, 6))) +geoLocationType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "scopeNote"), + pyxb.binding.datatypes.string, + scope=geoLocationType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 994, 6), + ) +) -geoLocationType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'scopeNote'), pyxb.binding.datatypes.string, scope=geoLocationType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 994, 6))) -def _BuildAutomaton_23 (): +def _BuildAutomaton_23(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_23 del _BuildAutomaton_23 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 994, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 994, 6), + ) counters.add(cc_0) states = [] final_update = set() - symbol = pyxb.binding.content.ElementUse(geoLocationType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'name')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 993, 6)) + symbol = pyxb.binding.content.ElementUse( + geoLocationType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "name")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 993, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(geoLocationType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'scopeNote')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 994, 6)) + symbol = pyxb.binding.content.ElementUse( + geoLocationType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "scopeNote")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 994, 6), + ) st_1 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_1) transitions = [] - transitions.append(fac.Transition(st_1, [ - ])) + transitions.append(fac.Transition(st_1, [])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, True) ])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, True)])) st_1._set_transitionSet(transitions) return fac.Automaton(states, counters, False, containing_state=None) -geoLocationType._Automaton = _BuildAutomaton_23() +geoLocationType._Automaton = _BuildAutomaton_23() + +topicsType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "topic"), + topicType, + scope=topicsType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 1003, 6), + ) +) -topicsType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'topic'), topicType, scope=topicsType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 1003, 6))) -def _BuildAutomaton_24 (): +def _BuildAutomaton_24(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_24 del _BuildAutomaton_24 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 1003, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 1003, 6), + ) counters.add(cc_0) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(topicsType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'topic')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 1003, 6)) + symbol = pyxb.binding.content.ElementUse( + topicsType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "topic")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 1003, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) st_0._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -topicsType._Automaton = _BuildAutomaton_24() +topicsType._Automaton = _BuildAutomaton_24() + +topicType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "name"), + pyxb.binding.datatypes.string, + scope=topicType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 1010, 6), + ) +) -topicType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'name'), pyxb.binding.datatypes.string, scope=topicType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 1010, 6))) +topicType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "scopeNote"), + pyxb.binding.datatypes.string, + scope=topicType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 1011, 6), + ) +) -topicType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'scopeNote'), pyxb.binding.datatypes.string, scope=topicType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 1011, 6))) -def _BuildAutomaton_25 (): +def _BuildAutomaton_25(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_25 del _BuildAutomaton_25 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 1011, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 1011, 6), + ) counters.add(cc_0) states = [] final_update = set() - symbol = pyxb.binding.content.ElementUse(topicType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'name')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 1010, 6)) + symbol = pyxb.binding.content.ElementUse( + topicType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "name")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 1010, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(topicType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'scopeNote')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 1011, 6)) + symbol = pyxb.binding.content.ElementUse( + topicType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "scopeNote")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 1011, 6), + ) st_1 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_1) transitions = [] - transitions.append(fac.Transition(st_1, [ - ])) + transitions.append(fac.Transition(st_1, [])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, True) ])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, True)])) st_1._set_transitionSet(transitions) return fac.Automaton(states, counters, False, containing_state=None) -topicType._Automaton = _BuildAutomaton_25() +topicType._Automaton = _BuildAutomaton_25() + +intentionType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "intention"), + intentionEnum, + scope=intentionType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 1019, 6), + ) +) -intentionType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'intention'), intentionEnum, scope=intentionType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 1019, 6))) -def _BuildAutomaton_26 (): +def _BuildAutomaton_26(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_26 del _BuildAutomaton_26 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 1019, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 1019, 6), + ) counters.add(cc_0) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(intentionType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'intention')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 1019, 6)) + symbol = pyxb.binding.content.ElementUse( + intentionType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "intention")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 1019, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) st_0._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -intentionType._Automaton = _BuildAutomaton_26() +intentionType._Automaton = _BuildAutomaton_26() + +targetGroupsType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "targetGroup"), + targetGroupEnum, + scope=targetGroupsType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 1026, 6), + ) +) -targetGroupsType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'targetGroup'), targetGroupEnum, scope=targetGroupsType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 1026, 6))) -def _BuildAutomaton_27 (): +def _BuildAutomaton_27(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_27 del _BuildAutomaton_27 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 1026, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 1026, 6), + ) counters.add(cc_0) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(targetGroupsType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'targetGroup')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 1026, 6)) + symbol = pyxb.binding.content.ElementUse( + targetGroupsType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "targetGroup")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 1026, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) st_0._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -targetGroupsType._Automaton = _BuildAutomaton_27() - +targetGroupsType._Automaton = _BuildAutomaton_27() -programType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'scheduleEvents'), scheduleEventsType, scope=programType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 91, 10))) - -programType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'episodeOf'), memberRefType, scope=programType, documentation="\n A program (only if its type is 'BROADCAST') can be an episode of a group of type 'SERIES' or 'SEASON'.\n ", location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 92, 10))) - -programType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'segments'), segmentsType, scope=programType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 99, 10))) -def _BuildAutomaton_28 (): +programType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "scheduleEvents"), + scheduleEventsType, + scope=programType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 91, 10), + ) +) + +programType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "episodeOf"), + memberRefType, + scope=programType, + documentation="\n A program (only if its type is 'BROADCAST') can be an episode of a group of type 'SERIES' or 'SEASON'.\n ", + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 92, 10), + ) +) + +programType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "segments"), + segmentsType, + scope=programType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 99, 10), + ) +) + + +def _BuildAutomaton_28(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_28 del _BuildAutomaton_28 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 225, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 225, 6), + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 245, 6)) + cc_1 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 245, 6), + ) counters.add(cc_1) - cc_2 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 253, 6)) + cc_2 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 253, 6), + ) counters.add(cc_2) - cc_3 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 261, 6)) + cc_3 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 261, 6), + ) counters.add(cc_3) - cc_4 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 280, 6)) + cc_4 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 280, 6), + ) counters.add(cc_4) - cc_5 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 287, 6)) + cc_5 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 287, 6), + ) counters.add(cc_5) - cc_6 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 288, 6)) + cc_6 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 288, 6), + ) counters.add(cc_6) - cc_7 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 289, 6)) + cc_7 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 289, 6), + ) counters.add(cc_7) - cc_8 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 290, 6)) + cc_8 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 290, 6), + ) counters.add(cc_8) - cc_9 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 291, 6)) + cc_9 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 291, 6), + ) counters.add(cc_9) - cc_10 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 292, 6)) + cc_10 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 292, 6), + ) counters.add(cc_10) - cc_11 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 293, 6)) + cc_11 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 293, 6) + ) counters.add(cc_11) - cc_12 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 294, 6)) + cc_12 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 294, 6), + ) counters.add(cc_12) - cc_13 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 295, 6)) + cc_13 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 295, 6), + ) counters.add(cc_13) - cc_14 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 296, 6)) + cc_14 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 296, 6) + ) counters.add(cc_14) - cc_15 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 297, 6)) + cc_15 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 297, 6), + ) counters.add(cc_15) - cc_16 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 298, 6)) + cc_16 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 298, 6) + ) counters.add(cc_16) - cc_17 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 299, 6)) + cc_17 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 299, 6) + ) counters.add(cc_17) - cc_18 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 300, 6)) + cc_18 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 300, 6) + ) counters.add(cc_18) - cc_19 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 301, 6)) + cc_19 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 301, 6) + ) counters.add(cc_19) - cc_20 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 302, 6)) + cc_20 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 302, 6), + ) counters.add(cc_20) - cc_21 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 303, 6)) + cc_21 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 303, 6), + ) counters.add(cc_21) - cc_22 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 304, 6)) + cc_22 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 304, 6), + ) counters.add(cc_22) - cc_23 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 305, 6)) + cc_23 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 305, 6) + ) counters.add(cc_23) - cc_24 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 306, 6)) + cc_24 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 306, 6), + ) counters.add(cc_24) - cc_25 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 307, 6)) + cc_25 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 307, 6), + ) counters.add(cc_25) - cc_26 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 308, 6)) + cc_26 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 308, 6), + ) counters.add(cc_26) - cc_27 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 309, 6)) + cc_27 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 309, 6), + ) counters.add(cc_27) - cc_28 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 310, 6)) + cc_28 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 310, 6) + ) counters.add(cc_28) - cc_29 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 311, 6)) + cc_29 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 311, 6), + ) counters.add(cc_29) - cc_30 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 312, 6)) + cc_30 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 312, 6) + ) counters.add(cc_30) - cc_31 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 313, 6)) + cc_31 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 313, 6), + ) counters.add(cc_31) - cc_32 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 314, 6)) + cc_32 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 314, 6) + ) counters.add(cc_32) - cc_33 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 91, 10)) + cc_33 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 91, 10) + ) counters.add(cc_33) - cc_34 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 92, 10)) + cc_34 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 92, 10), + ) counters.add(cc_34) - cc_35 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 99, 10)) + cc_35 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 99, 10) + ) counters.add(cc_35) states = [] final_update = None - symbol = pyxb.binding.content.ElementUse(programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'crid')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 225, 6)) + symbol = pyxb.binding.content.ElementUse( + programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "crid")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 225, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = None - symbol = pyxb.binding.content.ElementUse(programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'broadcaster')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 237, 6)) + symbol = pyxb.binding.content.ElementUse( + programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "broadcaster")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 237, 6), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) final_update = None - symbol = pyxb.binding.content.ElementUse(programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'portal')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 245, 6)) + symbol = pyxb.binding.content.ElementUse( + programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "portal")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 245, 6), + ) st_2 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_2) final_update = None - symbol = pyxb.binding.content.ElementUse(programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'exclusive')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 253, 6)) + symbol = pyxb.binding.content.ElementUse( + programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "exclusive")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 253, 6), + ) st_3 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_3) final_update = None - symbol = pyxb.binding.content.ElementUse(programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'region')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 261, 6)) + symbol = pyxb.binding.content.ElementUse( + programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "region")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 261, 6), + ) st_4 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_4) final_update = set() - symbol = pyxb.binding.content.ElementUse(programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'title')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 269, 6)) + symbol = pyxb.binding.content.ElementUse( + programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "title")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 269, 6), + ) st_5 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_5) final_update = set() final_update.add(fac.UpdateInstruction(cc_4, False)) - symbol = pyxb.binding.content.ElementUse(programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'description')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 280, 6)) + symbol = pyxb.binding.content.ElementUse( + programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "description")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 280, 6), + ) st_6 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_6) final_update = set() final_update.add(fac.UpdateInstruction(cc_5, False)) - symbol = pyxb.binding.content.ElementUse(programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'genre')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 287, 6)) + symbol = pyxb.binding.content.ElementUse( + programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "genre")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 287, 6), + ) st_7 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_7) final_update = set() final_update.add(fac.UpdateInstruction(cc_6, False)) - symbol = pyxb.binding.content.ElementUse(programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'tag')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 288, 6)) + symbol = pyxb.binding.content.ElementUse( + programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "tag")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 288, 6), + ) st_8 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_8) final_update = set() final_update.add(fac.UpdateInstruction(cc_7, False)) - symbol = pyxb.binding.content.ElementUse(programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'intentions')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 289, 6)) + symbol = pyxb.binding.content.ElementUse( + programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "intentions")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 289, 6), + ) st_9 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_9) final_update = set() final_update.add(fac.UpdateInstruction(cc_8, False)) - symbol = pyxb.binding.content.ElementUse(programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'targetGroups')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 290, 6)) + symbol = pyxb.binding.content.ElementUse( + programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "targetGroups")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 290, 6), + ) st_10 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_10) final_update = set() final_update.add(fac.UpdateInstruction(cc_9, False)) - symbol = pyxb.binding.content.ElementUse(programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'geoLocations')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 291, 6)) + symbol = pyxb.binding.content.ElementUse( + programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "geoLocations")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 291, 6), + ) st_11 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_11) final_update = set() final_update.add(fac.UpdateInstruction(cc_10, False)) - symbol = pyxb.binding.content.ElementUse(programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'topics')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 292, 6)) + symbol = pyxb.binding.content.ElementUse( + programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "topics")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 292, 6), + ) st_12 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_12) final_update = set() final_update.add(fac.UpdateInstruction(cc_11, False)) - symbol = pyxb.binding.content.ElementUse(programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'source')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 293, 6)) + symbol = pyxb.binding.content.ElementUse( + programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "source")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 293, 6), + ) st_13 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_13) final_update = set() final_update.add(fac.UpdateInstruction(cc_12, False)) - symbol = pyxb.binding.content.ElementUse(programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'country')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 294, 6)) + symbol = pyxb.binding.content.ElementUse( + programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "country")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 294, 6), + ) st_14 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_14) final_update = set() final_update.add(fac.UpdateInstruction(cc_13, False)) - symbol = pyxb.binding.content.ElementUse(programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'language')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 295, 6)) + symbol = pyxb.binding.content.ElementUse( + programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "language")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 295, 6), + ) st_15 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_15) final_update = set() final_update.add(fac.UpdateInstruction(cc_14, False)) - symbol = pyxb.binding.content.ElementUse(programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'isDubbed')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 296, 6)) + symbol = pyxb.binding.content.ElementUse( + programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "isDubbed")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 296, 6), + ) st_16 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_16) final_update = set() final_update.add(fac.UpdateInstruction(cc_15, False)) - symbol = pyxb.binding.content.ElementUse(programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'availableSubtitles')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 297, 6)) + symbol = pyxb.binding.content.ElementUse( + programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "availableSubtitles")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 297, 6), + ) st_17 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_17) final_update = set() final_update.add(fac.UpdateInstruction(cc_16, False)) - symbol = pyxb.binding.content.ElementUse(programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'avAttributes')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 298, 6)) + symbol = pyxb.binding.content.ElementUse( + programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "avAttributes")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 298, 6), + ) st_18 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_18) final_update = set() final_update.add(fac.UpdateInstruction(cc_17, False)) - symbol = pyxb.binding.content.ElementUse(programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'releaseYear')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 299, 6)) + symbol = pyxb.binding.content.ElementUse( + programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "releaseYear")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 299, 6), + ) st_19 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_19) final_update = set() final_update.add(fac.UpdateInstruction(cc_18, False)) - symbol = pyxb.binding.content.ElementUse(programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'duration')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 300, 6)) + symbol = pyxb.binding.content.ElementUse( + programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "duration")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 300, 6), + ) st_20 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_20) final_update = set() final_update.add(fac.UpdateInstruction(cc_19, False)) - symbol = pyxb.binding.content.ElementUse(programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'credits')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 301, 6)) + symbol = pyxb.binding.content.ElementUse( + programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "credits")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 301, 6), + ) st_21 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_21) final_update = set() final_update.add(fac.UpdateInstruction(cc_20, False)) - symbol = pyxb.binding.content.ElementUse(programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'award')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 302, 6)) + symbol = pyxb.binding.content.ElementUse( + programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "award")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 302, 6), + ) st_22 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_22) final_update = set() final_update.add(fac.UpdateInstruction(cc_21, False)) - symbol = pyxb.binding.content.ElementUse(programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'descendantOf')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 303, 6)) + symbol = pyxb.binding.content.ElementUse( + programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "descendantOf")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 303, 6), + ) st_23 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_23) final_update = set() final_update.add(fac.UpdateInstruction(cc_22, False)) - symbol = pyxb.binding.content.ElementUse(programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'memberOf')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 304, 6)) + symbol = pyxb.binding.content.ElementUse( + programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "memberOf")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 304, 6), + ) st_24 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_24) final_update = set() final_update.add(fac.UpdateInstruction(cc_23, False)) - symbol = pyxb.binding.content.ElementUse(programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'ageRating')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 305, 6)) + symbol = pyxb.binding.content.ElementUse( + programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "ageRating")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 305, 6), + ) st_25 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_25) final_update = set() final_update.add(fac.UpdateInstruction(cc_24, False)) - symbol = pyxb.binding.content.ElementUse(programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'contentRating')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 306, 6)) + symbol = pyxb.binding.content.ElementUse( + programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "contentRating")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 306, 6), + ) st_26 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_26) final_update = set() final_update.add(fac.UpdateInstruction(cc_25, False)) - symbol = pyxb.binding.content.ElementUse(programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'email')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 307, 6)) + symbol = pyxb.binding.content.ElementUse( + programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "email")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 307, 6), + ) st_27 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_27) final_update = set() final_update.add(fac.UpdateInstruction(cc_26, False)) - symbol = pyxb.binding.content.ElementUse(programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'website')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 308, 6)) + symbol = pyxb.binding.content.ElementUse( + programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "website")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 308, 6), + ) st_28 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_28) final_update = set() final_update.add(fac.UpdateInstruction(cc_27, False)) - symbol = pyxb.binding.content.ElementUse(programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'twitter')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 309, 6)) + symbol = pyxb.binding.content.ElementUse( + programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "twitter")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 309, 6), + ) st_29 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_29) final_update = set() final_update.add(fac.UpdateInstruction(cc_28, False)) - symbol = pyxb.binding.content.ElementUse(programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'teletext')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 310, 6)) + symbol = pyxb.binding.content.ElementUse( + programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "teletext")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 310, 6), + ) st_30 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_30) final_update = set() final_update.add(fac.UpdateInstruction(cc_29, False)) - symbol = pyxb.binding.content.ElementUse(programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'prediction')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 311, 6)) + symbol = pyxb.binding.content.ElementUse( + programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "prediction")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 311, 6), + ) st_31 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_31) final_update = set() final_update.add(fac.UpdateInstruction(cc_30, False)) - symbol = pyxb.binding.content.ElementUse(programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'locations')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 312, 6)) + symbol = pyxb.binding.content.ElementUse( + programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "locations")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 312, 6), + ) st_32 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_32) final_update = set() final_update.add(fac.UpdateInstruction(cc_31, False)) - symbol = pyxb.binding.content.ElementUse(programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'relation')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 313, 6)) + symbol = pyxb.binding.content.ElementUse( + programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "relation")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 313, 6), + ) st_33 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_33) final_update = set() final_update.add(fac.UpdateInstruction(cc_32, False)) - symbol = pyxb.binding.content.ElementUse(programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'images')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 314, 6)) + symbol = pyxb.binding.content.ElementUse( + programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "images")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 314, 6), + ) st_34 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_34) final_update = set() final_update.add(fac.UpdateInstruction(cc_33, False)) - symbol = pyxb.binding.content.ElementUse(programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'scheduleEvents')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 91, 10)) + symbol = pyxb.binding.content.ElementUse( + programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "scheduleEvents")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 91, 10), + ) st_35 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_35) final_update = set() final_update.add(fac.UpdateInstruction(cc_34, False)) - symbol = pyxb.binding.content.ElementUse(programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'episodeOf')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 92, 10)) + symbol = pyxb.binding.content.ElementUse( + programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "episodeOf")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 92, 10), + ) st_36 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_36) final_update = set() final_update.add(fac.UpdateInstruction(cc_35, False)) - symbol = pyxb.binding.content.ElementUse(programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'segments')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 99, 10)) + symbol = pyxb.binding.content.ElementUse( + programType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "segments")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 99, 10), + ) st_37 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_37) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, False)])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - ])) - transitions.append(fac.Transition(st_2, [ - ])) - transitions.append(fac.Transition(st_3, [ - ])) - transitions.append(fac.Transition(st_4, [ - ])) - transitions.append(fac.Transition(st_5, [ - ])) + transitions.append(fac.Transition(st_1, [])) + transitions.append(fac.Transition(st_2, [])) + transitions.append(fac.Transition(st_3, [])) + transitions.append(fac.Transition(st_4, [])) + transitions.append(fac.Transition(st_5, [])) st_1._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_1, True) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_1, False) ])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_1, True)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_1, False)])) st_2._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_2, True) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_2, False) ])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_2, True)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_2, False)])) st_3._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_3, True) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_3, False) ])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_3, True)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_3, False)])) st_4._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_5, [ - ])) - transitions.append(fac.Transition(st_6, [ - ])) - transitions.append(fac.Transition(st_7, [ - ])) - transitions.append(fac.Transition(st_8, [ - ])) - transitions.append(fac.Transition(st_9, [ - ])) - transitions.append(fac.Transition(st_10, [ - ])) - transitions.append(fac.Transition(st_11, [ - ])) - transitions.append(fac.Transition(st_12, [ - ])) - transitions.append(fac.Transition(st_13, [ - ])) - transitions.append(fac.Transition(st_14, [ - ])) - transitions.append(fac.Transition(st_15, [ - ])) - transitions.append(fac.Transition(st_16, [ - ])) - transitions.append(fac.Transition(st_17, [ - ])) - transitions.append(fac.Transition(st_18, [ - ])) - transitions.append(fac.Transition(st_19, [ - ])) - transitions.append(fac.Transition(st_20, [ - ])) - transitions.append(fac.Transition(st_21, [ - ])) - transitions.append(fac.Transition(st_22, [ - ])) - transitions.append(fac.Transition(st_23, [ - ])) - transitions.append(fac.Transition(st_24, [ - ])) - transitions.append(fac.Transition(st_25, [ - ])) - transitions.append(fac.Transition(st_26, [ - ])) - transitions.append(fac.Transition(st_27, [ - ])) - transitions.append(fac.Transition(st_28, [ - ])) - transitions.append(fac.Transition(st_29, [ - ])) - transitions.append(fac.Transition(st_30, [ - ])) - transitions.append(fac.Transition(st_31, [ - ])) - transitions.append(fac.Transition(st_32, [ - ])) - transitions.append(fac.Transition(st_33, [ - ])) - transitions.append(fac.Transition(st_34, [ - ])) - transitions.append(fac.Transition(st_35, [ - ])) - transitions.append(fac.Transition(st_36, [ - ])) - transitions.append(fac.Transition(st_37, [ - ])) + transitions.append(fac.Transition(st_5, [])) + transitions.append(fac.Transition(st_6, [])) + transitions.append(fac.Transition(st_7, [])) + transitions.append(fac.Transition(st_8, [])) + transitions.append(fac.Transition(st_9, [])) + transitions.append(fac.Transition(st_10, [])) + transitions.append(fac.Transition(st_11, [])) + transitions.append(fac.Transition(st_12, [])) + transitions.append(fac.Transition(st_13, [])) + transitions.append(fac.Transition(st_14, [])) + transitions.append(fac.Transition(st_15, [])) + transitions.append(fac.Transition(st_16, [])) + transitions.append(fac.Transition(st_17, [])) + transitions.append(fac.Transition(st_18, [])) + transitions.append(fac.Transition(st_19, [])) + transitions.append(fac.Transition(st_20, [])) + transitions.append(fac.Transition(st_21, [])) + transitions.append(fac.Transition(st_22, [])) + transitions.append(fac.Transition(st_23, [])) + transitions.append(fac.Transition(st_24, [])) + transitions.append(fac.Transition(st_25, [])) + transitions.append(fac.Transition(st_26, [])) + transitions.append(fac.Transition(st_27, [])) + transitions.append(fac.Transition(st_28, [])) + transitions.append(fac.Transition(st_29, [])) + transitions.append(fac.Transition(st_30, [])) + transitions.append(fac.Transition(st_31, [])) + transitions.append(fac.Transition(st_32, [])) + transitions.append(fac.Transition(st_33, [])) + transitions.append(fac.Transition(st_34, [])) + transitions.append(fac.Transition(st_35, [])) + transitions.append(fac.Transition(st_36, [])) + transitions.append(fac.Transition(st_37, [])) st_5._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_4, True) ])) - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_4, False) ])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_4, True)])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_4, False)])) st_6._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_5, True) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_5, False) ])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_5, True)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_5, False)])) st_7._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_6, True) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_6, False) ])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_6, True)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_6, False)])) st_8._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_7, True) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_7, False) ])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_7, True)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_7, False)])) st_9._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_8, True) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_8, False) ])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_8, True)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_8, False)])) st_10._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_9, True) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_9, False) ])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_9, True)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_9, False)])) st_11._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_10, True) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_10, False) ])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_10, True)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_10, False)])) st_12._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_11, True) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_11, False) ])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_11, True)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_11, False)])) st_13._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_12, True) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_12, False) ])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_12, True)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_12, False)])) st_14._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_13, True) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_13, False) ])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_13, True)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_13, False)])) st_15._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_14, True) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_14, False) ])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_14, True)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_14, False)])) st_16._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_15, True) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_15, False) ])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_15, True)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_15, False)])) st_17._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_16, True) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_16, False) ])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_16, True)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_16, False)])) st_18._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_17, True) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_17, False) ])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_17, True)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_17, False)])) st_19._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_18, True) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_18, False) ])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_18, True)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_18, False)])) st_20._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_19, True) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_19, False) ])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_19, True)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_19, False)])) st_21._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_20, True) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_20, False) ])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_20, True)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_20, False)])) st_22._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_21, True) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_21, False) ])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_21, True)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_21, False)])) st_23._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_22, True) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_22, False) ])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_22, True)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_22, False)])) st_24._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_23, True) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_23, False) ])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_23, True)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_23, False)])) st_25._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_24, True) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_24, False) ])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_24, True)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_24, False)])) st_26._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_25, True) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_25, False) ])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_25, True)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_25, False)])) st_27._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_26, True) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_26, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_26, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_26, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_26, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_26, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_26, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_26, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_26, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_26, False) ])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_26, True)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_26, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_26, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_26, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_26, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_26, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_26, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_26, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_26, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_26, False)])) st_28._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_27, True) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_27, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_27, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_27, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_27, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_27, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_27, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_27, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_27, False) ])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_27, True)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_27, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_27, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_27, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_27, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_27, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_27, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_27, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_27, False)])) st_29._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_28, True) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_28, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_28, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_28, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_28, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_28, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_28, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_28, False) ])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_28, True)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_28, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_28, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_28, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_28, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_28, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_28, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_28, False)])) st_30._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_29, True) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_29, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_29, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_29, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_29, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_29, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_29, False) ])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_29, True)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_29, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_29, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_29, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_29, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_29, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_29, False)])) st_31._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_30, True) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_30, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_30, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_30, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_30, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_30, False) ])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_30, True)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_30, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_30, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_30, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_30, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_30, False)])) st_32._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_31, True) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_31, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_31, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_31, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_31, False) ])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_31, True)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_31, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_31, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_31, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_31, False)])) st_33._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_32, True) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_32, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_32, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_32, False) ])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_32, True)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_32, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_32, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_32, False)])) st_34._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_33, True) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_33, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_33, False) ])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_33, True)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_33, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_33, False)])) st_35._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_34, True) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_34, False) ])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_34, True)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_34, False)])) st_36._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_35, True) ])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_35, True)])) st_37._set_transitionSet(transitions) return fac.Automaton(states, counters, False, containing_state=None) -programType._Automaton = _BuildAutomaton_28() +programType._Automaton = _BuildAutomaton_28() + +segmentType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "segmentOf"), + recursiveMemberRef, + scope=segmentType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 633, 10), + ) +) -segmentType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'segmentOf'), recursiveMemberRef, scope=segmentType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 633, 10))) +segmentType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "start"), + pyxb.binding.datatypes.duration, + scope=segmentType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 634, 10), + ) +) -segmentType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'start'), pyxb.binding.datatypes.duration, scope=segmentType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 634, 10))) -def _BuildAutomaton_29 (): +def _BuildAutomaton_29(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_29 del _BuildAutomaton_29 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 225, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 225, 6), + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 245, 6)) + cc_1 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 245, 6), + ) counters.add(cc_1) - cc_2 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 253, 6)) + cc_2 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 253, 6), + ) counters.add(cc_2) - cc_3 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 261, 6)) + cc_3 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 261, 6), + ) counters.add(cc_3) - cc_4 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 280, 6)) + cc_4 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 280, 6), + ) counters.add(cc_4) - cc_5 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 287, 6)) + cc_5 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 287, 6), + ) counters.add(cc_5) - cc_6 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 288, 6)) + cc_6 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 288, 6), + ) counters.add(cc_6) - cc_7 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 289, 6)) + cc_7 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 289, 6), + ) counters.add(cc_7) - cc_8 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 290, 6)) + cc_8 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 290, 6), + ) counters.add(cc_8) - cc_9 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 291, 6)) + cc_9 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 291, 6), + ) counters.add(cc_9) - cc_10 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 292, 6)) + cc_10 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 292, 6), + ) counters.add(cc_10) - cc_11 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 293, 6)) + cc_11 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 293, 6) + ) counters.add(cc_11) - cc_12 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 294, 6)) + cc_12 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 294, 6), + ) counters.add(cc_12) - cc_13 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 295, 6)) + cc_13 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 295, 6), + ) counters.add(cc_13) - cc_14 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 296, 6)) + cc_14 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 296, 6) + ) counters.add(cc_14) - cc_15 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 297, 6)) + cc_15 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 297, 6), + ) counters.add(cc_15) - cc_16 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 298, 6)) + cc_16 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 298, 6) + ) counters.add(cc_16) - cc_17 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 299, 6)) + cc_17 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 299, 6) + ) counters.add(cc_17) - cc_18 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 300, 6)) + cc_18 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 300, 6) + ) counters.add(cc_18) - cc_19 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 301, 6)) + cc_19 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 301, 6) + ) counters.add(cc_19) - cc_20 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 302, 6)) + cc_20 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 302, 6), + ) counters.add(cc_20) - cc_21 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 303, 6)) + cc_21 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 303, 6), + ) counters.add(cc_21) - cc_22 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 304, 6)) + cc_22 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 304, 6), + ) counters.add(cc_22) - cc_23 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 305, 6)) + cc_23 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 305, 6) + ) counters.add(cc_23) - cc_24 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 306, 6)) + cc_24 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 306, 6), + ) counters.add(cc_24) - cc_25 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 307, 6)) + cc_25 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 307, 6), + ) counters.add(cc_25) - cc_26 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 308, 6)) + cc_26 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 308, 6), + ) counters.add(cc_26) - cc_27 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 309, 6)) + cc_27 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 309, 6), + ) counters.add(cc_27) - cc_28 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 310, 6)) + cc_28 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 310, 6) + ) counters.add(cc_28) - cc_29 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 311, 6)) + cc_29 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 311, 6), + ) counters.add(cc_29) - cc_30 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 312, 6)) + cc_30 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 312, 6) + ) counters.add(cc_30) - cc_31 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 313, 6)) + cc_31 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 313, 6), + ) counters.add(cc_31) - cc_32 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 314, 6)) + cc_32 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 314, 6) + ) counters.add(cc_32) - cc_33 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 633, 10)) + cc_33 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 633, 10) + ) counters.add(cc_33) states = [] final_update = None - symbol = pyxb.binding.content.ElementUse(segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'crid')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 225, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "crid")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 225, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'broadcaster')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 237, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "broadcaster")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 237, 6), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'portal')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 245, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "portal")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 245, 6), + ) st_2 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_2) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'exclusive')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 253, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "exclusive")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 253, 6), + ) st_3 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_3) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'region')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 261, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "region")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 261, 6), + ) st_4 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_4) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'title')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 269, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "title")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 269, 6), + ) st_5 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_5) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'description')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 280, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "description")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 280, 6), + ) st_6 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_6) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'genre')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 287, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "genre")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 287, 6), + ) st_7 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_7) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'tag')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 288, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "tag")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 288, 6), + ) st_8 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_8) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'intentions')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 289, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "intentions")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 289, 6), + ) st_9 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_9) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'targetGroups')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 290, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "targetGroups")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 290, 6), + ) st_10 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_10) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'geoLocations')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 291, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "geoLocations")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 291, 6), + ) st_11 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_11) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'topics')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 292, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "topics")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 292, 6), + ) st_12 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_12) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'source')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 293, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "source")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 293, 6), + ) st_13 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_13) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'country')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 294, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "country")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 294, 6), + ) st_14 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_14) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'language')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 295, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "language")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 295, 6), + ) st_15 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_15) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'isDubbed')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 296, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "isDubbed")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 296, 6), + ) st_16 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_16) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'availableSubtitles')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 297, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "availableSubtitles")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 297, 6), + ) st_17 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_17) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'avAttributes')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 298, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "avAttributes")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 298, 6), + ) st_18 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_18) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'releaseYear')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 299, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "releaseYear")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 299, 6), + ) st_19 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_19) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'duration')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 300, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "duration")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 300, 6), + ) st_20 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_20) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'credits')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 301, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "credits")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 301, 6), + ) st_21 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_21) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'award')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 302, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "award")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 302, 6), + ) st_22 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_22) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'descendantOf')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 303, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "descendantOf")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 303, 6), + ) st_23 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_23) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'memberOf')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 304, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "memberOf")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 304, 6), + ) st_24 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_24) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'ageRating')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 305, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "ageRating")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 305, 6), + ) st_25 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_25) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'contentRating')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 306, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "contentRating")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 306, 6), + ) st_26 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_26) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'email')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 307, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "email")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 307, 6), + ) st_27 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_27) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'website')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 308, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "website")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 308, 6), + ) st_28 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_28) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'twitter')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 309, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "twitter")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 309, 6), + ) st_29 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_29) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'teletext')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 310, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "teletext")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 310, 6), + ) st_30 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_30) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'prediction')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 311, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "prediction")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 311, 6), + ) st_31 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_31) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'locations')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 312, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "locations")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 312, 6), + ) st_32 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_32) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'relation')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 313, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "relation")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 313, 6), + ) st_33 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_33) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'images')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 314, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "images")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 314, 6), + ) st_34 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_34) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'segmentOf')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 633, 10)) + symbol = pyxb.binding.content.ElementUse( + segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "segmentOf")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 633, 10), + ) st_35 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_35) final_update = set() - symbol = pyxb.binding.content.ElementUse(segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'start')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 634, 10)) + symbol = pyxb.binding.content.ElementUse( + segmentType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "start")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 634, 10), + ) st_36 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_36) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, False)])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - ])) - transitions.append(fac.Transition(st_2, [ - ])) - transitions.append(fac.Transition(st_3, [ - ])) - transitions.append(fac.Transition(st_4, [ - ])) - transitions.append(fac.Transition(st_5, [ - ])) + transitions.append(fac.Transition(st_1, [])) + transitions.append(fac.Transition(st_2, [])) + transitions.append(fac.Transition(st_3, [])) + transitions.append(fac.Transition(st_4, [])) + transitions.append(fac.Transition(st_5, [])) st_1._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_1, True) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_1, False) ])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_1, True)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_1, False)])) st_2._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_2, True) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_2, False) ])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_2, True)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_2, False)])) st_3._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_3, True) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_3, False) ])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_3, True)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_3, False)])) st_4._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_5, [ - ])) - transitions.append(fac.Transition(st_6, [ - ])) - transitions.append(fac.Transition(st_7, [ - ])) - transitions.append(fac.Transition(st_8, [ - ])) - transitions.append(fac.Transition(st_9, [ - ])) - transitions.append(fac.Transition(st_10, [ - ])) - transitions.append(fac.Transition(st_11, [ - ])) - transitions.append(fac.Transition(st_12, [ - ])) - transitions.append(fac.Transition(st_13, [ - ])) - transitions.append(fac.Transition(st_14, [ - ])) - transitions.append(fac.Transition(st_15, [ - ])) - transitions.append(fac.Transition(st_16, [ - ])) - transitions.append(fac.Transition(st_17, [ - ])) - transitions.append(fac.Transition(st_18, [ - ])) - transitions.append(fac.Transition(st_19, [ - ])) - transitions.append(fac.Transition(st_20, [ - ])) - transitions.append(fac.Transition(st_21, [ - ])) - transitions.append(fac.Transition(st_22, [ - ])) - transitions.append(fac.Transition(st_23, [ - ])) - transitions.append(fac.Transition(st_24, [ - ])) - transitions.append(fac.Transition(st_25, [ - ])) - transitions.append(fac.Transition(st_26, [ - ])) - transitions.append(fac.Transition(st_27, [ - ])) - transitions.append(fac.Transition(st_28, [ - ])) - transitions.append(fac.Transition(st_29, [ - ])) - transitions.append(fac.Transition(st_30, [ - ])) - transitions.append(fac.Transition(st_31, [ - ])) - transitions.append(fac.Transition(st_32, [ - ])) - transitions.append(fac.Transition(st_33, [ - ])) - transitions.append(fac.Transition(st_34, [ - ])) - transitions.append(fac.Transition(st_35, [ - ])) - transitions.append(fac.Transition(st_36, [ - ])) + transitions.append(fac.Transition(st_5, [])) + transitions.append(fac.Transition(st_6, [])) + transitions.append(fac.Transition(st_7, [])) + transitions.append(fac.Transition(st_8, [])) + transitions.append(fac.Transition(st_9, [])) + transitions.append(fac.Transition(st_10, [])) + transitions.append(fac.Transition(st_11, [])) + transitions.append(fac.Transition(st_12, [])) + transitions.append(fac.Transition(st_13, [])) + transitions.append(fac.Transition(st_14, [])) + transitions.append(fac.Transition(st_15, [])) + transitions.append(fac.Transition(st_16, [])) + transitions.append(fac.Transition(st_17, [])) + transitions.append(fac.Transition(st_18, [])) + transitions.append(fac.Transition(st_19, [])) + transitions.append(fac.Transition(st_20, [])) + transitions.append(fac.Transition(st_21, [])) + transitions.append(fac.Transition(st_22, [])) + transitions.append(fac.Transition(st_23, [])) + transitions.append(fac.Transition(st_24, [])) + transitions.append(fac.Transition(st_25, [])) + transitions.append(fac.Transition(st_26, [])) + transitions.append(fac.Transition(st_27, [])) + transitions.append(fac.Transition(st_28, [])) + transitions.append(fac.Transition(st_29, [])) + transitions.append(fac.Transition(st_30, [])) + transitions.append(fac.Transition(st_31, [])) + transitions.append(fac.Transition(st_32, [])) + transitions.append(fac.Transition(st_33, [])) + transitions.append(fac.Transition(st_34, [])) + transitions.append(fac.Transition(st_35, [])) + transitions.append(fac.Transition(st_36, [])) st_5._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_4, True) ])) - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_4, False) ])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_4, True)])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_4, False)])) st_6._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_5, True) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_5, False) ])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_5, True)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_5, False)])) st_7._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_6, True) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_6, False) ])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_6, True)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_6, False)])) st_8._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_7, True) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_7, False) ])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_7, True)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_7, False)])) st_9._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_8, True) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_8, False) ])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_8, True)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_8, False)])) st_10._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_9, True) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_9, False) ])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_9, True)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_9, False)])) st_11._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_10, True) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_10, False) ])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_10, True)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_10, False)])) st_12._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_11, True) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_11, False) ])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_11, True)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_11, False)])) st_13._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_12, True) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_12, False) ])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_12, True)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_12, False)])) st_14._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_13, True) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_13, False) ])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_13, True)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_13, False)])) st_15._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_14, True) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_14, False) ])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_14, True)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_14, False)])) st_16._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_15, True) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_15, False) ])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_15, True)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_15, False)])) st_17._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_16, True) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_16, False) ])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_16, True)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_16, False)])) st_18._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_17, True) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_17, False) ])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_17, True)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_17, False)])) st_19._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_18, True) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_18, False) ])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_18, True)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_18, False)])) st_20._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_19, True) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_19, False) ])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_19, True)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_19, False)])) st_21._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_20, True) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_20, False) ])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_20, True)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_20, False)])) st_22._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_21, True) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_21, False) ])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_21, True)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_21, False)])) st_23._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_22, True) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_22, False) ])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_22, True)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_22, False)])) st_24._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_23, True) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_23, False) ])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_23, True)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_23, False)])) st_25._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_24, True) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_24, False) ])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_24, True)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_24, False)])) st_26._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_25, True) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_25, False) ])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_25, True)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_25, False)])) st_27._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_26, True) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_26, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_26, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_26, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_26, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_26, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_26, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_26, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_26, False) ])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_26, True)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_26, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_26, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_26, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_26, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_26, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_26, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_26, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_26, False)])) st_28._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_27, True) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_27, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_27, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_27, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_27, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_27, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_27, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_27, False) ])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_27, True)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_27, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_27, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_27, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_27, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_27, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_27, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_27, False)])) st_29._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_28, True) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_28, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_28, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_28, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_28, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_28, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_28, False) ])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_28, True)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_28, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_28, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_28, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_28, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_28, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_28, False)])) st_30._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_29, True) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_29, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_29, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_29, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_29, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_29, False) ])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_29, True)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_29, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_29, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_29, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_29, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_29, False)])) st_31._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_30, True) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_30, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_30, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_30, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_30, False) ])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_30, True)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_30, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_30, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_30, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_30, False)])) st_32._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_31, True) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_31, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_31, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_31, False) ])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_31, True)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_31, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_31, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_31, False)])) st_33._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_32, True) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_32, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_32, False) ])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_32, True)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_32, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_32, False)])) st_34._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_33, True) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_33, False) ])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_33, True)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_33, False)])) st_35._set_transitionSet(transitions) transitions = [] st_36._set_transitionSet(transitions) return fac.Automaton(states, counters, False, containing_state=None) -segmentType._Automaton = _BuildAutomaton_29() +segmentType._Automaton = _BuildAutomaton_29() + +groupType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "poSeriesID"), + pyxb.binding.datatypes.string, + scope=groupType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 853, 10), + ) +) -groupType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'poSeriesID'), pyxb.binding.datatypes.string, scope=groupType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 853, 10))) -def _BuildAutomaton_30 (): +def _BuildAutomaton_30(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_30 del _BuildAutomaton_30 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 225, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 225, 6), + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 245, 6)) + cc_1 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 245, 6), + ) counters.add(cc_1) - cc_2 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 253, 6)) + cc_2 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 253, 6), + ) counters.add(cc_2) - cc_3 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 261, 6)) + cc_3 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 261, 6), + ) counters.add(cc_3) - cc_4 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 280, 6)) + cc_4 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 280, 6), + ) counters.add(cc_4) - cc_5 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 287, 6)) + cc_5 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 287, 6), + ) counters.add(cc_5) - cc_6 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 288, 6)) + cc_6 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 288, 6), + ) counters.add(cc_6) - cc_7 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 289, 6)) + cc_7 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 289, 6), + ) counters.add(cc_7) - cc_8 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 290, 6)) + cc_8 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 290, 6), + ) counters.add(cc_8) - cc_9 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 291, 6)) + cc_9 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 291, 6), + ) counters.add(cc_9) - cc_10 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 292, 6)) + cc_10 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 292, 6), + ) counters.add(cc_10) - cc_11 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 293, 6)) + cc_11 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 293, 6) + ) counters.add(cc_11) - cc_12 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 294, 6)) + cc_12 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 294, 6), + ) counters.add(cc_12) - cc_13 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 295, 6)) + cc_13 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 295, 6), + ) counters.add(cc_13) - cc_14 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 296, 6)) + cc_14 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 296, 6) + ) counters.add(cc_14) - cc_15 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 297, 6)) + cc_15 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 297, 6), + ) counters.add(cc_15) - cc_16 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 298, 6)) + cc_16 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 298, 6) + ) counters.add(cc_16) - cc_17 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 299, 6)) + cc_17 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 299, 6) + ) counters.add(cc_17) - cc_18 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 300, 6)) + cc_18 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 300, 6) + ) counters.add(cc_18) - cc_19 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 301, 6)) + cc_19 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 301, 6) + ) counters.add(cc_19) - cc_20 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 302, 6)) + cc_20 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 302, 6), + ) counters.add(cc_20) - cc_21 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 303, 6)) + cc_21 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 303, 6), + ) counters.add(cc_21) - cc_22 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 304, 6)) + cc_22 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 304, 6), + ) counters.add(cc_22) - cc_23 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 305, 6)) + cc_23 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 305, 6) + ) counters.add(cc_23) - cc_24 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 306, 6)) + cc_24 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 306, 6), + ) counters.add(cc_24) - cc_25 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 307, 6)) + cc_25 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 307, 6), + ) counters.add(cc_25) - cc_26 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 308, 6)) + cc_26 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 308, 6), + ) counters.add(cc_26) - cc_27 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 309, 6)) + cc_27 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 309, 6), + ) counters.add(cc_27) - cc_28 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 310, 6)) + cc_28 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 310, 6) + ) counters.add(cc_28) - cc_29 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 311, 6)) + cc_29 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 311, 6), + ) counters.add(cc_29) - cc_30 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 312, 6)) + cc_30 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 312, 6) + ) counters.add(cc_30) - cc_31 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 313, 6)) + cc_31 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 313, 6), + ) counters.add(cc_31) - cc_32 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 314, 6)) + cc_32 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 314, 6) + ) counters.add(cc_32) - cc_33 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 853, 10)) + cc_33 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 853, 10) + ) counters.add(cc_33) states = [] final_update = None - symbol = pyxb.binding.content.ElementUse(groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'crid')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 225, 6)) + symbol = pyxb.binding.content.ElementUse( + groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "crid")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 225, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = None - symbol = pyxb.binding.content.ElementUse(groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'broadcaster')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 237, 6)) + symbol = pyxb.binding.content.ElementUse( + groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "broadcaster")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 237, 6), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) final_update = None - symbol = pyxb.binding.content.ElementUse(groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'portal')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 245, 6)) + symbol = pyxb.binding.content.ElementUse( + groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "portal")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 245, 6), + ) st_2 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_2) final_update = None - symbol = pyxb.binding.content.ElementUse(groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'exclusive')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 253, 6)) + symbol = pyxb.binding.content.ElementUse( + groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "exclusive")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 253, 6), + ) st_3 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_3) final_update = None - symbol = pyxb.binding.content.ElementUse(groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'region')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 261, 6)) + symbol = pyxb.binding.content.ElementUse( + groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "region")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 261, 6), + ) st_4 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_4) final_update = set() - symbol = pyxb.binding.content.ElementUse(groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'title')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 269, 6)) + symbol = pyxb.binding.content.ElementUse( + groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "title")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 269, 6), + ) st_5 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_5) final_update = set() final_update.add(fac.UpdateInstruction(cc_4, False)) - symbol = pyxb.binding.content.ElementUse(groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'description')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 280, 6)) + symbol = pyxb.binding.content.ElementUse( + groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "description")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 280, 6), + ) st_6 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_6) final_update = set() final_update.add(fac.UpdateInstruction(cc_5, False)) - symbol = pyxb.binding.content.ElementUse(groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'genre')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 287, 6)) + symbol = pyxb.binding.content.ElementUse( + groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "genre")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 287, 6), + ) st_7 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_7) final_update = set() final_update.add(fac.UpdateInstruction(cc_6, False)) - symbol = pyxb.binding.content.ElementUse(groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'tag')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 288, 6)) + symbol = pyxb.binding.content.ElementUse( + groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "tag")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 288, 6), + ) st_8 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_8) final_update = set() final_update.add(fac.UpdateInstruction(cc_7, False)) - symbol = pyxb.binding.content.ElementUse(groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'intentions')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 289, 6)) + symbol = pyxb.binding.content.ElementUse( + groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "intentions")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 289, 6), + ) st_9 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_9) final_update = set() final_update.add(fac.UpdateInstruction(cc_8, False)) - symbol = pyxb.binding.content.ElementUse(groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'targetGroups')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 290, 6)) + symbol = pyxb.binding.content.ElementUse( + groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "targetGroups")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 290, 6), + ) st_10 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_10) final_update = set() final_update.add(fac.UpdateInstruction(cc_9, False)) - symbol = pyxb.binding.content.ElementUse(groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'geoLocations')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 291, 6)) + symbol = pyxb.binding.content.ElementUse( + groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "geoLocations")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 291, 6), + ) st_11 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_11) final_update = set() final_update.add(fac.UpdateInstruction(cc_10, False)) - symbol = pyxb.binding.content.ElementUse(groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'topics')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 292, 6)) + symbol = pyxb.binding.content.ElementUse( + groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "topics")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 292, 6), + ) st_12 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_12) final_update = set() final_update.add(fac.UpdateInstruction(cc_11, False)) - symbol = pyxb.binding.content.ElementUse(groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'source')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 293, 6)) + symbol = pyxb.binding.content.ElementUse( + groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "source")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 293, 6), + ) st_13 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_13) final_update = set() final_update.add(fac.UpdateInstruction(cc_12, False)) - symbol = pyxb.binding.content.ElementUse(groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'country')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 294, 6)) + symbol = pyxb.binding.content.ElementUse( + groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "country")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 294, 6), + ) st_14 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_14) final_update = set() final_update.add(fac.UpdateInstruction(cc_13, False)) - symbol = pyxb.binding.content.ElementUse(groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'language')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 295, 6)) + symbol = pyxb.binding.content.ElementUse( + groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "language")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 295, 6), + ) st_15 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_15) final_update = set() final_update.add(fac.UpdateInstruction(cc_14, False)) - symbol = pyxb.binding.content.ElementUse(groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'isDubbed')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 296, 6)) + symbol = pyxb.binding.content.ElementUse( + groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "isDubbed")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 296, 6), + ) st_16 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_16) final_update = set() final_update.add(fac.UpdateInstruction(cc_15, False)) - symbol = pyxb.binding.content.ElementUse(groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'availableSubtitles')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 297, 6)) + symbol = pyxb.binding.content.ElementUse( + groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "availableSubtitles")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 297, 6), + ) st_17 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_17) final_update = set() final_update.add(fac.UpdateInstruction(cc_16, False)) - symbol = pyxb.binding.content.ElementUse(groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'avAttributes')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 298, 6)) + symbol = pyxb.binding.content.ElementUse( + groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "avAttributes")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 298, 6), + ) st_18 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_18) final_update = set() final_update.add(fac.UpdateInstruction(cc_17, False)) - symbol = pyxb.binding.content.ElementUse(groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'releaseYear')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 299, 6)) + symbol = pyxb.binding.content.ElementUse( + groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "releaseYear")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 299, 6), + ) st_19 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_19) final_update = set() final_update.add(fac.UpdateInstruction(cc_18, False)) - symbol = pyxb.binding.content.ElementUse(groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'duration')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 300, 6)) + symbol = pyxb.binding.content.ElementUse( + groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "duration")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 300, 6), + ) st_20 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_20) final_update = set() final_update.add(fac.UpdateInstruction(cc_19, False)) - symbol = pyxb.binding.content.ElementUse(groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'credits')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 301, 6)) + symbol = pyxb.binding.content.ElementUse( + groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "credits")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 301, 6), + ) st_21 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_21) final_update = set() final_update.add(fac.UpdateInstruction(cc_20, False)) - symbol = pyxb.binding.content.ElementUse(groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'award')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 302, 6)) + symbol = pyxb.binding.content.ElementUse( + groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "award")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 302, 6), + ) st_22 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_22) final_update = set() final_update.add(fac.UpdateInstruction(cc_21, False)) - symbol = pyxb.binding.content.ElementUse(groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'descendantOf')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 303, 6)) + symbol = pyxb.binding.content.ElementUse( + groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "descendantOf")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 303, 6), + ) st_23 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_23) final_update = set() final_update.add(fac.UpdateInstruction(cc_22, False)) - symbol = pyxb.binding.content.ElementUse(groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'memberOf')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 304, 6)) + symbol = pyxb.binding.content.ElementUse( + groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "memberOf")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 304, 6), + ) st_24 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_24) final_update = set() final_update.add(fac.UpdateInstruction(cc_23, False)) - symbol = pyxb.binding.content.ElementUse(groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'ageRating')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 305, 6)) + symbol = pyxb.binding.content.ElementUse( + groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "ageRating")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 305, 6), + ) st_25 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_25) final_update = set() final_update.add(fac.UpdateInstruction(cc_24, False)) - symbol = pyxb.binding.content.ElementUse(groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'contentRating')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 306, 6)) + symbol = pyxb.binding.content.ElementUse( + groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "contentRating")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 306, 6), + ) st_26 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_26) final_update = set() final_update.add(fac.UpdateInstruction(cc_25, False)) - symbol = pyxb.binding.content.ElementUse(groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'email')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 307, 6)) + symbol = pyxb.binding.content.ElementUse( + groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "email")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 307, 6), + ) st_27 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_27) final_update = set() final_update.add(fac.UpdateInstruction(cc_26, False)) - symbol = pyxb.binding.content.ElementUse(groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'website')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 308, 6)) + symbol = pyxb.binding.content.ElementUse( + groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "website")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 308, 6), + ) st_28 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_28) final_update = set() final_update.add(fac.UpdateInstruction(cc_27, False)) - symbol = pyxb.binding.content.ElementUse(groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'twitter')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 309, 6)) + symbol = pyxb.binding.content.ElementUse( + groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "twitter")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 309, 6), + ) st_29 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_29) final_update = set() final_update.add(fac.UpdateInstruction(cc_28, False)) - symbol = pyxb.binding.content.ElementUse(groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'teletext')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 310, 6)) + symbol = pyxb.binding.content.ElementUse( + groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "teletext")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 310, 6), + ) st_30 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_30) final_update = set() final_update.add(fac.UpdateInstruction(cc_29, False)) - symbol = pyxb.binding.content.ElementUse(groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'prediction')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 311, 6)) + symbol = pyxb.binding.content.ElementUse( + groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "prediction")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 311, 6), + ) st_31 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_31) final_update = set() final_update.add(fac.UpdateInstruction(cc_30, False)) - symbol = pyxb.binding.content.ElementUse(groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'locations')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 312, 6)) + symbol = pyxb.binding.content.ElementUse( + groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "locations")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 312, 6), + ) st_32 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_32) final_update = set() final_update.add(fac.UpdateInstruction(cc_31, False)) - symbol = pyxb.binding.content.ElementUse(groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'relation')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 313, 6)) + symbol = pyxb.binding.content.ElementUse( + groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "relation")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 313, 6), + ) st_33 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_33) final_update = set() final_update.add(fac.UpdateInstruction(cc_32, False)) - symbol = pyxb.binding.content.ElementUse(groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'images')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 314, 6)) + symbol = pyxb.binding.content.ElementUse( + groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "images")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 314, 6), + ) st_34 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_34) final_update = set() final_update.add(fac.UpdateInstruction(cc_33, False)) - symbol = pyxb.binding.content.ElementUse(groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'poSeriesID')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 853, 10)) + symbol = pyxb.binding.content.ElementUse( + groupType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "poSeriesID")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 853, 10), + ) st_35 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_35) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, False)])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - ])) - transitions.append(fac.Transition(st_2, [ - ])) - transitions.append(fac.Transition(st_3, [ - ])) - transitions.append(fac.Transition(st_4, [ - ])) - transitions.append(fac.Transition(st_5, [ - ])) + transitions.append(fac.Transition(st_1, [])) + transitions.append(fac.Transition(st_2, [])) + transitions.append(fac.Transition(st_3, [])) + transitions.append(fac.Transition(st_4, [])) + transitions.append(fac.Transition(st_5, [])) st_1._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_1, True) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_1, False) ])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_1, True)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_1, False)])) st_2._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_2, True) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_2, False) ])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_2, True)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_2, False)])) st_3._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_3, True) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_3, False) ])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_3, True)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_3, False)])) st_4._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_5, [ - ])) - transitions.append(fac.Transition(st_6, [ - ])) - transitions.append(fac.Transition(st_7, [ - ])) - transitions.append(fac.Transition(st_8, [ - ])) - transitions.append(fac.Transition(st_9, [ - ])) - transitions.append(fac.Transition(st_10, [ - ])) - transitions.append(fac.Transition(st_11, [ - ])) - transitions.append(fac.Transition(st_12, [ - ])) - transitions.append(fac.Transition(st_13, [ - ])) - transitions.append(fac.Transition(st_14, [ - ])) - transitions.append(fac.Transition(st_15, [ - ])) - transitions.append(fac.Transition(st_16, [ - ])) - transitions.append(fac.Transition(st_17, [ - ])) - transitions.append(fac.Transition(st_18, [ - ])) - transitions.append(fac.Transition(st_19, [ - ])) - transitions.append(fac.Transition(st_20, [ - ])) - transitions.append(fac.Transition(st_21, [ - ])) - transitions.append(fac.Transition(st_22, [ - ])) - transitions.append(fac.Transition(st_23, [ - ])) - transitions.append(fac.Transition(st_24, [ - ])) - transitions.append(fac.Transition(st_25, [ - ])) - transitions.append(fac.Transition(st_26, [ - ])) - transitions.append(fac.Transition(st_27, [ - ])) - transitions.append(fac.Transition(st_28, [ - ])) - transitions.append(fac.Transition(st_29, [ - ])) - transitions.append(fac.Transition(st_30, [ - ])) - transitions.append(fac.Transition(st_31, [ - ])) - transitions.append(fac.Transition(st_32, [ - ])) - transitions.append(fac.Transition(st_33, [ - ])) - transitions.append(fac.Transition(st_34, [ - ])) - transitions.append(fac.Transition(st_35, [ - ])) + transitions.append(fac.Transition(st_5, [])) + transitions.append(fac.Transition(st_6, [])) + transitions.append(fac.Transition(st_7, [])) + transitions.append(fac.Transition(st_8, [])) + transitions.append(fac.Transition(st_9, [])) + transitions.append(fac.Transition(st_10, [])) + transitions.append(fac.Transition(st_11, [])) + transitions.append(fac.Transition(st_12, [])) + transitions.append(fac.Transition(st_13, [])) + transitions.append(fac.Transition(st_14, [])) + transitions.append(fac.Transition(st_15, [])) + transitions.append(fac.Transition(st_16, [])) + transitions.append(fac.Transition(st_17, [])) + transitions.append(fac.Transition(st_18, [])) + transitions.append(fac.Transition(st_19, [])) + transitions.append(fac.Transition(st_20, [])) + transitions.append(fac.Transition(st_21, [])) + transitions.append(fac.Transition(st_22, [])) + transitions.append(fac.Transition(st_23, [])) + transitions.append(fac.Transition(st_24, [])) + transitions.append(fac.Transition(st_25, [])) + transitions.append(fac.Transition(st_26, [])) + transitions.append(fac.Transition(st_27, [])) + transitions.append(fac.Transition(st_28, [])) + transitions.append(fac.Transition(st_29, [])) + transitions.append(fac.Transition(st_30, [])) + transitions.append(fac.Transition(st_31, [])) + transitions.append(fac.Transition(st_32, [])) + transitions.append(fac.Transition(st_33, [])) + transitions.append(fac.Transition(st_34, [])) + transitions.append(fac.Transition(st_35, [])) st_5._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_4, True) ])) - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_4, False) ])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_4, True)])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_4, False)])) st_6._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_5, True) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_5, False) ])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_5, True)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_5, False)])) st_7._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_6, True) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_6, False) ])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_6, True)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_6, False)])) st_8._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_7, True) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_7, False) ])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_7, True)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_7, False)])) st_9._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_8, True) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_8, False) ])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_8, True)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_8, False)])) st_10._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_9, True) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_9, False) ])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_9, True)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_9, False)])) st_11._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_10, True) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_10, False) ])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_10, True)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_10, False)])) st_12._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_11, True) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_11, False) ])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_11, True)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_11, False)])) st_13._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_12, True) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_12, False) ])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_12, True)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_12, False)])) st_14._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_13, True) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_13, False) ])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_13, True)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_13, False)])) st_15._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_14, True) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_14, False) ])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_14, True)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_14, False)])) st_16._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_15, True) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_15, False) ])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_15, True)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_15, False)])) st_17._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_16, True) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_16, False) ])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_16, True)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_16, False)])) st_18._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_17, True) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_17, False) ])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_17, True)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_17, False)])) st_19._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_18, True) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_18, False) ])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_18, True)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_18, False)])) st_20._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_19, True) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_19, False) ])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_19, True)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_19, False)])) st_21._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_20, True) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_20, False) ])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_20, True)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_20, False)])) st_22._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_21, True) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_21, False) ])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_21, True)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_21, False)])) st_23._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_22, True) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_22, False) ])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_22, True)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_22, False)])) st_24._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_23, True) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_23, False) ])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_23, True)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_23, False)])) st_25._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_24, True) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_24, False) ])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_24, True)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_24, False)])) st_26._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_25, True) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_25, False) ])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_25, True)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_25, False)])) st_27._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_26, True) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_26, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_26, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_26, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_26, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_26, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_26, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_26, False) ])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_26, True)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_26, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_26, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_26, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_26, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_26, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_26, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_26, False)])) st_28._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_27, True) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_27, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_27, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_27, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_27, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_27, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_27, False) ])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_27, True)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_27, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_27, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_27, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_27, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_27, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_27, False)])) st_29._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_28, True) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_28, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_28, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_28, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_28, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_28, False) ])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_28, True)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_28, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_28, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_28, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_28, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_28, False)])) st_30._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_29, True) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_29, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_29, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_29, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_29, False) ])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_29, True)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_29, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_29, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_29, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_29, False)])) st_31._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_30, True) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_30, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_30, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_30, False) ])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_30, True)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_30, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_30, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_30, False)])) st_32._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_31, True) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_31, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_31, False) ])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_31, True)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_31, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_31, False)])) st_33._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_32, True) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_32, False) ])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_32, True)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_32, False)])) st_34._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_33, True) ])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_33, True)])) st_35._set_transitionSet(transitions) return fac.Automaton(states, counters, False, containing_state=None) -groupType._Automaton = _BuildAutomaton_30() + +groupType._Automaton = _BuildAutomaton_30() diff --git a/src/npoapi/xml/media_search.py b/src/npoapi/xml/media_search.py index f0c2445..c55c543 100644 --- a/src/npoapi/xml/media_search.py +++ b/src/npoapi/xml/media_search.py @@ -5,19 +5,22 @@ # Namespace urn:vpro:media:search:2012 from __future__ import unicode_literals + +import io +import sys + import pyxb import pyxb.binding import pyxb.binding.saxer -import io -import pyxb.utils.utility import pyxb.utils.domutils -import sys import pyxb.utils.six as _six +import pyxb.utils.utility + # Unique identifier for bindings created at the same time -_GenerationUID = pyxb.utils.utility.UniqueIdentifier('urn:uuid:fa5187de-5153-11ed-9cc8-3e22fb45f01a') +_GenerationUID = pyxb.utils.utility.UniqueIdentifier("urn:uuid:fa5187de-5153-11ed-9cc8-3e22fb45f01a") # Version of PyXB used to generate the bindings -_PyXBVersion = '1.2.6' +_PyXBVersion = "1.2.6" # Generated bindings are not compatible across PyXB versions if pyxb.__version__ != _PyXBVersion: raise pyxb.PyXBVersionError(_PyXBVersion) @@ -28,14 +31,16 @@ # Import bindings for namespaces imported into schema import pyxb.binding.datatypes + import npoapi.xml.media as _ImportedBinding_npoapi_xml_media import npoapi.xml.shared as _ImportedBinding_npoapi_xml_shared # NOTE: All namespace declarations are reserved within the binding -Namespace = pyxb.namespace.NamespaceForURI('urn:vpro:media:search:2012', create_if_missing=True) -Namespace.configureCategories(['typeBinding', 'elementBinding']) +Namespace = pyxb.namespace.NamespaceForURI("urn:vpro:media:search:2012", create_if_missing=True) +Namespace.configureCategories(["typeBinding", "elementBinding"]) -def CreateFromDocument (xml_text, default_namespace=None, location_base=None): + +def CreateFromDocument(xml_text, default_namespace=None, location_base=None): """Parse the given XML and use the document element to create a Python instance. @@ -68,7 +73,8 @@ def CreateFromDocument (xml_text, default_namespace=None, location_base=None): instance = handler.rootObject() return instance -def CreateFromDOM (node, default_namespace=None): + +def CreateFromDOM(node, default_namespace=None): """Create a Python instance from the given DOM node. The node tag must correspond to an element declaration in this module. @@ -79,3730 +85,4335 @@ def CreateFromDOM (node, default_namespace=None): # Atomic simple type: [anonymous] -class STD_ANON (pyxb.binding.datatypes.integer): - +class STD_ANON(pyxb.binding.datatypes.integer): """An atomic simple type.""" _ExpandedName = None - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 100, 8) + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 100, 8) _Documentation = None -STD_ANON._CF_minInclusive = pyxb.binding.facets.CF_minInclusive(value_datatype=STD_ANON, value=pyxb.binding.datatypes.integer(0)) + + +STD_ANON._CF_minInclusive = pyxb.binding.facets.CF_minInclusive( + value_datatype=STD_ANON, value=pyxb.binding.datatypes.integer(0) +) STD_ANON._InitializeFacetMap(STD_ANON._CF_minInclusive) _module_typeBindings.STD_ANON = STD_ANON -# Atomic simple type: [anonymous] -class STD_ANON_ (pyxb.binding.datatypes.integer): +# Atomic simple type: [anonymous] +class STD_ANON_(pyxb.binding.datatypes.integer): """An atomic simple type.""" _ExpandedName = None - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 107, 8) + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 107, 8) _Documentation = None -STD_ANON_._CF_minInclusive = pyxb.binding.facets.CF_minInclusive(value_datatype=STD_ANON_, value=pyxb.binding.datatypes.integer(0)) + + +STD_ANON_._CF_minInclusive = pyxb.binding.facets.CF_minInclusive( + value_datatype=STD_ANON_, value=pyxb.binding.datatypes.integer(0) +) STD_ANON_._InitializeFacetMap(STD_ANON_._CF_minInclusive) _module_typeBindings.STD_ANON_ = STD_ANON_ -# Atomic simple type: [anonymous] -class STD_ANON_2 (pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): +# Atomic simple type: [anonymous] +class STD_ANON_2(pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): """An atomic simple type.""" _ExpandedName = None - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 115, 8) + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 115, 8) _Documentation = None + + STD_ANON_2._CF_enumeration = pyxb.binding.facets.CF_enumeration(value_datatype=STD_ANON_2, enum_prefix=None) -STD_ANON_2.ASC = STD_ANON_2._CF_enumeration.addEnumeration(unicode_value='ASC', tag='ASC') -STD_ANON_2.DESC = STD_ANON_2._CF_enumeration.addEnumeration(unicode_value='DESC', tag='DESC') +STD_ANON_2.ASC = STD_ANON_2._CF_enumeration.addEnumeration(unicode_value="ASC", tag="ASC") +STD_ANON_2.DESC = STD_ANON_2._CF_enumeration.addEnumeration(unicode_value="DESC", tag="DESC") STD_ANON_2._InitializeFacetMap(STD_ANON_2._CF_enumeration) _module_typeBindings.STD_ANON_2 = STD_ANON_2 -# Atomic simple type: {urn:vpro:media:search:2012}mediaSortField -class mediaSortField (pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): +# Atomic simple type: {urn:vpro:media:search:2012}mediaSortField +class mediaSortField(pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'mediaSortField') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 125, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "mediaSortField") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 125, 2) _Documentation = None + + mediaSortField._CF_enumeration = pyxb.binding.facets.CF_enumeration(value_datatype=mediaSortField, enum_prefix=None) -mediaSortField.sortTitle = mediaSortField._CF_enumeration.addEnumeration(unicode_value='sortTitle', tag='sortTitle') -mediaSortField.mid = mediaSortField._CF_enumeration.addEnumeration(unicode_value='mid', tag='mid') -mediaSortField.type = mediaSortField._CF_enumeration.addEnumeration(unicode_value='type', tag='type') -mediaSortField.mediaType = mediaSortField._CF_enumeration.addEnumeration(unicode_value='mediaType', tag='mediaType') -mediaSortField.sortDate = mediaSortField._CF_enumeration.addEnumeration(unicode_value='sortDate', tag='sortDate') -mediaSortField.lastModified = mediaSortField._CF_enumeration.addEnumeration(unicode_value='lastModified', tag='lastModified') -mediaSortField.creationDate = mediaSortField._CF_enumeration.addEnumeration(unicode_value='creationDate', tag='creationDate') -mediaSortField.publishStop = mediaSortField._CF_enumeration.addEnumeration(unicode_value='publishStop', tag='publishStop') -mediaSortField.publishStart = mediaSortField._CF_enumeration.addEnumeration(unicode_value='publishStart', tag='publishStart') -mediaSortField.lastPublished = mediaSortField._CF_enumeration.addEnumeration(unicode_value='lastPublished', tag='lastPublished') -mediaSortField.lastModifiedBy = mediaSortField._CF_enumeration.addEnumeration(unicode_value='lastModifiedBy', tag='lastModifiedBy') -mediaSortField.createdBy = mediaSortField._CF_enumeration.addEnumeration(unicode_value='createdBy', tag='createdBy') -mediaSortField.locations = mediaSortField._CF_enumeration.addEnumeration(unicode_value='locations', tag='locations') -mediaSortField.memberofCount = mediaSortField._CF_enumeration.addEnumeration(unicode_value='memberofCount', tag='memberofCount') -mediaSortField.episodeofCount = mediaSortField._CF_enumeration.addEnumeration(unicode_value='episodeofCount', tag='episodeofCount') +mediaSortField.sortTitle = mediaSortField._CF_enumeration.addEnumeration(unicode_value="sortTitle", tag="sortTitle") +mediaSortField.mid = mediaSortField._CF_enumeration.addEnumeration(unicode_value="mid", tag="mid") +mediaSortField.type = mediaSortField._CF_enumeration.addEnumeration(unicode_value="type", tag="type") +mediaSortField.mediaType = mediaSortField._CF_enumeration.addEnumeration(unicode_value="mediaType", tag="mediaType") +mediaSortField.sortDate = mediaSortField._CF_enumeration.addEnumeration(unicode_value="sortDate", tag="sortDate") +mediaSortField.lastModified = mediaSortField._CF_enumeration.addEnumeration( + unicode_value="lastModified", tag="lastModified" +) +mediaSortField.creationDate = mediaSortField._CF_enumeration.addEnumeration( + unicode_value="creationDate", tag="creationDate" +) +mediaSortField.publishStop = mediaSortField._CF_enumeration.addEnumeration( + unicode_value="publishStop", tag="publishStop" +) +mediaSortField.publishStart = mediaSortField._CF_enumeration.addEnumeration( + unicode_value="publishStart", tag="publishStart" +) +mediaSortField.lastPublished = mediaSortField._CF_enumeration.addEnumeration( + unicode_value="lastPublished", tag="lastPublished" +) +mediaSortField.lastModifiedBy = mediaSortField._CF_enumeration.addEnumeration( + unicode_value="lastModifiedBy", tag="lastModifiedBy" +) +mediaSortField.createdBy = mediaSortField._CF_enumeration.addEnumeration(unicode_value="createdBy", tag="createdBy") +mediaSortField.locations = mediaSortField._CF_enumeration.addEnumeration(unicode_value="locations", tag="locations") +mediaSortField.memberofCount = mediaSortField._CF_enumeration.addEnumeration( + unicode_value="memberofCount", tag="memberofCount" +) +mediaSortField.episodeofCount = mediaSortField._CF_enumeration.addEnumeration( + unicode_value="episodeofCount", tag="episodeofCount" +) mediaSortField._InitializeFacetMap(mediaSortField._CF_enumeration) -Namespace.addCategoryObject('typeBinding', 'mediaSortField', mediaSortField) +Namespace.addCategoryObject("typeBinding", "mediaSortField", mediaSortField) _module_typeBindings.mediaSortField = mediaSortField -# Atomic simple type: [anonymous] -class STD_ANON_3 (pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): +# Atomic simple type: [anonymous] +class STD_ANON_3(pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): """An atomic simple type.""" _ExpandedName = None - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 197, 6) + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 197, 6) _Documentation = None + + STD_ANON_3._CF_enumeration = pyxb.binding.facets.CF_enumeration(value_datatype=STD_ANON_3, enum_prefix=None) -STD_ANON_3.ASC = STD_ANON_3._CF_enumeration.addEnumeration(unicode_value='ASC', tag='ASC') -STD_ANON_3.DESC = STD_ANON_3._CF_enumeration.addEnumeration(unicode_value='DESC', tag='DESC') +STD_ANON_3.ASC = STD_ANON_3._CF_enumeration.addEnumeration(unicode_value="ASC", tag="ASC") +STD_ANON_3.DESC = STD_ANON_3._CF_enumeration.addEnumeration(unicode_value="DESC", tag="DESC") STD_ANON_3._InitializeFacetMap(STD_ANON_3._CF_enumeration) _module_typeBindings.STD_ANON_3 = STD_ANON_3 + # Complex type {urn:vpro:media:search:2012}mediaFormType with content type ELEMENT_ONLY -class mediaFormType (pyxb.binding.basis.complexTypeDefinition): - """ +class mediaFormType(pyxb.binding.basis.complexTypeDefinition): + """ """ - """ _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'mediaFormType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 16, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "mediaFormType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 16, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:search:2012}pager uses Python identifier pager - __pager = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'pager'), 'pager', '__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012pager', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 23, 6), ) + __pager = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "pager"), + "pager", + "__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012pager", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 23, 6), + ) - pager = property(__pager.value, __pager.set, None, None) - # Element {urn:vpro:media:search:2012}broadcaster uses Python identifier broadcaster - __broadcaster = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'broadcaster'), 'broadcaster', '__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012broadcaster', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 24, 6), ) + __broadcaster = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "broadcaster"), + "broadcaster", + "__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012broadcaster", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 24, 6), + ) - broadcaster = property(__broadcaster.value, __broadcaster.set, None, None) - # Element {urn:vpro:media:search:2012}portal uses Python identifier portal - __portal = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'portal'), 'portal', '__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012portal', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 25, 6), ) + __portal = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "portal"), + "portal", + "__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012portal", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 25, 6), + ) - portal = property(__portal.value, __portal.set, None, None) - # Element {urn:vpro:media:search:2012}organization uses Python identifier organization - __organization = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'organization'), 'organization', '__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012organization', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 26, 6), ) + __organization = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "organization"), + "organization", + "__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012organization", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 26, 6), + ) - organization = property(__organization.value, __organization.set, None, None) - # Element {urn:vpro:media:search:2012}text uses Python identifier text - __text = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'text'), 'text', '__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012text', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 27, 6), ) + __text = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "text"), + "text", + "__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012text", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 27, 6), + ) - text = property(__text.value, __text.set, None, None) - # Element {urn:vpro:media:search:2012}title uses Python identifier title - __title = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'title'), 'title', '__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012title', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 28, 6), ) + __title = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "title"), + "title", + "__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012title", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 28, 6), + ) - title = property(__title.value, __title.set, None, None) - # Element {urn:vpro:media:search:2012}type uses Python identifier type - __type = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'type'), 'type', '__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012type', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 39, 6), ) + __type = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "type"), + "type", + "__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012type", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 39, 6), + ) - type = property(__type.value, __type.set, None, None) - # Element {urn:vpro:media:search:2012}releaseYear uses Python identifier releaseYear - __releaseYear = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'releaseYear'), 'releaseYear', '__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012releaseYear', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 40, 6), ) + __releaseYear = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "releaseYear"), + "releaseYear", + "__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012releaseYear", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 40, 6), + ) - releaseYear = property(__releaseYear.value, __releaseYear.set, None, None) - # Element {urn:vpro:media:search:2012}relation uses Python identifier relation - __relation = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'relation'), 'relation', '__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012relation', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 41, 6), ) + __relation = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "relation"), + "relation", + "__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012relation", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 41, 6), + ) - relation = property(__relation.value, __relation.set, None, None) - # Element {urn:vpro:media:search:2012}noBroadcast uses Python identifier noBroadcast - __noBroadcast = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'noBroadcast'), 'noBroadcast', '__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012noBroadcast', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 42, 6), ) + __noBroadcast = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "noBroadcast"), + "noBroadcast", + "__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012noBroadcast", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 42, 6), + ) - noBroadcast = property(__noBroadcast.value, __noBroadcast.set, None, None) - # Element {urn:vpro:media:search:2012}scheduleEventsCount uses Python identifier scheduleEventsCount - __scheduleEventsCount = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'scheduleEventsCount'), 'scheduleEventsCount', '__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012scheduleEventsCount', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 43, 6), ) + __scheduleEventsCount = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "scheduleEventsCount"), + "scheduleEventsCount", + "__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012scheduleEventsCount", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 43, 6), + ) - scheduleEventsCount = property(__scheduleEventsCount.value, __scheduleEventsCount.set, None, None) - # Element {urn:vpro:media:search:2012}hasLocations uses Python identifier hasLocations - __hasLocations = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'hasLocations'), 'hasLocations', '__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012hasLocations', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 44, 6), ) - - - hasLocations = property(__hasLocations.value, __hasLocations.set, None, "Whether it should only return media object which does have location. Note that the same can be accomplished with 'locationsCount', and this element is considered deprecated.\n ") + __hasLocations = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "hasLocations"), + "hasLocations", + "__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012hasLocations", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 44, 6), + ) + + hasLocations = property( + __hasLocations.value, + __hasLocations.set, + None, + "Whether it should only return media object which does have location. Note that the same can be accomplished with 'locationsCount', and this element is considered deprecated.\n ", + ) - # Element {urn:vpro:media:search:2012}locationsCount uses Python identifier locationsCount - __locationsCount = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'locationsCount'), 'locationsCount', '__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012locationsCount', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 50, 6), ) - - - locationsCount = property(__locationsCount.value, __locationsCount.set, None, '\n Constraint the number of locations.\n ') + __locationsCount = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "locationsCount"), + "locationsCount", + "__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012locationsCount", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 50, 6), + ) + + locationsCount = property( + __locationsCount.value, + __locationsCount.set, + None, + "\n Constraint the number of locations.\n ", + ) - # Element {urn:vpro:media:search:2012}noPlaylist uses Python identifier noPlaylist - __noPlaylist = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'noPlaylist'), 'noPlaylist', '__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012noPlaylist', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 57, 6), ) + __noPlaylist = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "noPlaylist"), + "noPlaylist", + "__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012noPlaylist", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 57, 6), + ) + + noPlaylist = property( + __noPlaylist.value, + __noPlaylist.set, + None, + "\n Whether it should only return media object which are not a a member of any other object.\n Note that the same can be accomplished with 'memberOfCount', and this element is considered deprecated.\n ", + ) - - noPlaylist = property(__noPlaylist.value, __noPlaylist.set, None, "\n Whether it should only return media object which are not a a member of any other object.\n Note that the same can be accomplished with 'memberOfCount', and this element is considered deprecated.\n ") - - # Element {urn:vpro:media:search:2012}memberOfCount uses Python identifier memberOfCount - __memberOfCount = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'memberOfCount'), 'memberOfCount', '__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012memberOfCount', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 65, 6), ) + __memberOfCount = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "memberOfCount"), + "memberOfCount", + "__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012memberOfCount", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 65, 6), + ) - memberOfCount = property(__memberOfCount.value, __memberOfCount.set, None, None) - # Element {urn:vpro:media:search:2012}sortRange uses Python identifier sortRange - __sortRange = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'sortRange'), 'sortRange', '__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012sortRange', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 66, 6), ) + __sortRange = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "sortRange"), + "sortRange", + "__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012sortRange", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 66, 6), + ) - sortRange = property(__sortRange.value, __sortRange.set, None, None) - # Element {urn:vpro:media:search:2012}eventRange uses Python identifier eventRange - __eventRange = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'eventRange'), 'eventRange', '__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012eventRange', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 67, 6), ) + __eventRange = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "eventRange"), + "eventRange", + "__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012eventRange", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 67, 6), + ) - eventRange = property(__eventRange.value, __eventRange.set, None, None) - # Element {urn:vpro:media:search:2012}scheduleEventRange uses Python identifier scheduleEventRange - __scheduleEventRange = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'scheduleEventRange'), 'scheduleEventRange', '__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012scheduleEventRange', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 68, 6), ) + __scheduleEventRange = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "scheduleEventRange"), + "scheduleEventRange", + "__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012scheduleEventRange", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 68, 6), + ) - scheduleEventRange = property(__scheduleEventRange.value, __scheduleEventRange.set, None, None) - # Element {urn:vpro:media:search:2012}channel uses Python identifier channel - __channel = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'channel'), 'channel', '__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012channel', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 69, 6), ) + __channel = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "channel"), + "channel", + "__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012channel", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 69, 6), + ) - channel = property(__channel.value, __channel.set, None, None) - # Element {urn:vpro:media:search:2012}net uses Python identifier net - __net = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'net'), 'net', '__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012net', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 70, 6), ) + __net = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "net"), + "net", + "__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012net", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 70, 6), + ) - net = property(__net.value, __net.set, None, None) - # Element {urn:vpro:media:search:2012}createdBy uses Python identifier createdBy - __createdBy = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'createdBy'), 'createdBy', '__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012createdBy', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 71, 6), ) + __createdBy = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "createdBy"), + "createdBy", + "__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012createdBy", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 71, 6), + ) - createdBy = property(__createdBy.value, __createdBy.set, None, None) - # Element {urn:vpro:media:search:2012}creationRange uses Python identifier creationRange - __creationRange = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'creationRange'), 'creationRange', '__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012creationRange', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 72, 6), ) + __creationRange = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "creationRange"), + "creationRange", + "__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012creationRange", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 72, 6), + ) - creationRange = property(__creationRange.value, __creationRange.set, None, None) - # Element {urn:vpro:media:search:2012}lastModifiedBy uses Python identifier lastModifiedBy - __lastModifiedBy = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'lastModifiedBy'), 'lastModifiedBy', '__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012lastModifiedBy', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 73, 6), ) + __lastModifiedBy = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "lastModifiedBy"), + "lastModifiedBy", + "__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012lastModifiedBy", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 73, 6), + ) - lastModifiedBy = property(__lastModifiedBy.value, __lastModifiedBy.set, None, None) - # Element {urn:vpro:media:search:2012}lastModifiedRange uses Python identifier lastModifiedRange - __lastModifiedRange = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'lastModifiedRange'), 'lastModifiedRange', '__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012lastModifiedRange', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 74, 6), ) + __lastModifiedRange = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "lastModifiedRange"), + "lastModifiedRange", + "__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012lastModifiedRange", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 74, 6), + ) - lastModifiedRange = property(__lastModifiedRange.value, __lastModifiedRange.set, None, None) - # Element {urn:vpro:media:search:2012}lastPublishedRange uses Python identifier lastPublishedRange - __lastPublishedRange = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'lastPublishedRange'), 'lastPublishedRange', '__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012lastPublishedRange', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 75, 6), ) + __lastPublishedRange = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "lastPublishedRange"), + "lastPublishedRange", + "__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012lastPublishedRange", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 75, 6), + ) - lastPublishedRange = property(__lastPublishedRange.value, __lastPublishedRange.set, None, None) - # Element {urn:vpro:media:search:2012}tag uses Python identifier tag - __tag = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'tag'), 'tag', '__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012tag', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 76, 6), ) + __tag = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "tag"), + "tag", + "__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012tag", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 76, 6), + ) - tag = property(__tag.value, __tag.set, None, None) - # Element {urn:vpro:media:search:2012}avType uses Python identifier avType - __avType = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'avType'), 'avType', '__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012avType', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 77, 6), ) + __avType = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "avType"), + "avType", + "__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012avType", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 77, 6), + ) - avType = property(__avType.value, __avType.set, None, None) - # Element {urn:vpro:media:search:2012}notAnEpisode uses Python identifier notAnEpisode - __notAnEpisode = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'notAnEpisode'), 'notAnEpisode', '__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012notAnEpisode', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 78, 6), ) + __notAnEpisode = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "notAnEpisode"), + "notAnEpisode", + "__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012notAnEpisode", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 78, 6), + ) - notAnEpisode = property(__notAnEpisode.value, __notAnEpisode.set, None, None) - # Element {urn:vpro:media:search:2012}episodeOfCount uses Python identifier episodeOfCount - __episodeOfCount = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'episodeOfCount'), 'episodeOfCount', '__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012episodeOfCount', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 79, 6), ) + __episodeOfCount = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "episodeOfCount"), + "episodeOfCount", + "__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012episodeOfCount", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 79, 6), + ) - episodeOfCount = property(__episodeOfCount.value, __episodeOfCount.set, None, None) - # Element {urn:vpro:media:search:2012}noMembers uses Python identifier noMembers - __noMembers = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'noMembers'), 'noMembers', '__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012noMembers', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 80, 6), ) + __noMembers = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "noMembers"), + "noMembers", + "__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012noMembers", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 80, 6), + ) - noMembers = property(__noMembers.value, __noMembers.set, None, None) - # Element {urn:vpro:media:search:2012}noCredits uses Python identifier noCredits - __noCredits = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'noCredits'), 'noCredits', '__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012noCredits', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 81, 6), ) + __noCredits = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "noCredits"), + "noCredits", + "__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012noCredits", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 81, 6), + ) - noCredits = property(__noCredits.value, __noCredits.set, None, None) - # Element {urn:vpro:media:search:2012}imagesWithoutCreditsCount uses Python identifier imagesWithoutCreditsCount - __imagesWithoutCreditsCount = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'imagesWithoutCreditsCount'), 'imagesWithoutCreditsCount', '__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012imagesWithoutCreditsCount', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 82, 6), ) + __imagesWithoutCreditsCount = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "imagesWithoutCreditsCount"), + "imagesWithoutCreditsCount", + "__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012imagesWithoutCreditsCount", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 82, 6), + ) - imagesWithoutCreditsCount = property(__imagesWithoutCreditsCount.value, __imagesWithoutCreditsCount.set, None, None) - # Element {urn:vpro:media:search:2012}imagesCount uses Python identifier imagesCount - __imagesCount = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'imagesCount'), 'imagesCount', '__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012imagesCount', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 83, 6), ) + __imagesCount = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "imagesCount"), + "imagesCount", + "__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012imagesCount", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 83, 6), + ) - imagesCount = property(__imagesCount.value, __imagesCount.set, None, None) - # Element {urn:vpro:media:search:2012}findDeleted uses Python identifier findDeleted - __findDeleted = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'findDeleted'), 'findDeleted', '__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012findDeleted', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 84, 6), ) + __findDeleted = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "findDeleted"), + "findDeleted", + "__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012findDeleted", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 84, 6), + ) - findDeleted = property(__findDeleted.value, __findDeleted.set, None, None) - # Element {urn:vpro:media:search:2012}excludedMid uses Python identifier excludedMid - __excludedMid = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'excludedMid'), 'excludedMid', '__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012excludedMid', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 85, 6), ) + __excludedMid = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "excludedMid"), + "excludedMid", + "__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012excludedMid", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 85, 6), + ) - excludedMid = property(__excludedMid.value, __excludedMid.set, None, None) - # Element {urn:vpro:media:search:2012}ids uses Python identifier ids - __ids = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'ids'), 'ids', '__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012ids', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 86, 6), ) + __ids = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "ids"), + "ids", + "__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012ids", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 86, 6), + ) - ids = property(__ids.value, __ids.set, None, None) - # Element {urn:vpro:media:search:2012}descendantOf uses Python identifier descendantOf - __descendantOf = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'descendantOf'), 'descendantOf', '__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012descendantOf', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 87, 6), ) + __descendantOf = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "descendantOf"), + "descendantOf", + "__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012descendantOf", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 87, 6), + ) - descendantOf = property(__descendantOf.value, __descendantOf.set, None, None) - # Element {urn:vpro:media:search:2012}streamingPlatformStatus uses Python identifier streamingPlatformStatus - __streamingPlatformStatus = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'streamingPlatformStatus'), 'streamingPlatformStatus', '__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012streamingPlatformStatus', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 88, 6), ) + __streamingPlatformStatus = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "streamingPlatformStatus"), + "streamingPlatformStatus", + "__urnvpromediasearch2012_mediaFormType_urnvpromediasearch2012streamingPlatformStatus", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 88, 6), + ) - streamingPlatformStatus = property(__streamingPlatformStatus.value, __streamingPlatformStatus.set, None, None) - _ElementMap.update({ - __pager.name() : __pager, - __broadcaster.name() : __broadcaster, - __portal.name() : __portal, - __organization.name() : __organization, - __text.name() : __text, - __title.name() : __title, - __type.name() : __type, - __releaseYear.name() : __releaseYear, - __relation.name() : __relation, - __noBroadcast.name() : __noBroadcast, - __scheduleEventsCount.name() : __scheduleEventsCount, - __hasLocations.name() : __hasLocations, - __locationsCount.name() : __locationsCount, - __noPlaylist.name() : __noPlaylist, - __memberOfCount.name() : __memberOfCount, - __sortRange.name() : __sortRange, - __eventRange.name() : __eventRange, - __scheduleEventRange.name() : __scheduleEventRange, - __channel.name() : __channel, - __net.name() : __net, - __createdBy.name() : __createdBy, - __creationRange.name() : __creationRange, - __lastModifiedBy.name() : __lastModifiedBy, - __lastModifiedRange.name() : __lastModifiedRange, - __lastPublishedRange.name() : __lastPublishedRange, - __tag.name() : __tag, - __avType.name() : __avType, - __notAnEpisode.name() : __notAnEpisode, - __episodeOfCount.name() : __episodeOfCount, - __noMembers.name() : __noMembers, - __noCredits.name() : __noCredits, - __imagesWithoutCreditsCount.name() : __imagesWithoutCreditsCount, - __imagesCount.name() : __imagesCount, - __findDeleted.name() : __findDeleted, - __excludedMid.name() : __excludedMid, - __ids.name() : __ids, - __descendantOf.name() : __descendantOf, - __streamingPlatformStatus.name() : __streamingPlatformStatus - }) - _AttributeMap.update({ - - }) + _ElementMap.update( + { + __pager.name(): __pager, + __broadcaster.name(): __broadcaster, + __portal.name(): __portal, + __organization.name(): __organization, + __text.name(): __text, + __title.name(): __title, + __type.name(): __type, + __releaseYear.name(): __releaseYear, + __relation.name(): __relation, + __noBroadcast.name(): __noBroadcast, + __scheduleEventsCount.name(): __scheduleEventsCount, + __hasLocations.name(): __hasLocations, + __locationsCount.name(): __locationsCount, + __noPlaylist.name(): __noPlaylist, + __memberOfCount.name(): __memberOfCount, + __sortRange.name(): __sortRange, + __eventRange.name(): __eventRange, + __scheduleEventRange.name(): __scheduleEventRange, + __channel.name(): __channel, + __net.name(): __net, + __createdBy.name(): __createdBy, + __creationRange.name(): __creationRange, + __lastModifiedBy.name(): __lastModifiedBy, + __lastModifiedRange.name(): __lastModifiedRange, + __lastPublishedRange.name(): __lastPublishedRange, + __tag.name(): __tag, + __avType.name(): __avType, + __notAnEpisode.name(): __notAnEpisode, + __episodeOfCount.name(): __episodeOfCount, + __noMembers.name(): __noMembers, + __noCredits.name(): __noCredits, + __imagesWithoutCreditsCount.name(): __imagesWithoutCreditsCount, + __imagesCount.name(): __imagesCount, + __findDeleted.name(): __findDeleted, + __excludedMid.name(): __excludedMid, + __ids.name(): __ids, + __descendantOf.name(): __descendantOf, + __streamingPlatformStatus.name(): __streamingPlatformStatus, + } + ) + _AttributeMap.update({}) + + _module_typeBindings.mediaFormType = mediaFormType -Namespace.addCategoryObject('typeBinding', 'mediaFormType', mediaFormType) +Namespace.addCategoryObject("typeBinding", "mediaFormType", mediaFormType) # Complex type {urn:vpro:media:search:2012}mediaPagerType with content type ELEMENT_ONLY -class mediaPagerType (pyxb.binding.basis.complexTypeDefinition): - """ - """ +class mediaPagerType(pyxb.binding.basis.complexTypeDefinition): + """ """ + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'mediaPagerType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 93, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "mediaPagerType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 93, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:search:2012}offset uses Python identifier offset - __offset = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'offset'), 'offset', '__urnvpromediasearch2012_mediaPagerType_urnvpromediasearch2012offset', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 99, 6), ) + __offset = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "offset"), + "offset", + "__urnvpromediasearch2012_mediaPagerType_urnvpromediasearch2012offset", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 99, 6), + ) - offset = property(__offset.value, __offset.set, None, None) - # Element {urn:vpro:media:search:2012}max uses Python identifier max - __max = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'max'), 'max', '__urnvpromediasearch2012_mediaPagerType_urnvpromediasearch2012max', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 106, 6), ) + __max = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "max"), + "max", + "__urnvpromediasearch2012_mediaPagerType_urnvpromediasearch2012max", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 106, 6), + ) - max = property(__max.value, __max.set, None, None) - # Element {urn:vpro:media:search:2012}sort uses Python identifier sort - __sort = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'sort'), 'sort', '__urnvpromediasearch2012_mediaPagerType_urnvpromediasearch2012sort', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 113, 6), ) + __sort = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "sort"), + "sort", + "__urnvpromediasearch2012_mediaPagerType_urnvpromediasearch2012sort", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 113, 6), + ) - sort = property(__sort.value, __sort.set, None, None) - # Element {urn:vpro:media:search:2012}order uses Python identifier order - __order = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'order'), 'order', '__urnvpromediasearch2012_mediaPagerType_urnvpromediasearch2012order', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 114, 6), ) + __order = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "order"), + "order", + "__urnvpromediasearch2012_mediaPagerType_urnvpromediasearch2012order", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 114, 6), + ) - order = property(__order.value, __order.set, None, None) - _ElementMap.update({ - __offset.name() : __offset, - __max.name() : __max, - __sort.name() : __sort, - __order.name() : __order - }) - _AttributeMap.update({ - - }) + _ElementMap.update({__offset.name(): __offset, __max.name(): __max, __sort.name(): __sort, __order.name(): __order}) + _AttributeMap.update({}) + + _module_typeBindings.mediaPagerType = mediaPagerType -Namespace.addCategoryObject('typeBinding', 'mediaPagerType', mediaPagerType) +Namespace.addCategoryObject("typeBinding", "mediaPagerType", mediaPagerType) # Complex type {urn:vpro:media:search:2012}integerRangeType with content type ELEMENT_ONLY -class integerRangeType (pyxb.binding.basis.complexTypeDefinition): +class integerRangeType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:search:2012}integerRangeType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'integerRangeType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 157, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "integerRangeType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 157, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:search:2012}start uses Python identifier start - __start = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'start'), 'start', '__urnvpromediasearch2012_integerRangeType_urnvpromediasearch2012start', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 159, 6), ) + __start = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "start"), + "start", + "__urnvpromediasearch2012_integerRangeType_urnvpromediasearch2012start", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 159, 6), + ) - start = property(__start.value, __start.set, None, None) - # Element {urn:vpro:media:search:2012}stop uses Python identifier stop - __stop = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'stop'), 'stop', '__urnvpromediasearch2012_integerRangeType_urnvpromediasearch2012stop', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 160, 6), ) + __stop = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "stop"), + "stop", + "__urnvpromediasearch2012_integerRangeType_urnvpromediasearch2012stop", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 160, 6), + ) - stop = property(__stop.value, __stop.set, None, None) - _ElementMap.update({ - __start.name() : __start, - __stop.name() : __stop - }) - _AttributeMap.update({ - - }) + _ElementMap.update({__start.name(): __start, __stop.name(): __stop}) + _AttributeMap.update({}) + + _module_typeBindings.integerRangeType = integerRangeType -Namespace.addCategoryObject('typeBinding', 'integerRangeType', integerRangeType) +Namespace.addCategoryObject("typeBinding", "integerRangeType", integerRangeType) # Complex type {urn:vpro:media:search:2012}integerRangeValueType with content type SIMPLE -class integerRangeValueType (pyxb.binding.basis.complexTypeDefinition): +class integerRangeValueType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:search:2012}integerRangeValueType with content type SIMPLE""" + _TypeDefinition = pyxb.binding.datatypes.long _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_SIMPLE _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'integerRangeValueType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 164, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "integerRangeValueType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 164, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.long - + # Attribute inclusive uses Python identifier inclusive - __inclusive = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'inclusive'), 'inclusive', '__urnvpromediasearch2012_integerRangeValueType_inclusive', pyxb.binding.datatypes.boolean) - __inclusive._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 167, 8) - __inclusive._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 167, 8) - + __inclusive = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "inclusive"), + "inclusive", + "__urnvpromediasearch2012_integerRangeValueType_inclusive", + pyxb.binding.datatypes.boolean, + ) + __inclusive._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 167, 8 + ) + __inclusive._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 167, 8 + ) + inclusive = property(__inclusive.value, __inclusive.set, None, None) - _ElementMap.update({ - - }) - _AttributeMap.update({ - __inclusive.name() : __inclusive - }) + _ElementMap.update({}) + _AttributeMap.update({__inclusive.name(): __inclusive}) + + _module_typeBindings.integerRangeValueType = integerRangeValueType -Namespace.addCategoryObject('typeBinding', 'integerRangeValueType', integerRangeValueType) +Namespace.addCategoryObject("typeBinding", "integerRangeValueType", integerRangeValueType) # Complex type {urn:vpro:media:search:2012}dateRangeType with content type ELEMENT_ONLY -class dateRangeType (pyxb.binding.basis.complexTypeDefinition): +class dateRangeType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:search:2012}dateRangeType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'dateRangeType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 172, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "dateRangeType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 172, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:search:2012}start uses Python identifier start - __start = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'start'), 'start', '__urnvpromediasearch2012_dateRangeType_urnvpromediasearch2012start', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 174, 6), ) + __start = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "start"), + "start", + "__urnvpromediasearch2012_dateRangeType_urnvpromediasearch2012start", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 174, 6), + ) - start = property(__start.value, __start.set, None, None) - # Element {urn:vpro:media:search:2012}stop uses Python identifier stop - __stop = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'stop'), 'stop', '__urnvpromediasearch2012_dateRangeType_urnvpromediasearch2012stop', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 175, 6), ) + __stop = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "stop"), + "stop", + "__urnvpromediasearch2012_dateRangeType_urnvpromediasearch2012stop", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 175, 6), + ) - stop = property(__stop.value, __stop.set, None, None) - _ElementMap.update({ - __start.name() : __start, - __stop.name() : __stop - }) - _AttributeMap.update({ - - }) + _ElementMap.update({__start.name(): __start, __stop.name(): __stop}) + _AttributeMap.update({}) + + _module_typeBindings.dateRangeType = dateRangeType -Namespace.addCategoryObject('typeBinding', 'dateRangeType', dateRangeType) +Namespace.addCategoryObject("typeBinding", "dateRangeType", dateRangeType) # Complex type {urn:vpro:media:search:2012}dateRangeValueType with content type SIMPLE -class dateRangeValueType (pyxb.binding.basis.complexTypeDefinition): +class dateRangeValueType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:search:2012}dateRangeValueType with content type SIMPLE""" + _TypeDefinition = pyxb.binding.datatypes.string _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_SIMPLE _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'dateRangeValueType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 179, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "dateRangeValueType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 179, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.string - + # Attribute inclusive uses Python identifier inclusive - __inclusive = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'inclusive'), 'inclusive', '__urnvpromediasearch2012_dateRangeValueType_inclusive', pyxb.binding.datatypes.boolean) - __inclusive._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 182, 8) - __inclusive._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 182, 8) - + __inclusive = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "inclusive"), + "inclusive", + "__urnvpromediasearch2012_dateRangeValueType_inclusive", + pyxb.binding.datatypes.boolean, + ) + __inclusive._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 182, 8 + ) + __inclusive._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 182, 8 + ) + inclusive = property(__inclusive.value, __inclusive.set, None, None) - _ElementMap.update({ - - }) - _AttributeMap.update({ - __inclusive.name() : __inclusive - }) + _ElementMap.update({}) + _AttributeMap.update({__inclusive.name(): __inclusive}) + + _module_typeBindings.dateRangeValueType = dateRangeValueType -Namespace.addCategoryObject('typeBinding', 'dateRangeValueType', dateRangeValueType) +Namespace.addCategoryObject("typeBinding", "dateRangeValueType", dateRangeValueType) # Complex type {urn:vpro:media:search:2012}editorSearch with content type SIMPLE -class editorSearch (pyxb.binding.basis.complexTypeDefinition): +class editorSearch(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:search:2012}editorSearch with content type SIMPLE""" + _TypeDefinition = pyxb.binding.datatypes.string _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_SIMPLE _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'editorSearch') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 260, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "editorSearch") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 260, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.string - + # Attribute principalId uses Python identifier principalId - __principalId = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'principalId'), 'principalId', '__urnvpromediasearch2012_editorSearch_principalId', pyxb.binding.datatypes.boolean) - __principalId._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 263, 8) - __principalId._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 263, 8) - + __principalId = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "principalId"), + "principalId", + "__urnvpromediasearch2012_editorSearch_principalId", + pyxb.binding.datatypes.boolean, + ) + __principalId._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 263, 8 + ) + __principalId._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 263, 8 + ) + principalId = property(__principalId.value, __principalId.set, None, None) - _ElementMap.update({ - - }) - _AttributeMap.update({ - __principalId.name() : __principalId - }) + _ElementMap.update({}) + _AttributeMap.update({__principalId.name(): __principalId}) + + _module_typeBindings.editorSearch = editorSearch -Namespace.addCategoryObject('typeBinding', 'editorSearch', editorSearch) +Namespace.addCategoryObject("typeBinding", "editorSearch", editorSearch) # Complex type [anonymous] with content type SIMPLE -class CTD_ANON (pyxb.binding.basis.complexTypeDefinition): +class CTD_ANON(pyxb.binding.basis.complexTypeDefinition): """Complex type [anonymous] with content type SIMPLE""" + _TypeDefinition = pyxb.binding.datatypes.string _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_SIMPLE _Abstract = False _ExpandedName = None - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 29, 8) + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 29, 8) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.string - + # Attribute type uses Python identifier type - __type = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'type'), 'type', '__urnvpromediasearch2012_CTD_ANON_type', _ImportedBinding_npoapi_xml_media.textualTypeEnum) - __type._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 32, 14) - __type._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 32, 14) - + __type = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "type"), + "type", + "__urnvpromediasearch2012_CTD_ANON_type", + _ImportedBinding_npoapi_xml_media.textualTypeEnum, + ) + __type._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 32, 14 + ) + __type._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 32, 14 + ) + type = property(__type.value, __type.set, None, None) - # Attribute owner uses Python identifier owner - __owner = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'owner'), 'owner', '__urnvpromediasearch2012_CTD_ANON_owner', _ImportedBinding_npoapi_xml_shared.ownerTypeEnum) - __owner._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 33, 14) - __owner._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 33, 14) - + __owner = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "owner"), + "owner", + "__urnvpromediasearch2012_CTD_ANON_owner", + _ImportedBinding_npoapi_xml_shared.ownerTypeEnum, + ) + __owner._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 33, 14 + ) + __owner._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 33, 14 + ) + owner = property(__owner.value, __owner.set, None, None) - # Attribute tokenized uses Python identifier tokenized - __tokenized = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'tokenized'), 'tokenized', '__urnvpromediasearch2012_CTD_ANON_tokenized', pyxb.binding.datatypes.boolean, unicode_default='false') - __tokenized._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 34, 14) - __tokenized._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 34, 14) - + __tokenized = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "tokenized"), + "tokenized", + "__urnvpromediasearch2012_CTD_ANON_tokenized", + pyxb.binding.datatypes.boolean, + unicode_default="false", + ) + __tokenized._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 34, 14 + ) + __tokenized._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 34, 14 + ) + tokenized = property(__tokenized.value, __tokenized.set, None, None) - _ElementMap.update({ - - }) - _AttributeMap.update({ - __type.name() : __type, - __owner.name() : __owner, - __tokenized.name() : __tokenized - }) + _ElementMap.update({}) + _AttributeMap.update({__type.name(): __type, __owner.name(): __owner, __tokenized.name(): __tokenized}) + + _module_typeBindings.CTD_ANON = CTD_ANON # Complex type {urn:vpro:media:search:2012}relationFormType with content type SIMPLE -class relationFormType (pyxb.binding.basis.complexTypeDefinition): +class relationFormType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:search:2012}relationFormType with content type SIMPLE""" + _TypeDefinition = pyxb.binding.datatypes.string _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_SIMPLE _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'relationFormType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 146, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "relationFormType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 146, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.string - + # Attribute type uses Python identifier type - __type = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'type'), 'type', '__urnvpromediasearch2012_relationFormType_type', pyxb.binding.datatypes.string) - __type._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 149, 8) - __type._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 149, 8) - + __type = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "type"), + "type", + "__urnvpromediasearch2012_relationFormType_type", + pyxb.binding.datatypes.string, + ) + __type._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 149, 8 + ) + __type._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 149, 8 + ) + type = property(__type.value, __type.set, None, None) - # Attribute broadcaster uses Python identifier broadcaster - __broadcaster = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'broadcaster'), 'broadcaster', '__urnvpromediasearch2012_relationFormType_broadcaster', _ImportedBinding_npoapi_xml_media.organizationIdType) - __broadcaster._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 150, 8) - __broadcaster._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 150, 8) - + __broadcaster = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "broadcaster"), + "broadcaster", + "__urnvpromediasearch2012_relationFormType_broadcaster", + _ImportedBinding_npoapi_xml_media.organizationIdType, + ) + __broadcaster._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 150, 8 + ) + __broadcaster._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 150, 8 + ) + broadcaster = property(__broadcaster.value, __broadcaster.set, None, None) - # Attribute uriRef uses Python identifier uriRef - __uriRef = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'uriRef'), 'uriRef', '__urnvpromediasearch2012_relationFormType_uriRef', pyxb.binding.datatypes.string) - __uriRef._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 151, 8) - __uriRef._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 151, 8) - + __uriRef = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "uriRef"), + "uriRef", + "__urnvpromediasearch2012_relationFormType_uriRef", + pyxb.binding.datatypes.string, + ) + __uriRef._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 151, 8 + ) + __uriRef._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 151, 8 + ) + uriRef = property(__uriRef.value, __uriRef.set, None, None) - _ElementMap.update({ - - }) - _AttributeMap.update({ - __type.name() : __type, - __broadcaster.name() : __broadcaster, - __uriRef.name() : __uriRef - }) + _ElementMap.update({}) + _AttributeMap.update({__type.name(): __type, __broadcaster.name(): __broadcaster, __uriRef.name(): __uriRef}) + + _module_typeBindings.relationFormType = relationFormType -Namespace.addCategoryObject('typeBinding', 'relationFormType', relationFormType) +Namespace.addCategoryObject("typeBinding", "relationFormType", relationFormType) # Complex type {urn:vpro:media:search:2012}mediaListResultType with content type ELEMENT_ONLY -class mediaListResultType (pyxb.binding.basis.complexTypeDefinition): +class mediaListResultType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:search:2012}mediaListResultType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'mediaListResultType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 187, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "mediaListResultType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 187, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:search:2012}item uses Python identifier item - __item = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'item'), 'item', '__urnvpromediasearch2012_mediaListResultType_urnvpromediasearch2012item', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 189, 6), ) + __item = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "item"), + "item", + "__urnvpromediasearch2012_mediaListResultType_urnvpromediasearch2012item", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 189, 6), + ) - item = property(__item.value, __item.set, None, None) - # Attribute totalCount uses Python identifier totalCount - __totalCount = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'totalCount'), 'totalCount', '__urnvpromediasearch2012_mediaListResultType_totalCount', pyxb.binding.datatypes.long) - __totalCount._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 191, 4) - __totalCount._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 191, 4) - + __totalCount = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "totalCount"), + "totalCount", + "__urnvpromediasearch2012_mediaListResultType_totalCount", + pyxb.binding.datatypes.long, + ) + __totalCount._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 191, 4 + ) + __totalCount._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 191, 4 + ) + totalCount = property(__totalCount.value, __totalCount.set, None, None) - # Attribute offset uses Python identifier offset - __offset = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'offset'), 'offset', '__urnvpromediasearch2012_mediaListResultType_offset', pyxb.binding.datatypes.long) - __offset._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 192, 4) - __offset._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 192, 4) - + __offset = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "offset"), + "offset", + "__urnvpromediasearch2012_mediaListResultType_offset", + pyxb.binding.datatypes.long, + ) + __offset._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 192, 4 + ) + __offset._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 192, 4 + ) + offset = property(__offset.value, __offset.set, None, None) - # Attribute max uses Python identifier max - __max = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'max'), 'max', '__urnvpromediasearch2012_mediaListResultType_max', pyxb.binding.datatypes.integer) - __max._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 193, 4) - __max._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 193, 4) - + __max = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "max"), + "max", + "__urnvpromediasearch2012_mediaListResultType_max", + pyxb.binding.datatypes.integer, + ) + __max._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 193, 4 + ) + __max._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 193, 4 + ) + max = property(__max.value, __max.set, None, None) - # Attribute size uses Python identifier size - __size = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'size'), 'size', '__urnvpromediasearch2012_mediaListResultType_size', pyxb.binding.datatypes.integer) - __size._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 194, 4) - __size._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 194, 4) - + __size = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "size"), + "size", + "__urnvpromediasearch2012_mediaListResultType_size", + pyxb.binding.datatypes.integer, + ) + __size._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 194, 4 + ) + __size._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 194, 4 + ) + size = property(__size.value, __size.set, None, None) - # Attribute sort uses Python identifier sort - __sort = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'sort'), 'sort', '__urnvpromediasearch2012_mediaListResultType_sort', pyxb.binding.datatypes.string) - __sort._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 195, 4) - __sort._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 195, 4) - + __sort = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "sort"), + "sort", + "__urnvpromediasearch2012_mediaListResultType_sort", + pyxb.binding.datatypes.string, + ) + __sort._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 195, 4 + ) + __sort._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 195, 4 + ) + sort = property(__sort.value, __sort.set, None, None) - # Attribute order uses Python identifier order - __order = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'order'), 'order', '__urnvpromediasearch2012_mediaListResultType_order', _module_typeBindings.STD_ANON_3) - __order._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 196, 4) - __order._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 196, 4) - + __order = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "order"), + "order", + "__urnvpromediasearch2012_mediaListResultType_order", + _module_typeBindings.STD_ANON_3, + ) + __order._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 196, 4 + ) + __order._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 196, 4 + ) + order = property(__order.value, __order.set, None, None) - _ElementMap.update({ - __item.name() : __item - }) - _AttributeMap.update({ - __totalCount.name() : __totalCount, - __offset.name() : __offset, - __max.name() : __max, - __size.name() : __size, - __sort.name() : __sort, - __order.name() : __order - }) + _ElementMap.update({__item.name(): __item}) + _AttributeMap.update( + { + __totalCount.name(): __totalCount, + __offset.name(): __offset, + __max.name(): __max, + __size.name(): __size, + __sort.name(): __sort, + __order.name(): __order, + } + ) + + _module_typeBindings.mediaListResultType = mediaListResultType -Namespace.addCategoryObject('typeBinding', 'mediaListResultType', mediaListResultType) +Namespace.addCategoryObject("typeBinding", "mediaListResultType", mediaListResultType) # Complex type {urn:vpro:media:search:2012}publishableListItem with content type EMPTY -class publishableListItem (pyxb.binding.basis.complexTypeDefinition): +class publishableListItem(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:search:2012}publishableListItem with content type EMPTY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_EMPTY _Abstract = True - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'publishableListItem') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 244, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "publishableListItem") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 244, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Attribute id uses Python identifier id - __id = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'id'), 'id', '__urnvpromediasearch2012_publishableListItem_id', pyxb.binding.datatypes.long) - __id._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 246, 4) - __id._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 246, 4) - + __id = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "id"), + "id", + "__urnvpromediasearch2012_publishableListItem_id", + pyxb.binding.datatypes.long, + ) + __id._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 246, 4 + ) + __id._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 246, 4 + ) + id = property(__id.value, __id.set, None, None) - # Attribute urn uses Python identifier urn - __urn = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'urn'), 'urn', '__urnvpromediasearch2012_publishableListItem_urn', pyxb.binding.datatypes.string) - __urn._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 247, 4) - __urn._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 247, 4) - + __urn = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "urn"), + "urn", + "__urnvpromediasearch2012_publishableListItem_urn", + pyxb.binding.datatypes.string, + ) + __urn._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 247, 4 + ) + __urn._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 247, 4 + ) + urn = property(__urn.value, __urn.set, None, None) - # Attribute workflow uses Python identifier workflow - __workflow = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'workflow'), 'workflow', '__urnvpromediasearch2012_publishableListItem_workflow', _ImportedBinding_npoapi_xml_shared.workflowEnumType) - __workflow._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 248, 4) - __workflow._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 248, 4) - + __workflow = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "workflow"), + "workflow", + "__urnvpromediasearch2012_publishableListItem_workflow", + _ImportedBinding_npoapi_xml_shared.workflowEnumType, + ) + __workflow._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 248, 4 + ) + __workflow._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 248, 4 + ) + workflow = property(__workflow.value, __workflow.set, None, None) - # Attribute deleted uses Python identifier deleted - __deleted = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'deleted'), 'deleted', '__urnvpromediasearch2012_publishableListItem_deleted', pyxb.binding.datatypes.boolean) - __deleted._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 249, 4) - __deleted._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 249, 4) - + __deleted = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "deleted"), + "deleted", + "__urnvpromediasearch2012_publishableListItem_deleted", + pyxb.binding.datatypes.boolean, + ) + __deleted._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 249, 4 + ) + __deleted._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 249, 4 + ) + deleted = property(__deleted.value, __deleted.set, None, None) - _ElementMap.update({ - - }) - _AttributeMap.update({ - __id.name() : __id, - __urn.name() : __urn, - __workflow.name() : __workflow, - __deleted.name() : __deleted - }) + _ElementMap.update({}) + _AttributeMap.update( + {__id.name(): __id, __urn.name(): __urn, __workflow.name(): __workflow, __deleted.name(): __deleted} + ) + + _module_typeBindings.publishableListItem = publishableListItem -Namespace.addCategoryObject('typeBinding', 'publishableListItem', publishableListItem) +Namespace.addCategoryObject("typeBinding", "publishableListItem", publishableListItem) # Complex type {urn:vpro:media:search:2012}mediaListItem with content type ELEMENT_ONLY -class mediaListItem (publishableListItem): +class mediaListItem(publishableListItem): """Complex type {urn:vpro:media:search:2012}mediaListItem with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'mediaListItem') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 207, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "mediaListItem") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 207, 2) _ElementMap = publishableListItem._ElementMap.copy() _AttributeMap = publishableListItem._AttributeMap.copy() # Base type is publishableListItem - + # Element {urn:vpro:media:search:2012}broadcaster uses Python identifier broadcaster - __broadcaster = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'broadcaster'), 'broadcaster', '__urnvpromediasearch2012_mediaListItem_urnvpromediasearch2012broadcaster', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 211, 10), ) + __broadcaster = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "broadcaster"), + "broadcaster", + "__urnvpromediasearch2012_mediaListItem_urnvpromediasearch2012broadcaster", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 211, 10), + ) - broadcaster = property(__broadcaster.value, __broadcaster.set, None, None) - # Element {urn:vpro:media:search:2012}title uses Python identifier title - __title = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'title'), 'title', '__urnvpromediasearch2012_mediaListItem_urnvpromediasearch2012title', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 212, 10), ) + __title = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "title"), + "title", + "__urnvpromediasearch2012_mediaListItem_urnvpromediasearch2012title", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 212, 10), + ) - title = property(__title.value, __title.set, None, None) - # Element {urn:vpro:media:search:2012}subTitle uses Python identifier subTitle - __subTitle = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'subTitle'), 'subTitle', '__urnvpromediasearch2012_mediaListItem_urnvpromediasearch2012subTitle', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 213, 10), ) + __subTitle = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "subTitle"), + "subTitle", + "__urnvpromediasearch2012_mediaListItem_urnvpromediasearch2012subTitle", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 213, 10), + ) - subTitle = property(__subTitle.value, __subTitle.set, None, None) - # Element {urn:vpro:media:search:2012}description uses Python identifier description - __description = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'description'), 'description', '__urnvpromediasearch2012_mediaListItem_urnvpromediasearch2012description', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 214, 10), ) + __description = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "description"), + "description", + "__urnvpromediasearch2012_mediaListItem_urnvpromediasearch2012description", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 214, 10), + ) - description = property(__description.value, __description.set, None, None) - # Element {urn:vpro:media:search:2012}creationDate uses Python identifier creationDate - __creationDate = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'creationDate'), 'creationDate', '__urnvpromediasearch2012_mediaListItem_urnvpromediasearch2012creationDate', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 215, 10), ) + __creationDate = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "creationDate"), + "creationDate", + "__urnvpromediasearch2012_mediaListItem_urnvpromediasearch2012creationDate", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 215, 10), + ) - creationDate = property(__creationDate.value, __creationDate.set, None, None) - # Element {urn:vpro:media:search:2012}lastModified uses Python identifier lastModified - __lastModified = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'lastModified'), 'lastModified', '__urnvpromediasearch2012_mediaListItem_urnvpromediasearch2012lastModified', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 216, 10), ) + __lastModified = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "lastModified"), + "lastModified", + "__urnvpromediasearch2012_mediaListItem_urnvpromediasearch2012lastModified", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 216, 10), + ) - lastModified = property(__lastModified.value, __lastModified.set, None, None) - # Element {urn:vpro:media:search:2012}createdBy uses Python identifier createdBy - __createdBy = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'createdBy'), 'createdBy', '__urnvpromediasearch2012_mediaListItem_urnvpromediasearch2012createdBy', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 217, 10), ) + __createdBy = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "createdBy"), + "createdBy", + "__urnvpromediasearch2012_mediaListItem_urnvpromediasearch2012createdBy", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 217, 10), + ) - createdBy = property(__createdBy.value, __createdBy.set, None, None) - # Element {urn:vpro:media:search:2012}lastModifiedBy uses Python identifier lastModifiedBy - __lastModifiedBy = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'lastModifiedBy'), 'lastModifiedBy', '__urnvpromediasearch2012_mediaListItem_urnvpromediasearch2012lastModifiedBy', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 218, 10), ) + __lastModifiedBy = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "lastModifiedBy"), + "lastModifiedBy", + "__urnvpromediasearch2012_mediaListItem_urnvpromediasearch2012lastModifiedBy", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 218, 10), + ) - lastModifiedBy = property(__lastModifiedBy.value, __lastModifiedBy.set, None, None) - # Element {urn:vpro:media:search:2012}sortDate uses Python identifier sortDate - __sortDate = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'sortDate'), 'sortDate', '__urnvpromediasearch2012_mediaListItem_urnvpromediasearch2012sortDate', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 219, 10), ) + __sortDate = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "sortDate"), + "sortDate", + "__urnvpromediasearch2012_mediaListItem_urnvpromediasearch2012sortDate", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 219, 10), + ) - sortDate = property(__sortDate.value, __sortDate.set, None, None) - # Element {urn:vpro:media:search:2012}type uses Python identifier type - __type = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'type'), 'type', '__urnvpromediasearch2012_mediaListItem_urnvpromediasearch2012type', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 220, 10), ) + __type = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "type"), + "type", + "__urnvpromediasearch2012_mediaListItem_urnvpromediasearch2012type", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 220, 10), + ) - type = property(__type.value, __type.set, None, None) - # Element {urn:vpro:media:search:2012}publishStart uses Python identifier publishStart - __publishStart = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'publishStart'), 'publishStart', '__urnvpromediasearch2012_mediaListItem_urnvpromediasearch2012publishStart', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 221, 10), ) + __publishStart = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "publishStart"), + "publishStart", + "__urnvpromediasearch2012_mediaListItem_urnvpromediasearch2012publishStart", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 221, 10), + ) - publishStart = property(__publishStart.value, __publishStart.set, None, None) - # Element {urn:vpro:media:search:2012}publishStop uses Python identifier publishStop - __publishStop = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'publishStop'), 'publishStop', '__urnvpromediasearch2012_mediaListItem_urnvpromediasearch2012publishStop', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 222, 10), ) + __publishStop = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "publishStop"), + "publishStop", + "__urnvpromediasearch2012_mediaListItem_urnvpromediasearch2012publishStop", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 222, 10), + ) - publishStop = property(__publishStop.value, __publishStop.set, None, None) - # Element {urn:vpro:media:search:2012}lastPublished uses Python identifier lastPublished - __lastPublished = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'lastPublished'), 'lastPublished', '__urnvpromediasearch2012_mediaListItem_urnvpromediasearch2012lastPublished', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 223, 10), ) + __lastPublished = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "lastPublished"), + "lastPublished", + "__urnvpromediasearch2012_mediaListItem_urnvpromediasearch2012lastPublished", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 223, 10), + ) - lastPublished = property(__lastPublished.value, __lastPublished.set, None, None) - # Element {urn:vpro:media:search:2012}firstScheduleEvent uses Python identifier firstScheduleEvent - __firstScheduleEvent = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'firstScheduleEvent'), 'firstScheduleEvent', '__urnvpromediasearch2012_mediaListItem_urnvpromediasearch2012firstScheduleEvent', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 224, 10), ) + __firstScheduleEvent = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "firstScheduleEvent"), + "firstScheduleEvent", + "__urnvpromediasearch2012_mediaListItem_urnvpromediasearch2012firstScheduleEvent", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 224, 10), + ) - firstScheduleEvent = property(__firstScheduleEvent.value, __firstScheduleEvent.set, None, None) - # Element {urn:vpro:media:search:2012}firstScheduleEventNoRerun uses Python identifier firstScheduleEventNoRerun - __firstScheduleEventNoRerun = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'firstScheduleEventNoRerun'), 'firstScheduleEventNoRerun', '__urnvpromediasearch2012_mediaListItem_urnvpromediasearch2012firstScheduleEventNoRerun', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 225, 10), ) + __firstScheduleEventNoRerun = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "firstScheduleEventNoRerun"), + "firstScheduleEventNoRerun", + "__urnvpromediasearch2012_mediaListItem_urnvpromediasearch2012firstScheduleEventNoRerun", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 225, 10), + ) - firstScheduleEventNoRerun = property(__firstScheduleEventNoRerun.value, __firstScheduleEventNoRerun.set, None, None) - # Element {urn:vpro:media:search:2012}lastScheduleEvent uses Python identifier lastScheduleEvent - __lastScheduleEvent = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'lastScheduleEvent'), 'lastScheduleEvent', '__urnvpromediasearch2012_mediaListItem_urnvpromediasearch2012lastScheduleEvent', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 226, 10), ) + __lastScheduleEvent = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "lastScheduleEvent"), + "lastScheduleEvent", + "__urnvpromediasearch2012_mediaListItem_urnvpromediasearch2012lastScheduleEvent", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 226, 10), + ) - lastScheduleEvent = property(__lastScheduleEvent.value, __lastScheduleEvent.set, None, None) - # Element {urn:vpro:media:search:2012}lastScheduleEventNoRerun uses Python identifier lastScheduleEventNoRerun - __lastScheduleEventNoRerun = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'lastScheduleEventNoRerun'), 'lastScheduleEventNoRerun', '__urnvpromediasearch2012_mediaListItem_urnvpromediasearch2012lastScheduleEventNoRerun', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 227, 10), ) + __lastScheduleEventNoRerun = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "lastScheduleEventNoRerun"), + "lastScheduleEventNoRerun", + "__urnvpromediasearch2012_mediaListItem_urnvpromediasearch2012lastScheduleEventNoRerun", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 227, 10), + ) - lastScheduleEventNoRerun = property(__lastScheduleEventNoRerun.value, __lastScheduleEventNoRerun.set, None, None) - # Element {urn:vpro:media:search:2012}sortDateScheduleEvent uses Python identifier sortDateScheduleEvent - __sortDateScheduleEvent = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'sortDateScheduleEvent'), 'sortDateScheduleEvent', '__urnvpromediasearch2012_mediaListItem_urnvpromediasearch2012sortDateScheduleEvent', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 228, 10), ) + __sortDateScheduleEvent = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "sortDateScheduleEvent"), + "sortDateScheduleEvent", + "__urnvpromediasearch2012_mediaListItem_urnvpromediasearch2012sortDateScheduleEvent", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 228, 10), + ) - sortDateScheduleEvent = property(__sortDateScheduleEvent.value, __sortDateScheduleEvent.set, None, None) - # Element {urn:vpro:media:search:2012}locations uses Python identifier locations - __locations = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'locations'), 'locations', '__urnvpromediasearch2012_mediaListItem_urnvpromediasearch2012locations', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 230, 10), ) + __locations = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "locations"), + "locations", + "__urnvpromediasearch2012_mediaListItem_urnvpromediasearch2012locations", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 230, 10), + ) - locations = property(__locations.value, __locations.set, None, None) - # Element {urn:vpro:media:search:2012}numberOfLocations uses Python identifier numberOfLocations - __numberOfLocations = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'numberOfLocations'), 'numberOfLocations', '__urnvpromediasearch2012_mediaListItem_urnvpromediasearch2012numberOfLocations', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 231, 10), ) + __numberOfLocations = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "numberOfLocations"), + "numberOfLocations", + "__urnvpromediasearch2012_mediaListItem_urnvpromediasearch2012numberOfLocations", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 231, 10), + ) - numberOfLocations = property(__numberOfLocations.value, __numberOfLocations.set, None, None) - # Element {urn:vpro:media:search:2012}tag uses Python identifier tag - __tag = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'tag'), 'tag', '__urnvpromediasearch2012_mediaListItem_urnvpromediasearch2012tag', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 232, 10), ) + __tag = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "tag"), + "tag", + "__urnvpromediasearch2012_mediaListItem_urnvpromediasearch2012tag", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 232, 10), + ) - tag = property(__tag.value, __tag.set, None, None) - # Element {urn:vpro:media:search:2012}image uses Python identifier image - __image = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'image'), 'image', '__urnvpromediasearch2012_mediaListItem_urnvpromediasearch2012image', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 233, 10), ) + __image = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "image"), + "image", + "__urnvpromediasearch2012_mediaListItem_urnvpromediasearch2012image", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 233, 10), + ) - image = property(__image.value, __image.set, None, None) - # Element {urn:vpro:media:search:2012}streamingPlatformStatus uses Python identifier streamingPlatformStatus - __streamingPlatformStatus = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'streamingPlatformStatus'), 'streamingPlatformStatus', '__urnvpromediasearch2012_mediaListItem_urnvpromediasearch2012streamingPlatformStatus', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 234, 10), ) + __streamingPlatformStatus = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "streamingPlatformStatus"), + "streamingPlatformStatus", + "__urnvpromediasearch2012_mediaListItem_urnvpromediasearch2012streamingPlatformStatus", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 234, 10), + ) - streamingPlatformStatus = property(__streamingPlatformStatus.value, __streamingPlatformStatus.set, None, None) - # Attribute mid uses Python identifier mid - __mid = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'mid'), 'mid', '__urnvpromediasearch2012_mediaListItem_mid', pyxb.binding.datatypes.string) - __mid._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 236, 8) - __mid._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 236, 8) - + __mid = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "mid"), + "mid", + "__urnvpromediasearch2012_mediaListItem_mid", + pyxb.binding.datatypes.string, + ) + __mid._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 236, 8 + ) + __mid._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 236, 8 + ) + mid = property(__mid.value, __mid.set, None, None) - # Attribute avType uses Python identifier avType - __avType = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'avType'), 'avType', '__urnvpromediasearch2012_mediaListItem_avType', _ImportedBinding_npoapi_xml_media.avTypeEnum) - __avType._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 237, 8) - __avType._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 237, 8) - + __avType = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "avType"), + "avType", + "__urnvpromediasearch2012_mediaListItem_avType", + _ImportedBinding_npoapi_xml_media.avTypeEnum, + ) + __avType._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 237, 8 + ) + __avType._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 237, 8 + ) + avType = property(__avType.value, __avType.set, None, None) - # Attribute mediaType uses Python identifier mediaType - __mediaType = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'mediaType'), 'mediaType', '__urnvpromediasearch2012_mediaListItem_mediaType', pyxb.binding.datatypes.string) - __mediaType._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 238, 8) - __mediaType._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 238, 8) - + __mediaType = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "mediaType"), + "mediaType", + "__urnvpromediasearch2012_mediaListItem_mediaType", + pyxb.binding.datatypes.string, + ) + __mediaType._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 238, 8 + ) + __mediaType._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 238, 8 + ) + mediaType = property(__mediaType.value, __mediaType.set, None, None) - # Attribute episodesLocked uses Python identifier episodesLocked - __episodesLocked = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'episodesLocked'), 'episodesLocked', '__urnvpromediasearch2012_mediaListItem_episodesLocked', pyxb.binding.datatypes.boolean) - __episodesLocked._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 239, 8) - __episodesLocked._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 239, 8) - + __episodesLocked = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "episodesLocked"), + "episodesLocked", + "__urnvpromediasearch2012_mediaListItem_episodesLocked", + pyxb.binding.datatypes.boolean, + ) + __episodesLocked._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 239, 8 + ) + __episodesLocked._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 239, 8 + ) + episodesLocked = property(__episodesLocked.value, __episodesLocked.set, None, None) - # Attribute id inherited from {urn:vpro:media:search:2012}publishableListItem - + # Attribute urn inherited from {urn:vpro:media:search:2012}publishableListItem - + # Attribute workflow inherited from {urn:vpro:media:search:2012}publishableListItem - + # Attribute deleted inherited from {urn:vpro:media:search:2012}publishableListItem - _ElementMap.update({ - __broadcaster.name() : __broadcaster, - __title.name() : __title, - __subTitle.name() : __subTitle, - __description.name() : __description, - __creationDate.name() : __creationDate, - __lastModified.name() : __lastModified, - __createdBy.name() : __createdBy, - __lastModifiedBy.name() : __lastModifiedBy, - __sortDate.name() : __sortDate, - __type.name() : __type, - __publishStart.name() : __publishStart, - __publishStop.name() : __publishStop, - __lastPublished.name() : __lastPublished, - __firstScheduleEvent.name() : __firstScheduleEvent, - __firstScheduleEventNoRerun.name() : __firstScheduleEventNoRerun, - __lastScheduleEvent.name() : __lastScheduleEvent, - __lastScheduleEventNoRerun.name() : __lastScheduleEventNoRerun, - __sortDateScheduleEvent.name() : __sortDateScheduleEvent, - __locations.name() : __locations, - __numberOfLocations.name() : __numberOfLocations, - __tag.name() : __tag, - __image.name() : __image, - __streamingPlatformStatus.name() : __streamingPlatformStatus - }) - _AttributeMap.update({ - __mid.name() : __mid, - __avType.name() : __avType, - __mediaType.name() : __mediaType, - __episodesLocked.name() : __episodesLocked - }) + _ElementMap.update( + { + __broadcaster.name(): __broadcaster, + __title.name(): __title, + __subTitle.name(): __subTitle, + __description.name(): __description, + __creationDate.name(): __creationDate, + __lastModified.name(): __lastModified, + __createdBy.name(): __createdBy, + __lastModifiedBy.name(): __lastModifiedBy, + __sortDate.name(): __sortDate, + __type.name(): __type, + __publishStart.name(): __publishStart, + __publishStop.name(): __publishStop, + __lastPublished.name(): __lastPublished, + __firstScheduleEvent.name(): __firstScheduleEvent, + __firstScheduleEventNoRerun.name(): __firstScheduleEventNoRerun, + __lastScheduleEvent.name(): __lastScheduleEvent, + __lastScheduleEventNoRerun.name(): __lastScheduleEventNoRerun, + __sortDateScheduleEvent.name(): __sortDateScheduleEvent, + __locations.name(): __locations, + __numberOfLocations.name(): __numberOfLocations, + __tag.name(): __tag, + __image.name(): __image, + __streamingPlatformStatus.name(): __streamingPlatformStatus, + } + ) + _AttributeMap.update( + { + __mid.name(): __mid, + __avType.name(): __avType, + __mediaType.name(): __mediaType, + __episodesLocked.name(): __episodesLocked, + } + ) + + _module_typeBindings.mediaListItem = mediaListItem -Namespace.addCategoryObject('typeBinding', 'mediaListItem', mediaListItem) +Namespace.addCategoryObject("typeBinding", "mediaListItem", mediaListItem) # Complex type {urn:vpro:media:search:2012}imageListItem with content type EMPTY -class imageListItem (publishableListItem): +class imageListItem(publishableListItem): """Complex type {urn:vpro:media:search:2012}imageListItem with content type EMPTY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_EMPTY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'imageListItem') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 252, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "imageListItem") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 252, 2) _ElementMap = publishableListItem._ElementMap.copy() _AttributeMap = publishableListItem._AttributeMap.copy() # Base type is publishableListItem - - # Attribute id inherited from {urn:vpro:media:search:2012}publishableListItem - - # Attribute urn inherited from {urn:vpro:media:search:2012}publishableListItem - - # Attribute workflow inherited from {urn:vpro:media:search:2012}publishableListItem - - # Attribute deleted inherited from {urn:vpro:media:search:2012}publishableListItem - _ElementMap.update({ - - }) - _AttributeMap.update({ - - }) -_module_typeBindings.imageListItem = imageListItem -Namespace.addCategoryObject('typeBinding', 'imageListItem', imageListItem) - - -mediaForm = pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'mediaForm'), mediaFormType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 12, 2)) -Namespace.addCategoryObject('elementBinding', mediaForm.name().localName(), mediaForm) - -list = pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'list'), mediaListResultType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 14, 2)) -Namespace.addCategoryObject('elementBinding', list.name().localName(), list) - - - -mediaFormType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'pager'), mediaPagerType, scope=mediaFormType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 23, 6))) - -mediaFormType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'broadcaster'), pyxb.binding.datatypes.string, scope=mediaFormType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 24, 6))) - -mediaFormType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'portal'), pyxb.binding.datatypes.string, scope=mediaFormType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 25, 6))) - -mediaFormType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'organization'), _ImportedBinding_npoapi_xml_media.organizationIdType, scope=mediaFormType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 26, 6))) - -mediaFormType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'text'), pyxb.binding.datatypes.string, scope=mediaFormType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 27, 6))) - -mediaFormType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'title'), CTD_ANON, scope=mediaFormType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 28, 6))) - -mediaFormType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'type'), _ImportedBinding_npoapi_xml_media.mediaTypeEnum, scope=mediaFormType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 39, 6))) - -mediaFormType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'releaseYear'), pyxb.binding.datatypes.short, scope=mediaFormType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 40, 6))) - -mediaFormType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'relation'), relationFormType, scope=mediaFormType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 41, 6))) - -mediaFormType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'noBroadcast'), pyxb.binding.datatypes.boolean, scope=mediaFormType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 42, 6))) - -mediaFormType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'scheduleEventsCount'), integerRangeType, scope=mediaFormType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 43, 6))) - -mediaFormType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'hasLocations'), pyxb.binding.datatypes.boolean, scope=mediaFormType, documentation="Whether it should only return media object which does have location. Note that the same can be accomplished with 'locationsCount', and this element is considered deprecated.\n ", location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 44, 6))) - -mediaFormType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'locationsCount'), integerRangeType, scope=mediaFormType, documentation='\n Constraint the number of locations.\n ', location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 50, 6))) - -mediaFormType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'noPlaylist'), pyxb.binding.datatypes.boolean, scope=mediaFormType, documentation="\n Whether it should only return media object which are not a a member of any other object.\n Note that the same can be accomplished with 'memberOfCount', and this element is considered deprecated.\n ", location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 57, 6))) - -mediaFormType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'memberOfCount'), integerRangeType, scope=mediaFormType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 65, 6))) - -mediaFormType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'sortRange'), dateRangeType, scope=mediaFormType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 66, 6))) - -mediaFormType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'eventRange'), dateRangeType, scope=mediaFormType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 67, 6))) - -mediaFormType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'scheduleEventRange'), dateRangeType, scope=mediaFormType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 68, 6))) - -mediaFormType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'channel'), _ImportedBinding_npoapi_xml_media.channelEnum, scope=mediaFormType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 69, 6))) - -mediaFormType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'net'), pyxb.binding.datatypes.string, scope=mediaFormType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 70, 6))) - -mediaFormType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'createdBy'), editorSearch, scope=mediaFormType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 71, 6))) - -mediaFormType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'creationRange'), dateRangeType, scope=mediaFormType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 72, 6))) - -mediaFormType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'lastModifiedBy'), editorSearch, scope=mediaFormType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 73, 6))) - -mediaFormType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'lastModifiedRange'), dateRangeType, scope=mediaFormType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 74, 6))) - -mediaFormType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'lastPublishedRange'), dateRangeType, scope=mediaFormType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 75, 6))) - -mediaFormType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'tag'), pyxb.binding.datatypes.string, scope=mediaFormType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 76, 6))) - -mediaFormType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'avType'), _ImportedBinding_npoapi_xml_media.avTypeEnum, scope=mediaFormType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 77, 6))) - -mediaFormType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'notAnEpisode'), pyxb.binding.datatypes.boolean, scope=mediaFormType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 78, 6))) - -mediaFormType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'episodeOfCount'), integerRangeType, scope=mediaFormType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 79, 6))) - -mediaFormType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'noMembers'), pyxb.binding.datatypes.boolean, scope=mediaFormType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 80, 6))) - -mediaFormType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'noCredits'), pyxb.binding.datatypes.boolean, scope=mediaFormType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 81, 6))) -mediaFormType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'imagesWithoutCreditsCount'), integerRangeType, scope=mediaFormType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 82, 6))) - -mediaFormType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'imagesCount'), integerRangeType, scope=mediaFormType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 83, 6))) - -mediaFormType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'findDeleted'), pyxb.binding.datatypes.boolean, scope=mediaFormType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 84, 6))) + # Attribute id inherited from {urn:vpro:media:search:2012}publishableListItem -mediaFormType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'excludedMid'), pyxb.binding.datatypes.string, scope=mediaFormType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 85, 6))) + # Attribute urn inherited from {urn:vpro:media:search:2012}publishableListItem -mediaFormType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'ids'), pyxb.binding.datatypes.string, scope=mediaFormType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 86, 6))) + # Attribute workflow inherited from {urn:vpro:media:search:2012}publishableListItem -mediaFormType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'descendantOf'), pyxb.binding.datatypes.string, scope=mediaFormType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 87, 6))) + # Attribute deleted inherited from {urn:vpro:media:search:2012}publishableListItem + _ElementMap.update({}) + _AttributeMap.update({}) -mediaFormType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'streamingPlatformStatus'), _ImportedBinding_npoapi_xml_media.streamingStatus_, scope=mediaFormType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 88, 6))) -def _BuildAutomaton (): +_module_typeBindings.imageListItem = imageListItem +Namespace.addCategoryObject("typeBinding", "imageListItem", imageListItem) + + +mediaForm = pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "mediaForm"), + mediaFormType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 12, 2), +) +Namespace.addCategoryObject("elementBinding", mediaForm.name().localName(), mediaForm) + +list = pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "list"), + mediaListResultType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 14, 2), +) +Namespace.addCategoryObject("elementBinding", list.name().localName(), list) + + +mediaFormType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "pager"), + mediaPagerType, + scope=mediaFormType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 23, 6), + ) +) + +mediaFormType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "broadcaster"), + pyxb.binding.datatypes.string, + scope=mediaFormType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 24, 6), + ) +) + +mediaFormType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "portal"), + pyxb.binding.datatypes.string, + scope=mediaFormType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 25, 6), + ) +) + +mediaFormType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "organization"), + _ImportedBinding_npoapi_xml_media.organizationIdType, + scope=mediaFormType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 26, 6), + ) +) + +mediaFormType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "text"), + pyxb.binding.datatypes.string, + scope=mediaFormType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 27, 6), + ) +) + +mediaFormType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "title"), + CTD_ANON, + scope=mediaFormType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 28, 6), + ) +) + +mediaFormType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "type"), + _ImportedBinding_npoapi_xml_media.mediaTypeEnum, + scope=mediaFormType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 39, 6), + ) +) + +mediaFormType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "releaseYear"), + pyxb.binding.datatypes.short, + scope=mediaFormType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 40, 6), + ) +) + +mediaFormType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "relation"), + relationFormType, + scope=mediaFormType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 41, 6), + ) +) + +mediaFormType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "noBroadcast"), + pyxb.binding.datatypes.boolean, + scope=mediaFormType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 42, 6), + ) +) + +mediaFormType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "scheduleEventsCount"), + integerRangeType, + scope=mediaFormType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 43, 6), + ) +) + +mediaFormType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "hasLocations"), + pyxb.binding.datatypes.boolean, + scope=mediaFormType, + documentation="Whether it should only return media object which does have location. Note that the same can be accomplished with 'locationsCount', and this element is considered deprecated.\n ", + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 44, 6), + ) +) + +mediaFormType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "locationsCount"), + integerRangeType, + scope=mediaFormType, + documentation="\n Constraint the number of locations.\n ", + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 50, 6), + ) +) + +mediaFormType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "noPlaylist"), + pyxb.binding.datatypes.boolean, + scope=mediaFormType, + documentation="\n Whether it should only return media object which are not a a member of any other object.\n Note that the same can be accomplished with 'memberOfCount', and this element is considered deprecated.\n ", + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 57, 6), + ) +) + +mediaFormType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "memberOfCount"), + integerRangeType, + scope=mediaFormType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 65, 6), + ) +) + +mediaFormType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "sortRange"), + dateRangeType, + scope=mediaFormType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 66, 6), + ) +) + +mediaFormType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "eventRange"), + dateRangeType, + scope=mediaFormType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 67, 6), + ) +) + +mediaFormType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "scheduleEventRange"), + dateRangeType, + scope=mediaFormType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 68, 6), + ) +) + +mediaFormType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "channel"), + _ImportedBinding_npoapi_xml_media.channelEnum, + scope=mediaFormType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 69, 6), + ) +) + +mediaFormType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "net"), + pyxb.binding.datatypes.string, + scope=mediaFormType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 70, 6), + ) +) + +mediaFormType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "createdBy"), + editorSearch, + scope=mediaFormType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 71, 6), + ) +) + +mediaFormType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "creationRange"), + dateRangeType, + scope=mediaFormType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 72, 6), + ) +) + +mediaFormType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "lastModifiedBy"), + editorSearch, + scope=mediaFormType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 73, 6), + ) +) + +mediaFormType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "lastModifiedRange"), + dateRangeType, + scope=mediaFormType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 74, 6), + ) +) + +mediaFormType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "lastPublishedRange"), + dateRangeType, + scope=mediaFormType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 75, 6), + ) +) + +mediaFormType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "tag"), + pyxb.binding.datatypes.string, + scope=mediaFormType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 76, 6), + ) +) + +mediaFormType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "avType"), + _ImportedBinding_npoapi_xml_media.avTypeEnum, + scope=mediaFormType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 77, 6), + ) +) + +mediaFormType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "notAnEpisode"), + pyxb.binding.datatypes.boolean, + scope=mediaFormType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 78, 6), + ) +) + +mediaFormType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "episodeOfCount"), + integerRangeType, + scope=mediaFormType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 79, 6), + ) +) + +mediaFormType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "noMembers"), + pyxb.binding.datatypes.boolean, + scope=mediaFormType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 80, 6), + ) +) + +mediaFormType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "noCredits"), + pyxb.binding.datatypes.boolean, + scope=mediaFormType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 81, 6), + ) +) + +mediaFormType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "imagesWithoutCreditsCount"), + integerRangeType, + scope=mediaFormType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 82, 6), + ) +) + +mediaFormType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "imagesCount"), + integerRangeType, + scope=mediaFormType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 83, 6), + ) +) + +mediaFormType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "findDeleted"), + pyxb.binding.datatypes.boolean, + scope=mediaFormType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 84, 6), + ) +) + +mediaFormType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "excludedMid"), + pyxb.binding.datatypes.string, + scope=mediaFormType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 85, 6), + ) +) + +mediaFormType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "ids"), + pyxb.binding.datatypes.string, + scope=mediaFormType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 86, 6), + ) +) + +mediaFormType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "descendantOf"), + pyxb.binding.datatypes.string, + scope=mediaFormType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 87, 6), + ) +) + +mediaFormType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "streamingPlatformStatus"), + _ImportedBinding_npoapi_xml_media.streamingStatus_, + scope=mediaFormType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 88, 6), + ) +) + + +def _BuildAutomaton(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton del _BuildAutomaton import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 24, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 24, 6), + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 25, 6)) + cc_1 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 25, 6), + ) counters.add(cc_1) - cc_2 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 26, 6)) + cc_2 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 26, 6), + ) counters.add(cc_2) - cc_3 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 27, 6)) + cc_3 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 27, 6), + ) counters.add(cc_3) - cc_4 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 28, 6)) + cc_4 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 28, 6), + ) counters.add(cc_4) - cc_5 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 39, 6)) + cc_5 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 39, 6), + ) counters.add(cc_5) - cc_6 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 40, 6)) + cc_6 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 40, 6), + ) counters.add(cc_6) - cc_7 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 41, 6)) + cc_7 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 41, 6), + ) counters.add(cc_7) - cc_8 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 42, 6)) + cc_8 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 42, 6), + ) counters.add(cc_8) - cc_9 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 43, 6)) + cc_9 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 43, 6), + ) counters.add(cc_9) - cc_10 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 44, 6)) + cc_10 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 44, 6), + ) counters.add(cc_10) - cc_11 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 50, 6)) + cc_11 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 50, 6), + ) counters.add(cc_11) - cc_12 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 57, 6)) + cc_12 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 57, 6), + ) counters.add(cc_12) - cc_13 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 65, 6)) + cc_13 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 65, 6), + ) counters.add(cc_13) - cc_14 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 66, 6)) + cc_14 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 66, 6), + ) counters.add(cc_14) - cc_15 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 67, 6)) + cc_15 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 67, 6), + ) counters.add(cc_15) - cc_16 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 68, 6)) + cc_16 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 68, 6), + ) counters.add(cc_16) - cc_17 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 69, 6)) + cc_17 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 69, 6), + ) counters.add(cc_17) - cc_18 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 70, 6)) + cc_18 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 70, 6), + ) counters.add(cc_18) - cc_19 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 71, 6)) + cc_19 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 71, 6), + ) counters.add(cc_19) - cc_20 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 72, 6)) + cc_20 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 72, 6), + ) counters.add(cc_20) - cc_21 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 73, 6)) + cc_21 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 73, 6), + ) counters.add(cc_21) - cc_22 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 74, 6)) + cc_22 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 74, 6), + ) counters.add(cc_22) - cc_23 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 75, 6)) + cc_23 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 75, 6), + ) counters.add(cc_23) - cc_24 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 76, 6)) + cc_24 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 76, 6), + ) counters.add(cc_24) - cc_25 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 77, 6)) + cc_25 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 77, 6), + ) counters.add(cc_25) - cc_26 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 78, 6)) + cc_26 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 78, 6), + ) counters.add(cc_26) - cc_27 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 79, 6)) + cc_27 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 79, 6), + ) counters.add(cc_27) - cc_28 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 80, 6)) + cc_28 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 80, 6), + ) counters.add(cc_28) - cc_29 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 81, 6)) + cc_29 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 81, 6), + ) counters.add(cc_29) - cc_30 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 82, 6)) + cc_30 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 82, 6), + ) counters.add(cc_30) - cc_31 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 83, 6)) + cc_31 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 83, 6), + ) counters.add(cc_31) - cc_32 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 84, 6)) + cc_32 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 84, 6), + ) counters.add(cc_32) - cc_33 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 85, 6)) + cc_33 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 85, 6), + ) counters.add(cc_33) - cc_34 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 86, 6)) + cc_34 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 86, 6), + ) counters.add(cc_34) - cc_35 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 87, 6)) + cc_35 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 87, 6), + ) counters.add(cc_35) - cc_36 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 88, 6)) + cc_36 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 88, 6), + ) counters.add(cc_36) states = [] final_update = set() - symbol = pyxb.binding.content.ElementUse(mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'pager')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 23, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "pager")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 23, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'broadcaster')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 24, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "broadcaster")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 24, 6), + ) st_1 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_1) final_update = set() final_update.add(fac.UpdateInstruction(cc_1, False)) - symbol = pyxb.binding.content.ElementUse(mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'portal')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 25, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "portal")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 25, 6), + ) st_2 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_2) final_update = set() final_update.add(fac.UpdateInstruction(cc_2, False)) - symbol = pyxb.binding.content.ElementUse(mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'organization')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 26, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "organization")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 26, 6), + ) st_3 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_3) final_update = set() final_update.add(fac.UpdateInstruction(cc_3, False)) - symbol = pyxb.binding.content.ElementUse(mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'text')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 27, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "text")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 27, 6), + ) st_4 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_4) final_update = set() final_update.add(fac.UpdateInstruction(cc_4, False)) - symbol = pyxb.binding.content.ElementUse(mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'title')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 28, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "title")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 28, 6), + ) st_5 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_5) final_update = set() final_update.add(fac.UpdateInstruction(cc_5, False)) - symbol = pyxb.binding.content.ElementUse(mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'type')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 39, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "type")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 39, 6), + ) st_6 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_6) final_update = set() final_update.add(fac.UpdateInstruction(cc_6, False)) - symbol = pyxb.binding.content.ElementUse(mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'releaseYear')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 40, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "releaseYear")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 40, 6), + ) st_7 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_7) final_update = set() final_update.add(fac.UpdateInstruction(cc_7, False)) - symbol = pyxb.binding.content.ElementUse(mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'relation')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 41, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "relation")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 41, 6), + ) st_8 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_8) final_update = set() final_update.add(fac.UpdateInstruction(cc_8, False)) - symbol = pyxb.binding.content.ElementUse(mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'noBroadcast')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 42, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "noBroadcast")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 42, 6), + ) st_9 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_9) final_update = set() final_update.add(fac.UpdateInstruction(cc_9, False)) - symbol = pyxb.binding.content.ElementUse(mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'scheduleEventsCount')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 43, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "scheduleEventsCount")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 43, 6), + ) st_10 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_10) final_update = set() final_update.add(fac.UpdateInstruction(cc_10, False)) - symbol = pyxb.binding.content.ElementUse(mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'hasLocations')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 44, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "hasLocations")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 44, 6), + ) st_11 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_11) final_update = set() final_update.add(fac.UpdateInstruction(cc_11, False)) - symbol = pyxb.binding.content.ElementUse(mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'locationsCount')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 50, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "locationsCount")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 50, 6), + ) st_12 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_12) final_update = set() final_update.add(fac.UpdateInstruction(cc_12, False)) - symbol = pyxb.binding.content.ElementUse(mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'noPlaylist')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 57, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "noPlaylist")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 57, 6), + ) st_13 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_13) final_update = set() final_update.add(fac.UpdateInstruction(cc_13, False)) - symbol = pyxb.binding.content.ElementUse(mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'memberOfCount')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 65, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "memberOfCount")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 65, 6), + ) st_14 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_14) final_update = set() final_update.add(fac.UpdateInstruction(cc_14, False)) - symbol = pyxb.binding.content.ElementUse(mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'sortRange')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 66, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "sortRange")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 66, 6), + ) st_15 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_15) final_update = set() final_update.add(fac.UpdateInstruction(cc_15, False)) - symbol = pyxb.binding.content.ElementUse(mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'eventRange')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 67, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "eventRange")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 67, 6), + ) st_16 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_16) final_update = set() final_update.add(fac.UpdateInstruction(cc_16, False)) - symbol = pyxb.binding.content.ElementUse(mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'scheduleEventRange')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 68, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "scheduleEventRange")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 68, 6), + ) st_17 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_17) final_update = set() final_update.add(fac.UpdateInstruction(cc_17, False)) - symbol = pyxb.binding.content.ElementUse(mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'channel')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 69, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "channel")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 69, 6), + ) st_18 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_18) final_update = set() final_update.add(fac.UpdateInstruction(cc_18, False)) - symbol = pyxb.binding.content.ElementUse(mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'net')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 70, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "net")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 70, 6), + ) st_19 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_19) final_update = set() final_update.add(fac.UpdateInstruction(cc_19, False)) - symbol = pyxb.binding.content.ElementUse(mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'createdBy')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 71, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "createdBy")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 71, 6), + ) st_20 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_20) final_update = set() final_update.add(fac.UpdateInstruction(cc_20, False)) - symbol = pyxb.binding.content.ElementUse(mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'creationRange')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 72, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "creationRange")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 72, 6), + ) st_21 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_21) final_update = set() final_update.add(fac.UpdateInstruction(cc_21, False)) - symbol = pyxb.binding.content.ElementUse(mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'lastModifiedBy')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 73, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "lastModifiedBy")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 73, 6), + ) st_22 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_22) final_update = set() final_update.add(fac.UpdateInstruction(cc_22, False)) - symbol = pyxb.binding.content.ElementUse(mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'lastModifiedRange')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 74, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "lastModifiedRange")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 74, 6), + ) st_23 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_23) final_update = set() final_update.add(fac.UpdateInstruction(cc_23, False)) - symbol = pyxb.binding.content.ElementUse(mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'lastPublishedRange')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 75, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "lastPublishedRange")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 75, 6), + ) st_24 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_24) final_update = set() final_update.add(fac.UpdateInstruction(cc_24, False)) - symbol = pyxb.binding.content.ElementUse(mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'tag')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 76, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "tag")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 76, 6), + ) st_25 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_25) final_update = set() final_update.add(fac.UpdateInstruction(cc_25, False)) - symbol = pyxb.binding.content.ElementUse(mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'avType')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 77, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "avType")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 77, 6), + ) st_26 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_26) final_update = set() final_update.add(fac.UpdateInstruction(cc_26, False)) - symbol = pyxb.binding.content.ElementUse(mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'notAnEpisode')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 78, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "notAnEpisode")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 78, 6), + ) st_27 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_27) final_update = set() final_update.add(fac.UpdateInstruction(cc_27, False)) - symbol = pyxb.binding.content.ElementUse(mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'episodeOfCount')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 79, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "episodeOfCount")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 79, 6), + ) st_28 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_28) final_update = set() final_update.add(fac.UpdateInstruction(cc_28, False)) - symbol = pyxb.binding.content.ElementUse(mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'noMembers')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 80, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "noMembers")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 80, 6), + ) st_29 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_29) final_update = set() final_update.add(fac.UpdateInstruction(cc_29, False)) - symbol = pyxb.binding.content.ElementUse(mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'noCredits')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 81, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "noCredits")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 81, 6), + ) st_30 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_30) final_update = set() final_update.add(fac.UpdateInstruction(cc_30, False)) - symbol = pyxb.binding.content.ElementUse(mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'imagesWithoutCreditsCount')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 82, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "imagesWithoutCreditsCount")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 82, 6), + ) st_31 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_31) final_update = set() final_update.add(fac.UpdateInstruction(cc_31, False)) - symbol = pyxb.binding.content.ElementUse(mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'imagesCount')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 83, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "imagesCount")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 83, 6), + ) st_32 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_32) final_update = set() final_update.add(fac.UpdateInstruction(cc_32, False)) - symbol = pyxb.binding.content.ElementUse(mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'findDeleted')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 84, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "findDeleted")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 84, 6), + ) st_33 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_33) final_update = set() final_update.add(fac.UpdateInstruction(cc_33, False)) - symbol = pyxb.binding.content.ElementUse(mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'excludedMid')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 85, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "excludedMid")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 85, 6), + ) st_34 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_34) final_update = set() final_update.add(fac.UpdateInstruction(cc_34, False)) - symbol = pyxb.binding.content.ElementUse(mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'ids')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 86, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "ids")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 86, 6), + ) st_35 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_35) final_update = set() final_update.add(fac.UpdateInstruction(cc_35, False)) - symbol = pyxb.binding.content.ElementUse(mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'descendantOf')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 87, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "descendantOf")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 87, 6), + ) st_36 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_36) final_update = set() final_update.add(fac.UpdateInstruction(cc_36, False)) - symbol = pyxb.binding.content.ElementUse(mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'streamingPlatformStatus')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 88, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaFormType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "streamingPlatformStatus")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 88, 6), + ) st_37 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_37) transitions = [] - transitions.append(fac.Transition(st_1, [ - ])) - transitions.append(fac.Transition(st_2, [ - ])) - transitions.append(fac.Transition(st_3, [ - ])) - transitions.append(fac.Transition(st_4, [ - ])) - transitions.append(fac.Transition(st_5, [ - ])) - transitions.append(fac.Transition(st_6, [ - ])) - transitions.append(fac.Transition(st_7, [ - ])) - transitions.append(fac.Transition(st_8, [ - ])) - transitions.append(fac.Transition(st_9, [ - ])) - transitions.append(fac.Transition(st_10, [ - ])) - transitions.append(fac.Transition(st_11, [ - ])) - transitions.append(fac.Transition(st_12, [ - ])) - transitions.append(fac.Transition(st_13, [ - ])) - transitions.append(fac.Transition(st_14, [ - ])) - transitions.append(fac.Transition(st_15, [ - ])) - transitions.append(fac.Transition(st_16, [ - ])) - transitions.append(fac.Transition(st_17, [ - ])) - transitions.append(fac.Transition(st_18, [ - ])) - transitions.append(fac.Transition(st_19, [ - ])) - transitions.append(fac.Transition(st_20, [ - ])) - transitions.append(fac.Transition(st_21, [ - ])) - transitions.append(fac.Transition(st_22, [ - ])) - transitions.append(fac.Transition(st_23, [ - ])) - transitions.append(fac.Transition(st_24, [ - ])) - transitions.append(fac.Transition(st_25, [ - ])) - transitions.append(fac.Transition(st_26, [ - ])) - transitions.append(fac.Transition(st_27, [ - ])) - transitions.append(fac.Transition(st_28, [ - ])) - transitions.append(fac.Transition(st_29, [ - ])) - transitions.append(fac.Transition(st_30, [ - ])) - transitions.append(fac.Transition(st_31, [ - ])) - transitions.append(fac.Transition(st_32, [ - ])) - transitions.append(fac.Transition(st_33, [ - ])) - transitions.append(fac.Transition(st_34, [ - ])) - transitions.append(fac.Transition(st_35, [ - ])) - transitions.append(fac.Transition(st_36, [ - ])) - transitions.append(fac.Transition(st_37, [ - ])) + transitions.append(fac.Transition(st_1, [])) + transitions.append(fac.Transition(st_2, [])) + transitions.append(fac.Transition(st_3, [])) + transitions.append(fac.Transition(st_4, [])) + transitions.append(fac.Transition(st_5, [])) + transitions.append(fac.Transition(st_6, [])) + transitions.append(fac.Transition(st_7, [])) + transitions.append(fac.Transition(st_8, [])) + transitions.append(fac.Transition(st_9, [])) + transitions.append(fac.Transition(st_10, [])) + transitions.append(fac.Transition(st_11, [])) + transitions.append(fac.Transition(st_12, [])) + transitions.append(fac.Transition(st_13, [])) + transitions.append(fac.Transition(st_14, [])) + transitions.append(fac.Transition(st_15, [])) + transitions.append(fac.Transition(st_16, [])) + transitions.append(fac.Transition(st_17, [])) + transitions.append(fac.Transition(st_18, [])) + transitions.append(fac.Transition(st_19, [])) + transitions.append(fac.Transition(st_20, [])) + transitions.append(fac.Transition(st_21, [])) + transitions.append(fac.Transition(st_22, [])) + transitions.append(fac.Transition(st_23, [])) + transitions.append(fac.Transition(st_24, [])) + transitions.append(fac.Transition(st_25, [])) + transitions.append(fac.Transition(st_26, [])) + transitions.append(fac.Transition(st_27, [])) + transitions.append(fac.Transition(st_28, [])) + transitions.append(fac.Transition(st_29, [])) + transitions.append(fac.Transition(st_30, [])) + transitions.append(fac.Transition(st_31, [])) + transitions.append(fac.Transition(st_32, [])) + transitions.append(fac.Transition(st_33, [])) + transitions.append(fac.Transition(st_34, [])) + transitions.append(fac.Transition(st_35, [])) + transitions.append(fac.Transition(st_36, [])) + transitions.append(fac.Transition(st_37, [])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_0, False)])) st_1._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_1, True) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_1, False) ])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_1, True)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_1, False)])) st_2._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_2, True) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_2, False) ])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_2, True)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_2, False)])) st_3._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_3, True) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_3, False) ])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_3, True)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_3, False)])) st_4._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_4, True) ])) - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_4, False) ])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_4, True)])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_4, False)])) st_5._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_5, True) ])) - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_5, False) ])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_5, True)])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_5, False)])) st_6._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_6, True) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_6, False) ])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_6, True)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_6, False)])) st_7._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_7, True) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_7, False) ])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_7, True)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_7, False)])) st_8._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_8, True) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_8, False) ])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_8, True)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_8, False)])) st_9._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_9, True) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_9, False) ])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_9, True)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_9, False)])) st_10._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_10, True) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_10, False) ])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_10, True)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_10, False)])) st_11._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_11, True) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_11, False) ])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_11, True)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_11, False)])) st_12._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_12, True) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_12, False) ])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_12, True)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_12, False)])) st_13._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_13, True) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_13, False) ])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_13, True)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_13, False)])) st_14._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_14, True) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_14, False) ])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_14, True)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_14, False)])) st_15._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_15, True) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_15, False) ])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_15, True)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_15, False)])) st_16._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_16, True) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_16, False) ])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_16, True)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_16, False)])) st_17._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_17, True) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_17, False) ])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_17, True)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_17, False)])) st_18._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_18, True) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_18, False) ])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_18, True)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_18, False)])) st_19._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_19, True) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_19, False) ])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_19, True)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_19, False)])) st_20._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_20, True) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_20, False) ])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_20, True)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_20, False)])) st_21._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_21, True) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_21, False) ])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_21, True)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_21, False)])) st_22._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_22, True) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_22, False) ])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_22, True)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_22, False)])) st_23._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_23, True) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_23, False) ])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_23, True)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_23, False)])) st_24._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_24, True) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_24, False) ])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_24, True)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_24, False)])) st_25._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_25, True) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_25, False) ])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_25, True)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_25, False)])) st_26._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_26, True) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_26, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_26, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_26, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_26, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_26, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_26, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_26, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_26, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_26, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_26, False) ])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_26, True)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_26, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_26, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_26, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_26, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_26, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_26, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_26, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_26, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_26, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_26, False)])) st_27._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_27, True) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_27, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_27, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_27, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_27, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_27, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_27, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_27, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_27, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_27, False) ])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_27, True)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_27, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_27, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_27, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_27, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_27, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_27, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_27, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_27, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_27, False)])) st_28._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_28, True) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_28, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_28, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_28, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_28, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_28, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_28, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_28, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_28, False) ])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_28, True)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_28, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_28, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_28, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_28, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_28, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_28, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_28, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_28, False)])) st_29._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_29, True) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_29, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_29, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_29, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_29, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_29, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_29, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_29, False) ])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_29, True)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_29, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_29, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_29, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_29, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_29, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_29, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_29, False)])) st_30._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_30, True) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_30, False) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_30, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_30, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_30, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_30, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_30, False) ])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_30, True)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_30, False)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_30, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_30, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_30, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_30, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_30, False)])) st_31._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_31, True) ])) - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_31, False) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_31, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_31, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_31, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_31, False) ])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_31, True)])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_31, False)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_31, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_31, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_31, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_31, False)])) st_32._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_33, [ - fac.UpdateInstruction(cc_32, True) ])) - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_32, False) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_32, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_32, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_32, False) ])) + transitions.append(fac.Transition(st_33, [fac.UpdateInstruction(cc_32, True)])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_32, False)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_32, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_32, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_32, False)])) st_33._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_34, [ - fac.UpdateInstruction(cc_33, True) ])) - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_33, False) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_33, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_33, False) ])) + transitions.append(fac.Transition(st_34, [fac.UpdateInstruction(cc_33, True)])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_33, False)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_33, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_33, False)])) st_34._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_35, [ - fac.UpdateInstruction(cc_34, True) ])) - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_34, False) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_34, False) ])) + transitions.append(fac.Transition(st_35, [fac.UpdateInstruction(cc_34, True)])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_34, False)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_34, False)])) st_35._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_36, [ - fac.UpdateInstruction(cc_35, True) ])) - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_35, False) ])) + transitions.append(fac.Transition(st_36, [fac.UpdateInstruction(cc_35, True)])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_35, False)])) st_36._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_37, [ - fac.UpdateInstruction(cc_36, True) ])) + transitions.append(fac.Transition(st_37, [fac.UpdateInstruction(cc_36, True)])) st_37._set_transitionSet(transitions) return fac.Automaton(states, counters, False, containing_state=None) -mediaFormType._Automaton = _BuildAutomaton() - - -mediaPagerType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'offset'), STD_ANON, scope=mediaPagerType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 99, 6))) - -mediaPagerType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'max'), STD_ANON_, scope=mediaPagerType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 106, 6))) - -mediaPagerType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'sort'), mediaSortField, scope=mediaPagerType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 113, 6))) +mediaFormType._Automaton = _BuildAutomaton() -mediaPagerType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'order'), STD_ANON_2, scope=mediaPagerType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 114, 6))) -def _BuildAutomaton_ (): +mediaPagerType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "offset"), + STD_ANON, + scope=mediaPagerType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 99, 6), + ) +) + +mediaPagerType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "max"), + STD_ANON_, + scope=mediaPagerType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 106, 6), + ) +) + +mediaPagerType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "sort"), + mediaSortField, + scope=mediaPagerType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 113, 6), + ) +) + +mediaPagerType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "order"), + STD_ANON_2, + scope=mediaPagerType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 114, 6), + ) +) + + +def _BuildAutomaton_(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_ del _BuildAutomaton_ import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 99, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 99, 6), + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 113, 6)) + cc_1 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 113, 6), + ) counters.add(cc_1) - cc_2 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 114, 6)) + cc_2 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 114, 6), + ) counters.add(cc_2) states = [] final_update = None - symbol = pyxb.binding.content.ElementUse(mediaPagerType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'offset')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 99, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaPagerType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "offset")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 99, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() - symbol = pyxb.binding.content.ElementUse(mediaPagerType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'max')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 106, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaPagerType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "max")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 106, 6), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) final_update = set() final_update.add(fac.UpdateInstruction(cc_1, False)) - symbol = pyxb.binding.content.ElementUse(mediaPagerType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'sort')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 113, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaPagerType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "sort")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 113, 6), + ) st_2 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_2) final_update = set() final_update.add(fac.UpdateInstruction(cc_2, False)) - symbol = pyxb.binding.content.ElementUse(mediaPagerType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'order')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 114, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaPagerType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "order")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 114, 6), + ) st_3 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_3) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, False)])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_2, [ - ])) - transitions.append(fac.Transition(st_3, [ - ])) + transitions.append(fac.Transition(st_2, [])) + transitions.append(fac.Transition(st_3, [])) st_1._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_1, True) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_1, False) ])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_1, True)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_1, False)])) st_2._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_2, True) ])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_2, True)])) st_3._set_transitionSet(transitions) return fac.Automaton(states, counters, False, containing_state=None) -mediaPagerType._Automaton = _BuildAutomaton_() +mediaPagerType._Automaton = _BuildAutomaton_() + +integerRangeType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "start"), + integerRangeValueType, + scope=integerRangeType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 159, 6), + ) +) -integerRangeType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'start'), integerRangeValueType, scope=integerRangeType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 159, 6))) +integerRangeType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "stop"), + integerRangeValueType, + scope=integerRangeType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 160, 6), + ) +) -integerRangeType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'stop'), integerRangeValueType, scope=integerRangeType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 160, 6))) -def _BuildAutomaton_2 (): +def _BuildAutomaton_2(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_2 del _BuildAutomaton_2 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 159, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 159, 6), + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 160, 6)) + cc_1 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 160, 6), + ) counters.add(cc_1) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(integerRangeType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'start')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 159, 6)) + symbol = pyxb.binding.content.ElementUse( + integerRangeType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "start")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 159, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() final_update.add(fac.UpdateInstruction(cc_1, False)) - symbol = pyxb.binding.content.ElementUse(integerRangeType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'stop')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 160, 6)) + symbol = pyxb.binding.content.ElementUse( + integerRangeType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "stop")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 160, 6), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, False)])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_1, True) ])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_1, True)])) st_1._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -integerRangeType._Automaton = _BuildAutomaton_2() +integerRangeType._Automaton = _BuildAutomaton_2() + +dateRangeType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "start"), + dateRangeValueType, + scope=dateRangeType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 174, 6), + ) +) -dateRangeType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'start'), dateRangeValueType, scope=dateRangeType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 174, 6))) +dateRangeType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "stop"), + dateRangeValueType, + scope=dateRangeType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 175, 6), + ) +) -dateRangeType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'stop'), dateRangeValueType, scope=dateRangeType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 175, 6))) -def _BuildAutomaton_3 (): +def _BuildAutomaton_3(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_3 del _BuildAutomaton_3 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 174, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 174, 6), + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 175, 6)) + cc_1 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 175, 6), + ) counters.add(cc_1) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(dateRangeType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'start')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 174, 6)) + symbol = pyxb.binding.content.ElementUse( + dateRangeType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "start")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 174, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() final_update.add(fac.UpdateInstruction(cc_1, False)) - symbol = pyxb.binding.content.ElementUse(dateRangeType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'stop')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 175, 6)) + symbol = pyxb.binding.content.ElementUse( + dateRangeType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "stop")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 175, 6), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, False)])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_1, True) ])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_1, True)])) st_1._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -dateRangeType._Automaton = _BuildAutomaton_3() +dateRangeType._Automaton = _BuildAutomaton_3() + +mediaListResultType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "item"), + mediaListItem, + scope=mediaListResultType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 189, 6), + ) +) -mediaListResultType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'item'), mediaListItem, scope=mediaListResultType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 189, 6))) -def _BuildAutomaton_4 (): +def _BuildAutomaton_4(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_4 del _BuildAutomaton_4 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 189, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 189, 6), + ) counters.add(cc_0) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(mediaListResultType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'item')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 189, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaListResultType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "item")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 189, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) st_0._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -mediaListResultType._Automaton = _BuildAutomaton_4() - - -mediaListItem._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'broadcaster'), _ImportedBinding_npoapi_xml_media.organizationType, scope=mediaListItem, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 211, 10))) - -mediaListItem._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'title'), pyxb.binding.datatypes.string, scope=mediaListItem, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 212, 10))) - -mediaListItem._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'subTitle'), pyxb.binding.datatypes.string, scope=mediaListItem, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 213, 10))) - -mediaListItem._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'description'), pyxb.binding.datatypes.string, scope=mediaListItem, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 214, 10))) - -mediaListItem._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'creationDate'), pyxb.binding.datatypes.dateTime, scope=mediaListItem, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 215, 10))) - -mediaListItem._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'lastModified'), pyxb.binding.datatypes.dateTime, scope=mediaListItem, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 216, 10))) - -mediaListItem._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'createdBy'), pyxb.binding.datatypes.string, scope=mediaListItem, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 217, 10))) - -mediaListItem._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'lastModifiedBy'), pyxb.binding.datatypes.string, scope=mediaListItem, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 218, 10))) - -mediaListItem._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'sortDate'), pyxb.binding.datatypes.dateTime, scope=mediaListItem, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 219, 10))) - -mediaListItem._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'type'), _ImportedBinding_npoapi_xml_media.mediaTypeEnum, scope=mediaListItem, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 220, 10))) - -mediaListItem._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'publishStart'), pyxb.binding.datatypes.dateTime, scope=mediaListItem, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 221, 10))) - -mediaListItem._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'publishStop'), pyxb.binding.datatypes.dateTime, scope=mediaListItem, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 222, 10))) - -mediaListItem._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'lastPublished'), pyxb.binding.datatypes.dateTime, scope=mediaListItem, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 223, 10))) - -mediaListItem._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'firstScheduleEvent'), _ImportedBinding_npoapi_xml_media.scheduleEventType, scope=mediaListItem, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 224, 10))) - -mediaListItem._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'firstScheduleEventNoRerun'), _ImportedBinding_npoapi_xml_media.scheduleEventType, scope=mediaListItem, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 225, 10))) - -mediaListItem._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'lastScheduleEvent'), _ImportedBinding_npoapi_xml_media.scheduleEventType, scope=mediaListItem, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 226, 10))) - -mediaListItem._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'lastScheduleEventNoRerun'), _ImportedBinding_npoapi_xml_media.scheduleEventType, scope=mediaListItem, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 227, 10))) - -mediaListItem._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'sortDateScheduleEvent'), _ImportedBinding_npoapi_xml_media.scheduleEventType, scope=mediaListItem, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 228, 10))) - -mediaListItem._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'locations'), _ImportedBinding_npoapi_xml_media.locationType, nillable=pyxb.binding.datatypes.boolean(1), scope=mediaListItem, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 230, 10))) - -mediaListItem._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'numberOfLocations'), pyxb.binding.datatypes.int, scope=mediaListItem, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 231, 10))) - -mediaListItem._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'tag'), _ImportedBinding_npoapi_xml_media.tagType, scope=mediaListItem, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 232, 10))) - -mediaListItem._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'image'), imageListItem, scope=mediaListItem, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 233, 10))) +mediaListResultType._Automaton = _BuildAutomaton_4() -mediaListItem._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'streamingPlatformStatus'), _ImportedBinding_npoapi_xml_media.streamingStatus_, scope=mediaListItem, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 234, 10))) -def _BuildAutomaton_5 (): +mediaListItem._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "broadcaster"), + _ImportedBinding_npoapi_xml_media.organizationType, + scope=mediaListItem, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 211, 10), + ) +) + +mediaListItem._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "title"), + pyxb.binding.datatypes.string, + scope=mediaListItem, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 212, 10), + ) +) + +mediaListItem._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "subTitle"), + pyxb.binding.datatypes.string, + scope=mediaListItem, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 213, 10), + ) +) + +mediaListItem._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "description"), + pyxb.binding.datatypes.string, + scope=mediaListItem, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 214, 10), + ) +) + +mediaListItem._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "creationDate"), + pyxb.binding.datatypes.dateTime, + scope=mediaListItem, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 215, 10), + ) +) + +mediaListItem._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "lastModified"), + pyxb.binding.datatypes.dateTime, + scope=mediaListItem, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 216, 10), + ) +) + +mediaListItem._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "createdBy"), + pyxb.binding.datatypes.string, + scope=mediaListItem, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 217, 10), + ) +) + +mediaListItem._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "lastModifiedBy"), + pyxb.binding.datatypes.string, + scope=mediaListItem, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 218, 10), + ) +) + +mediaListItem._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "sortDate"), + pyxb.binding.datatypes.dateTime, + scope=mediaListItem, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 219, 10), + ) +) + +mediaListItem._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "type"), + _ImportedBinding_npoapi_xml_media.mediaTypeEnum, + scope=mediaListItem, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 220, 10), + ) +) + +mediaListItem._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "publishStart"), + pyxb.binding.datatypes.dateTime, + scope=mediaListItem, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 221, 10), + ) +) + +mediaListItem._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "publishStop"), + pyxb.binding.datatypes.dateTime, + scope=mediaListItem, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 222, 10), + ) +) + +mediaListItem._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "lastPublished"), + pyxb.binding.datatypes.dateTime, + scope=mediaListItem, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 223, 10), + ) +) + +mediaListItem._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "firstScheduleEvent"), + _ImportedBinding_npoapi_xml_media.scheduleEventType, + scope=mediaListItem, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 224, 10), + ) +) + +mediaListItem._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "firstScheduleEventNoRerun"), + _ImportedBinding_npoapi_xml_media.scheduleEventType, + scope=mediaListItem, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 225, 10), + ) +) + +mediaListItem._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "lastScheduleEvent"), + _ImportedBinding_npoapi_xml_media.scheduleEventType, + scope=mediaListItem, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 226, 10), + ) +) + +mediaListItem._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "lastScheduleEventNoRerun"), + _ImportedBinding_npoapi_xml_media.scheduleEventType, + scope=mediaListItem, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 227, 10), + ) +) + +mediaListItem._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "sortDateScheduleEvent"), + _ImportedBinding_npoapi_xml_media.scheduleEventType, + scope=mediaListItem, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 228, 10), + ) +) + +mediaListItem._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "locations"), + _ImportedBinding_npoapi_xml_media.locationType, + nillable=pyxb.binding.datatypes.boolean(1), + scope=mediaListItem, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 230, 10), + ) +) + +mediaListItem._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "numberOfLocations"), + pyxb.binding.datatypes.int, + scope=mediaListItem, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 231, 10), + ) +) + +mediaListItem._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "tag"), + _ImportedBinding_npoapi_xml_media.tagType, + scope=mediaListItem, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 232, 10), + ) +) + +mediaListItem._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "image"), + imageListItem, + scope=mediaListItem, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 233, 10), + ) +) + +mediaListItem._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "streamingPlatformStatus"), + _ImportedBinding_npoapi_xml_media.streamingStatus_, + scope=mediaListItem, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 234, 10), + ) +) + + +def _BuildAutomaton_5(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_5 del _BuildAutomaton_5 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 211, 10)) + cc_0 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 211, 10), + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 212, 10)) + cc_1 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 212, 10), + ) counters.add(cc_1) - cc_2 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 213, 10)) + cc_2 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 213, 10), + ) counters.add(cc_2) - cc_3 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 214, 10)) + cc_3 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 214, 10), + ) counters.add(cc_3) - cc_4 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 216, 10)) + cc_4 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 216, 10), + ) counters.add(cc_4) - cc_5 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 218, 10)) + cc_5 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 218, 10), + ) counters.add(cc_5) - cc_6 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 219, 10)) + cc_6 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 219, 10), + ) counters.add(cc_6) - cc_7 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 221, 10)) + cc_7 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 221, 10), + ) counters.add(cc_7) - cc_8 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 222, 10)) + cc_8 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 222, 10), + ) counters.add(cc_8) - cc_9 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 223, 10)) + cc_9 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 223, 10), + ) counters.add(cc_9) - cc_10 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 224, 10)) + cc_10 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 224, 10), + ) counters.add(cc_10) - cc_11 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 225, 10)) + cc_11 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 225, 10), + ) counters.add(cc_11) - cc_12 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 226, 10)) + cc_12 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 226, 10), + ) counters.add(cc_12) - cc_13 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 227, 10)) + cc_13 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 227, 10), + ) counters.add(cc_13) - cc_14 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 228, 10)) + cc_14 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 228, 10), + ) counters.add(cc_14) - cc_15 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 230, 10)) + cc_15 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 230, 10), + ) counters.add(cc_15) - cc_16 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 231, 10)) + cc_16 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 231, 10), + ) counters.add(cc_16) - cc_17 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 232, 10)) + cc_17 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 232, 10), + ) counters.add(cc_17) - cc_18 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 233, 10)) + cc_18 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 233, 10), + ) counters.add(cc_18) - cc_19 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 234, 10)) + cc_19 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 234, 10), + ) counters.add(cc_19) states = [] final_update = None - symbol = pyxb.binding.content.ElementUse(mediaListItem._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'broadcaster')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 211, 10)) + symbol = pyxb.binding.content.ElementUse( + mediaListItem._UseForTag(pyxb.namespace.ExpandedName(Namespace, "broadcaster")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 211, 10), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = None - symbol = pyxb.binding.content.ElementUse(mediaListItem._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'title')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 212, 10)) + symbol = pyxb.binding.content.ElementUse( + mediaListItem._UseForTag(pyxb.namespace.ExpandedName(Namespace, "title")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 212, 10), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) final_update = None - symbol = pyxb.binding.content.ElementUse(mediaListItem._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'subTitle')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 213, 10)) + symbol = pyxb.binding.content.ElementUse( + mediaListItem._UseForTag(pyxb.namespace.ExpandedName(Namespace, "subTitle")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 213, 10), + ) st_2 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_2) final_update = None - symbol = pyxb.binding.content.ElementUse(mediaListItem._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'description')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 214, 10)) + symbol = pyxb.binding.content.ElementUse( + mediaListItem._UseForTag(pyxb.namespace.ExpandedName(Namespace, "description")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 214, 10), + ) st_3 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_3) final_update = None - symbol = pyxb.binding.content.ElementUse(mediaListItem._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'creationDate')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 215, 10)) + symbol = pyxb.binding.content.ElementUse( + mediaListItem._UseForTag(pyxb.namespace.ExpandedName(Namespace, "creationDate")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 215, 10), + ) st_4 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_4) final_update = None - symbol = pyxb.binding.content.ElementUse(mediaListItem._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'lastModified')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 216, 10)) + symbol = pyxb.binding.content.ElementUse( + mediaListItem._UseForTag(pyxb.namespace.ExpandedName(Namespace, "lastModified")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 216, 10), + ) st_5 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_5) final_update = None - symbol = pyxb.binding.content.ElementUse(mediaListItem._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'createdBy')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 217, 10)) + symbol = pyxb.binding.content.ElementUse( + mediaListItem._UseForTag(pyxb.namespace.ExpandedName(Namespace, "createdBy")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 217, 10), + ) st_6 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_6) final_update = None - symbol = pyxb.binding.content.ElementUse(mediaListItem._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'lastModifiedBy')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 218, 10)) + symbol = pyxb.binding.content.ElementUse( + mediaListItem._UseForTag(pyxb.namespace.ExpandedName(Namespace, "lastModifiedBy")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 218, 10), + ) st_7 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_7) final_update = None - symbol = pyxb.binding.content.ElementUse(mediaListItem._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'sortDate')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 219, 10)) + symbol = pyxb.binding.content.ElementUse( + mediaListItem._UseForTag(pyxb.namespace.ExpandedName(Namespace, "sortDate")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 219, 10), + ) st_8 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_8) final_update = set() - symbol = pyxb.binding.content.ElementUse(mediaListItem._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'type')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 220, 10)) + symbol = pyxb.binding.content.ElementUse( + mediaListItem._UseForTag(pyxb.namespace.ExpandedName(Namespace, "type")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 220, 10), + ) st_9 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_9) final_update = set() final_update.add(fac.UpdateInstruction(cc_7, False)) - symbol = pyxb.binding.content.ElementUse(mediaListItem._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'publishStart')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 221, 10)) + symbol = pyxb.binding.content.ElementUse( + mediaListItem._UseForTag(pyxb.namespace.ExpandedName(Namespace, "publishStart")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 221, 10), + ) st_10 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_10) final_update = set() final_update.add(fac.UpdateInstruction(cc_8, False)) - symbol = pyxb.binding.content.ElementUse(mediaListItem._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'publishStop')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 222, 10)) + symbol = pyxb.binding.content.ElementUse( + mediaListItem._UseForTag(pyxb.namespace.ExpandedName(Namespace, "publishStop")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 222, 10), + ) st_11 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_11) final_update = set() final_update.add(fac.UpdateInstruction(cc_9, False)) - symbol = pyxb.binding.content.ElementUse(mediaListItem._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'lastPublished')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 223, 10)) + symbol = pyxb.binding.content.ElementUse( + mediaListItem._UseForTag(pyxb.namespace.ExpandedName(Namespace, "lastPublished")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 223, 10), + ) st_12 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_12) final_update = set() final_update.add(fac.UpdateInstruction(cc_10, False)) - symbol = pyxb.binding.content.ElementUse(mediaListItem._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'firstScheduleEvent')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 224, 10)) + symbol = pyxb.binding.content.ElementUse( + mediaListItem._UseForTag(pyxb.namespace.ExpandedName(Namespace, "firstScheduleEvent")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 224, 10), + ) st_13 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_13) final_update = set() final_update.add(fac.UpdateInstruction(cc_11, False)) - symbol = pyxb.binding.content.ElementUse(mediaListItem._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'firstScheduleEventNoRerun')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 225, 10)) + symbol = pyxb.binding.content.ElementUse( + mediaListItem._UseForTag(pyxb.namespace.ExpandedName(Namespace, "firstScheduleEventNoRerun")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 225, 10), + ) st_14 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_14) final_update = set() final_update.add(fac.UpdateInstruction(cc_12, False)) - symbol = pyxb.binding.content.ElementUse(mediaListItem._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'lastScheduleEvent')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 226, 10)) + symbol = pyxb.binding.content.ElementUse( + mediaListItem._UseForTag(pyxb.namespace.ExpandedName(Namespace, "lastScheduleEvent")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 226, 10), + ) st_15 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_15) final_update = set() final_update.add(fac.UpdateInstruction(cc_13, False)) - symbol = pyxb.binding.content.ElementUse(mediaListItem._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'lastScheduleEventNoRerun')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 227, 10)) + symbol = pyxb.binding.content.ElementUse( + mediaListItem._UseForTag(pyxb.namespace.ExpandedName(Namespace, "lastScheduleEventNoRerun")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 227, 10), + ) st_16 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_16) final_update = set() final_update.add(fac.UpdateInstruction(cc_14, False)) - symbol = pyxb.binding.content.ElementUse(mediaListItem._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'sortDateScheduleEvent')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 228, 10)) + symbol = pyxb.binding.content.ElementUse( + mediaListItem._UseForTag(pyxb.namespace.ExpandedName(Namespace, "sortDateScheduleEvent")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 228, 10), + ) st_17 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_17) final_update = set() final_update.add(fac.UpdateInstruction(cc_15, False)) - symbol = pyxb.binding.content.ElementUse(mediaListItem._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'locations')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 230, 10)) + symbol = pyxb.binding.content.ElementUse( + mediaListItem._UseForTag(pyxb.namespace.ExpandedName(Namespace, "locations")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 230, 10), + ) st_18 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_18) final_update = set() final_update.add(fac.UpdateInstruction(cc_16, False)) - symbol = pyxb.binding.content.ElementUse(mediaListItem._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'numberOfLocations')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 231, 10)) + symbol = pyxb.binding.content.ElementUse( + mediaListItem._UseForTag(pyxb.namespace.ExpandedName(Namespace, "numberOfLocations")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 231, 10), + ) st_19 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_19) final_update = set() final_update.add(fac.UpdateInstruction(cc_17, False)) - symbol = pyxb.binding.content.ElementUse(mediaListItem._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'tag')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 232, 10)) + symbol = pyxb.binding.content.ElementUse( + mediaListItem._UseForTag(pyxb.namespace.ExpandedName(Namespace, "tag")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 232, 10), + ) st_20 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_20) final_update = set() final_update.add(fac.UpdateInstruction(cc_18, False)) - symbol = pyxb.binding.content.ElementUse(mediaListItem._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'image')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 233, 10)) + symbol = pyxb.binding.content.ElementUse( + mediaListItem._UseForTag(pyxb.namespace.ExpandedName(Namespace, "image")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 233, 10), + ) st_21 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_21) final_update = set() final_update.add(fac.UpdateInstruction(cc_19, False)) - symbol = pyxb.binding.content.ElementUse(mediaListItem._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'streamingPlatformStatus')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd', 234, 10)) + symbol = pyxb.binding.content.ElementUse( + mediaListItem._UseForTag(pyxb.namespace.ExpandedName(Namespace, "streamingPlatformStatus")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/search/vproMediaSearch.xsd", 234, 10), + ) st_22 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_22) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_0, False)])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_1, True) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_1, False) ])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_1, True)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_1, False)])) st_1._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_2, True) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_2, False) ])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_2, True)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_2, False)])) st_2._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_3, True) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_3, False) ])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_3, True)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_3, False)])) st_3._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_5, [ - ])) - transitions.append(fac.Transition(st_6, [ - ])) + transitions.append(fac.Transition(st_5, [])) + transitions.append(fac.Transition(st_6, [])) st_4._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_4, True) ])) - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_4, False) ])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_4, True)])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_4, False)])) st_5._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_7, [ - ])) - transitions.append(fac.Transition(st_8, [ - ])) - transitions.append(fac.Transition(st_9, [ - ])) + transitions.append(fac.Transition(st_7, [])) + transitions.append(fac.Transition(st_8, [])) + transitions.append(fac.Transition(st_9, [])) st_6._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_5, True) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_5, False) ])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_5, True)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_5, False)])) st_7._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_6, True) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_6, False) ])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_6, True)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_6, False)])) st_8._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_10, [ - ])) - transitions.append(fac.Transition(st_11, [ - ])) - transitions.append(fac.Transition(st_12, [ - ])) - transitions.append(fac.Transition(st_13, [ - ])) - transitions.append(fac.Transition(st_14, [ - ])) - transitions.append(fac.Transition(st_15, [ - ])) - transitions.append(fac.Transition(st_16, [ - ])) - transitions.append(fac.Transition(st_17, [ - ])) - transitions.append(fac.Transition(st_18, [ - ])) - transitions.append(fac.Transition(st_19, [ - ])) - transitions.append(fac.Transition(st_20, [ - ])) - transitions.append(fac.Transition(st_21, [ - ])) - transitions.append(fac.Transition(st_22, [ - ])) + transitions.append(fac.Transition(st_10, [])) + transitions.append(fac.Transition(st_11, [])) + transitions.append(fac.Transition(st_12, [])) + transitions.append(fac.Transition(st_13, [])) + transitions.append(fac.Transition(st_14, [])) + transitions.append(fac.Transition(st_15, [])) + transitions.append(fac.Transition(st_16, [])) + transitions.append(fac.Transition(st_17, [])) + transitions.append(fac.Transition(st_18, [])) + transitions.append(fac.Transition(st_19, [])) + transitions.append(fac.Transition(st_20, [])) + transitions.append(fac.Transition(st_21, [])) + transitions.append(fac.Transition(st_22, [])) st_9._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_7, True) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_7, False) ])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_7, True)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_7, False)])) st_10._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_8, True) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_8, False) ])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_8, True)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_8, False)])) st_11._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_9, True) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_9, False) ])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_9, True)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_9, False)])) st_12._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_10, True) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_10, False) ])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_10, True)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_10, False)])) st_13._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_11, True) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_11, False) ])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_11, True)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_11, False)])) st_14._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_12, True) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_12, False) ])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_12, True)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_12, False)])) st_15._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_13, True) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_13, False) ])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_13, True)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_13, False)])) st_16._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_14, True) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_14, False) ])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_14, True)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_14, False)])) st_17._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_15, True) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_15, False) ])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_15, True)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_15, False)])) st_18._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_16, True) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_16, False) ])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_16, True)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_16, False)])) st_19._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_17, True) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_17, False) ])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_17, True)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_17, False)])) st_20._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_18, True) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_18, False) ])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_18, True)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_18, False)])) st_21._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_19, True) ])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_19, True)])) st_22._set_transitionSet(transitions) return fac.Automaton(states, counters, False, containing_state=None) -mediaListItem._Automaton = _BuildAutomaton_5() + +mediaListItem._Automaton = _BuildAutomaton_5() diff --git a/src/npoapi/xml/mediaupdate.py b/src/npoapi/xml/mediaupdate.py index 10c24cf..d8486d4 100644 --- a/src/npoapi/xml/mediaupdate.py +++ b/src/npoapi/xml/mediaupdate.py @@ -5,19 +5,22 @@ # Namespace urn:vpro:media:update:2009 from __future__ import unicode_literals + +import io +import sys + import pyxb import pyxb.binding import pyxb.binding.saxer -import io -import pyxb.utils.utility import pyxb.utils.domutils -import sys import pyxb.utils.six as _six +import pyxb.utils.utility + # Unique identifier for bindings created at the same time -_GenerationUID = pyxb.utils.utility.UniqueIdentifier('urn:uuid:fa5187de-5153-11ed-9cc8-3e22fb45f01a') +_GenerationUID = pyxb.utils.utility.UniqueIdentifier("urn:uuid:fa5187de-5153-11ed-9cc8-3e22fb45f01a") # Version of PyXB used to generate the bindings -_PyXBVersion = '1.2.6' +_PyXBVersion = "1.2.6" # Generated bindings are not compatible across PyXB versions if pyxb.__version__ != _PyXBVersion: raise pyxb.PyXBVersionError(_PyXBVersion) @@ -28,14 +31,16 @@ # Import bindings for namespaces imported into schema import pyxb.binding.datatypes + import npoapi.xml.media as _ImportedBinding_npoapi_xml_media import npoapi.xml.shared as _ImportedBinding_npoapi_xml_shared # NOTE: All namespace declarations are reserved within the binding -Namespace = pyxb.namespace.NamespaceForURI('urn:vpro:media:update:2009', create_if_missing=True) -Namespace.configureCategories(['typeBinding', 'elementBinding']) +Namespace = pyxb.namespace.NamespaceForURI("urn:vpro:media:update:2009", create_if_missing=True) +Namespace.configureCategories(["typeBinding", "elementBinding"]) -def CreateFromDocument (xml_text, default_namespace=None, location_base=None): + +def CreateFromDocument(xml_text, default_namespace=None, location_base=None): """Parse the given XML and use the document element to create a Python instance. @@ -68,7 +73,8 @@ def CreateFromDocument (xml_text, default_namespace=None, location_base=None): instance = handler.rootObject() return instance -def CreateFromDOM (node, default_namespace=None): + +def CreateFromDOM(node, default_namespace=None): """Create a Python instance from the given DOM node. The node tag must correspond to an element declaration in this module. @@ -79,3337 +85,4742 @@ def CreateFromDOM (node, default_namespace=None): # Atomic simple type: {urn:vpro:media:update:2009}mediaRefType -class mediaRefType (pyxb.binding.datatypes.string): - +class mediaRefType(pyxb.binding.datatypes.string): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'mediaRefType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 316, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "mediaRefType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 316, 2) _Documentation = None + + mediaRefType._CF_minLength = pyxb.binding.facets.CF_minLength(value=pyxb.binding.datatypes.nonNegativeInteger(4)) mediaRefType._InitializeFacetMap(mediaRefType._CF_minLength) -Namespace.addCategoryObject('typeBinding', 'mediaRefType', mediaRefType) +Namespace.addCategoryObject("typeBinding", "mediaRefType", mediaRefType) _module_typeBindings.mediaRefType = mediaRefType -# Atomic simple type: {urn:vpro:media:update:2009}imageLocationUrlType -class imageLocationUrlType (pyxb.binding.datatypes.anyURI): +# Atomic simple type: {urn:vpro:media:update:2009}imageLocationUrlType +class imageLocationUrlType(pyxb.binding.datatypes.anyURI): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'imageLocationUrlType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 462, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "imageLocationUrlType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 462, 2) _Documentation = None -imageLocationUrlType._CF_maxLength = pyxb.binding.facets.CF_maxLength(value=pyxb.binding.datatypes.nonNegativeInteger(1024)) + + +imageLocationUrlType._CF_maxLength = pyxb.binding.facets.CF_maxLength( + value=pyxb.binding.datatypes.nonNegativeInteger(1024) +) imageLocationUrlType._CF_pattern = pyxb.binding.facets.CF_pattern() -imageLocationUrlType._CF_pattern.addPattern(pattern='[a-z][a-z]+:.*') -imageLocationUrlType._InitializeFacetMap(imageLocationUrlType._CF_maxLength, - imageLocationUrlType._CF_pattern) -Namespace.addCategoryObject('typeBinding', 'imageLocationUrlType', imageLocationUrlType) +imageLocationUrlType._CF_pattern.addPattern(pattern="[a-z][a-z]+:.*") +imageLocationUrlType._InitializeFacetMap(imageLocationUrlType._CF_maxLength, imageLocationUrlType._CF_pattern) +Namespace.addCategoryObject("typeBinding", "imageLocationUrlType", imageLocationUrlType) _module_typeBindings.imageLocationUrlType = imageLocationUrlType -# Atomic simple type: {urn:vpro:media:update:2009}imageUrnType -class imageUrnType (pyxb.binding.datatypes.string): +# Atomic simple type: {urn:vpro:media:update:2009}imageUrnType +class imageUrnType(pyxb.binding.datatypes.string): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'imageUrnType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 469, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "imageUrnType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 469, 2) _Documentation = None + + imageUrnType._CF_pattern = pyxb.binding.facets.CF_pattern() -imageUrnType._CF_pattern.addPattern(pattern='urn:vpro[\\.:]image:[0-9]+') +imageUrnType._CF_pattern.addPattern(pattern="urn:vpro[\\.:]image:[0-9]+") imageUrnType._InitializeFacetMap(imageUrnType._CF_pattern) -Namespace.addCategoryObject('typeBinding', 'imageUrnType', imageUrnType) +Namespace.addCategoryObject("typeBinding", "imageUrnType", imageUrnType) _module_typeBindings.imageUrnType = imageUrnType -# Atomic simple type: [anonymous] -class STD_ANON (pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): +# Atomic simple type: [anonymous] +class STD_ANON(pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): """An atomic simple type.""" _ExpandedName = None - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 573, 8) + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 573, 8) _Documentation = None + + STD_ANON._CF_enumeration = pyxb.binding.facets.CF_enumeration(value_datatype=STD_ANON, enum_prefix=None) -STD_ANON.ASC = STD_ANON._CF_enumeration.addEnumeration(unicode_value='ASC', tag='ASC') -STD_ANON.DESC = STD_ANON._CF_enumeration.addEnumeration(unicode_value='DESC', tag='DESC') +STD_ANON.ASC = STD_ANON._CF_enumeration.addEnumeration(unicode_value="ASC", tag="ASC") +STD_ANON.DESC = STD_ANON._CF_enumeration.addEnumeration(unicode_value="DESC", tag="DESC") STD_ANON._InitializeFacetMap(STD_ANON._CF_enumeration) _module_typeBindings.STD_ANON = STD_ANON -# Atomic simple type: {urn:vpro:media:update:2009}priorityType -class priorityType (pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): +# Atomic simple type: {urn:vpro:media:update:2009}priorityType +class priorityType(pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'priorityType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 631, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "priorityType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 631, 2) _Documentation = None + + priorityType._CF_enumeration = pyxb.binding.facets.CF_enumeration(value_datatype=priorityType, enum_prefix=None) -priorityType.LOW = priorityType._CF_enumeration.addEnumeration(unicode_value='LOW', tag='LOW') -priorityType.NORMAL = priorityType._CF_enumeration.addEnumeration(unicode_value='NORMAL', tag='NORMAL') -priorityType.HIGH = priorityType._CF_enumeration.addEnumeration(unicode_value='HIGH', tag='HIGH') -priorityType.URGENT = priorityType._CF_enumeration.addEnumeration(unicode_value='URGENT', tag='URGENT') +priorityType.LOW = priorityType._CF_enumeration.addEnumeration(unicode_value="LOW", tag="LOW") +priorityType.NORMAL = priorityType._CF_enumeration.addEnumeration(unicode_value="NORMAL", tag="NORMAL") +priorityType.HIGH = priorityType._CF_enumeration.addEnumeration(unicode_value="HIGH", tag="HIGH") +priorityType.URGENT = priorityType._CF_enumeration.addEnumeration(unicode_value="URGENT", tag="URGENT") priorityType._InitializeFacetMap(priorityType._CF_enumeration) -Namespace.addCategoryObject('typeBinding', 'priorityType', priorityType) +Namespace.addCategoryObject("typeBinding", "priorityType", priorityType) _module_typeBindings.priorityType = priorityType -# Atomic simple type: {urn:vpro:media:update:2009}transcodeStatusEnum -class transcodeStatusEnum (pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): +# Atomic simple type: {urn:vpro:media:update:2009}transcodeStatusEnum +class transcodeStatusEnum(pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'transcodeStatusEnum') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 640, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "transcodeStatusEnum") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 640, 2) _Documentation = None -transcodeStatusEnum._CF_enumeration = pyxb.binding.facets.CF_enumeration(value_datatype=transcodeStatusEnum, enum_prefix=None) -transcodeStatusEnum.RUNNING = transcodeStatusEnum._CF_enumeration.addEnumeration(unicode_value='RUNNING', tag='RUNNING') -transcodeStatusEnum.COMPLETED = transcodeStatusEnum._CF_enumeration.addEnumeration(unicode_value='COMPLETED', tag='COMPLETED') -transcodeStatusEnum.FAILED = transcodeStatusEnum._CF_enumeration.addEnumeration(unicode_value='FAILED', tag='FAILED') -transcodeStatusEnum.TIMED_OUT = transcodeStatusEnum._CF_enumeration.addEnumeration(unicode_value='TIMED_OUT', tag='TIMED_OUT') -transcodeStatusEnum.TERMINATED = transcodeStatusEnum._CF_enumeration.addEnumeration(unicode_value='TERMINATED', tag='TERMINATED') -transcodeStatusEnum.PAUSED = transcodeStatusEnum._CF_enumeration.addEnumeration(unicode_value='PAUSED', tag='PAUSED') + + +transcodeStatusEnum._CF_enumeration = pyxb.binding.facets.CF_enumeration( + value_datatype=transcodeStatusEnum, enum_prefix=None +) +transcodeStatusEnum.RUNNING = transcodeStatusEnum._CF_enumeration.addEnumeration(unicode_value="RUNNING", tag="RUNNING") +transcodeStatusEnum.COMPLETED = transcodeStatusEnum._CF_enumeration.addEnumeration( + unicode_value="COMPLETED", tag="COMPLETED" +) +transcodeStatusEnum.FAILED = transcodeStatusEnum._CF_enumeration.addEnumeration(unicode_value="FAILED", tag="FAILED") +transcodeStatusEnum.TIMED_OUT = transcodeStatusEnum._CF_enumeration.addEnumeration( + unicode_value="TIMED_OUT", tag="TIMED_OUT" +) +transcodeStatusEnum.TERMINATED = transcodeStatusEnum._CF_enumeration.addEnumeration( + unicode_value="TERMINATED", tag="TERMINATED" +) +transcodeStatusEnum.PAUSED = transcodeStatusEnum._CF_enumeration.addEnumeration(unicode_value="PAUSED", tag="PAUSED") transcodeStatusEnum._InitializeFacetMap(transcodeStatusEnum._CF_enumeration) -Namespace.addCategoryObject('typeBinding', 'transcodeStatusEnum', transcodeStatusEnum) +Namespace.addCategoryObject("typeBinding", "transcodeStatusEnum", transcodeStatusEnum) _module_typeBindings.transcodeStatusEnum = transcodeStatusEnum -# Atomic simple type: {urn:vpro:media:update:2009}twitterrefType -class twitterrefType (pyxb.binding.datatypes.string): +# Atomic simple type: {urn:vpro:media:update:2009}twitterrefType +class twitterrefType(pyxb.binding.datatypes.string): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'twitterrefType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 680, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "twitterrefType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 680, 2) _Documentation = None + + twitterrefType._CF_minLength = pyxb.binding.facets.CF_minLength(value=pyxb.binding.datatypes.nonNegativeInteger(2)) twitterrefType._CF_maxLength = pyxb.binding.facets.CF_maxLength(value=pyxb.binding.datatypes.nonNegativeInteger(16)) twitterrefType._CF_pattern = pyxb.binding.facets.CF_pattern() -twitterrefType._CF_pattern.addPattern(pattern='[@#][A-Za-z0-9_]{1,139}') -twitterrefType._InitializeFacetMap(twitterrefType._CF_minLength, - twitterrefType._CF_maxLength, - twitterrefType._CF_pattern) -Namespace.addCategoryObject('typeBinding', 'twitterrefType', twitterrefType) +twitterrefType._CF_pattern.addPattern(pattern="[@#][A-Za-z0-9_]{1,139}") +twitterrefType._InitializeFacetMap( + twitterrefType._CF_minLength, twitterrefType._CF_maxLength, twitterrefType._CF_pattern +) +Namespace.addCategoryObject("typeBinding", "twitterrefType", twitterrefType) _module_typeBindings.twitterrefType = twitterrefType -# Atomic simple type: {urn:vpro:media:update:2009}versionType -class versionType (pyxb.binding.datatypes.string): +# Atomic simple type: {urn:vpro:media:update:2009}versionType +class versionType(pyxb.binding.datatypes.string): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'versionType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 688, 3) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "versionType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 688, 3) _Documentation = None + + versionType._CF_pattern = pyxb.binding.facets.CF_pattern() -versionType._CF_pattern.addPattern(pattern='[0-9]+(\\.[0-9]+(\\.[0-9]+)?)?') +versionType._CF_pattern.addPattern(pattern="[0-9]+(\\.[0-9]+(\\.[0-9]+)?)?") versionType._InitializeFacetMap(versionType._CF_pattern) -Namespace.addCategoryObject('typeBinding', 'versionType', versionType) +Namespace.addCategoryObject("typeBinding", "versionType", versionType) _module_typeBindings.versionType = versionType -# Atomic simple type: {urn:vpro:media:update:2009}tagUpdateType -class tagUpdateType (_ImportedBinding_npoapi_xml_media.baseTextType): +# Atomic simple type: {urn:vpro:media:update:2009}tagUpdateType +class tagUpdateType(_ImportedBinding_npoapi_xml_media.baseTextType): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'tagUpdateType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 80, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "tagUpdateType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 80, 2) _Documentation = None + + tagUpdateType._InitializeFacetMap() -Namespace.addCategoryObject('typeBinding', 'tagUpdateType', tagUpdateType) +Namespace.addCategoryObject("typeBinding", "tagUpdateType", tagUpdateType) _module_typeBindings.tagUpdateType = tagUpdateType -# Atomic simple type: {urn:vpro:media:update:2009}genreUpdateType -class genreUpdateType (_ImportedBinding_npoapi_xml_media.genreIdType): +# Atomic simple type: {urn:vpro:media:update:2009}genreUpdateType +class genreUpdateType(_ImportedBinding_npoapi_xml_media.genreIdType): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'genreUpdateType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 84, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "genreUpdateType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 84, 2) _Documentation = None + + genreUpdateType._InitializeFacetMap() -Namespace.addCategoryObject('typeBinding', 'genreUpdateType', genreUpdateType) +Namespace.addCategoryObject("typeBinding", "genreUpdateType", genreUpdateType) _module_typeBindings.genreUpdateType = genreUpdateType + # Complex type {urn:vpro:media:update:2009}avAtributeUpdateType with content type ELEMENT_ONLY -class avAtributeUpdateType (pyxb.binding.basis.complexTypeDefinition): +class avAtributeUpdateType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:update:2009}avAtributeUpdateType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'avAtributeUpdateType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 45, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "avAtributeUpdateType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 45, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:update:2009}bitrate uses Python identifier bitrate - __bitrate = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'bitrate'), 'bitrate', '__urnvpromediaupdate2009_avAtributeUpdateType_urnvpromediaupdate2009bitrate', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 47, 6), ) + __bitrate = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "bitrate"), + "bitrate", + "__urnvpromediaupdate2009_avAtributeUpdateType_urnvpromediaupdate2009bitrate", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 47, 6), + ) - bitrate = property(__bitrate.value, __bitrate.set, None, None) - # Element {urn:vpro:media:update:2009}byteSize uses Python identifier byteSize - __byteSize = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'byteSize'), 'byteSize', '__urnvpromediaupdate2009_avAtributeUpdateType_urnvpromediaupdate2009byteSize', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 48, 6), ) + __byteSize = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "byteSize"), + "byteSize", + "__urnvpromediaupdate2009_avAtributeUpdateType_urnvpromediaupdate2009byteSize", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 48, 6), + ) - byteSize = property(__byteSize.value, __byteSize.set, None, None) - # Element {urn:vpro:media:update:2009}avFileFormat uses Python identifier avFileFormat - __avFileFormat = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'avFileFormat'), 'avFileFormat', '__urnvpromediaupdate2009_avAtributeUpdateType_urnvpromediaupdate2009avFileFormat', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 49, 6), ) + __avFileFormat = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "avFileFormat"), + "avFileFormat", + "__urnvpromediaupdate2009_avAtributeUpdateType_urnvpromediaupdate2009avFileFormat", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 49, 6), + ) - avFileFormat = property(__avFileFormat.value, __avFileFormat.set, None, None) - # Element {urn:vpro:media:update:2009}videoAttributes uses Python identifier videoAttributes - __videoAttributes = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'videoAttributes'), 'videoAttributes', '__urnvpromediaupdate2009_avAtributeUpdateType_urnvpromediaupdate2009videoAttributes', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 50, 6), ) + __videoAttributes = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "videoAttributes"), + "videoAttributes", + "__urnvpromediaupdate2009_avAtributeUpdateType_urnvpromediaupdate2009videoAttributes", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 50, 6), + ) - videoAttributes = property(__videoAttributes.value, __videoAttributes.set, None, None) - # Element {urn:vpro:media:update:2009}audioAttributes uses Python identifier audioAttributes - __audioAttributes = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'audioAttributes'), 'audioAttributes', '__urnvpromediaupdate2009_avAtributeUpdateType_urnvpromediaupdate2009audioAttributes', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 51, 6), ) + __audioAttributes = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "audioAttributes"), + "audioAttributes", + "__urnvpromediaupdate2009_avAtributeUpdateType_urnvpromediaupdate2009audioAttributes", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 51, 6), + ) - audioAttributes = property(__audioAttributes.value, __audioAttributes.set, None, None) - _ElementMap.update({ - __bitrate.name() : __bitrate, - __byteSize.name() : __byteSize, - __avFileFormat.name() : __avFileFormat, - __videoAttributes.name() : __videoAttributes, - __audioAttributes.name() : __audioAttributes - }) - _AttributeMap.update({ - - }) + _ElementMap.update( + { + __bitrate.name(): __bitrate, + __byteSize.name(): __byteSize, + __avFileFormat.name(): __avFileFormat, + __videoAttributes.name(): __videoAttributes, + __audioAttributes.name(): __audioAttributes, + } + ) + _AttributeMap.update({}) + + _module_typeBindings.avAtributeUpdateType = avAtributeUpdateType -Namespace.addCategoryObject('typeBinding', 'avAtributeUpdateType', avAtributeUpdateType) +Namespace.addCategoryObject("typeBinding", "avAtributeUpdateType", avAtributeUpdateType) # Complex type {urn:vpro:media:update:2009}videoAttributesUpdateType with content type ELEMENT_ONLY -class videoAttributesUpdateType (pyxb.binding.basis.complexTypeDefinition): +class videoAttributesUpdateType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:update:2009}videoAttributesUpdateType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'videoAttributesUpdateType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 55, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "videoAttributesUpdateType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 55, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:update:2009}aspectRatio uses Python identifier aspectRatio - __aspectRatio = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'aspectRatio'), 'aspectRatio', '__urnvpromediaupdate2009_videoAttributesUpdateType_urnvpromediaupdate2009aspectRatio', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 57, 6), ) + __aspectRatio = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "aspectRatio"), + "aspectRatio", + "__urnvpromediaupdate2009_videoAttributesUpdateType_urnvpromediaupdate2009aspectRatio", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 57, 6), + ) - aspectRatio = property(__aspectRatio.value, __aspectRatio.set, None, None) - # Element {urn:vpro:media:update:2009}color uses Python identifier color - __color = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'color'), 'color', '__urnvpromediaupdate2009_videoAttributesUpdateType_urnvpromediaupdate2009color', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 58, 6), ) + __color = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "color"), + "color", + "__urnvpromediaupdate2009_videoAttributesUpdateType_urnvpromediaupdate2009color", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 58, 6), + ) - color = property(__color.value, __color.set, None, None) - # Element {urn:vpro:media:update:2009}coding uses Python identifier coding - __coding = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'coding'), 'coding', '__urnvpromediaupdate2009_videoAttributesUpdateType_urnvpromediaupdate2009coding', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 59, 6), ) + __coding = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "coding"), + "coding", + "__urnvpromediaupdate2009_videoAttributesUpdateType_urnvpromediaupdate2009coding", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 59, 6), + ) - coding = property(__coding.value, __coding.set, None, None) - # Attribute width uses Python identifier width - __width = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'width'), 'width', '__urnvpromediaupdate2009_videoAttributesUpdateType_width', pyxb.binding.datatypes.int) - __width._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 61, 4) - __width._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 61, 4) - + __width = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "width"), + "width", + "__urnvpromediaupdate2009_videoAttributesUpdateType_width", + pyxb.binding.datatypes.int, + ) + __width._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 61, 4 + ) + __width._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 61, 4 + ) + width = property(__width.value, __width.set, None, None) - # Attribute height uses Python identifier height - __height = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'height'), 'height', '__urnvpromediaupdate2009_videoAttributesUpdateType_height', pyxb.binding.datatypes.int) - __height._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 62, 4) - __height._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 62, 4) - + __height = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "height"), + "height", + "__urnvpromediaupdate2009_videoAttributesUpdateType_height", + pyxb.binding.datatypes.int, + ) + __height._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 62, 4 + ) + __height._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 62, 4 + ) + height = property(__height.value, __height.set, None, None) - _ElementMap.update({ - __aspectRatio.name() : __aspectRatio, - __color.name() : __color, - __coding.name() : __coding - }) - _AttributeMap.update({ - __width.name() : __width, - __height.name() : __height - }) + _ElementMap.update({__aspectRatio.name(): __aspectRatio, __color.name(): __color, __coding.name(): __coding}) + _AttributeMap.update({__width.name(): __width, __height.name(): __height}) + + _module_typeBindings.videoAttributesUpdateType = videoAttributesUpdateType -Namespace.addCategoryObject('typeBinding', 'videoAttributesUpdateType', videoAttributesUpdateType) +Namespace.addCategoryObject("typeBinding", "videoAttributesUpdateType", videoAttributesUpdateType) # Complex type {urn:vpro:media:update:2009}audioAttributesUpdateType with content type ELEMENT_ONLY -class audioAttributesUpdateType (pyxb.binding.basis.complexTypeDefinition): +class audioAttributesUpdateType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:update:2009}audioAttributesUpdateType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'audioAttributesUpdateType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 65, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "audioAttributesUpdateType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 65, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:update:2009}channels uses Python identifier channels - __channels = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'channels'), 'channels', '__urnvpromediaupdate2009_audioAttributesUpdateType_urnvpromediaupdate2009channels', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 67, 6), ) + __channels = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "channels"), + "channels", + "__urnvpromediaupdate2009_audioAttributesUpdateType_urnvpromediaupdate2009channels", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 67, 6), + ) - channels = property(__channels.value, __channels.set, None, None) - # Element {urn:vpro:media:update:2009}coding uses Python identifier coding - __coding = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'coding'), 'coding', '__urnvpromediaupdate2009_audioAttributesUpdateType_urnvpromediaupdate2009coding', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 68, 6), ) + __coding = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "coding"), + "coding", + "__urnvpromediaupdate2009_audioAttributesUpdateType_urnvpromediaupdate2009coding", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 68, 6), + ) - coding = property(__coding.value, __coding.set, None, None) - _ElementMap.update({ - __channels.name() : __channels, - __coding.name() : __coding - }) - _AttributeMap.update({ - - }) + _ElementMap.update({__channels.name(): __channels, __coding.name(): __coding}) + _AttributeMap.update({}) + + _module_typeBindings.audioAttributesUpdateType = audioAttributesUpdateType -Namespace.addCategoryObject('typeBinding', 'audioAttributesUpdateType', audioAttributesUpdateType) +Namespace.addCategoryObject("typeBinding", "audioAttributesUpdateType", audioAttributesUpdateType) # Complex type {urn:vpro:media:update:2009}geoLocationsUpdateType with content type ELEMENT_ONLY -class geoLocationsUpdateType (pyxb.binding.basis.complexTypeDefinition): +class geoLocationsUpdateType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:update:2009}geoLocationsUpdateType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'geoLocationsUpdateType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 88, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "geoLocationsUpdateType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 88, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:update:2009}geoLocation uses Python identifier geoLocation - __geoLocation = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'geoLocation'), 'geoLocation', '__urnvpromediaupdate2009_geoLocationsUpdateType_urnvpromediaupdate2009geoLocation', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 90, 6), ) + __geoLocation = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "geoLocation"), + "geoLocation", + "__urnvpromediaupdate2009_geoLocationsUpdateType_urnvpromediaupdate2009geoLocation", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 90, 6), + ) - geoLocation = property(__geoLocation.value, __geoLocation.set, None, None) - _ElementMap.update({ - __geoLocation.name() : __geoLocation - }) - _AttributeMap.update({ - - }) + _ElementMap.update({__geoLocation.name(): __geoLocation}) + _AttributeMap.update({}) + + _module_typeBindings.geoLocationsUpdateType = geoLocationsUpdateType -Namespace.addCategoryObject('typeBinding', 'geoLocationsUpdateType', geoLocationsUpdateType) +Namespace.addCategoryObject("typeBinding", "geoLocationsUpdateType", geoLocationsUpdateType) # Complex type {urn:vpro:media:update:2009}topicUpdateType with content type EMPTY -class topicUpdateType (pyxb.binding.basis.complexTypeDefinition): +class topicUpdateType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:update:2009}topicUpdateType with content type EMPTY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_EMPTY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'topicUpdateType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 99, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "topicUpdateType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 99, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Attribute gtaaUri uses Python identifier gtaaUri - __gtaaUri = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'gtaaUri'), 'gtaaUri', '__urnvpromediaupdate2009_topicUpdateType_gtaaUri', pyxb.binding.datatypes.string, required=True) - __gtaaUri._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 100, 4) - __gtaaUri._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 100, 4) - + __gtaaUri = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "gtaaUri"), + "gtaaUri", + "__urnvpromediaupdate2009_topicUpdateType_gtaaUri", + pyxb.binding.datatypes.string, + required=True, + ) + __gtaaUri._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 100, 4 + ) + __gtaaUri._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 100, 4 + ) + gtaaUri = property(__gtaaUri.value, __gtaaUri.set, None, None) - _ElementMap.update({ - - }) - _AttributeMap.update({ - __gtaaUri.name() : __gtaaUri - }) + _ElementMap.update({}) + _AttributeMap.update({__gtaaUri.name(): __gtaaUri}) + + _module_typeBindings.topicUpdateType = topicUpdateType -Namespace.addCategoryObject('typeBinding', 'topicUpdateType', topicUpdateType) +Namespace.addCategoryObject("typeBinding", "topicUpdateType", topicUpdateType) # Complex type {urn:vpro:media:update:2009}topicsUpdateType with content type ELEMENT_ONLY -class topicsUpdateType (pyxb.binding.basis.complexTypeDefinition): +class topicsUpdateType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:update:2009}topicsUpdateType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'topicsUpdateType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 103, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "topicsUpdateType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 103, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:update:2009}topic uses Python identifier topic - __topic = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'topic'), 'topic', '__urnvpromediaupdate2009_topicsUpdateType_urnvpromediaupdate2009topic', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 105, 6), ) + __topic = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "topic"), + "topic", + "__urnvpromediaupdate2009_topicsUpdateType_urnvpromediaupdate2009topic", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 105, 6), + ) - topic = property(__topic.value, __topic.set, None, None) - _ElementMap.update({ - __topic.name() : __topic - }) - _AttributeMap.update({ - - }) + _ElementMap.update({__topic.name(): __topic}) + _AttributeMap.update({}) + + _module_typeBindings.topicsUpdateType = topicsUpdateType -Namespace.addCategoryObject('typeBinding', 'topicsUpdateType', topicsUpdateType) +Namespace.addCategoryObject("typeBinding", "topicsUpdateType", topicsUpdateType) # Complex type {urn:vpro:media:update:2009}creditsUpdateType with content type ELEMENT_ONLY -class creditsUpdateType (pyxb.binding.basis.complexTypeDefinition): +class creditsUpdateType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:update:2009}creditsUpdateType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'creditsUpdateType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 123, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "creditsUpdateType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 123, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:update:2009}person uses Python identifier person - __person = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'person'), 'person', '__urnvpromediaupdate2009_creditsUpdateType_urnvpromediaupdate2009person', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 126, 8), ) + __person = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "person"), + "person", + "__urnvpromediaupdate2009_creditsUpdateType_urnvpromediaupdate2009person", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 126, 8), + ) - person = property(__person.value, __person.set, None, None) - # Element {urn:vpro:media:update:2009}name uses Python identifier name - __name = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'name'), 'name', '__urnvpromediaupdate2009_creditsUpdateType_urnvpromediaupdate2009name', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 127, 8), ) + __name = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "name"), + "name", + "__urnvpromediaupdate2009_creditsUpdateType_urnvpromediaupdate2009name", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 127, 8), + ) - name = property(__name.value, __name.set, None, None) - _ElementMap.update({ - __person.name() : __person, - __name.name() : __name - }) - _AttributeMap.update({ - - }) + _ElementMap.update({__person.name(): __person, __name.name(): __name}) + _AttributeMap.update({}) + + _module_typeBindings.creditsUpdateType = creditsUpdateType -Namespace.addCategoryObject('typeBinding', 'creditsUpdateType', creditsUpdateType) +Namespace.addCategoryObject("typeBinding", "creditsUpdateType", creditsUpdateType) # Complex type [anonymous] with content type ELEMENT_ONLY -class CTD_ANON (pyxb.binding.basis.complexTypeDefinition): +class CTD_ANON(pyxb.binding.basis.complexTypeDefinition): """Complex type [anonymous] with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False _ExpandedName = None - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 183, 8) + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 183, 8) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:update:2009}intention uses Python identifier intention - __intention = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'intention'), 'intention', '__urnvpromediaupdate2009_CTD_ANON_urnvpromediaupdate2009intention', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 185, 12), ) + __intention = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "intention"), + "intention", + "__urnvpromediaupdate2009_CTD_ANON_urnvpromediaupdate2009intention", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 185, 12), + ) - intention = property(__intention.value, __intention.set, None, None) - _ElementMap.update({ - __intention.name() : __intention - }) - _AttributeMap.update({ - - }) + _ElementMap.update({__intention.name(): __intention}) + _AttributeMap.update({}) + + _module_typeBindings.CTD_ANON = CTD_ANON # Complex type [anonymous] with content type ELEMENT_ONLY -class CTD_ANON_ (pyxb.binding.basis.complexTypeDefinition): +class CTD_ANON_(pyxb.binding.basis.complexTypeDefinition): """Complex type [anonymous] with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False _ExpandedName = None - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 190, 8) + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 190, 8) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:update:2009}targetGroup uses Python identifier targetGroup - __targetGroup = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'targetGroup'), 'targetGroup', '__urnvpromediaupdate2009_CTD_ANON__urnvpromediaupdate2009targetGroup', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 192, 12), ) + __targetGroup = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "targetGroup"), + "targetGroup", + "__urnvpromediaupdate2009_CTD_ANON__urnvpromediaupdate2009targetGroup", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 192, 12), + ) - targetGroup = property(__targetGroup.value, __targetGroup.set, None, None) - _ElementMap.update({ - __targetGroup.name() : __targetGroup - }) - _AttributeMap.update({ - - }) + _ElementMap.update({__targetGroup.name(): __targetGroup}) + _AttributeMap.update({}) + + _module_typeBindings.CTD_ANON_ = CTD_ANON_ # Complex type [anonymous] with content type ELEMENT_ONLY -class CTD_ANON_2 (pyxb.binding.basis.complexTypeDefinition): +class CTD_ANON_2(pyxb.binding.basis.complexTypeDefinition): """Complex type [anonymous] with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False _ExpandedName = None - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 227, 8) + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 227, 8) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:update:2009}location uses Python identifier location - __location = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'location'), 'location', '__urnvpromediaupdate2009_CTD_ANON_2_urnvpromediaupdate2009location', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 229, 12), ) + __location = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "location"), + "location", + "__urnvpromediaupdate2009_CTD_ANON_2_urnvpromediaupdate2009location", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 229, 12), + ) - location = property(__location.value, __location.set, None, None) - _ElementMap.update({ - __location.name() : __location - }) - _AttributeMap.update({ - - }) + _ElementMap.update({__location.name(): __location}) + _AttributeMap.update({}) + + _module_typeBindings.CTD_ANON_2 = CTD_ANON_2 # Complex type [anonymous] with content type ELEMENT_ONLY -class CTD_ANON_3 (pyxb.binding.basis.complexTypeDefinition): +class CTD_ANON_3(pyxb.binding.basis.complexTypeDefinition): """Please note that this is only available for program upates (since 5.11)""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False _ExpandedName = None - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 237, 8) + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 237, 8) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:update:2009}scheduleEvent uses Python identifier scheduleEvent - __scheduleEvent = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'scheduleEvent'), 'scheduleEvent', '__urnvpromediaupdate2009_CTD_ANON_3_urnvpromediaupdate2009scheduleEvent', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 239, 12), ) + __scheduleEvent = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "scheduleEvent"), + "scheduleEvent", + "__urnvpromediaupdate2009_CTD_ANON_3_urnvpromediaupdate2009scheduleEvent", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 239, 12), + ) - scheduleEvent = property(__scheduleEvent.value, __scheduleEvent.set, None, None) - _ElementMap.update({ - __scheduleEvent.name() : __scheduleEvent - }) - _AttributeMap.update({ - - }) + _ElementMap.update({__scheduleEvent.name(): __scheduleEvent}) + _AttributeMap.update({}) + + _module_typeBindings.CTD_ANON_3 = CTD_ANON_3 # Complex type [anonymous] with content type ELEMENT_ONLY -class CTD_ANON_4 (pyxb.binding.basis.complexTypeDefinition): +class CTD_ANON_4(pyxb.binding.basis.complexTypeDefinition): """Complex type [anonymous] with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False _ExpandedName = None - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 246, 8) + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 246, 8) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:update:2009}image uses Python identifier image - __image = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'image'), 'image', '__urnvpromediaupdate2009_CTD_ANON_4_urnvpromediaupdate2009image', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 248, 12), ) + __image = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "image"), + "image", + "__urnvpromediaupdate2009_CTD_ANON_4_urnvpromediaupdate2009image", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 248, 12), + ) - image = property(__image.value, __image.set, None, None) - _ElementMap.update({ - __image.name() : __image - }) - _AttributeMap.update({ - - }) + _ElementMap.update({__image.name(): __image}) + _AttributeMap.update({}) + + _module_typeBindings.CTD_ANON_4 = CTD_ANON_4 # Complex type {urn:vpro:media:update:2009}bulkUpdateType with content type ELEMENT_ONLY -class bulkUpdateType (pyxb.binding.basis.complexTypeDefinition): +class bulkUpdateType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:update:2009}bulkUpdateType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'bulkUpdateType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 275, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "bulkUpdateType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 275, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:update:2009}titles uses Python identifier titles - __titles = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'titles'), 'titles', '__urnvpromediaupdate2009_bulkUpdateType_urnvpromediaupdate2009titles', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 277, 6), ) + __titles = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "titles"), + "titles", + "__urnvpromediaupdate2009_bulkUpdateType_urnvpromediaupdate2009titles", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 277, 6), + ) - titles = property(__titles.value, __titles.set, None, None) - # Element {urn:vpro:media:update:2009}descriptions uses Python identifier descriptions - __descriptions = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'descriptions'), 'descriptions', '__urnvpromediaupdate2009_bulkUpdateType_urnvpromediaupdate2009descriptions', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 278, 6), ) + __descriptions = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "descriptions"), + "descriptions", + "__urnvpromediaupdate2009_bulkUpdateType_urnvpromediaupdate2009descriptions", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 278, 6), + ) - descriptions = property(__descriptions.value, __descriptions.set, None, None) - _ElementMap.update({ - __titles.name() : __titles, - __descriptions.name() : __descriptions - }) - _AttributeMap.update({ - - }) + _ElementMap.update({__titles.name(): __titles, __descriptions.name(): __descriptions}) + _AttributeMap.update({}) + + _module_typeBindings.bulkUpdateType = bulkUpdateType -Namespace.addCategoryObject('typeBinding', 'bulkUpdateType', bulkUpdateType) +Namespace.addCategoryObject("typeBinding", "bulkUpdateType", bulkUpdateType) # Complex type {urn:vpro:media:update:2009}portalRestrictionUpdateType with content type SIMPLE -class portalRestrictionUpdateType (pyxb.binding.basis.complexTypeDefinition): +class portalRestrictionUpdateType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:update:2009}portalRestrictionUpdateType with content type SIMPLE""" + _TypeDefinition = pyxb.binding.datatypes.string _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_SIMPLE _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'portalRestrictionUpdateType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 291, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "portalRestrictionUpdateType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 291, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.string - + # Attribute start uses Python identifier start - __start = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'start'), 'start', '__urnvpromediaupdate2009_portalRestrictionUpdateType_start', pyxb.binding.datatypes.dateTime) - __start._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 326, 4) - __start._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 326, 4) - + __start = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "start"), + "start", + "__urnvpromediaupdate2009_portalRestrictionUpdateType_start", + pyxb.binding.datatypes.dateTime, + ) + __start._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 326, 4 + ) + __start._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 326, 4) + start = property(__start.value, __start.set, None, None) - # Attribute stop uses Python identifier stop - __stop = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'stop'), 'stop', '__urnvpromediaupdate2009_portalRestrictionUpdateType_stop', pyxb.binding.datatypes.dateTime) - __stop._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 327, 4) - __stop._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 327, 4) - + __stop = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "stop"), + "stop", + "__urnvpromediaupdate2009_portalRestrictionUpdateType_stop", + pyxb.binding.datatypes.dateTime, + ) + __stop._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 327, 4 + ) + __stop._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 327, 4) + stop = property(__stop.value, __stop.set, None, None) - _ElementMap.update({ - - }) - _AttributeMap.update({ - __start.name() : __start, - __stop.name() : __stop - }) + _ElementMap.update({}) + _AttributeMap.update({__start.name(): __start, __stop.name(): __stop}) + + _module_typeBindings.portalRestrictionUpdateType = portalRestrictionUpdateType -Namespace.addCategoryObject('typeBinding', 'portalRestrictionUpdateType', portalRestrictionUpdateType) +Namespace.addCategoryObject("typeBinding", "portalRestrictionUpdateType", portalRestrictionUpdateType) # Complex type {urn:vpro:media:update:2009}locationUpdateType with content type ELEMENT_ONLY -class locationUpdateType (pyxb.binding.basis.complexTypeDefinition): +class locationUpdateType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:update:2009}locationUpdateType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'locationUpdateType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 333, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "locationUpdateType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 333, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:update:2009}programUrl uses Python identifier programUrl - __programUrl = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'programUrl'), 'programUrl', '__urnvpromediaupdate2009_locationUpdateType_urnvpromediaupdate2009programUrl', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 335, 6), ) + __programUrl = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "programUrl"), + "programUrl", + "__urnvpromediaupdate2009_locationUpdateType_urnvpromediaupdate2009programUrl", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 335, 6), + ) - programUrl = property(__programUrl.value, __programUrl.set, None, None) - # Element {urn:vpro:media:update:2009}avAttributes uses Python identifier avAttributes - __avAttributes = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'avAttributes'), 'avAttributes', '__urnvpromediaupdate2009_locationUpdateType_urnvpromediaupdate2009avAttributes', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 336, 6), ) + __avAttributes = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "avAttributes"), + "avAttributes", + "__urnvpromediaupdate2009_locationUpdateType_urnvpromediaupdate2009avAttributes", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 336, 6), + ) - avAttributes = property(__avAttributes.value, __avAttributes.set, None, None) - # Element {urn:vpro:media:update:2009}offset uses Python identifier offset - __offset = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'offset'), 'offset', '__urnvpromediaupdate2009_locationUpdateType_urnvpromediaupdate2009offset', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 337, 6), ) + __offset = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "offset"), + "offset", + "__urnvpromediaupdate2009_locationUpdateType_urnvpromediaupdate2009offset", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 337, 6), + ) - offset = property(__offset.value, __offset.set, None, None) - # Element {urn:vpro:media:update:2009}duration uses Python identifier duration - __duration = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'duration'), 'duration', '__urnvpromediaupdate2009_locationUpdateType_urnvpromediaupdate2009duration', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 338, 6), ) + __duration = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "duration"), + "duration", + "__urnvpromediaupdate2009_locationUpdateType_urnvpromediaupdate2009duration", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 338, 6), + ) - duration = property(__duration.value, __duration.set, None, None) - # Attribute publishStart uses Python identifier publishStart - __publishStart = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'publishStart'), 'publishStart', '__urnvpromediaupdate2009_locationUpdateType_publishStart', pyxb.binding.datatypes.dateTime) - __publishStart._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 340, 4) - __publishStart._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 340, 4) - + __publishStart = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "publishStart"), + "publishStart", + "__urnvpromediaupdate2009_locationUpdateType_publishStart", + pyxb.binding.datatypes.dateTime, + ) + __publishStart._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 340, 4 + ) + __publishStart._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 340, 4 + ) + publishStart = property(__publishStart.value, __publishStart.set, None, None) - # Attribute publishStop uses Python identifier publishStop - __publishStop = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'publishStop'), 'publishStop', '__urnvpromediaupdate2009_locationUpdateType_publishStop', pyxb.binding.datatypes.dateTime) - __publishStop._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 341, 4) - __publishStop._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 341, 4) - + __publishStop = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "publishStop"), + "publishStop", + "__urnvpromediaupdate2009_locationUpdateType_publishStop", + pyxb.binding.datatypes.dateTime, + ) + __publishStop._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 341, 4 + ) + __publishStop._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 341, 4 + ) + publishStop = property(__publishStop.value, __publishStop.set, None, None) - # Attribute urn uses Python identifier urn - __urn = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'urn'), 'urn', '__urnvpromediaupdate2009_locationUpdateType_urn', pyxb.binding.datatypes.anyURI) - __urn._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 342, 4) - __urn._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 342, 4) - + __urn = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "urn"), + "urn", + "__urnvpromediaupdate2009_locationUpdateType_urn", + pyxb.binding.datatypes.anyURI, + ) + __urn._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 342, 4 + ) + __urn._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 342, 4 + ) + urn = property(__urn.value, __urn.set, None, None) - _ElementMap.update({ - __programUrl.name() : __programUrl, - __avAttributes.name() : __avAttributes, - __offset.name() : __offset, - __duration.name() : __duration - }) - _AttributeMap.update({ - __publishStart.name() : __publishStart, - __publishStop.name() : __publishStop, - __urn.name() : __urn - }) + _ElementMap.update( + { + __programUrl.name(): __programUrl, + __avAttributes.name(): __avAttributes, + __offset.name(): __offset, + __duration.name(): __duration, + } + ) + _AttributeMap.update( + {__publishStart.name(): __publishStart, __publishStop.name(): __publishStop, __urn.name(): __urn} + ) + + _module_typeBindings.locationUpdateType = locationUpdateType -Namespace.addCategoryObject('typeBinding', 'locationUpdateType', locationUpdateType) +Namespace.addCategoryObject("typeBinding", "locationUpdateType", locationUpdateType) # Complex type [anonymous] with content type ELEMENT_ONLY -class CTD_ANON_5 (pyxb.binding.basis.complexTypeDefinition): +class CTD_ANON_5(pyxb.binding.basis.complexTypeDefinition): """Complex type [anonymous] with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False _ExpandedName = None - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 351, 8) + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 351, 8) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:update:2009}title uses Python identifier title - __title = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'title'), 'title', '__urnvpromediaupdate2009_CTD_ANON_5_urnvpromediaupdate2009title', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 353, 12), ) + __title = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "title"), + "title", + "__urnvpromediaupdate2009_CTD_ANON_5_urnvpromediaupdate2009title", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 353, 12), + ) - title = property(__title.value, __title.set, None, None) - _ElementMap.update({ - __title.name() : __title - }) - _AttributeMap.update({ - - }) + _ElementMap.update({__title.name(): __title}) + _AttributeMap.update({}) + + _module_typeBindings.CTD_ANON_5 = CTD_ANON_5 # Complex type [anonymous] with content type ELEMENT_ONLY -class CTD_ANON_6 (pyxb.binding.basis.complexTypeDefinition): +class CTD_ANON_6(pyxb.binding.basis.complexTypeDefinition): """Complex type [anonymous] with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False _ExpandedName = None - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 358, 8) + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 358, 8) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:update:2009}description uses Python identifier description - __description = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'description'), 'description', '__urnvpromediaupdate2009_CTD_ANON_6_urnvpromediaupdate2009description', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 360, 12), ) + __description = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "description"), + "description", + "__urnvpromediaupdate2009_CTD_ANON_6_urnvpromediaupdate2009description", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 360, 12), + ) - description = property(__description.value, __description.set, None, None) - _ElementMap.update({ - __description.name() : __description - }) - _AttributeMap.update({ - - }) + _ElementMap.update({__description.name(): __description}) + _AttributeMap.update({}) + + _module_typeBindings.CTD_ANON_6 = CTD_ANON_6 # Complex type {urn:vpro:media:update:2009}imageDataType with content type ELEMENT_ONLY -class imageDataType (pyxb.binding.basis.complexTypeDefinition): +class imageDataType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:update:2009}imageDataType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'imageDataType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 441, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "imageDataType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 441, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:update:2009}data uses Python identifier data - __data = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'data'), 'data', '__urnvpromediaupdate2009_imageDataType_urnvpromediaupdate2009data', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 443, 6), ) + __data = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "data"), + "data", + "__urnvpromediaupdate2009_imageDataType_urnvpromediaupdate2009data", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 443, 6), + ) - data = property(__data.value, __data.set, None, None) - _ElementMap.update({ - __data.name() : __data - }) - _AttributeMap.update({ - - }) + _ElementMap.update({__data.name(): __data}) + _AttributeMap.update({}) + + _module_typeBindings.imageDataType = imageDataType -Namespace.addCategoryObject('typeBinding', 'imageDataType', imageDataType) +Namespace.addCategoryObject("typeBinding", "imageDataType", imageDataType) # Complex type {urn:vpro:media:update:2009}imageLocationType with content type ELEMENT_ONLY -class imageLocationType (pyxb.binding.basis.complexTypeDefinition): +class imageLocationType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:update:2009}imageLocationType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'imageLocationType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 448, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "imageLocationType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 448, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - - # Element {urn:vpro:media:update:2009}mimeType uses Python identifier mimeType - __mimeType = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'mimeType'), 'mimeType', '__urnvpromediaupdate2009_imageLocationType_urnvpromediaupdate2009mimeType', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 450, 6), ) - - mimeType = property(__mimeType.value, __mimeType.set, None, '\n Sometimes it may be usefull to explicitely specify the mimetype of the given location. (E.g. if there are no or no correct http content type headers).\n ') + # Element {urn:vpro:media:update:2009}mimeType uses Python identifier mimeType + __mimeType = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "mimeType"), + "mimeType", + "__urnvpromediaupdate2009_imageLocationType_urnvpromediaupdate2009mimeType", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 450, 6), + ) + + mimeType = property( + __mimeType.value, + __mimeType.set, + None, + "\n Sometimes it may be usefull to explicitely specify the mimetype of the given location. (E.g. if there are no or no correct http content type headers).\n ", + ) - # Element {urn:vpro:media:update:2009}url uses Python identifier url - __url = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'url'), 'url', '__urnvpromediaupdate2009_imageLocationType_urnvpromediaupdate2009url', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 457, 6), ) + __url = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "url"), + "url", + "__urnvpromediaupdate2009_imageLocationType_urnvpromediaupdate2009url", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 457, 6), + ) - url = property(__url.value, __url.set, None, None) - _ElementMap.update({ - __mimeType.name() : __mimeType, - __url.name() : __url - }) - _AttributeMap.update({ - - }) + _ElementMap.update({__mimeType.name(): __mimeType, __url.name(): __url}) + _AttributeMap.update({}) + + _module_typeBindings.imageLocationType = imageLocationType -Namespace.addCategoryObject('typeBinding', 'imageLocationType', imageLocationType) +Namespace.addCategoryObject("typeBinding", "imageLocationType", imageLocationType) # Complex type {urn:vpro:media:update:2009}assetType with content type ELEMENT_ONLY -class assetType (pyxb.binding.basis.complexTypeDefinition): +class assetType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:update:2009}assetType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'assetType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 475, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "assetType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 475, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:update:2009}assetData uses Python identifier assetData - __assetData = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'assetData'), 'assetData', '__urnvpromediaupdate2009_assetType_urnvpromediaupdate2009assetData', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 477, 6), ) + __assetData = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "assetData"), + "assetData", + "__urnvpromediaupdate2009_assetType_urnvpromediaupdate2009assetData", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 477, 6), + ) - assetData = property(__assetData.value, __assetData.set, None, None) - # Element {urn:vpro:media:update:2009}assetLocation uses Python identifier assetLocation - __assetLocation = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'assetLocation'), 'assetLocation', '__urnvpromediaupdate2009_assetType_urnvpromediaupdate2009assetLocation', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 478, 6), ) + __assetLocation = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "assetLocation"), + "assetLocation", + "__urnvpromediaupdate2009_assetType_urnvpromediaupdate2009assetLocation", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 478, 6), + ) - assetLocation = property(__assetLocation.value, __assetLocation.set, None, None) - # Attribute publishStart uses Python identifier publishStart - __publishStart = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'publishStart'), 'publishStart', '__urnvpromediaupdate2009_assetType_publishStart', pyxb.binding.datatypes.dateTime) - __publishStart._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 480, 4) - __publishStart._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 480, 4) - + __publishStart = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "publishStart"), + "publishStart", + "__urnvpromediaupdate2009_assetType_publishStart", + pyxb.binding.datatypes.dateTime, + ) + __publishStart._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 480, 4 + ) + __publishStart._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 480, 4 + ) + publishStart = property(__publishStart.value, __publishStart.set, None, None) - # Attribute publishStop uses Python identifier publishStop - __publishStop = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'publishStop'), 'publishStop', '__urnvpromediaupdate2009_assetType_publishStop', pyxb.binding.datatypes.dateTime) - __publishStop._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 481, 4) - __publishStop._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 481, 4) - + __publishStop = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "publishStop"), + "publishStop", + "__urnvpromediaupdate2009_assetType_publishStop", + pyxb.binding.datatypes.dateTime, + ) + __publishStop._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 481, 4 + ) + __publishStop._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 481, 4 + ) + publishStop = property(__publishStop.value, __publishStop.set, None, None) - _ElementMap.update({ - __assetData.name() : __assetData, - __assetLocation.name() : __assetLocation - }) - _AttributeMap.update({ - __publishStart.name() : __publishStart, - __publishStop.name() : __publishStop - }) + _ElementMap.update({__assetData.name(): __assetData, __assetLocation.name(): __assetLocation}) + _AttributeMap.update({__publishStart.name(): __publishStart, __publishStop.name(): __publishStop}) + + _module_typeBindings.assetType = assetType -Namespace.addCategoryObject('typeBinding', 'assetType', assetType) +Namespace.addCategoryObject("typeBinding", "assetType", assetType) # Complex type {urn:vpro:media:update:2009}assetDataType with content type ELEMENT_ONLY -class assetDataType (pyxb.binding.basis.complexTypeDefinition): +class assetDataType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:update:2009}assetDataType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'assetDataType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 484, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "assetDataType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 484, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:update:2009}data uses Python identifier data - __data = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'data'), 'data', '__urnvpromediaupdate2009_assetDataType_urnvpromediaupdate2009data', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 486, 6), ) + __data = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "data"), + "data", + "__urnvpromediaupdate2009_assetDataType_urnvpromediaupdate2009data", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 486, 6), + ) - data = property(__data.value, __data.set, None, None) - _ElementMap.update({ - __data.name() : __data - }) - _AttributeMap.update({ - - }) + _ElementMap.update({__data.name(): __data}) + _AttributeMap.update({}) + + _module_typeBindings.assetDataType = assetDataType -Namespace.addCategoryObject('typeBinding', 'assetDataType', assetDataType) +Namespace.addCategoryObject("typeBinding", "assetDataType", assetDataType) # Complex type {urn:vpro:media:update:2009}assetLocationType with content type ELEMENT_ONLY -class assetLocationType (pyxb.binding.basis.complexTypeDefinition): +class assetLocationType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:update:2009}assetLocationType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'assetLocationType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 491, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "assetLocationType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 491, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:update:2009}url uses Python identifier url - __url = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'url'), 'url', '__urnvpromediaupdate2009_assetLocationType_urnvpromediaupdate2009url', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 493, 6), ) + __url = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "url"), + "url", + "__urnvpromediaupdate2009_assetLocationType_urnvpromediaupdate2009url", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 493, 6), + ) - url = property(__url.value, __url.set, None, None) - _ElementMap.update({ - __url.name() : __url - }) - _AttributeMap.update({ - - }) + _ElementMap.update({__url.name(): __url}) + _AttributeMap.update({}) + + _module_typeBindings.assetLocationType = assetLocationType -Namespace.addCategoryObject('typeBinding', 'assetLocationType', assetLocationType) +Namespace.addCategoryObject("typeBinding", "assetLocationType", assetLocationType) # Complex type [anonymous] with content type ELEMENT_ONLY -class CTD_ANON_7 (pyxb.binding.basis.complexTypeDefinition): +class CTD_ANON_7(pyxb.binding.basis.complexTypeDefinition): + """ + Optional list of program segments. A segment is a part of a program that can be visually shown on the + timeline of a player. A segment always has a start time indicating the start of the segment relative to + the parent program. A segment can have the same fields as other media objects, like titles, descriptions, + images, locations, etc. + + The standard scenario when playing a segment is to load a location of the parent media object and + to use the start time as an offset to start playing the segment. However, it is also possible for a + segment to have its own locations. This makes it possible to for instance have a podcast of a weekly + segment in a radio show without providing the complete radio program it is a part of. + + Rules: + - Start time is required + - If duration is not set the player should play until the end of the program + - Removing a program also deletes its segments """ - Optional list of program segments. A segment is a part of a program that can be visually shown on the - timeline of a player. A segment always has a start time indicating the start of the segment relative to - the parent program. A segment can have the same fields as other media objects, like titles, descriptions, - images, locations, etc. - - The standard scenario when playing a segment is to load a location of the parent media object and - to use the start time as an offset to start playing the segment. However, it is also possible for a - segment to have its own locations. This makes it possible to for instance have a podcast of a weekly - segment in a radio show without providing the complete radio program it is a part of. - - Rules: - - Start time is required - - If duration is not set the player should play until the end of the program - - Removing a program also deletes its segments - """ + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False _ExpandedName = None - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 528, 12) + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 528, 12) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:update:2009}segment uses Python identifier segment - __segment = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'segment'), 'segment', '__urnvpromediaupdate2009_CTD_ANON_7_urnvpromediaupdate2009segment', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 19, 2), ) + __segment = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "segment"), + "segment", + "__urnvpromediaupdate2009_CTD_ANON_7_urnvpromediaupdate2009segment", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 19, 2), + ) - segment = property(__segment.value, __segment.set, None, None) - _ElementMap.update({ - __segment.name() : __segment - }) - _AttributeMap.update({ - - }) + _ElementMap.update({__segment.name(): __segment}) + _AttributeMap.update({}) + + _module_typeBindings.CTD_ANON_7 = CTD_ANON_7 # Complex type {urn:vpro:media:update:2009}memberUpdateType with content type ELEMENT_ONLY -class memberUpdateType (pyxb.binding.basis.complexTypeDefinition): +class memberUpdateType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:update:2009}memberUpdateType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'memberUpdateType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 552, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "memberUpdateType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 552, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Attribute position uses Python identifier position - __position = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'position'), 'position', '__urnvpromediaupdate2009_memberUpdateType_position', pyxb.binding.datatypes.integer) - __position._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 559, 4) - __position._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 559, 4) - + __position = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "position"), + "position", + "__urnvpromediaupdate2009_memberUpdateType_position", + pyxb.binding.datatypes.integer, + ) + __position._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 559, 4 + ) + __position._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 559, 4 + ) + position = property(__position.value, __position.set, None, None) - # Attribute highlighted uses Python identifier highlighted - __highlighted = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'highlighted'), 'highlighted', '__urnvpromediaupdate2009_memberUpdateType_highlighted', pyxb.binding.datatypes.boolean) - __highlighted._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 560, 4) - __highlighted._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 560, 4) - + __highlighted = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "highlighted"), + "highlighted", + "__urnvpromediaupdate2009_memberUpdateType_highlighted", + pyxb.binding.datatypes.boolean, + ) + __highlighted._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 560, 4 + ) + __highlighted._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 560, 4 + ) + highlighted = property(__highlighted.value, __highlighted.set, None, None) _HasWildcardElement = True - _ElementMap.update({ - - }) - _AttributeMap.update({ - __position.name() : __position, - __highlighted.name() : __highlighted - }) + _ElementMap.update({}) + _AttributeMap.update({__position.name(): __position, __highlighted.name(): __highlighted}) + + _module_typeBindings.memberUpdateType = memberUpdateType -Namespace.addCategoryObject('typeBinding', 'memberUpdateType', memberUpdateType) +Namespace.addCategoryObject("typeBinding", "memberUpdateType", memberUpdateType) # Complex type {urn:vpro:media:update:2009}moveActionType with content type ELEMENT_ONLY -class moveActionType (pyxb.binding.basis.complexTypeDefinition): +class moveActionType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:update:2009}moveActionType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'moveActionType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 583, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "moveActionType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 583, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:update:2009}from uses Python identifier from_ - __from = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'from'), 'from_', '__urnvpromediaupdate2009_moveActionType_urnvpromediaupdate2009from', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 585, 6), ) + __from = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "from"), + "from_", + "__urnvpromediaupdate2009_moveActionType_urnvpromediaupdate2009from", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 585, 6), + ) - from_ = property(__from.value, __from.set, None, None) - # Element {urn:vpro:media:update:2009}to uses Python identifier to - __to = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'to'), 'to', '__urnvpromediaupdate2009_moveActionType_urnvpromediaupdate2009to', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 586, 6), ) + __to = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "to"), + "to", + "__urnvpromediaupdate2009_moveActionType_urnvpromediaupdate2009to", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 586, 6), + ) - to = property(__to.value, __to.set, None, None) - _ElementMap.update({ - __from.name() : __from, - __to.name() : __to - }) - _AttributeMap.update({ - - }) + _ElementMap.update({__from.name(): __from, __to.name(): __to}) + _AttributeMap.update({}) + + _module_typeBindings.moveActionType = moveActionType -Namespace.addCategoryObject('typeBinding', 'moveActionType', moveActionType) +Namespace.addCategoryObject("typeBinding", "moveActionType", moveActionType) # Complex type {urn:vpro:media:update:2009}transcodeType with content type ELEMENT_ONLY -class transcodeType (pyxb.binding.basis.complexTypeDefinition): +class transcodeType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:update:2009}transcodeType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'transcodeType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 600, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "transcodeType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 600, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:update:2009}fileName uses Python identifier fileName - __fileName = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'fileName'), 'fileName', '__urnvpromediaupdate2009_transcodeType_urnvpromediaupdate2009fileName', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 602, 6), ) + __fileName = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "fileName"), + "fileName", + "__urnvpromediaupdate2009_transcodeType_urnvpromediaupdate2009fileName", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 602, 6), + ) - fileName = property(__fileName.value, __fileName.set, None, None) - # Element {urn:vpro:media:update:2009}encryption uses Python identifier encryption - __encryption = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'encryption'), 'encryption', '__urnvpromediaupdate2009_transcodeType_urnvpromediaupdate2009encryption', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 603, 6), ) + __encryption = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "encryption"), + "encryption", + "__urnvpromediaupdate2009_transcodeType_urnvpromediaupdate2009encryption", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 603, 6), + ) - encryption = property(__encryption.value, __encryption.set, None, None) - # Element {urn:vpro:media:update:2009}priority uses Python identifier priority - __priority = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'priority'), 'priority', '__urnvpromediaupdate2009_transcodeType_urnvpromediaupdate2009priority', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 604, 6), ) + __priority = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "priority"), + "priority", + "__urnvpromediaupdate2009_transcodeType_urnvpromediaupdate2009priority", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 604, 6), + ) - priority = property(__priority.value, __priority.set, None, None) - # Attribute mid uses Python identifier mid - __mid = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'mid'), 'mid', '__urnvpromediaupdate2009_transcodeType_mid', pyxb.binding.datatypes.string) - __mid._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 606, 4) - __mid._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 606, 4) - + __mid = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "mid"), + "mid", + "__urnvpromediaupdate2009_transcodeType_mid", + pyxb.binding.datatypes.string, + ) + __mid._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 606, 4 + ) + __mid._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 606, 4 + ) + mid = property(__mid.value, __mid.set, None, None) - _ElementMap.update({ - __fileName.name() : __fileName, - __encryption.name() : __encryption, - __priority.name() : __priority - }) - _AttributeMap.update({ - __mid.name() : __mid - }) + _ElementMap.update( + {__fileName.name(): __fileName, __encryption.name(): __encryption, __priority.name(): __priority} + ) + _AttributeMap.update({__mid.name(): __mid}) + + _module_typeBindings.transcodeType = transcodeType -Namespace.addCategoryObject('typeBinding', 'transcodeType', transcodeType) +Namespace.addCategoryObject("typeBinding", "transcodeType", transcodeType) # Complex type {urn:vpro:media:update:2009}transcodeStatusType with content type ELEMENT_ONLY -class transcodeStatusType (pyxb.binding.basis.complexTypeDefinition): +class transcodeStatusType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:update:2009}transcodeStatusType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'transcodeStatusType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 609, 3) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "transcodeStatusType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 609, 3) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:update:2009}fileName uses Python identifier fileName - __fileName = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'fileName'), 'fileName', '__urnvpromediaupdate2009_transcodeStatusType_urnvpromediaupdate2009fileName', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 611, 6), ) + __fileName = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "fileName"), + "fileName", + "__urnvpromediaupdate2009_transcodeStatusType_urnvpromediaupdate2009fileName", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 611, 6), + ) - fileName = property(__fileName.value, __fileName.set, None, None) - # Element {urn:vpro:media:update:2009}status uses Python identifier status - __status = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'status'), 'status', '__urnvpromediaupdate2009_transcodeStatusType_urnvpromediaupdate2009status', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 612, 6), ) + __status = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "status"), + "status", + "__urnvpromediaupdate2009_transcodeStatusType_urnvpromediaupdate2009status", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 612, 6), + ) - status = property(__status.value, __status.set, None, None) - # Element {urn:vpro:media:update:2009}statusMessage uses Python identifier statusMessage - __statusMessage = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'statusMessage'), 'statusMessage', '__urnvpromediaupdate2009_transcodeStatusType_urnvpromediaupdate2009statusMessage', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 613, 6), ) + __statusMessage = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "statusMessage"), + "statusMessage", + "__urnvpromediaupdate2009_transcodeStatusType_urnvpromediaupdate2009statusMessage", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 613, 6), + ) - statusMessage = property(__statusMessage.value, __statusMessage.set, None, None) - # Element {urn:vpro:media:update:2009}workflowType uses Python identifier workflowType - __workflowType = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'workflowType'), 'workflowType', '__urnvpromediaupdate2009_transcodeStatusType_urnvpromediaupdate2009workflowType', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 614, 6), ) + __workflowType = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "workflowType"), + "workflowType", + "__urnvpromediaupdate2009_transcodeStatusType_urnvpromediaupdate2009workflowType", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 614, 6), + ) - workflowType = property(__workflowType.value, __workflowType.set, None, None) - # Element {urn:vpro:media:update:2009}workflowId uses Python identifier workflowId - __workflowId = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'workflowId'), 'workflowId', '__urnvpromediaupdate2009_transcodeStatusType_urnvpromediaupdate2009workflowId', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 615, 6), ) + __workflowId = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "workflowId"), + "workflowId", + "__urnvpromediaupdate2009_transcodeStatusType_urnvpromediaupdate2009workflowId", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 615, 6), + ) - workflowId = property(__workflowId.value, __workflowId.set, None, None) - # Element {urn:vpro:media:update:2009}startTime uses Python identifier startTime - __startTime = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'startTime'), 'startTime', '__urnvpromediaupdate2009_transcodeStatusType_urnvpromediaupdate2009startTime', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 616, 6), ) + __startTime = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "startTime"), + "startTime", + "__urnvpromediaupdate2009_transcodeStatusType_urnvpromediaupdate2009startTime", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 616, 6), + ) - startTime = property(__startTime.value, __startTime.set, None, None) - # Element {urn:vpro:media:update:2009}updateTime uses Python identifier updateTime - __updateTime = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'updateTime'), 'updateTime', '__urnvpromediaupdate2009_transcodeStatusType_urnvpromediaupdate2009updateTime', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 617, 6), ) + __updateTime = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "updateTime"), + "updateTime", + "__urnvpromediaupdate2009_transcodeStatusType_urnvpromediaupdate2009updateTime", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 617, 6), + ) - updateTime = property(__updateTime.value, __updateTime.set, None, None) - # Element {urn:vpro:media:update:2009}endTime uses Python identifier endTime - __endTime = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'endTime'), 'endTime', '__urnvpromediaupdate2009_transcodeStatusType_urnvpromediaupdate2009endTime', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 618, 6), ) + __endTime = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "endTime"), + "endTime", + "__urnvpromediaupdate2009_transcodeStatusType_urnvpromediaupdate2009endTime", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 618, 6), + ) - endTime = property(__endTime.value, __endTime.set, None, None) - # Element {urn:vpro:media:update:2009}broadcasters uses Python identifier broadcasters - __broadcasters = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'broadcasters'), 'broadcasters', '__urnvpromediaupdate2009_transcodeStatusType_urnvpromediaupdate2009broadcasters', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 619, 7), ) + __broadcasters = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "broadcasters"), + "broadcasters", + "__urnvpromediaupdate2009_transcodeStatusType_urnvpromediaupdate2009broadcasters", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 619, 7), + ) - broadcasters = property(__broadcasters.value, __broadcasters.set, None, None) - # Attribute mid uses Python identifier mid - __mid = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'mid'), 'mid', '__urnvpromediaupdate2009_transcodeStatusType_mid', pyxb.binding.datatypes.string) - __mid._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 627, 5) - __mid._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 627, 5) - + __mid = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "mid"), + "mid", + "__urnvpromediaupdate2009_transcodeStatusType_mid", + pyxb.binding.datatypes.string, + ) + __mid._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 627, 5 + ) + __mid._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 627, 5 + ) + mid = property(__mid.value, __mid.set, None, None) - # Attribute missingMedia uses Python identifier missingMedia - __missingMedia = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'missingMedia'), 'missingMedia', '__urnvpromediaupdate2009_transcodeStatusType_missingMedia', pyxb.binding.datatypes.boolean) - __missingMedia._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 628, 5) - __missingMedia._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 628, 5) - + __missingMedia = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "missingMedia"), + "missingMedia", + "__urnvpromediaupdate2009_transcodeStatusType_missingMedia", + pyxb.binding.datatypes.boolean, + ) + __missingMedia._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 628, 5 + ) + __missingMedia._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 628, 5 + ) + missingMedia = property(__missingMedia.value, __missingMedia.set, None, None) - _ElementMap.update({ - __fileName.name() : __fileName, - __status.name() : __status, - __statusMessage.name() : __statusMessage, - __workflowType.name() : __workflowType, - __workflowId.name() : __workflowId, - __startTime.name() : __startTime, - __updateTime.name() : __updateTime, - __endTime.name() : __endTime, - __broadcasters.name() : __broadcasters - }) - _AttributeMap.update({ - __mid.name() : __mid, - __missingMedia.name() : __missingMedia - }) + _ElementMap.update( + { + __fileName.name(): __fileName, + __status.name(): __status, + __statusMessage.name(): __statusMessage, + __workflowType.name(): __workflowType, + __workflowId.name(): __workflowId, + __startTime.name(): __startTime, + __updateTime.name(): __updateTime, + __endTime.name(): __endTime, + __broadcasters.name(): __broadcasters, + } + ) + _AttributeMap.update({__mid.name(): __mid, __missingMedia.name(): __missingMedia}) + + _module_typeBindings.transcodeStatusType = transcodeStatusType -Namespace.addCategoryObject('typeBinding', 'transcodeStatusType', transcodeStatusType) +Namespace.addCategoryObject("typeBinding", "transcodeStatusType", transcodeStatusType) # Complex type [anonymous] with content type ELEMENT_ONLY -class CTD_ANON_8 (pyxb.binding.basis.complexTypeDefinition): +class CTD_ANON_8(pyxb.binding.basis.complexTypeDefinition): """Complex type [anonymous] with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False _ExpandedName = None - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 620, 8) + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 620, 8) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:update:2009}broadcaster uses Python identifier broadcaster - __broadcaster = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'broadcaster'), 'broadcaster', '__urnvpromediaupdate2009_CTD_ANON_8_urnvpromediaupdate2009broadcaster', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 622, 12), ) + __broadcaster = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "broadcaster"), + "broadcaster", + "__urnvpromediaupdate2009_CTD_ANON_8_urnvpromediaupdate2009broadcaster", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 622, 12), + ) - broadcaster = property(__broadcaster.value, __broadcaster.set, None, None) - _ElementMap.update({ - __broadcaster.name() : __broadcaster - }) - _AttributeMap.update({ - - }) + _ElementMap.update({__broadcaster.name(): __broadcaster}) + _AttributeMap.update({}) + + _module_typeBindings.CTD_ANON_8 = CTD_ANON_8 # Complex type {urn:vpro:media:update:2009}itemizeType with content type ELEMENT_ONLY -class itemizeType (pyxb.binding.basis.complexTypeDefinition): +class itemizeType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:update:2009}itemizeType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'itemizeType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 651, 3) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "itemizeType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 651, 3) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:update:2009}start uses Python identifier start - __start = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'start'), 'start', '__urnvpromediaupdate2009_itemizeType_urnvpromediaupdate2009start', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 653, 6), ) + __start = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "start"), + "start", + "__urnvpromediaupdate2009_itemizeType_urnvpromediaupdate2009start", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 653, 6), + ) - start = property(__start.value, __start.set, None, None) - # Element {urn:vpro:media:update:2009}stop uses Python identifier stop - __stop = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'stop'), 'stop', '__urnvpromediaupdate2009_itemizeType_urnvpromediaupdate2009stop', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 654, 6), ) + __stop = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "stop"), + "stop", + "__urnvpromediaupdate2009_itemizeType_urnvpromediaupdate2009stop", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 654, 6), + ) - stop = property(__stop.value, __stop.set, None, None) - # Attribute mid uses Python identifier mid - __mid = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'mid'), 'mid', '__urnvpromediaupdate2009_itemizeType_mid', pyxb.binding.datatypes.string) - __mid._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 656, 4) - __mid._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 656, 4) - + __mid = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "mid"), + "mid", + "__urnvpromediaupdate2009_itemizeType_mid", + pyxb.binding.datatypes.string, + ) + __mid._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 656, 4 + ) + __mid._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 656, 4 + ) + mid = property(__mid.value, __mid.set, None, None) - _ElementMap.update({ - __start.name() : __start, - __stop.name() : __stop - }) - _AttributeMap.update({ - __mid.name() : __mid - }) + _ElementMap.update({__start.name(): __start, __stop.name(): __stop}) + _AttributeMap.update({__mid.name(): __mid}) + + _module_typeBindings.itemizeType = itemizeType -Namespace.addCategoryObject('typeBinding', 'itemizeType', itemizeType) +Namespace.addCategoryObject("typeBinding", "itemizeType", itemizeType) # Complex type {urn:vpro:media:update:2009}liveItemize with content type ELEMENT_ONLY -class liveItemize (pyxb.binding.basis.complexTypeDefinition): +class liveItemize(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:update:2009}liveItemize with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'liveItemize') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 659, 3) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "liveItemize") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 659, 3) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:update:2009}start uses Python identifier start - __start = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'start'), 'start', '__urnvpromediaupdate2009_liveItemize_urnvpromediaupdate2009start', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 661, 6), ) + __start = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "start"), + "start", + "__urnvpromediaupdate2009_liveItemize_urnvpromediaupdate2009start", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 661, 6), + ) - start = property(__start.value, __start.set, None, None) - # Element {urn:vpro:media:update:2009}stop uses Python identifier stop - __stop = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'stop'), 'stop', '__urnvpromediaupdate2009_liveItemize_urnvpromediaupdate2009stop', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 662, 6), ) + __stop = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "stop"), + "stop", + "__urnvpromediaupdate2009_liveItemize_urnvpromediaupdate2009stop", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 662, 6), + ) - stop = property(__stop.value, __stop.set, None, None) - # Attribute stream uses Python identifier stream - __stream = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'stream'), 'stream', '__urnvpromediaupdate2009_liveItemize_stream', pyxb.binding.datatypes.string) - __stream._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 664, 4) - __stream._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 664, 4) - + __stream = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "stream"), + "stream", + "__urnvpromediaupdate2009_liveItemize_stream", + pyxb.binding.datatypes.string, + ) + __stream._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 664, 4 + ) + __stream._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 664, 4 + ) + stream = property(__stream.value, __stream.set, None, None) - _ElementMap.update({ - __start.name() : __start, - __stop.name() : __stop - }) - _AttributeMap.update({ - __stream.name() : __stream - }) + _ElementMap.update({__start.name(): __start, __stop.name(): __stop}) + _AttributeMap.update({__stream.name(): __stream}) + + _module_typeBindings.liveItemize = liveItemize -Namespace.addCategoryObject('typeBinding', 'liveItemize', liveItemize) +Namespace.addCategoryObject("typeBinding", "liveItemize", liveItemize) # Complex type {urn:vpro:media:update:2009}itemizeResponseType with content type ELEMENT_ONLY -class itemizeResponseType (pyxb.binding.basis.complexTypeDefinition): +class itemizeResponseType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:update:2009}itemizeResponseType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'itemizeResponseType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 667, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "itemizeResponseType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 667, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:update:2009}request uses Python identifier request - __request = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'request'), 'request', '__urnvpromediaupdate2009_itemizeResponseType_urnvpromediaupdate2009request', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 670, 8), ) + __request = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "request"), + "request", + "__urnvpromediaupdate2009_itemizeResponseType_urnvpromediaupdate2009request", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 670, 8), + ) - request = property(__request.value, __request.set, None, None) - # Element {urn:vpro:media:update:2009}liverequest uses Python identifier liverequest - __liverequest = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'liverequest'), 'liverequest', '__urnvpromediaupdate2009_itemizeResponseType_urnvpromediaupdate2009liverequest', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 671, 8), ) + __liverequest = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "liverequest"), + "liverequest", + "__urnvpromediaupdate2009_itemizeResponseType_urnvpromediaupdate2009liverequest", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 671, 8), + ) - liverequest = property(__liverequest.value, __liverequest.set, None, None) - # Element {urn:vpro:media:update:2009}result uses Python identifier result - __result = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'result'), 'result', '__urnvpromediaupdate2009_itemizeResponseType_urnvpromediaupdate2009result', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 673, 6), ) + __result = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "result"), + "result", + "__urnvpromediaupdate2009_itemizeResponseType_urnvpromediaupdate2009result", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 673, 6), + ) - result = property(__result.value, __result.set, None, None) - # Element {urn:vpro:media:update:2009}id uses Python identifier id - __id = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'id'), 'id', '__urnvpromediaupdate2009_itemizeResponseType_urnvpromediaupdate2009id', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 675, 6), ) + __id = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "id"), + "id", + "__urnvpromediaupdate2009_itemizeResponseType_urnvpromediaupdate2009id", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 675, 6), + ) - id = property(__id.value, __id.set, None, None) - # Attribute success uses Python identifier success - __success = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'success'), 'success', '__urnvpromediaupdate2009_itemizeResponseType_success', pyxb.binding.datatypes.boolean, required=True) - __success._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 677, 4) - __success._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 677, 4) - + __success = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "success"), + "success", + "__urnvpromediaupdate2009_itemizeResponseType_success", + pyxb.binding.datatypes.boolean, + required=True, + ) + __success._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 677, 4 + ) + __success._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 677, 4 + ) + success = property(__success.value, __success.set, None, None) - _ElementMap.update({ - __request.name() : __request, - __liverequest.name() : __liverequest, - __result.name() : __result, - __id.name() : __id - }) - _AttributeMap.update({ - __success.name() : __success - }) + _ElementMap.update( + {__request.name(): __request, __liverequest.name(): __liverequest, __result.name(): __result, __id.name(): __id} + ) + _AttributeMap.update({__success.name(): __success}) + + _module_typeBindings.itemizeResponseType = itemizeResponseType -Namespace.addCategoryObject('typeBinding', 'itemizeResponseType', itemizeResponseType) +Namespace.addCategoryObject("typeBinding", "itemizeResponseType", itemizeResponseType) # Complex type {urn:vpro:media:update:2009}descriptionUpdateType with content type SIMPLE -class descriptionUpdateType (pyxb.binding.basis.complexTypeDefinition): +class descriptionUpdateType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:update:2009}descriptionUpdateType with content type SIMPLE""" + _TypeDefinition = _ImportedBinding_npoapi_xml_media.unboundedTextType _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_SIMPLE _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'descriptionUpdateType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 72, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "descriptionUpdateType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 72, 2) _ElementMap = {} _AttributeMap = {} # Base type is _ImportedBinding_npoapi_xml_media.unboundedTextType - + # Attribute type uses Python identifier type - __type = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'type'), 'type', '__urnvpromediaupdate2009_descriptionUpdateType_type', _ImportedBinding_npoapi_xml_media.textualTypeEnum, required=True) - __type._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 75, 8) - __type._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 75, 8) - + __type = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "type"), + "type", + "__urnvpromediaupdate2009_descriptionUpdateType_type", + _ImportedBinding_npoapi_xml_media.textualTypeEnum, + required=True, + ) + __type._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 75, 8 + ) + __type._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 75, 8 + ) + type = property(__type.value, __type.set, None, None) - _ElementMap.update({ - - }) - _AttributeMap.update({ - __type.name() : __type - }) + _ElementMap.update({}) + _AttributeMap.update({__type.name(): __type}) + + _module_typeBindings.descriptionUpdateType = descriptionUpdateType -Namespace.addCategoryObject('typeBinding', 'descriptionUpdateType', descriptionUpdateType) +Namespace.addCategoryObject("typeBinding", "descriptionUpdateType", descriptionUpdateType) # Complex type {urn:vpro:media:update:2009}geoLocationUpdateType with content type EMPTY -class geoLocationUpdateType (pyxb.binding.basis.complexTypeDefinition): +class geoLocationUpdateType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:update:2009}geoLocationUpdateType with content type EMPTY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_EMPTY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'geoLocationUpdateType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 94, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "geoLocationUpdateType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 94, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Attribute gtaaUri uses Python identifier gtaaUri - __gtaaUri = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'gtaaUri'), 'gtaaUri', '__urnvpromediaupdate2009_geoLocationUpdateType_gtaaUri', pyxb.binding.datatypes.string) - __gtaaUri._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 95, 4) - __gtaaUri._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 95, 4) - + __gtaaUri = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "gtaaUri"), + "gtaaUri", + "__urnvpromediaupdate2009_geoLocationUpdateType_gtaaUri", + pyxb.binding.datatypes.string, + ) + __gtaaUri._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 95, 4 + ) + __gtaaUri._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 95, 4 + ) + gtaaUri = property(__gtaaUri.value, __gtaaUri.set, None, None) - # Attribute role uses Python identifier role - __role = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'role'), 'role', '__urnvpromediaupdate2009_geoLocationUpdateType_role', _ImportedBinding_npoapi_xml_media.geoRoleType) - __role._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 96, 4) - __role._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 96, 4) - + __role = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "role"), + "role", + "__urnvpromediaupdate2009_geoLocationUpdateType_role", + _ImportedBinding_npoapi_xml_media.geoRoleType, + ) + __role._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 96, 4 + ) + __role._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 96, 4 + ) + role = property(__role.value, __role.set, None, None) - _ElementMap.update({ - - }) - _AttributeMap.update({ - __gtaaUri.name() : __gtaaUri, - __role.name() : __role - }) + _ElementMap.update({}) + _AttributeMap.update({__gtaaUri.name(): __gtaaUri, __role.name(): __role}) + + _module_typeBindings.geoLocationUpdateType = geoLocationUpdateType -Namespace.addCategoryObject('typeBinding', 'geoLocationUpdateType', geoLocationUpdateType) +Namespace.addCategoryObject("typeBinding", "geoLocationUpdateType", geoLocationUpdateType) # Complex type {urn:vpro:media:update:2009}personUpdateType with content type ELEMENT_ONLY -class personUpdateType (pyxb.binding.basis.complexTypeDefinition): +class personUpdateType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:update:2009}personUpdateType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'personUpdateType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 109, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "personUpdateType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 109, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:update:2009}givenName uses Python identifier givenName - __givenName = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'givenName'), 'givenName', '__urnvpromediaupdate2009_personUpdateType_urnvpromediaupdate2009givenName', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 111, 6), ) + __givenName = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "givenName"), + "givenName", + "__urnvpromediaupdate2009_personUpdateType_urnvpromediaupdate2009givenName", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 111, 6), + ) - givenName = property(__givenName.value, __givenName.set, None, None) - # Element {urn:vpro:media:update:2009}familyName uses Python identifier familyName - __familyName = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'familyName'), 'familyName', '__urnvpromediaupdate2009_personUpdateType_urnvpromediaupdate2009familyName', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 112, 6), ) + __familyName = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "familyName"), + "familyName", + "__urnvpromediaupdate2009_personUpdateType_urnvpromediaupdate2009familyName", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 112, 6), + ) - familyName = property(__familyName.value, __familyName.set, None, None) - # Attribute gtaaUri uses Python identifier gtaaUri - __gtaaUri = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'gtaaUri'), 'gtaaUri', '__urnvpromediaupdate2009_personUpdateType_gtaaUri', pyxb.binding.datatypes.string) - __gtaaUri._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 114, 4) - __gtaaUri._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 114, 4) - + __gtaaUri = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "gtaaUri"), + "gtaaUri", + "__urnvpromediaupdate2009_personUpdateType_gtaaUri", + pyxb.binding.datatypes.string, + ) + __gtaaUri._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 114, 4 + ) + __gtaaUri._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 114, 4 + ) + gtaaUri = property(__gtaaUri.value, __gtaaUri.set, None, None) - # Attribute role uses Python identifier role - __role = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'role'), 'role', '__urnvpromediaupdate2009_personUpdateType_role', _ImportedBinding_npoapi_xml_media.roleType, required=True) - __role._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 115, 4) - __role._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 115, 4) - + __role = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "role"), + "role", + "__urnvpromediaupdate2009_personUpdateType_role", + _ImportedBinding_npoapi_xml_media.roleType, + required=True, + ) + __role._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 115, 4 + ) + __role._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 115, 4 + ) + role = property(__role.value, __role.set, None, None) - _ElementMap.update({ - __givenName.name() : __givenName, - __familyName.name() : __familyName - }) - _AttributeMap.update({ - __gtaaUri.name() : __gtaaUri, - __role.name() : __role - }) + _ElementMap.update({__givenName.name(): __givenName, __familyName.name(): __familyName}) + _AttributeMap.update({__gtaaUri.name(): __gtaaUri, __role.name(): __role}) + + _module_typeBindings.personUpdateType = personUpdateType -Namespace.addCategoryObject('typeBinding', 'personUpdateType', personUpdateType) +Namespace.addCategoryObject("typeBinding", "personUpdateType", personUpdateType) # Complex type {urn:vpro:media:update:2009}nameUpdateType with content type EMPTY -class nameUpdateType (pyxb.binding.basis.complexTypeDefinition): +class nameUpdateType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:update:2009}nameUpdateType with content type EMPTY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_EMPTY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'nameUpdateType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 118, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "nameUpdateType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 118, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Attribute gtaaUri uses Python identifier gtaaUri - __gtaaUri = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'gtaaUri'), 'gtaaUri', '__urnvpromediaupdate2009_nameUpdateType_gtaaUri', pyxb.binding.datatypes.string, required=True) - __gtaaUri._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 119, 4) - __gtaaUri._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 119, 4) - + __gtaaUri = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "gtaaUri"), + "gtaaUri", + "__urnvpromediaupdate2009_nameUpdateType_gtaaUri", + pyxb.binding.datatypes.string, + required=True, + ) + __gtaaUri._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 119, 4 + ) + __gtaaUri._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 119, 4 + ) + gtaaUri = property(__gtaaUri.value, __gtaaUri.set, None, None) - # Attribute role uses Python identifier role - __role = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'role'), 'role', '__urnvpromediaupdate2009_nameUpdateType_role', _ImportedBinding_npoapi_xml_media.roleType, required=True) - __role._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 120, 4) - __role._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 120, 4) - + __role = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "role"), + "role", + "__urnvpromediaupdate2009_nameUpdateType_role", + _ImportedBinding_npoapi_xml_media.roleType, + required=True, + ) + __role._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 120, 4 + ) + __role._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 120, 4 + ) + role = property(__role.value, __role.set, None, None) - _ElementMap.update({ - - }) - _AttributeMap.update({ - __gtaaUri.name() : __gtaaUri, - __role.name() : __role - }) + _ElementMap.update({}) + _AttributeMap.update({__gtaaUri.name(): __gtaaUri, __role.name(): __role}) + + _module_typeBindings.nameUpdateType = nameUpdateType -Namespace.addCategoryObject('typeBinding', 'nameUpdateType', nameUpdateType) +Namespace.addCategoryObject("typeBinding", "nameUpdateType", nameUpdateType) # Complex type {urn:vpro:media:update:2009}mediaUpdateType with content type ELEMENT_ONLY -class mediaUpdateType (pyxb.binding.basis.complexTypeDefinition): +class mediaUpdateType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:update:2009}mediaUpdateType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = True - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'mediaUpdateType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 143, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "mediaUpdateType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 143, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:update:2009}crid uses Python identifier crid - __crid = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'crid'), 'crid', '__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009crid', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 145, 6), ) + __crid = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "crid"), + "crid", + "__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009crid", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 145, 6), + ) - crid = property(__crid.value, __crid.set, None, None) - # Element {urn:vpro:media:update:2009}broadcaster uses Python identifier broadcaster - __broadcaster = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'broadcaster'), 'broadcaster', '__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009broadcaster', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 146, 6), ) + __broadcaster = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "broadcaster"), + "broadcaster", + "__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009broadcaster", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 146, 6), + ) - broadcaster = property(__broadcaster.value, __broadcaster.set, None, None) - # Element {urn:vpro:media:update:2009}portal uses Python identifier portal - __portal = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'portal'), 'portal', '__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009portal', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 147, 6), ) + __portal = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "portal"), + "portal", + "__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009portal", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 147, 6), + ) - portal = property(__portal.value, __portal.set, None, None) - # Element {urn:vpro:media:update:2009}exclusive uses Python identifier exclusive - __exclusive = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'exclusive'), 'exclusive', '__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009exclusive', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 148, 6), ) + __exclusive = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "exclusive"), + "exclusive", + "__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009exclusive", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 148, 6), + ) - exclusive = property(__exclusive.value, __exclusive.set, None, None) - # Element {urn:vpro:media:update:2009}region uses Python identifier region - __region = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'region'), 'region', '__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009region', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 150, 6), ) + __region = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "region"), + "region", + "__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009region", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 150, 6), + ) - region = property(__region.value, __region.set, None, None) - # Element {urn:vpro:media:update:2009}title uses Python identifier title - __title = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'title'), 'title', '__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009title', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 151, 6), ) + __title = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "title"), + "title", + "__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009title", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 151, 6), + ) - - title = property(__title.value, __title.set, None, '\n Titles in dutch\n ') + title = property(__title.value, __title.set, None, "\n Titles in dutch\n ") - # Element {urn:vpro:media:update:2009}description uses Python identifier description - __description = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'description'), 'description', '__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009description', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 158, 6), ) - - - description = property(__description.value, __description.set, None, '\n Descriptions in dutch\n ') + __description = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "description"), + "description", + "__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009description", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 158, 6), + ) + + description = property( + __description.value, __description.set, None, "\n Descriptions in dutch\n " + ) - # Element {urn:vpro:media:update:2009}tag uses Python identifier tag - __tag = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'tag'), 'tag', '__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009tag', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 165, 6), ) + __tag = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "tag"), + "tag", + "__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009tag", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 165, 6), + ) - tag = property(__tag.value, __tag.set, None, None) - # Element {urn:vpro:media:update:2009}country uses Python identifier country - __country = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'country'), 'country', '__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009country', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 166, 6), ) + __country = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "country"), + "country", + "__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009country", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 166, 6), + ) + + country = property( + __country.value, + __country.set, + None, + "\n Countries somehow associated with this item. This does not refer to the used language in the meta fields of\n this object. Only supported if version >= 5.0.\n ", + ) - - country = property(__country.value, __country.set, None, '\n Countries somehow associated with this item. This does not refer to the used language in the meta fields of\n this object. Only supported if version >= 5.0.\n ') - - # Element {urn:vpro:media:update:2009}language uses Python identifier language - __language = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'language'), 'language', '__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009language', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 174, 6), ) - - - language = property(__language.value, __language.set, None, '\n Languages somehow associated with this item. This does not refer to the used language in the meta fields of this object. They should be in dutch. Only supported if version >= 5.0.\n ') + __language = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "language"), + "language", + "__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009language", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 174, 6), + ) + + language = property( + __language.value, + __language.set, + None, + "\n Languages somehow associated with this item. This does not refer to the used language in the meta fields of this object. They should be in dutch. Only supported if version >= 5.0.\n ", + ) - # Element {urn:vpro:media:update:2009}genre uses Python identifier genre - __genre = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'genre'), 'genre', '__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009genre', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 181, 6), ) + __genre = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "genre"), + "genre", + "__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009genre", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 181, 6), + ) - genre = property(__genre.value, __genre.set, None, None) - # Element {urn:vpro:media:update:2009}intentions uses Python identifier intentions - __intentions = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'intentions'), 'intentions', '__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009intentions', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 182, 6), ) + __intentions = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "intentions"), + "intentions", + "__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009intentions", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 182, 6), + ) - intentions = property(__intentions.value, __intentions.set, None, None) - # Element {urn:vpro:media:update:2009}targetGroups uses Python identifier targetGroups - __targetGroups = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'targetGroups'), 'targetGroups', '__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009targetGroups', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 189, 6), ) + __targetGroups = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "targetGroups"), + "targetGroups", + "__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009targetGroups", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 189, 6), + ) - targetGroups = property(__targetGroups.value, __targetGroups.set, None, None) - # Element {urn:vpro:media:update:2009}geoLocations uses Python identifier geoLocations - __geoLocations = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'geoLocations'), 'geoLocations', '__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009geoLocations', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 196, 6), ) + __geoLocations = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "geoLocations"), + "geoLocations", + "__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009geoLocations", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 196, 6), + ) - geoLocations = property(__geoLocations.value, __geoLocations.set, None, None) - # Element {urn:vpro:media:update:2009}topics uses Python identifier topics - __topics = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'topics'), 'topics', '__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009topics', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 197, 6), ) + __topics = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "topics"), + "topics", + "__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009topics", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 197, 6), + ) - topics = property(__topics.value, __topics.set, None, None) - # Element {urn:vpro:media:update:2009}avAttributes uses Python identifier avAttributes - __avAttributes = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'avAttributes'), 'avAttributes', '__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009avAttributes', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 198, 6), ) + __avAttributes = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "avAttributes"), + "avAttributes", + "__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009avAttributes", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 198, 6), + ) - avAttributes = property(__avAttributes.value, __avAttributes.set, None, None) - # Element {urn:vpro:media:update:2009}releaseYear uses Python identifier releaseYear - __releaseYear = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'releaseYear'), 'releaseYear', '__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009releaseYear', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 199, 6), ) + __releaseYear = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "releaseYear"), + "releaseYear", + "__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009releaseYear", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 199, 6), + ) - releaseYear = property(__releaseYear.value, __releaseYear.set, None, None) - # Element {urn:vpro:media:update:2009}duration uses Python identifier duration - __duration = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'duration'), 'duration', '__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009duration', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 200, 6), ) + __duration = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "duration"), + "duration", + "__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009duration", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 200, 6), + ) - duration = property(__duration.value, __duration.set, None, None) - # Element {urn:vpro:media:update:2009}credits uses Python identifier credits - __credits = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'credits'), 'credits', '__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009credits', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 201, 6), ) + __credits = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "credits"), + "credits", + "__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009credits", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 201, 6), + ) - credits = property(__credits.value, __credits.set, None, None) - # Element {urn:vpro:media:update:2009}memberOf uses Python identifier memberOf - __memberOf = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'memberOf'), 'memberOf', '__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009memberOf', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 202, 6), ) + __memberOf = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "memberOf"), + "memberOf", + "__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009memberOf", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 202, 6), + ) - memberOf = property(__memberOf.value, __memberOf.set, None, None) - # Element {urn:vpro:media:update:2009}ageRating uses Python identifier ageRating - __ageRating = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'ageRating'), 'ageRating', '__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009ageRating', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 203, 6), ) + __ageRating = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "ageRating"), + "ageRating", + "__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009ageRating", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 203, 6), + ) - ageRating = property(__ageRating.value, __ageRating.set, None, None) - # Element {urn:vpro:media:update:2009}contentRating uses Python identifier contentRating - __contentRating = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'contentRating'), 'contentRating', '__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009contentRating', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 204, 6), ) + __contentRating = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "contentRating"), + "contentRating", + "__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009contentRating", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 204, 6), + ) - contentRating = property(__contentRating.value, __contentRating.set, None, None) - # Element {urn:vpro:media:update:2009}email uses Python identifier email - __email = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'email'), 'email', '__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009email', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 206, 6), ) + __email = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "email"), + "email", + "__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009email", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 206, 6), + ) - email = property(__email.value, __email.set, None, None) - # Element {urn:vpro:media:update:2009}website uses Python identifier website - __website = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'website'), 'website', '__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009website', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 207, 6), ) + __website = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "website"), + "website", + "__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009website", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 207, 6), + ) - website = property(__website.value, __website.set, None, None) - # Element {urn:vpro:media:update:2009}twitterref uses Python identifier twitterref - __twitterref = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'twitterref'), 'twitterref', '__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009twitterref', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 208, 6), ) - - - twitterref = property(__twitterref.value, __twitterref.set, None, '\n Only supported if version >= 5.10.\n ') + __twitterref = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "twitterref"), + "twitterref", + "__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009twitterref", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 208, 6), + ) + + twitterref = property( + __twitterref.value, __twitterref.set, None, "\n Only supported if version >= 5.10.\n " + ) - # Element {urn:vpro:media:update:2009}prediction uses Python identifier prediction - __prediction = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'prediction'), 'prediction', '__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009prediction', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 215, 6), ) + __prediction = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "prediction"), + "prediction", + "__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009prediction", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 215, 6), + ) + + prediction = property( + __prediction.value, + __prediction.set, + None, + "\n With predictions it can be indicated for which platforms locations will be available.\n If there is a prediction for a certain platform, but the mediaobject is not yet available on the streaming platform, then\n there will be no associated location for that certain platform.\n\n If the streaming platform status changes, then according to these 'prediction' records the locations will be changed.\n ", + ) - - prediction = property(__prediction.value, __prediction.set, None, "\n With predictions it can be indicated for which platforms locations will be available.\n If there is a prediction for a certain platform, but the mediaobject is not yet available on the streaming platform, then\n there will be no associated location for that certain platform.\n\n If the streaming platform status changes, then according to these 'prediction' records the locations will be changed.\n ") - - # Element {urn:vpro:media:update:2009}locations uses Python identifier locations - __locations = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'locations'), 'locations', '__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009locations', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 226, 6), ) + __locations = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "locations"), + "locations", + "__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009locations", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 226, 6), + ) - locations = property(__locations.value, __locations.set, None, None) - # Element {urn:vpro:media:update:2009}scheduleEvents uses Python identifier scheduleEvents - __scheduleEvents = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'scheduleEvents'), 'scheduleEvents', '__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009scheduleEvents', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 233, 6), ) - - - scheduleEvents = property(__scheduleEvents.value, __scheduleEvents.set, None, 'Please note that this is only available for program upates (since 5.11)') + __scheduleEvents = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "scheduleEvents"), + "scheduleEvents", + "__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009scheduleEvents", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 233, 6), + ) + + scheduleEvents = property( + __scheduleEvents.value, + __scheduleEvents.set, + None, + "Please note that this is only available for program upates (since 5.11)", + ) - # Element {urn:vpro:media:update:2009}relation uses Python identifier relation - __relation = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'relation'), 'relation', '__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009relation', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 244, 6), ) + __relation = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "relation"), + "relation", + "__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009relation", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 244, 6), + ) - relation = property(__relation.value, __relation.set, None, None) - # Element {urn:vpro:media:update:2009}images uses Python identifier images - __images = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'images'), 'images', '__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009images', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 245, 6), ) + __images = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "images"), + "images", + "__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009images", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 245, 6), + ) - images = property(__images.value, __images.set, None, None) - # Element {urn:vpro:media:update:2009}asset uses Python identifier asset - __asset = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'asset'), 'asset', '__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009asset', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 252, 6), ) + __asset = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "asset"), + "asset", + "__urnvpromediaupdate2009_mediaUpdateType_urnvpromediaupdate2009asset", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 252, 6), + ) - asset = property(__asset.value, __asset.set, None, None) - # Attribute avType uses Python identifier avType - __avType = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'avType'), 'avType', '__urnvpromediaupdate2009_mediaUpdateType_avType', _ImportedBinding_npoapi_xml_media.avTypeEnum, required=True) - __avType._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 254, 4) - __avType._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 254, 4) - + __avType = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "avType"), + "avType", + "__urnvpromediaupdate2009_mediaUpdateType_avType", + _ImportedBinding_npoapi_xml_media.avTypeEnum, + required=True, + ) + __avType._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 254, 4 + ) + __avType._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 254, 4 + ) + avType = property(__avType.value, __avType.set, None, None) - # Attribute deleted uses Python identifier deleted - __deleted = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'deleted'), 'deleted', '__urnvpromediaupdate2009_mediaUpdateType_deleted', pyxb.binding.datatypes.boolean) - __deleted._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 255, 4) - __deleted._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 255, 4) - + __deleted = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "deleted"), + "deleted", + "__urnvpromediaupdate2009_mediaUpdateType_deleted", + pyxb.binding.datatypes.boolean, + ) + __deleted._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 255, 4 + ) + __deleted._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 255, 4 + ) + deleted = property(__deleted.value, __deleted.set, None, None) - # Attribute embeddable uses Python identifier embeddable - __embeddable = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'embeddable'), 'embeddable', '__urnvpromediaupdate2009_mediaUpdateType_embeddable', pyxb.binding.datatypes.boolean, unicode_default='true') - __embeddable._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 256, 4) - __embeddable._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 256, 4) - + __embeddable = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "embeddable"), + "embeddable", + "__urnvpromediaupdate2009_mediaUpdateType_embeddable", + pyxb.binding.datatypes.boolean, + unicode_default="true", + ) + __embeddable._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 256, 4 + ) + __embeddable._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 256, 4 + ) + embeddable = property(__embeddable.value, __embeddable.set, None, None) - # Attribute publishStart uses Python identifier publishStart - __publishStart = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'publishStart'), 'publishStart', '__urnvpromediaupdate2009_mediaUpdateType_publishStart', pyxb.binding.datatypes.dateTime) - __publishStart._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 257, 4) - __publishStart._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 257, 4) - + __publishStart = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "publishStart"), + "publishStart", + "__urnvpromediaupdate2009_mediaUpdateType_publishStart", + pyxb.binding.datatypes.dateTime, + ) + __publishStart._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 257, 4 + ) + __publishStart._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 257, 4 + ) + publishStart = property(__publishStart.value, __publishStart.set, None, None) - # Attribute publishStop uses Python identifier publishStop - __publishStop = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'publishStop'), 'publishStop', '__urnvpromediaupdate2009_mediaUpdateType_publishStop', pyxb.binding.datatypes.dateTime) - __publishStop._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 258, 4) - __publishStop._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 258, 4) - + __publishStop = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "publishStop"), + "publishStop", + "__urnvpromediaupdate2009_mediaUpdateType_publishStop", + pyxb.binding.datatypes.dateTime, + ) + __publishStop._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 258, 4 + ) + __publishStop._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 258, 4 + ) + publishStop = property(__publishStop.value, __publishStop.set, None, None) - # Attribute mid uses Python identifier mid - __mid = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'mid'), 'mid', '__urnvpromediaupdate2009_mediaUpdateType_mid', _ImportedBinding_npoapi_xml_media.midType) - __mid._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 259, 4) - __mid._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 259, 4) - + __mid = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "mid"), + "mid", + "__urnvpromediaupdate2009_mediaUpdateType_mid", + _ImportedBinding_npoapi_xml_media.midType, + ) + __mid._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 259, 4 + ) + __mid._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 259, 4 + ) + mid = property(__mid.value, __mid.set, None, None) - # Attribute urn uses Python identifier urn - __urn = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'urn'), 'urn', '__urnvpromediaupdate2009_mediaUpdateType_urn', pyxb.binding.datatypes.anyURI) - __urn._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 260, 4) - __urn._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 260, 4) - + __urn = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "urn"), + "urn", + "__urnvpromediaupdate2009_mediaUpdateType_urn", + pyxb.binding.datatypes.anyURI, + ) + __urn._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 260, 4 + ) + __urn._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 260, 4 + ) + urn = property(__urn.value, __urn.set, None, None) - # Attribute ordered uses Python identifier ordered - __ordered = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'ordered'), 'ordered', '__urnvpromediaupdate2009_mediaUpdateType_ordered', pyxb.binding.datatypes.boolean) - __ordered._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 261, 4) - __ordered._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 261, 4) - + __ordered = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "ordered"), + "ordered", + "__urnvpromediaupdate2009_mediaUpdateType_ordered", + pyxb.binding.datatypes.boolean, + ) + __ordered._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 261, 4 + ) + __ordered._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 261, 4 + ) + ordered = property(__ordered.value, __ordered.set, None, None) - # Attribute version uses Python identifier version - __version = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'version'), 'version', '__urnvpromediaupdate2009_mediaUpdateType_version', _module_typeBindings.versionType) - __version._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 262, 4) - __version._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 262, 4) - - version = property(__version.value, __version.set, None, '\n \n\n ') - - _ElementMap.update({ - __crid.name() : __crid, - __broadcaster.name() : __broadcaster, - __portal.name() : __portal, - __exclusive.name() : __exclusive, - __region.name() : __region, - __title.name() : __title, - __description.name() : __description, - __tag.name() : __tag, - __country.name() : __country, - __language.name() : __language, - __genre.name() : __genre, - __intentions.name() : __intentions, - __targetGroups.name() : __targetGroups, - __geoLocations.name() : __geoLocations, - __topics.name() : __topics, - __avAttributes.name() : __avAttributes, - __releaseYear.name() : __releaseYear, - __duration.name() : __duration, - __credits.name() : __credits, - __memberOf.name() : __memberOf, - __ageRating.name() : __ageRating, - __contentRating.name() : __contentRating, - __email.name() : __email, - __website.name() : __website, - __twitterref.name() : __twitterref, - __prediction.name() : __prediction, - __locations.name() : __locations, - __scheduleEvents.name() : __scheduleEvents, - __relation.name() : __relation, - __images.name() : __images, - __asset.name() : __asset - }) - _AttributeMap.update({ - __avType.name() : __avType, - __deleted.name() : __deleted, - __embeddable.name() : __embeddable, - __publishStart.name() : __publishStart, - __publishStop.name() : __publishStop, - __mid.name() : __mid, - __urn.name() : __urn, - __ordered.name() : __ordered, - __version.name() : __version - }) + __version = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "version"), + "version", + "__urnvpromediaupdate2009_mediaUpdateType_version", + _module_typeBindings.versionType, + ) + __version._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 262, 4 + ) + __version._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 262, 4 + ) + + version = property(__version.value, __version.set, None, "\n \n\n ") + + _ElementMap.update( + { + __crid.name(): __crid, + __broadcaster.name(): __broadcaster, + __portal.name(): __portal, + __exclusive.name(): __exclusive, + __region.name(): __region, + __title.name(): __title, + __description.name(): __description, + __tag.name(): __tag, + __country.name(): __country, + __language.name(): __language, + __genre.name(): __genre, + __intentions.name(): __intentions, + __targetGroups.name(): __targetGroups, + __geoLocations.name(): __geoLocations, + __topics.name(): __topics, + __avAttributes.name(): __avAttributes, + __releaseYear.name(): __releaseYear, + __duration.name(): __duration, + __credits.name(): __credits, + __memberOf.name(): __memberOf, + __ageRating.name(): __ageRating, + __contentRating.name(): __contentRating, + __email.name(): __email, + __website.name(): __website, + __twitterref.name(): __twitterref, + __prediction.name(): __prediction, + __locations.name(): __locations, + __scheduleEvents.name(): __scheduleEvents, + __relation.name(): __relation, + __images.name(): __images, + __asset.name(): __asset, + } + ) + _AttributeMap.update( + { + __avType.name(): __avType, + __deleted.name(): __deleted, + __embeddable.name(): __embeddable, + __publishStart.name(): __publishStart, + __publishStop.name(): __publishStop, + __mid.name(): __mid, + __urn.name(): __urn, + __ordered.name(): __ordered, + __version.name(): __version, + } + ) + + _module_typeBindings.mediaUpdateType = mediaUpdateType -Namespace.addCategoryObject('typeBinding', 'mediaUpdateType', mediaUpdateType) +Namespace.addCategoryObject("typeBinding", "mediaUpdateType", mediaUpdateType) # Complex type {urn:vpro:media:update:2009}midAndTypeType with content type ELEMENT_ONLY -class midAndTypeType (pyxb.binding.basis.complexTypeDefinition): +class midAndTypeType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:update:2009}midAndTypeType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'midAndTypeType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 282, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "midAndTypeType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 282, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:update:2009}crid uses Python identifier crid - __crid = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'crid'), 'crid', '__urnvpromediaupdate2009_midAndTypeType_urnvpromediaupdate2009crid', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 284, 6), ) + __crid = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "crid"), + "crid", + "__urnvpromediaupdate2009_midAndTypeType_urnvpromediaupdate2009crid", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 284, 6), + ) - crid = property(__crid.value, __crid.set, None, None) - # Attribute mid uses Python identifier mid - __mid = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'mid'), 'mid', '__urnvpromediaupdate2009_midAndTypeType_mid', pyxb.binding.datatypes.string) - __mid._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 286, 4) - __mid._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 286, 4) - + __mid = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "mid"), + "mid", + "__urnvpromediaupdate2009_midAndTypeType_mid", + pyxb.binding.datatypes.string, + ) + __mid._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 286, 4 + ) + __mid._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 286, 4 + ) + mid = property(__mid.value, __mid.set, None, None) - # Attribute id uses Python identifier id - __id = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'id'), 'id', '__urnvpromediaupdate2009_midAndTypeType_id', pyxb.binding.datatypes.long) - __id._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 287, 4) - __id._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 287, 4) - + __id = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "id"), + "id", + "__urnvpromediaupdate2009_midAndTypeType_id", + pyxb.binding.datatypes.long, + ) + __id._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 287, 4 + ) + __id._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 287, 4 + ) + id = property(__id.value, __id.set, None, None) - # Attribute type uses Python identifier type - __type = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'type'), 'type', '__urnvpromediaupdate2009_midAndTypeType_type', _ImportedBinding_npoapi_xml_media.mediaTypeEnum) - __type._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 288, 4) - __type._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 288, 4) - + __type = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "type"), + "type", + "__urnvpromediaupdate2009_midAndTypeType_type", + _ImportedBinding_npoapi_xml_media.mediaTypeEnum, + ) + __type._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 288, 4 + ) + __type._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 288, 4 + ) + type = property(__type.value, __type.set, None, None) - _ElementMap.update({ - __crid.name() : __crid - }) - _AttributeMap.update({ - __mid.name() : __mid, - __id.name() : __id, - __type.name() : __type - }) + _ElementMap.update({__crid.name(): __crid}) + _AttributeMap.update({__mid.name(): __mid, __id.name(): __id, __type.name(): __type}) + + _module_typeBindings.midAndTypeType = midAndTypeType -Namespace.addCategoryObject('typeBinding', 'midAndTypeType', midAndTypeType) +Namespace.addCategoryObject("typeBinding", "midAndTypeType", midAndTypeType) # Complex type {urn:vpro:media:update:2009}geoRestrictionUpdateType with content type SIMPLE -class geoRestrictionUpdateType (pyxb.binding.basis.complexTypeDefinition): +class geoRestrictionUpdateType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:update:2009}geoRestrictionUpdateType with content type SIMPLE""" + _TypeDefinition = _ImportedBinding_npoapi_xml_media.geoRestrictionEnum _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_SIMPLE _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'geoRestrictionUpdateType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 299, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "geoRestrictionUpdateType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 299, 2) _ElementMap = {} _AttributeMap = {} # Base type is _ImportedBinding_npoapi_xml_media.geoRestrictionEnum - + # Attribute start uses Python identifier start - __start = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'start'), 'start', '__urnvpromediaupdate2009_geoRestrictionUpdateType_start', pyxb.binding.datatypes.dateTime) - __start._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 326, 4) - __start._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 326, 4) - + __start = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "start"), + "start", + "__urnvpromediaupdate2009_geoRestrictionUpdateType_start", + pyxb.binding.datatypes.dateTime, + ) + __start._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 326, 4 + ) + __start._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 326, 4) + start = property(__start.value, __start.set, None, None) - # Attribute stop uses Python identifier stop - __stop = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'stop'), 'stop', '__urnvpromediaupdate2009_geoRestrictionUpdateType_stop', pyxb.binding.datatypes.dateTime) - __stop._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 327, 4) - __stop._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 327, 4) - + __stop = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "stop"), + "stop", + "__urnvpromediaupdate2009_geoRestrictionUpdateType_stop", + pyxb.binding.datatypes.dateTime, + ) + __stop._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproMedia.xsd", 327, 4 + ) + __stop._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 327, 4) + stop = property(__stop.value, __stop.set, None, None) - # Attribute platform uses Python identifier platform - __platform = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'platform'), 'platform', '__urnvpromediaupdate2009_geoRestrictionUpdateType_platform', _ImportedBinding_npoapi_xml_media.platformTypeEnum) - __platform._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 303, 8) - __platform._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 303, 8) - + __platform = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "platform"), + "platform", + "__urnvpromediaupdate2009_geoRestrictionUpdateType_platform", + _ImportedBinding_npoapi_xml_media.platformTypeEnum, + ) + __platform._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 303, 8 + ) + __platform._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 303, 8 + ) + platform = property(__platform.value, __platform.set, None, None) - _ElementMap.update({ - - }) - _AttributeMap.update({ - __start.name() : __start, - __stop.name() : __stop, - __platform.name() : __platform - }) + _ElementMap.update({}) + _AttributeMap.update({__start.name(): __start, __stop.name(): __stop, __platform.name(): __platform}) + + _module_typeBindings.geoRestrictionUpdateType = geoRestrictionUpdateType -Namespace.addCategoryObject('typeBinding', 'geoRestrictionUpdateType', geoRestrictionUpdateType) +Namespace.addCategoryObject("typeBinding", "geoRestrictionUpdateType", geoRestrictionUpdateType) # Complex type {urn:vpro:media:update:2009}titleUpdateType with content type SIMPLE -class titleUpdateType (pyxb.binding.basis.complexTypeDefinition): +class titleUpdateType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:update:2009}titleUpdateType with content type SIMPLE""" + _TypeDefinition = _ImportedBinding_npoapi_xml_media.baseTextType _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_SIMPLE _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'titleUpdateType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 308, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "titleUpdateType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 308, 2) _ElementMap = {} _AttributeMap = {} # Base type is _ImportedBinding_npoapi_xml_media.baseTextType - + # Attribute type uses Python identifier type - __type = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'type'), 'type', '__urnvpromediaupdate2009_titleUpdateType_type', _ImportedBinding_npoapi_xml_media.textualTypeEnum, required=True) - __type._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 311, 8) - __type._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 311, 8) - + __type = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "type"), + "type", + "__urnvpromediaupdate2009_titleUpdateType_type", + _ImportedBinding_npoapi_xml_media.textualTypeEnum, + required=True, + ) + __type._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 311, 8 + ) + __type._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 311, 8 + ) + type = property(__type.value, __type.set, None, None) - _ElementMap.update({ - - }) - _AttributeMap.update({ - __type.name() : __type - }) + _ElementMap.update({}) + _AttributeMap.update({__type.name(): __type}) + + _module_typeBindings.titleUpdateType = titleUpdateType -Namespace.addCategoryObject('typeBinding', 'titleUpdateType', titleUpdateType) +Namespace.addCategoryObject("typeBinding", "titleUpdateType", titleUpdateType) # Complex type {urn:vpro:media:update:2009}memberRefUpdateType with content type SIMPLE -class memberRefUpdateType (pyxb.binding.basis.complexTypeDefinition): +class memberRefUpdateType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:update:2009}memberRefUpdateType with content type SIMPLE""" + _TypeDefinition = mediaRefType _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_SIMPLE _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'memberRefUpdateType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 324, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "memberRefUpdateType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 324, 2) _ElementMap = {} _AttributeMap = {} # Base type is mediaRefType - + # Attribute position uses Python identifier position - __position = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'position'), 'position', '__urnvpromediaupdate2009_memberRefUpdateType_position', pyxb.binding.datatypes.int) - __position._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 327, 8) - __position._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 327, 8) - + __position = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "position"), + "position", + "__urnvpromediaupdate2009_memberRefUpdateType_position", + pyxb.binding.datatypes.int, + ) + __position._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 327, 8 + ) + __position._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 327, 8 + ) + position = property(__position.value, __position.set, None, None) - # Attribute highlighted uses Python identifier highlighted - __highlighted = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'highlighted'), 'highlighted', '__urnvpromediaupdate2009_memberRefUpdateType_highlighted', pyxb.binding.datatypes.boolean, unicode_default='false') - __highlighted._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 328, 8) - __highlighted._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 328, 8) - + __highlighted = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "highlighted"), + "highlighted", + "__urnvpromediaupdate2009_memberRefUpdateType_highlighted", + pyxb.binding.datatypes.boolean, + unicode_default="false", + ) + __highlighted._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 328, 8 + ) + __highlighted._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 328, 8 + ) + highlighted = property(__highlighted.value, __highlighted.set, None, None) - _ElementMap.update({ - - }) - _AttributeMap.update({ - __position.name() : __position, - __highlighted.name() : __highlighted - }) + _ElementMap.update({}) + _AttributeMap.update({__position.name(): __position, __highlighted.name(): __highlighted}) + + _module_typeBindings.memberRefUpdateType = memberRefUpdateType -Namespace.addCategoryObject('typeBinding', 'memberRefUpdateType', memberRefUpdateType) +Namespace.addCategoryObject("typeBinding", "memberRefUpdateType", memberRefUpdateType) # Complex type {urn:vpro:media:update:2009}scheduleEventUpdateType with content type ELEMENT_ONLY -class scheduleEventUpdateType (pyxb.binding.basis.complexTypeDefinition): +class scheduleEventUpdateType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:update:2009}scheduleEventUpdateType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'scheduleEventUpdateType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 345, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "scheduleEventUpdateType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 345, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:update:2009}start uses Python identifier start - __start = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'start'), 'start', '__urnvpromediaupdate2009_scheduleEventUpdateType_urnvpromediaupdate2009start', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 347, 6), ) + __start = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "start"), + "start", + "__urnvpromediaupdate2009_scheduleEventUpdateType_urnvpromediaupdate2009start", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 347, 6), + ) - start = property(__start.value, __start.set, None, None) - # Element {urn:vpro:media:update:2009}guideDay uses Python identifier guideDay - __guideDay = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'guideDay'), 'guideDay', '__urnvpromediaupdate2009_scheduleEventUpdateType_urnvpromediaupdate2009guideDay', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 348, 6), ) + __guideDay = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "guideDay"), + "guideDay", + "__urnvpromediaupdate2009_scheduleEventUpdateType_urnvpromediaupdate2009guideDay", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 348, 6), + ) - guideDay = property(__guideDay.value, __guideDay.set, None, None) - # Element {urn:vpro:media:update:2009}duration uses Python identifier duration - __duration = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'duration'), 'duration', '__urnvpromediaupdate2009_scheduleEventUpdateType_urnvpromediaupdate2009duration', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 349, 6), ) + __duration = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "duration"), + "duration", + "__urnvpromediaupdate2009_scheduleEventUpdateType_urnvpromediaupdate2009duration", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 349, 6), + ) - duration = property(__duration.value, __duration.set, None, None) - # Element {urn:vpro:media:update:2009}titles uses Python identifier titles - __titles = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'titles'), 'titles', '__urnvpromediaupdate2009_scheduleEventUpdateType_urnvpromediaupdate2009titles', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 350, 6), ) + __titles = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "titles"), + "titles", + "__urnvpromediaupdate2009_scheduleEventUpdateType_urnvpromediaupdate2009titles", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 350, 6), + ) - titles = property(__titles.value, __titles.set, None, None) - # Element {urn:vpro:media:update:2009}descriptions uses Python identifier descriptions - __descriptions = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'descriptions'), 'descriptions', '__urnvpromediaupdate2009_scheduleEventUpdateType_urnvpromediaupdate2009descriptions', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 357, 6), ) + __descriptions = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "descriptions"), + "descriptions", + "__urnvpromediaupdate2009_scheduleEventUpdateType_urnvpromediaupdate2009descriptions", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 357, 6), + ) - descriptions = property(__descriptions.value, __descriptions.set, None, None) - # Attribute channel uses Python identifier channel - __channel = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'channel'), 'channel', '__urnvpromediaupdate2009_scheduleEventUpdateType_channel', _ImportedBinding_npoapi_xml_media.channelEnum, required=True) - __channel._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 366, 4) - __channel._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 366, 4) - + __channel = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "channel"), + "channel", + "__urnvpromediaupdate2009_scheduleEventUpdateType_channel", + _ImportedBinding_npoapi_xml_media.channelEnum, + required=True, + ) + __channel._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 366, 4 + ) + __channel._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 366, 4 + ) + channel = property(__channel.value, __channel.set, None, None) - # Attribute net uses Python identifier net - __net = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'net'), 'net', '__urnvpromediaupdate2009_scheduleEventUpdateType_net', pyxb.binding.datatypes.string) - __net._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 367, 4) - __net._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 367, 4) - + __net = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "net"), + "net", + "__urnvpromediaupdate2009_scheduleEventUpdateType_net", + pyxb.binding.datatypes.string, + ) + __net._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 367, 4 + ) + __net._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 367, 4 + ) + net = property(__net.value, __net.set, None, None) - _ElementMap.update({ - __start.name() : __start, - __guideDay.name() : __guideDay, - __duration.name() : __duration, - __titles.name() : __titles, - __descriptions.name() : __descriptions - }) - _AttributeMap.update({ - __channel.name() : __channel, - __net.name() : __net - }) + _ElementMap.update( + { + __start.name(): __start, + __guideDay.name(): __guideDay, + __duration.name(): __duration, + __titles.name(): __titles, + __descriptions.name(): __descriptions, + } + ) + _AttributeMap.update({__channel.name(): __channel, __net.name(): __net}) + + _module_typeBindings.scheduleEventUpdateType = scheduleEventUpdateType -Namespace.addCategoryObject('typeBinding', 'scheduleEventUpdateType', scheduleEventUpdateType) +Namespace.addCategoryObject("typeBinding", "scheduleEventUpdateType", scheduleEventUpdateType) # Complex type {urn:vpro:media:update:2009}relationUpdateType with content type SIMPLE -class relationUpdateType (pyxb.binding.basis.complexTypeDefinition): +class relationUpdateType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:update:2009}relationUpdateType with content type SIMPLE""" + _TypeDefinition = pyxb.binding.datatypes.string _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_SIMPLE _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'relationUpdateType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 370, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "relationUpdateType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 370, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.string - + # Attribute type uses Python identifier type - __type = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'type'), 'type', '__urnvpromediaupdate2009_relationUpdateType_type', _ImportedBinding_npoapi_xml_media.relationTypeType, required=True) - __type._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 373, 8) - __type._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 373, 8) - + __type = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "type"), + "type", + "__urnvpromediaupdate2009_relationUpdateType_type", + _ImportedBinding_npoapi_xml_media.relationTypeType, + required=True, + ) + __type._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 373, 8 + ) + __type._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 373, 8 + ) + type = property(__type.value, __type.set, None, None) - # Attribute broadcaster uses Python identifier broadcaster - __broadcaster = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'broadcaster'), 'broadcaster', '__urnvpromediaupdate2009_relationUpdateType_broadcaster', _ImportedBinding_npoapi_xml_media.baseTextType, required=True) - __broadcaster._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 374, 8) - __broadcaster._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 374, 8) - + __broadcaster = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "broadcaster"), + "broadcaster", + "__urnvpromediaupdate2009_relationUpdateType_broadcaster", + _ImportedBinding_npoapi_xml_media.baseTextType, + required=True, + ) + __broadcaster._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 374, 8 + ) + __broadcaster._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 374, 8 + ) + broadcaster = property(__broadcaster.value, __broadcaster.set, None, None) - # Attribute uriRef uses Python identifier uriRef - __uriRef = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'uriRef'), 'uriRef', '__urnvpromediaupdate2009_relationUpdateType_uriRef', pyxb.binding.datatypes.anyURI) - __uriRef._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 375, 8) - __uriRef._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 375, 8) - + __uriRef = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "uriRef"), + "uriRef", + "__urnvpromediaupdate2009_relationUpdateType_uriRef", + pyxb.binding.datatypes.anyURI, + ) + __uriRef._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 375, 8 + ) + __uriRef._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 375, 8 + ) + uriRef = property(__uriRef.value, __uriRef.set, None, None) - # Attribute urn uses Python identifier urn - __urn = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'urn'), 'urn', '__urnvpromediaupdate2009_relationUpdateType_urn', pyxb.binding.datatypes.anyURI) - __urn._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 376, 8) - __urn._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 376, 8) - + __urn = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "urn"), + "urn", + "__urnvpromediaupdate2009_relationUpdateType_urn", + pyxb.binding.datatypes.anyURI, + ) + __urn._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 376, 8 + ) + __urn._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 376, 8 + ) + urn = property(__urn.value, __urn.set, None, None) - _ElementMap.update({ - - }) - _AttributeMap.update({ - __type.name() : __type, - __broadcaster.name() : __broadcaster, - __uriRef.name() : __uriRef, - __urn.name() : __urn - }) + _ElementMap.update({}) + _AttributeMap.update( + {__type.name(): __type, __broadcaster.name(): __broadcaster, __uriRef.name(): __uriRef, __urn.name(): __urn} + ) + + _module_typeBindings.relationUpdateType = relationUpdateType -Namespace.addCategoryObject('typeBinding', 'relationUpdateType', relationUpdateType) +Namespace.addCategoryObject("typeBinding", "relationUpdateType", relationUpdateType) # Complex type {urn:vpro:media:update:2009}imageUpdateType with content type ELEMENT_ONLY -class imageUpdateType (pyxb.binding.basis.complexTypeDefinition): +class imageUpdateType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:update:2009}imageUpdateType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'imageUpdateType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 381, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "imageUpdateType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 381, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:update:2009}title uses Python identifier title - __title = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'title'), 'title', '__urnvpromediaupdate2009_imageUpdateType_urnvpromediaupdate2009title', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 383, 6), ) + __title = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "title"), + "title", + "__urnvpromediaupdate2009_imageUpdateType_urnvpromediaupdate2009title", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 383, 6), + ) - title = property(__title.value, __title.set, None, None) - # Element {urn:vpro:media:update:2009}description uses Python identifier description - __description = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'description'), 'description', '__urnvpromediaupdate2009_imageUpdateType_urnvpromediaupdate2009description', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 384, 6), ) + __description = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "description"), + "description", + "__urnvpromediaupdate2009_imageUpdateType_urnvpromediaupdate2009description", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 384, 6), + ) - description = property(__description.value, __description.set, None, None) - # Element {urn:vpro:media:update:2009}source uses Python identifier source - __source = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'source'), 'source', '__urnvpromediaupdate2009_imageUpdateType_urnvpromediaupdate2009source', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 385, 6), ) - - - source = property(__source.value, __source.set, None, '\n The source of the image. This is only metadata. It must be URL from where the image was originally acquired.\n ') + __source = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "source"), + "source", + "__urnvpromediaupdate2009_imageUpdateType_urnvpromediaupdate2009source", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 385, 6), + ) + + source = property( + __source.value, + __source.set, + None, + "\n The source of the image. This is only metadata. It must be URL from where the image was originally acquired.\n ", + ) - # Element {urn:vpro:media:update:2009}sourceName uses Python identifier sourceName - __sourceName = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'sourceName'), 'sourceName', '__urnvpromediaupdate2009_imageUpdateType_urnvpromediaupdate2009sourceName', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 392, 6), ) + __sourceName = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "sourceName"), + "sourceName", + "__urnvpromediaupdate2009_imageUpdateType_urnvpromediaupdate2009sourceName", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 392, 6), + ) + + sourceName = property( + __sourceName.value, + __sourceName.set, + None, + "\n A simple string representing the source of the image. E.g. 'flickr'.\n ", + ) - - sourceName = property(__sourceName.value, __sourceName.set, None, "\n A simple string representing the source of the image. E.g. 'flickr'.\n ") - - # Element {urn:vpro:media:update:2009}license uses Python identifier license - __license = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'license'), 'license', '__urnvpromediaupdate2009_imageUpdateType_urnvpromediaupdate2009license', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 399, 6), ) + __license = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "license"), + "license", + "__urnvpromediaupdate2009_imageUpdateType_urnvpromediaupdate2009license", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 399, 6), + ) - license = property(__license.value, __license.set, None, None) - # Element {urn:vpro:media:update:2009}width uses Python identifier width - __width = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'width'), 'width', '__urnvpromediaupdate2009_imageUpdateType_urnvpromediaupdate2009width', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 400, 6), ) + __width = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "width"), + "width", + "__urnvpromediaupdate2009_imageUpdateType_urnvpromediaupdate2009width", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 400, 6), + ) - width = property(__width.value, __width.set, None, None) - # Element {urn:vpro:media:update:2009}height uses Python identifier height - __height = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'height'), 'height', '__urnvpromediaupdate2009_imageUpdateType_urnvpromediaupdate2009height', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 401, 6), ) + __height = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "height"), + "height", + "__urnvpromediaupdate2009_imageUpdateType_urnvpromediaupdate2009height", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 401, 6), + ) - height = property(__height.value, __height.set, None, None) - # Element {urn:vpro:media:update:2009}credits uses Python identifier credits - __credits = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'credits'), 'credits', '__urnvpromediaupdate2009_imageUpdateType_urnvpromediaupdate2009credits', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 402, 6), ) + __credits = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "credits"), + "credits", + "__urnvpromediaupdate2009_imageUpdateType_urnvpromediaupdate2009credits", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 402, 6), + ) - credits = property(__credits.value, __credits.set, None, None) - # Element {urn:vpro:media:update:2009}date uses Python identifier date - __date = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'date'), 'date', '__urnvpromediaupdate2009_imageUpdateType_urnvpromediaupdate2009date', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 403, 6), ) + __date = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "date"), + "date", + "__urnvpromediaupdate2009_imageUpdateType_urnvpromediaupdate2009date", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 403, 6), + ) - date = property(__date.value, __date.set, None, None) - # Element {urn:vpro:media:update:2009}offset uses Python identifier offset - __offset = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'offset'), 'offset', '__urnvpromediaupdate2009_imageUpdateType_urnvpromediaupdate2009offset', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 404, 6), ) + __offset = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "offset"), + "offset", + "__urnvpromediaupdate2009_imageUpdateType_urnvpromediaupdate2009offset", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 404, 6), + ) - offset = property(__offset.value, __offset.set, None, None) - # Element {urn:vpro:media:update:2009}imageData uses Python identifier imageData - __imageData = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'imageData'), 'imageData', '__urnvpromediaupdate2009_imageUpdateType_urnvpromediaupdate2009imageData', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 411, 8), ) - - - imageData = property(__imageData.value, __imageData.set, None, '\n The image as a base-64 encoded blob.\n ') + __imageData = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "imageData"), + "imageData", + "__urnvpromediaupdate2009_imageUpdateType_urnvpromediaupdate2009imageData", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 411, 8), + ) + + imageData = property( + __imageData.value, __imageData.set, None, "\n The image as a base-64 encoded blob.\n " + ) - # Element {urn:vpro:media:update:2009}imageLocation uses Python identifier imageLocation - __imageLocation = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'imageLocation'), 'imageLocation', '__urnvpromediaupdate2009_imageUpdateType_urnvpromediaupdate2009imageLocation', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 418, 8), ) - - - imageLocation = property(__imageLocation.value, __imageLocation.set, None, '\n An URL from where the image can be downloaded from.\n ') + __imageLocation = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "imageLocation"), + "imageLocation", + "__urnvpromediaupdate2009_imageUpdateType_urnvpromediaupdate2009imageLocation", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 418, 8), + ) + + imageLocation = property( + __imageLocation.value, + __imageLocation.set, + None, + "\n An URL from where the image can be downloaded from.\n ", + ) - # Element {urn:vpro:media:update:2009}urn uses Python identifier urn - __urn = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'urn'), 'urn', '__urnvpromediaupdate2009_imageUpdateType_urnvpromediaupdate2009urn', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 425, 8), ) + __urn = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "urn"), + "urn", + "__urnvpromediaupdate2009_imageUpdateType_urnvpromediaupdate2009urn", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 425, 8), + ) + + urn = property( + __urn.value, + __urn.set, + None, + "\n The URN of an already existing image inside the POMS image server.\n ", + ) - - urn = property(__urn.value, __urn.set, None, '\n The URN of an already existing image inside the POMS image server.\n ') - - # Attribute type uses Python identifier type - __type = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'type'), 'type', '__urnvpromediaupdate2009_imageUpdateType_type', _ImportedBinding_npoapi_xml_shared.imageTypeEnum, required=True) - __type._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 434, 4) - __type._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 434, 4) - + __type = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "type"), + "type", + "__urnvpromediaupdate2009_imageUpdateType_type", + _ImportedBinding_npoapi_xml_shared.imageTypeEnum, + required=True, + ) + __type._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 434, 4 + ) + __type._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 434, 4 + ) + type = property(__type.value, __type.set, None, None) - # Attribute urn uses Python identifier urn_ - __urn_ = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'urn'), 'urn_', '__urnvpromediaupdate2009_imageUpdateType_urn', pyxb.binding.datatypes.string) - __urn_._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 435, 4) - __urn_._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 435, 4) - + __urn_ = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "urn"), + "urn_", + "__urnvpromediaupdate2009_imageUpdateType_urn", + pyxb.binding.datatypes.string, + ) + __urn_._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 435, 4 + ) + __urn_._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 435, 4 + ) + urn_ = property(__urn_.value, __urn_.set, None, None) - # Attribute publishStart uses Python identifier publishStart - __publishStart = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'publishStart'), 'publishStart', '__urnvpromediaupdate2009_imageUpdateType_publishStart', pyxb.binding.datatypes.dateTime) - __publishStart._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 436, 4) - __publishStart._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 436, 4) - + __publishStart = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "publishStart"), + "publishStart", + "__urnvpromediaupdate2009_imageUpdateType_publishStart", + pyxb.binding.datatypes.dateTime, + ) + __publishStart._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 436, 4 + ) + __publishStart._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 436, 4 + ) + publishStart = property(__publishStart.value, __publishStart.set, None, None) - # Attribute publishStop uses Python identifier publishStop - __publishStop = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'publishStop'), 'publishStop', '__urnvpromediaupdate2009_imageUpdateType_publishStop', pyxb.binding.datatypes.dateTime) - __publishStop._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 437, 4) - __publishStop._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 437, 4) - + __publishStop = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "publishStop"), + "publishStop", + "__urnvpromediaupdate2009_imageUpdateType_publishStop", + pyxb.binding.datatypes.dateTime, + ) + __publishStop._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 437, 4 + ) + __publishStop._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 437, 4 + ) + publishStop = property(__publishStop.value, __publishStop.set, None, None) - # Attribute highlighted uses Python identifier highlighted - __highlighted = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'highlighted'), 'highlighted', '__urnvpromediaupdate2009_imageUpdateType_highlighted', pyxb.binding.datatypes.boolean, unicode_default='false') - __highlighted._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 438, 4) - __highlighted._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 438, 4) - + __highlighted = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "highlighted"), + "highlighted", + "__urnvpromediaupdate2009_imageUpdateType_highlighted", + pyxb.binding.datatypes.boolean, + unicode_default="false", + ) + __highlighted._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 438, 4 + ) + __highlighted._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 438, 4 + ) + highlighted = property(__highlighted.value, __highlighted.set, None, None) - _ElementMap.update({ - __title.name() : __title, - __description.name() : __description, - __source.name() : __source, - __sourceName.name() : __sourceName, - __license.name() : __license, - __width.name() : __width, - __height.name() : __height, - __credits.name() : __credits, - __date.name() : __date, - __offset.name() : __offset, - __imageData.name() : __imageData, - __imageLocation.name() : __imageLocation, - __urn.name() : __urn - }) - _AttributeMap.update({ - __type.name() : __type, - __urn_.name() : __urn_, - __publishStart.name() : __publishStart, - __publishStop.name() : __publishStop, - __highlighted.name() : __highlighted - }) + _ElementMap.update( + { + __title.name(): __title, + __description.name(): __description, + __source.name(): __source, + __sourceName.name(): __sourceName, + __license.name(): __license, + __width.name(): __width, + __height.name(): __height, + __credits.name(): __credits, + __date.name(): __date, + __offset.name(): __offset, + __imageData.name(): __imageData, + __imageLocation.name(): __imageLocation, + __urn.name(): __urn, + } + ) + _AttributeMap.update( + { + __type.name(): __type, + __urn_.name(): __urn_, + __publishStart.name(): __publishStart, + __publishStop.name(): __publishStop, + __highlighted.name(): __highlighted, + } + ) + + _module_typeBindings.imageUpdateType = imageUpdateType -Namespace.addCategoryObject('typeBinding', 'imageUpdateType', imageUpdateType) +Namespace.addCategoryObject("typeBinding", "imageUpdateType", imageUpdateType) # Complex type [anonymous] with content type ELEMENT_ONLY -class CTD_ANON_9 (pyxb.binding.basis.complexTypeDefinition): +class CTD_ANON_9(pyxb.binding.basis.complexTypeDefinition): """Complex type [anonymous] with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False _ExpandedName = None - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 564, 4) + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 564, 4) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Attribute offset uses Python identifier offset - __offset = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'offset'), 'offset', '__urnvpromediaupdate2009_CTD_ANON_9_offset', pyxb.binding.datatypes.nonNegativeInteger) - __offset._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 568, 6) - __offset._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 568, 6) - + __offset = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "offset"), + "offset", + "__urnvpromediaupdate2009_CTD_ANON_9_offset", + pyxb.binding.datatypes.nonNegativeInteger, + ) + __offset._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 568, 6 + ) + __offset._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 568, 6 + ) + offset = property(__offset.value, __offset.set, None, None) - # Attribute totalCount uses Python identifier totalCount - __totalCount = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'totalCount'), 'totalCount', '__urnvpromediaupdate2009_CTD_ANON_9_totalCount', pyxb.binding.datatypes.nonNegativeInteger) - __totalCount._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 569, 6) - __totalCount._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 569, 6) - + __totalCount = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "totalCount"), + "totalCount", + "__urnvpromediaupdate2009_CTD_ANON_9_totalCount", + pyxb.binding.datatypes.nonNegativeInteger, + ) + __totalCount._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 569, 6 + ) + __totalCount._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 569, 6 + ) + totalCount = property(__totalCount.value, __totalCount.set, None, None) - # Attribute max uses Python identifier max - __max = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'max'), 'max', '__urnvpromediaupdate2009_CTD_ANON_9_max', pyxb.binding.datatypes.nonNegativeInteger) - __max._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 570, 6) - __max._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 570, 6) - + __max = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "max"), + "max", + "__urnvpromediaupdate2009_CTD_ANON_9_max", + pyxb.binding.datatypes.nonNegativeInteger, + ) + __max._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 570, 6 + ) + __max._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 570, 6 + ) + max = property(__max.value, __max.set, None, None) - # Attribute size uses Python identifier size - __size = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'size'), 'size', '__urnvpromediaupdate2009_CTD_ANON_9_size', pyxb.binding.datatypes.nonNegativeInteger) - __size._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 571, 6) - __size._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 571, 6) - + __size = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "size"), + "size", + "__urnvpromediaupdate2009_CTD_ANON_9_size", + pyxb.binding.datatypes.nonNegativeInteger, + ) + __size._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 571, 6 + ) + __size._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 571, 6 + ) + size = property(__size.value, __size.set, None, None) - # Attribute order uses Python identifier order - __order = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'order'), 'order', '__urnvpromediaupdate2009_CTD_ANON_9_order', _module_typeBindings.STD_ANON) - __order._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 572, 6) - __order._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 572, 6) - + __order = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "order"), + "order", + "__urnvpromediaupdate2009_CTD_ANON_9_order", + _module_typeBindings.STD_ANON, + ) + __order._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 572, 6 + ) + __order._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 572, 6 + ) + order = property(__order.value, __order.set, None, None) _HasWildcardElement = True - _ElementMap.update({ - - }) - _AttributeMap.update({ - __offset.name() : __offset, - __totalCount.name() : __totalCount, - __max.name() : __max, - __size.name() : __size, - __order.name() : __order - }) + _ElementMap.update({}) + _AttributeMap.update( + { + __offset.name(): __offset, + __totalCount.name(): __totalCount, + __max.name(): __max, + __size.name(): __size, + __order.name(): __order, + } + ) + + _module_typeBindings.CTD_ANON_9 = CTD_ANON_9 # Complex type {urn:vpro:media:update:2009}predictionUpdateType with content type SIMPLE -class predictionUpdateType (pyxb.binding.basis.complexTypeDefinition): +class predictionUpdateType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:update:2009}predictionUpdateType with content type SIMPLE""" + _TypeDefinition = _ImportedBinding_npoapi_xml_media.platformTypeEnum _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_SIMPLE _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'predictionUpdateType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 590, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "predictionUpdateType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 590, 2) _ElementMap = {} _AttributeMap = {} # Base type is _ImportedBinding_npoapi_xml_media.platformTypeEnum - + # Attribute publishStart uses Python identifier publishStart - __publishStart = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'publishStart'), 'publishStart', '__urnvpromediaupdate2009_predictionUpdateType_publishStart', pyxb.binding.datatypes.dateTime) - __publishStart._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 593, 8) - __publishStart._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 593, 8) - + __publishStart = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "publishStart"), + "publishStart", + "__urnvpromediaupdate2009_predictionUpdateType_publishStart", + pyxb.binding.datatypes.dateTime, + ) + __publishStart._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 593, 8 + ) + __publishStart._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 593, 8 + ) + publishStart = property(__publishStart.value, __publishStart.set, None, None) - # Attribute publishStop uses Python identifier publishStop - __publishStop = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'publishStop'), 'publishStop', '__urnvpromediaupdate2009_predictionUpdateType_publishStop', pyxb.binding.datatypes.dateTime) - __publishStop._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 594, 8) - __publishStop._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 594, 8) - + __publishStop = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "publishStop"), + "publishStop", + "__urnvpromediaupdate2009_predictionUpdateType_publishStop", + pyxb.binding.datatypes.dateTime, + ) + __publishStop._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 594, 8 + ) + __publishStop._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 594, 8 + ) + publishStop = property(__publishStop.value, __publishStop.set, None, None) - # Attribute encryption uses Python identifier encryption - __encryption = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'encryption'), 'encryption', '__urnvpromediaupdate2009_predictionUpdateType_encryption', _ImportedBinding_npoapi_xml_media.encryption) - __encryption._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 595, 8) - __encryption._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 595, 8) - + __encryption = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "encryption"), + "encryption", + "__urnvpromediaupdate2009_predictionUpdateType_encryption", + _ImportedBinding_npoapi_xml_media.encryption, + ) + __encryption._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 595, 8 + ) + __encryption._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 595, 8 + ) + encryption = property(__encryption.value, __encryption.set, None, None) - _ElementMap.update({ - - }) - _AttributeMap.update({ - __publishStart.name() : __publishStart, - __publishStop.name() : __publishStop, - __encryption.name() : __encryption - }) + _ElementMap.update({}) + _AttributeMap.update( + {__publishStart.name(): __publishStart, __publishStop.name(): __publishStop, __encryption.name(): __encryption} + ) + + _module_typeBindings.predictionUpdateType = predictionUpdateType -Namespace.addCategoryObject('typeBinding', 'predictionUpdateType', predictionUpdateType) +Namespace.addCategoryObject("typeBinding", "predictionUpdateType", predictionUpdateType) # Complex type {urn:vpro:media:update:2009}groupUpdateType with content type ELEMENT_ONLY -class groupUpdateType (mediaUpdateType): +class groupUpdateType(mediaUpdateType): """Complex type {urn:vpro:media:update:2009}groupUpdateType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'groupUpdateType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 132, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "groupUpdateType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 132, 2) _ElementMap = mediaUpdateType._ElementMap.copy() _AttributeMap = mediaUpdateType._AttributeMap.copy() # Base type is mediaUpdateType - + # Element {urn:vpro:media:update:2009}poSeriesID uses Python identifier poSeriesID - __poSeriesID = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'poSeriesID'), 'poSeriesID', '__urnvpromediaupdate2009_groupUpdateType_urnvpromediaupdate2009poSeriesID', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 136, 10), ) + __poSeriesID = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "poSeriesID"), + "poSeriesID", + "__urnvpromediaupdate2009_groupUpdateType_urnvpromediaupdate2009poSeriesID", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 136, 10), + ) - poSeriesID = property(__poSeriesID.value, __poSeriesID.set, None, None) - # Element crid ({urn:vpro:media:update:2009}crid) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element broadcaster ({urn:vpro:media:update:2009}broadcaster) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element portal ({urn:vpro:media:update:2009}portal) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element exclusive ({urn:vpro:media:update:2009}exclusive) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element region ({urn:vpro:media:update:2009}region) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element title ({urn:vpro:media:update:2009}title) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element description ({urn:vpro:media:update:2009}description) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element tag ({urn:vpro:media:update:2009}tag) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element country ({urn:vpro:media:update:2009}country) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element language ({urn:vpro:media:update:2009}language) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element genre ({urn:vpro:media:update:2009}genre) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element intentions ({urn:vpro:media:update:2009}intentions) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element targetGroups ({urn:vpro:media:update:2009}targetGroups) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element geoLocations ({urn:vpro:media:update:2009}geoLocations) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element topics ({urn:vpro:media:update:2009}topics) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element avAttributes ({urn:vpro:media:update:2009}avAttributes) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element releaseYear ({urn:vpro:media:update:2009}releaseYear) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element duration ({urn:vpro:media:update:2009}duration) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element credits ({urn:vpro:media:update:2009}credits) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element memberOf ({urn:vpro:media:update:2009}memberOf) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element ageRating ({urn:vpro:media:update:2009}ageRating) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element contentRating ({urn:vpro:media:update:2009}contentRating) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element email ({urn:vpro:media:update:2009}email) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element website ({urn:vpro:media:update:2009}website) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element twitterref ({urn:vpro:media:update:2009}twitterref) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element prediction ({urn:vpro:media:update:2009}prediction) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element locations ({urn:vpro:media:update:2009}locations) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element scheduleEvents ({urn:vpro:media:update:2009}scheduleEvents) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element relation ({urn:vpro:media:update:2009}relation) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element images ({urn:vpro:media:update:2009}images) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element asset ({urn:vpro:media:update:2009}asset) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Attribute type uses Python identifier type - __type = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'type'), 'type', '__urnvpromediaupdate2009_groupUpdateType_type', _ImportedBinding_npoapi_xml_media.groupTypeEnum, required=True) - __type._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 138, 8) - __type._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 138, 8) - + __type = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "type"), + "type", + "__urnvpromediaupdate2009_groupUpdateType_type", + _ImportedBinding_npoapi_xml_media.groupTypeEnum, + required=True, + ) + __type._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 138, 8 + ) + __type._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 138, 8 + ) + type = property(__type.value, __type.set, None, None) - # Attribute avType inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Attribute deleted inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Attribute embeddable inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Attribute publishStart inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Attribute publishStop inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Attribute mid inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Attribute urn inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Attribute ordered inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Attribute version inherited from {urn:vpro:media:update:2009}mediaUpdateType - _ElementMap.update({ - __poSeriesID.name() : __poSeriesID - }) - _AttributeMap.update({ - __type.name() : __type - }) + _ElementMap.update({__poSeriesID.name(): __poSeriesID}) + _AttributeMap.update({__type.name(): __type}) + + _module_typeBindings.groupUpdateType = groupUpdateType -Namespace.addCategoryObject('typeBinding', 'groupUpdateType', groupUpdateType) +Namespace.addCategoryObject("typeBinding", "groupUpdateType", groupUpdateType) # Complex type {urn:vpro:media:update:2009}programUpdateType with content type ELEMENT_ONLY -class programUpdateType (mediaUpdateType): +class programUpdateType(mediaUpdateType): """Complex type {urn:vpro:media:update:2009}programUpdateType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'programUpdateType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 497, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "programUpdateType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 497, 2) _ElementMap = mediaUpdateType._ElementMap.copy() _AttributeMap = mediaUpdateType._AttributeMap.copy() # Base type is mediaUpdateType - + # Element crid ({urn:vpro:media:update:2009}crid) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element broadcaster ({urn:vpro:media:update:2009}broadcaster) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element portal ({urn:vpro:media:update:2009}portal) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element exclusive ({urn:vpro:media:update:2009}exclusive) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element region ({urn:vpro:media:update:2009}region) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element title ({urn:vpro:media:update:2009}title) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element description ({urn:vpro:media:update:2009}description) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element tag ({urn:vpro:media:update:2009}tag) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element country ({urn:vpro:media:update:2009}country) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element language ({urn:vpro:media:update:2009}language) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element genre ({urn:vpro:media:update:2009}genre) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element intentions ({urn:vpro:media:update:2009}intentions) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element targetGroups ({urn:vpro:media:update:2009}targetGroups) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element geoLocations ({urn:vpro:media:update:2009}geoLocations) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element topics ({urn:vpro:media:update:2009}topics) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element avAttributes ({urn:vpro:media:update:2009}avAttributes) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element releaseYear ({urn:vpro:media:update:2009}releaseYear) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element duration ({urn:vpro:media:update:2009}duration) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element credits ({urn:vpro:media:update:2009}credits) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element memberOf ({urn:vpro:media:update:2009}memberOf) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element ageRating ({urn:vpro:media:update:2009}ageRating) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element contentRating ({urn:vpro:media:update:2009}contentRating) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element email ({urn:vpro:media:update:2009}email) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element website ({urn:vpro:media:update:2009}website) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element twitterref ({urn:vpro:media:update:2009}twitterref) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element prediction ({urn:vpro:media:update:2009}prediction) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element locations ({urn:vpro:media:update:2009}locations) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element scheduleEvents ({urn:vpro:media:update:2009}scheduleEvents) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element relation ({urn:vpro:media:update:2009}relation) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element images ({urn:vpro:media:update:2009}images) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element asset ({urn:vpro:media:update:2009}asset) inherited from {urn:vpro:media:update:2009}mediaUpdateType - - # Element {urn:vpro:media:update:2009}episodeOf uses Python identifier episodeOf - __episodeOf = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'episodeOf'), 'episodeOf', '__urnvpromediaupdate2009_programUpdateType_urnvpromediaupdate2009episodeOf', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 501, 10), ) - - episodeOf = property(__episodeOf.value, __episodeOf.set, None, '\n episodeOf works similar to memberOf. Important differences: only programs of type CLIP or BROADCAST can\n be an episode of a group and the group can only be of type SERIES or SEASON.\n ') + # Element {urn:vpro:media:update:2009}episodeOf uses Python identifier episodeOf + __episodeOf = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "episodeOf"), + "episodeOf", + "__urnvpromediaupdate2009_programUpdateType_urnvpromediaupdate2009episodeOf", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 501, 10), + ) + + episodeOf = property( + __episodeOf.value, + __episodeOf.set, + None, + "\n episodeOf works similar to memberOf. Important differences: only programs of type CLIP or BROADCAST can\n be an episode of a group and the group can only be of type SERIES or SEASON.\n ", + ) - # Element {urn:vpro:media:update:2009}segments uses Python identifier segments - __segments = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'segments'), 'segments', '__urnvpromediaupdate2009_programUpdateType_urnvpromediaupdate2009segments', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 509, 10), ) + __segments = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "segments"), + "segments", + "__urnvpromediaupdate2009_programUpdateType_urnvpromediaupdate2009segments", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 509, 10), + ) + + segments = property( + __segments.value, + __segments.set, + None, + "\n Optional list of program segments. A segment is a part of a program that can be visually shown on the\n timeline of a player. A segment always has a start time indicating the start of the segment relative to\n the parent program. A segment can have the same fields as other media objects, like titles, descriptions,\n images, locations, etc.\n\n The standard scenario when playing a segment is to load a location of the parent media object and\n to use the start time as an offset to start playing the segment. However, it is also possible for a\n segment to have its own locations. This makes it possible to for instance have a podcast of a weekly\n segment in a radio show without providing the complete radio program it is a part of.\n\n Rules:\n - Start time is required\n - If duration is not set the player should play until the end of the program\n - Removing a program also deletes its segments\n ", + ) - - segments = property(__segments.value, __segments.set, None, '\n Optional list of program segments. A segment is a part of a program that can be visually shown on the\n timeline of a player. A segment always has a start time indicating the start of the segment relative to\n the parent program. A segment can have the same fields as other media objects, like titles, descriptions,\n images, locations, etc.\n\n The standard scenario when playing a segment is to load a location of the parent media object and\n to use the start time as an offset to start playing the segment. However, it is also possible for a\n segment to have its own locations. This makes it possible to for instance have a podcast of a weekly\n segment in a radio show without providing the complete radio program it is a part of.\n\n Rules:\n - Start time is required\n - If duration is not set the player should play until the end of the program\n - Removing a program also deletes its segments\n ') - - # Attribute avType inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Attribute deleted inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Attribute embeddable inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Attribute publishStart inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Attribute publishStop inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Attribute mid inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Attribute urn inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Attribute ordered inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Attribute version inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Attribute type uses Python identifier type - __type = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'type'), 'type', '__urnvpromediaupdate2009_programUpdateType_type', _ImportedBinding_npoapi_xml_media.programTypeEnum, required=True) - __type._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 535, 8) - __type._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 535, 8) - + __type = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "type"), + "type", + "__urnvpromediaupdate2009_programUpdateType_type", + _ImportedBinding_npoapi_xml_media.programTypeEnum, + required=True, + ) + __type._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 535, 8 + ) + __type._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 535, 8 + ) + type = property(__type.value, __type.set, None, None) - _ElementMap.update({ - __episodeOf.name() : __episodeOf, - __segments.name() : __segments - }) - _AttributeMap.update({ - __type.name() : __type - }) + _ElementMap.update({__episodeOf.name(): __episodeOf, __segments.name(): __segments}) + _AttributeMap.update({__type.name(): __type}) + + _module_typeBindings.programUpdateType = programUpdateType -Namespace.addCategoryObject('typeBinding', 'programUpdateType', programUpdateType) +Namespace.addCategoryObject("typeBinding", "programUpdateType", programUpdateType) # Complex type {urn:vpro:media:update:2009}segmentUpdateType with content type ELEMENT_ONLY -class segmentUpdateType (mediaUpdateType): +class segmentUpdateType(mediaUpdateType): """Complex type {urn:vpro:media:update:2009}segmentUpdateType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'segmentUpdateType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 540, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "segmentUpdateType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 540, 2) _ElementMap = mediaUpdateType._ElementMap.copy() _AttributeMap = mediaUpdateType._AttributeMap.copy() # Base type is mediaUpdateType - + # Element crid ({urn:vpro:media:update:2009}crid) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element broadcaster ({urn:vpro:media:update:2009}broadcaster) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element portal ({urn:vpro:media:update:2009}portal) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element exclusive ({urn:vpro:media:update:2009}exclusive) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element region ({urn:vpro:media:update:2009}region) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element title ({urn:vpro:media:update:2009}title) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element description ({urn:vpro:media:update:2009}description) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element tag ({urn:vpro:media:update:2009}tag) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element country ({urn:vpro:media:update:2009}country) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element language ({urn:vpro:media:update:2009}language) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element genre ({urn:vpro:media:update:2009}genre) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element intentions ({urn:vpro:media:update:2009}intentions) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element targetGroups ({urn:vpro:media:update:2009}targetGroups) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element geoLocations ({urn:vpro:media:update:2009}geoLocations) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element topics ({urn:vpro:media:update:2009}topics) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element avAttributes ({urn:vpro:media:update:2009}avAttributes) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element releaseYear ({urn:vpro:media:update:2009}releaseYear) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element duration ({urn:vpro:media:update:2009}duration) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element credits ({urn:vpro:media:update:2009}credits) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element memberOf ({urn:vpro:media:update:2009}memberOf) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element ageRating ({urn:vpro:media:update:2009}ageRating) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element contentRating ({urn:vpro:media:update:2009}contentRating) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element email ({urn:vpro:media:update:2009}email) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element website ({urn:vpro:media:update:2009}website) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element twitterref ({urn:vpro:media:update:2009}twitterref) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element prediction ({urn:vpro:media:update:2009}prediction) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element locations ({urn:vpro:media:update:2009}locations) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element scheduleEvents ({urn:vpro:media:update:2009}scheduleEvents) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element relation ({urn:vpro:media:update:2009}relation) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element images ({urn:vpro:media:update:2009}images) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element asset ({urn:vpro:media:update:2009}asset) inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Element {urn:vpro:media:update:2009}start uses Python identifier start - __start = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'start'), 'start', '__urnvpromediaupdate2009_segmentUpdateType_urnvpromediaupdate2009start', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 544, 10), ) + __start = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "start"), + "start", + "__urnvpromediaupdate2009_segmentUpdateType_urnvpromediaupdate2009start", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 544, 10), + ) - start = property(__start.value, __start.set, None, None) - # Attribute avType inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Attribute deleted inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Attribute embeddable inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Attribute publishStart inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Attribute publishStop inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Attribute mid inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Attribute urn inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Attribute ordered inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Attribute version inherited from {urn:vpro:media:update:2009}mediaUpdateType - + # Attribute midRef uses Python identifier midRef - __midRef = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'midRef'), 'midRef', '__urnvpromediaupdate2009_segmentUpdateType_midRef', pyxb.binding.datatypes.string) - __midRef._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 546, 8) - __midRef._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 546, 8) - + __midRef = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "midRef"), + "midRef", + "__urnvpromediaupdate2009_segmentUpdateType_midRef", + pyxb.binding.datatypes.string, + ) + __midRef._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 546, 8 + ) + __midRef._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 546, 8 + ) + midRef = property(__midRef.value, __midRef.set, None, None) - # Attribute type uses Python identifier type - __type = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'type'), 'type', '__urnvpromediaupdate2009_segmentUpdateType_type', _ImportedBinding_npoapi_xml_media.segmentTypeEnum) - __type._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 547, 8) - __type._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 547, 8) - - type = property(__type.value, __type.set, None, None) - - _ElementMap.update({ - __start.name() : __start - }) - _AttributeMap.update({ - __midRef.name() : __midRef, - __type.name() : __type - }) -_module_typeBindings.segmentUpdateType = segmentUpdateType -Namespace.addCategoryObject('typeBinding', 'segmentUpdateType', segmentUpdateType) - - -location = pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'location'), locationUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 27, 2)) -Namespace.addCategoryObject('elementBinding', location.name().localName(), location) - -memberUpdate = pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'memberUpdate'), memberUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 31, 2)) -Namespace.addCategoryObject('elementBinding', memberUpdate.name().localName(), memberUpdate) - -move = pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'move'), moveActionType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 33, 2)) -Namespace.addCategoryObject('elementBinding', move.name().localName(), move) - -transcode = pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'transcode'), transcodeType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 35, 2)) -Namespace.addCategoryObject('elementBinding', transcode.name().localName(), transcode) - -transcodeStatus = pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'transcodeStatus'), transcodeStatusType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 37, 2)) -Namespace.addCategoryObject('elementBinding', transcodeStatus.name().localName(), transcodeStatus) - -itemize = pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'itemize'), itemizeType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 39, 2)) -Namespace.addCategoryObject('elementBinding', itemize.name().localName(), itemize) - -liveitemize = pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'liveitemize'), liveItemize, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 41, 2)) -Namespace.addCategoryObject('elementBinding', liveitemize.name().localName(), liveitemize) + __type = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "type"), + "type", + "__urnvpromediaupdate2009_segmentUpdateType_type", + _ImportedBinding_npoapi_xml_media.segmentTypeEnum, + ) + __type._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 547, 8 + ) + __type._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 547, 8 + ) -itemizeResponse = pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'itemizeResponse'), itemizeResponseType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 43, 2)) -Namespace.addCategoryObject('elementBinding', itemizeResponse.name().localName(), itemizeResponse) - -midAndType = pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'midAndType'), midAndTypeType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 21, 2)) -Namespace.addCategoryObject('elementBinding', midAndType.name().localName(), midAndType) - -image = pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'image'), imageUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 23, 2)) -Namespace.addCategoryObject('elementBinding', image.name().localName(), image) - -prediction = pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'prediction'), predictionUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 25, 2)) -Namespace.addCategoryObject('elementBinding', prediction.name().localName(), prediction) - -memberRef = pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'memberRef'), memberRefUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 29, 2)) -Namespace.addCategoryObject('elementBinding', memberRef.name().localName(), memberRef) - -list = pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'list'), CTD_ANON_9, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 563, 2)) -Namespace.addCategoryObject('elementBinding', list.name().localName(), list) - -group = pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'group'), groupUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 15, 2)) -Namespace.addCategoryObject('elementBinding', group.name().localName(), group) - -program = pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'program'), programUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 17, 2)) -Namespace.addCategoryObject('elementBinding', program.name().localName(), program) - -segment = pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'segment'), segmentUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 19, 2)) -Namespace.addCategoryObject('elementBinding', segment.name().localName(), segment) - - - -avAtributeUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'bitrate'), pyxb.binding.datatypes.int, scope=avAtributeUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 47, 6))) - -avAtributeUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'byteSize'), pyxb.binding.datatypes.long, scope=avAtributeUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 48, 6))) - -avAtributeUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'avFileFormat'), _ImportedBinding_npoapi_xml_media.avFileFormatEnum, scope=avAtributeUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 49, 6))) + type = property(__type.value, __type.set, None, None) -avAtributeUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'videoAttributes'), videoAttributesUpdateType, scope=avAtributeUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 50, 6))) + _ElementMap.update({__start.name(): __start}) + _AttributeMap.update({__midRef.name(): __midRef, __type.name(): __type}) -avAtributeUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'audioAttributes'), audioAttributesUpdateType, scope=avAtributeUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 51, 6))) -def _BuildAutomaton (): +_module_typeBindings.segmentUpdateType = segmentUpdateType +Namespace.addCategoryObject("typeBinding", "segmentUpdateType", segmentUpdateType) + + +location = pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "location"), + locationUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 27, 2), +) +Namespace.addCategoryObject("elementBinding", location.name().localName(), location) + +memberUpdate = pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "memberUpdate"), + memberUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 31, 2), +) +Namespace.addCategoryObject("elementBinding", memberUpdate.name().localName(), memberUpdate) + +move = pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "move"), + moveActionType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 33, 2), +) +Namespace.addCategoryObject("elementBinding", move.name().localName(), move) + +transcode = pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "transcode"), + transcodeType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 35, 2), +) +Namespace.addCategoryObject("elementBinding", transcode.name().localName(), transcode) + +transcodeStatus = pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "transcodeStatus"), + transcodeStatusType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 37, 2), +) +Namespace.addCategoryObject("elementBinding", transcodeStatus.name().localName(), transcodeStatus) + +itemize = pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "itemize"), + itemizeType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 39, 2), +) +Namespace.addCategoryObject("elementBinding", itemize.name().localName(), itemize) + +liveitemize = pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "liveitemize"), + liveItemize, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 41, 2), +) +Namespace.addCategoryObject("elementBinding", liveitemize.name().localName(), liveitemize) + +itemizeResponse = pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "itemizeResponse"), + itemizeResponseType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 43, 2), +) +Namespace.addCategoryObject("elementBinding", itemizeResponse.name().localName(), itemizeResponse) + +midAndType = pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "midAndType"), + midAndTypeType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 21, 2), +) +Namespace.addCategoryObject("elementBinding", midAndType.name().localName(), midAndType) + +image = pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "image"), + imageUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 23, 2), +) +Namespace.addCategoryObject("elementBinding", image.name().localName(), image) + +prediction = pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "prediction"), + predictionUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 25, 2), +) +Namespace.addCategoryObject("elementBinding", prediction.name().localName(), prediction) + +memberRef = pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "memberRef"), + memberRefUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 29, 2), +) +Namespace.addCategoryObject("elementBinding", memberRef.name().localName(), memberRef) + +list = pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "list"), + CTD_ANON_9, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 563, 2), +) +Namespace.addCategoryObject("elementBinding", list.name().localName(), list) + +group = pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "group"), + groupUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 15, 2), +) +Namespace.addCategoryObject("elementBinding", group.name().localName(), group) + +program = pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "program"), + programUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 17, 2), +) +Namespace.addCategoryObject("elementBinding", program.name().localName(), program) + +segment = pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "segment"), + segmentUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 19, 2), +) +Namespace.addCategoryObject("elementBinding", segment.name().localName(), segment) + + +avAtributeUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "bitrate"), + pyxb.binding.datatypes.int, + scope=avAtributeUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 47, 6), + ) +) + +avAtributeUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "byteSize"), + pyxb.binding.datatypes.long, + scope=avAtributeUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 48, 6), + ) +) + +avAtributeUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "avFileFormat"), + _ImportedBinding_npoapi_xml_media.avFileFormatEnum, + scope=avAtributeUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 49, 6), + ) +) + +avAtributeUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "videoAttributes"), + videoAttributesUpdateType, + scope=avAtributeUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 50, 6), + ) +) + +avAtributeUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "audioAttributes"), + audioAttributesUpdateType, + scope=avAtributeUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 51, 6), + ) +) + + +def _BuildAutomaton(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton del _BuildAutomaton import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 47, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 47, 6), + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 48, 6)) + cc_1 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 48, 6), + ) counters.add(cc_1) - cc_2 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 49, 6)) + cc_2 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 49, 6), + ) counters.add(cc_2) - cc_3 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 50, 6)) + cc_3 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 50, 6), + ) counters.add(cc_3) - cc_4 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 51, 6)) + cc_4 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 51, 6), + ) counters.add(cc_4) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(avAtributeUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'bitrate')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 47, 6)) + symbol = pyxb.binding.content.ElementUse( + avAtributeUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "bitrate")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 47, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() final_update.add(fac.UpdateInstruction(cc_1, False)) - symbol = pyxb.binding.content.ElementUse(avAtributeUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'byteSize')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 48, 6)) + symbol = pyxb.binding.content.ElementUse( + avAtributeUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "byteSize")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 48, 6), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) final_update = set() final_update.add(fac.UpdateInstruction(cc_2, False)) - symbol = pyxb.binding.content.ElementUse(avAtributeUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'avFileFormat')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 49, 6)) + symbol = pyxb.binding.content.ElementUse( + avAtributeUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "avFileFormat")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 49, 6), + ) st_2 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_2) final_update = set() final_update.add(fac.UpdateInstruction(cc_3, False)) - symbol = pyxb.binding.content.ElementUse(avAtributeUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'videoAttributes')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 50, 6)) + symbol = pyxb.binding.content.ElementUse( + avAtributeUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "videoAttributes")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 50, 6), + ) st_3 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_3) final_update = set() final_update.add(fac.UpdateInstruction(cc_4, False)) - symbol = pyxb.binding.content.ElementUse(avAtributeUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'audioAttributes')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 51, 6)) + symbol = pyxb.binding.content.ElementUse( + avAtributeUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "audioAttributes")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 51, 6), + ) st_4 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_4) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_0, False)])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_1, True) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_1, False) ])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_1, True)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_1, False)])) st_1._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_2, True) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_2, False) ])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_2, True)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_2, False)])) st_2._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_3, True) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_3, False) ])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_3, True)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_3, False)])) st_3._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_4, True) ])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_4, True)])) st_4._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -avAtributeUpdateType._Automaton = _BuildAutomaton() +avAtributeUpdateType._Automaton = _BuildAutomaton() -videoAttributesUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'aspectRatio'), _ImportedBinding_npoapi_xml_media.aspectRatioEnum, scope=videoAttributesUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 57, 6))) - -videoAttributesUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'color'), _ImportedBinding_npoapi_xml_media.colorType, scope=videoAttributesUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 58, 6))) - -videoAttributesUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'coding'), _ImportedBinding_npoapi_xml_media.baseTextType, scope=videoAttributesUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 59, 6))) - -def _BuildAutomaton_ (): +videoAttributesUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "aspectRatio"), + _ImportedBinding_npoapi_xml_media.aspectRatioEnum, + scope=videoAttributesUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 57, 6), + ) +) + +videoAttributesUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "color"), + _ImportedBinding_npoapi_xml_media.colorType, + scope=videoAttributesUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 58, 6), + ) +) + +videoAttributesUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "coding"), + _ImportedBinding_npoapi_xml_media.baseTextType, + scope=videoAttributesUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 59, 6), + ) +) + + +def _BuildAutomaton_(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_ del _BuildAutomaton_ import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 57, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 57, 6), + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 58, 6)) + cc_1 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 58, 6), + ) counters.add(cc_1) - cc_2 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 59, 6)) + cc_2 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 59, 6), + ) counters.add(cc_2) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(videoAttributesUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'aspectRatio')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 57, 6)) + symbol = pyxb.binding.content.ElementUse( + videoAttributesUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "aspectRatio")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 57, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() final_update.add(fac.UpdateInstruction(cc_1, False)) - symbol = pyxb.binding.content.ElementUse(videoAttributesUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'color')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 58, 6)) + symbol = pyxb.binding.content.ElementUse( + videoAttributesUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "color")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 58, 6), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) final_update = set() final_update.add(fac.UpdateInstruction(cc_2, False)) - symbol = pyxb.binding.content.ElementUse(videoAttributesUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'coding')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 59, 6)) + symbol = pyxb.binding.content.ElementUse( + videoAttributesUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "coding")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 59, 6), + ) st_2 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_2) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_0, False)])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_1, True) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_1, False) ])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_1, True)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_1, False)])) st_1._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_2, True) ])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_2, True)])) st_2._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -videoAttributesUpdateType._Automaton = _BuildAutomaton_() +videoAttributesUpdateType._Automaton = _BuildAutomaton_() + +audioAttributesUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "channels"), + pyxb.binding.datatypes.int, + scope=audioAttributesUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 67, 6), + ) +) -audioAttributesUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'channels'), pyxb.binding.datatypes.int, scope=audioAttributesUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 67, 6))) +audioAttributesUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "coding"), + _ImportedBinding_npoapi_xml_media.baseTextType, + scope=audioAttributesUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 68, 6), + ) +) -audioAttributesUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'coding'), _ImportedBinding_npoapi_xml_media.baseTextType, scope=audioAttributesUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 68, 6))) -def _BuildAutomaton_2 (): +def _BuildAutomaton_2(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_2 del _BuildAutomaton_2 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 67, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 67, 6), + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 68, 6)) + cc_1 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 68, 6), + ) counters.add(cc_1) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(audioAttributesUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'channels')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 67, 6)) + symbol = pyxb.binding.content.ElementUse( + audioAttributesUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "channels")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 67, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() final_update.add(fac.UpdateInstruction(cc_1, False)) - symbol = pyxb.binding.content.ElementUse(audioAttributesUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'coding')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 68, 6)) + symbol = pyxb.binding.content.ElementUse( + audioAttributesUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "coding")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 68, 6), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, False)])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_1, True) ])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_1, True)])) st_1._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -audioAttributesUpdateType._Automaton = _BuildAutomaton_2() +audioAttributesUpdateType._Automaton = _BuildAutomaton_2() + +geoLocationsUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "geoLocation"), + geoLocationUpdateType, + scope=geoLocationsUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 90, 6), + ) +) -geoLocationsUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'geoLocation'), geoLocationUpdateType, scope=geoLocationsUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 90, 6))) -def _BuildAutomaton_3 (): +def _BuildAutomaton_3(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_3 del _BuildAutomaton_3 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 90, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 90, 6), + ) counters.add(cc_0) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(geoLocationsUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'geoLocation')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 90, 6)) + symbol = pyxb.binding.content.ElementUse( + geoLocationsUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "geoLocation")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 90, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) st_0._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -geoLocationsUpdateType._Automaton = _BuildAutomaton_3() +geoLocationsUpdateType._Automaton = _BuildAutomaton_3() + +topicsUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "topic"), + topicUpdateType, + scope=topicsUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 105, 6), + ) +) -topicsUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'topic'), topicUpdateType, scope=topicsUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 105, 6))) -def _BuildAutomaton_4 (): +def _BuildAutomaton_4(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_4 del _BuildAutomaton_4 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 105, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 105, 6), + ) counters.add(cc_0) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(topicsUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'topic')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 105, 6)) + symbol = pyxb.binding.content.ElementUse( + topicsUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "topic")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 105, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) st_0._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -topicsUpdateType._Automaton = _BuildAutomaton_4() +topicsUpdateType._Automaton = _BuildAutomaton_4() + +creditsUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "person"), + personUpdateType, + scope=creditsUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 126, 8), + ) +) -creditsUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'person'), personUpdateType, scope=creditsUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 126, 8))) +creditsUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "name"), + nameUpdateType, + scope=creditsUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 127, 8), + ) +) -creditsUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'name'), nameUpdateType, scope=creditsUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 127, 8))) -def _BuildAutomaton_5 (): +def _BuildAutomaton_5(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_5 del _BuildAutomaton_5 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 125, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 125, 6), + ) counters.add(cc_0) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(creditsUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'person')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 126, 8)) + symbol = pyxb.binding.content.ElementUse( + creditsUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "person")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 126, 8), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(creditsUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'name')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 127, 8)) + symbol = pyxb.binding.content.ElementUse( + creditsUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "name")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 127, 8), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, True) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, True)])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, True) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, True)])) st_1._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -creditsUpdateType._Automaton = _BuildAutomaton_5() +creditsUpdateType._Automaton = _BuildAutomaton_5() + +CTD_ANON._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "intention"), + _ImportedBinding_npoapi_xml_media.intentionEnum, + scope=CTD_ANON, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 185, 12), + ) +) -CTD_ANON._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'intention'), _ImportedBinding_npoapi_xml_media.intentionEnum, scope=CTD_ANON, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 185, 12))) -def _BuildAutomaton_6 (): +def _BuildAutomaton_6(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_6 del _BuildAutomaton_6 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 185, 12)) + cc_0 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 185, 12), + ) counters.add(cc_0) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(CTD_ANON._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'intention')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 185, 12)) + symbol = pyxb.binding.content.ElementUse( + CTD_ANON._UseForTag(pyxb.namespace.ExpandedName(Namespace, "intention")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 185, 12), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) st_0._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -CTD_ANON._Automaton = _BuildAutomaton_6() +CTD_ANON._Automaton = _BuildAutomaton_6() + +CTD_ANON_._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "targetGroup"), + _ImportedBinding_npoapi_xml_media.targetGroupEnum, + scope=CTD_ANON_, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 192, 12), + ) +) -CTD_ANON_._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'targetGroup'), _ImportedBinding_npoapi_xml_media.targetGroupEnum, scope=CTD_ANON_, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 192, 12))) -def _BuildAutomaton_7 (): +def _BuildAutomaton_7(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_7 del _BuildAutomaton_7 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 192, 12)) + cc_0 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 192, 12), + ) counters.add(cc_0) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(CTD_ANON_._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'targetGroup')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 192, 12)) + symbol = pyxb.binding.content.ElementUse( + CTD_ANON_._UseForTag(pyxb.namespace.ExpandedName(Namespace, "targetGroup")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 192, 12), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) st_0._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -CTD_ANON_._Automaton = _BuildAutomaton_7() +CTD_ANON_._Automaton = _BuildAutomaton_7() + +CTD_ANON_2._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "location"), + locationUpdateType, + scope=CTD_ANON_2, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 229, 12), + ) +) -CTD_ANON_2._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'location'), locationUpdateType, scope=CTD_ANON_2, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 229, 12))) -def _BuildAutomaton_8 (): +def _BuildAutomaton_8(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_8 del _BuildAutomaton_8 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 229, 12)) + cc_0 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 229, 12), + ) counters.add(cc_0) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(CTD_ANON_2._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'location')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 229, 12)) + symbol = pyxb.binding.content.ElementUse( + CTD_ANON_2._UseForTag(pyxb.namespace.ExpandedName(Namespace, "location")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 229, 12), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) st_0._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -CTD_ANON_2._Automaton = _BuildAutomaton_8() +CTD_ANON_2._Automaton = _BuildAutomaton_8() + +CTD_ANON_3._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "scheduleEvent"), + scheduleEventUpdateType, + scope=CTD_ANON_3, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 239, 12), + ) +) -CTD_ANON_3._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'scheduleEvent'), scheduleEventUpdateType, scope=CTD_ANON_3, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 239, 12))) -def _BuildAutomaton_9 (): +def _BuildAutomaton_9(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_9 del _BuildAutomaton_9 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 239, 12)) + cc_0 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 239, 12), + ) counters.add(cc_0) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(CTD_ANON_3._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'scheduleEvent')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 239, 12)) + symbol = pyxb.binding.content.ElementUse( + CTD_ANON_3._UseForTag(pyxb.namespace.ExpandedName(Namespace, "scheduleEvent")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 239, 12), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) st_0._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -CTD_ANON_3._Automaton = _BuildAutomaton_9() +CTD_ANON_3._Automaton = _BuildAutomaton_9() + +CTD_ANON_4._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "image"), + imageUpdateType, + scope=CTD_ANON_4, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 248, 12), + ) +) -CTD_ANON_4._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'image'), imageUpdateType, scope=CTD_ANON_4, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 248, 12))) -def _BuildAutomaton_10 (): +def _BuildAutomaton_10(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_10 del _BuildAutomaton_10 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 248, 12)) + cc_0 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 248, 12), + ) counters.add(cc_0) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(CTD_ANON_4._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'image')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 248, 12)) + symbol = pyxb.binding.content.ElementUse( + CTD_ANON_4._UseForTag(pyxb.namespace.ExpandedName(Namespace, "image")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 248, 12), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) st_0._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -CTD_ANON_4._Automaton = _BuildAutomaton_10() +CTD_ANON_4._Automaton = _BuildAutomaton_10() + +bulkUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "titles"), + titleUpdateType, + scope=bulkUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 277, 6), + ) +) -bulkUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'titles'), titleUpdateType, scope=bulkUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 277, 6))) +bulkUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "descriptions"), + descriptionUpdateType, + scope=bulkUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 278, 6), + ) +) -bulkUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'descriptions'), descriptionUpdateType, scope=bulkUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 278, 6))) -def _BuildAutomaton_11 (): +def _BuildAutomaton_11(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_11 del _BuildAutomaton_11 @@ -3418,217 +4829,349 @@ def _BuildAutomaton_11 (): counters = set() states = [] final_update = None - symbol = pyxb.binding.content.ElementUse(bulkUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'titles')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 277, 6)) + symbol = pyxb.binding.content.ElementUse( + bulkUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "titles")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 277, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() - symbol = pyxb.binding.content.ElementUse(bulkUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'descriptions')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 278, 6)) + symbol = pyxb.binding.content.ElementUse( + bulkUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "descriptions")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 278, 6), + ) st_1 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_1) transitions = [] - transitions.append(fac.Transition(st_1, [ - ])) + transitions.append(fac.Transition(st_1, [])) st_0._set_transitionSet(transitions) transitions = [] st_1._set_transitionSet(transitions) return fac.Automaton(states, counters, False, containing_state=None) -bulkUpdateType._Automaton = _BuildAutomaton_11() - +bulkUpdateType._Automaton = _BuildAutomaton_11() -locationUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'programUrl'), pyxb.binding.datatypes.anyURI, scope=locationUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 335, 6))) - -locationUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'avAttributes'), avAtributeUpdateType, scope=locationUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 336, 6))) - -locationUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'offset'), pyxb.binding.datatypes.duration, scope=locationUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 337, 6))) - -locationUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'duration'), pyxb.binding.datatypes.duration, scope=locationUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 338, 6))) -def _BuildAutomaton_12 (): +locationUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "programUrl"), + pyxb.binding.datatypes.anyURI, + scope=locationUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 335, 6), + ) +) + +locationUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "avAttributes"), + avAtributeUpdateType, + scope=locationUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 336, 6), + ) +) + +locationUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "offset"), + pyxb.binding.datatypes.duration, + scope=locationUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 337, 6), + ) +) + +locationUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "duration"), + pyxb.binding.datatypes.duration, + scope=locationUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 338, 6), + ) +) + + +def _BuildAutomaton_12(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_12 del _BuildAutomaton_12 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 337, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 337, 6), + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 338, 6)) + cc_1 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 338, 6), + ) counters.add(cc_1) states = [] final_update = None - symbol = pyxb.binding.content.ElementUse(locationUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'programUrl')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 335, 6)) + symbol = pyxb.binding.content.ElementUse( + locationUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "programUrl")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 335, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() - symbol = pyxb.binding.content.ElementUse(locationUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'avAttributes')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 336, 6)) + symbol = pyxb.binding.content.ElementUse( + locationUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "avAttributes")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 336, 6), + ) st_1 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_1) final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(locationUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'offset')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 337, 6)) + symbol = pyxb.binding.content.ElementUse( + locationUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "offset")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 337, 6), + ) st_2 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_2) final_update = set() final_update.add(fac.UpdateInstruction(cc_1, False)) - symbol = pyxb.binding.content.ElementUse(locationUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'duration')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 338, 6)) + symbol = pyxb.binding.content.ElementUse( + locationUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "duration")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 338, 6), + ) st_3 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_3) transitions = [] - transitions.append(fac.Transition(st_1, [ - ])) + transitions.append(fac.Transition(st_1, [])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_2, [ - ])) - transitions.append(fac.Transition(st_3, [ - ])) + transitions.append(fac.Transition(st_2, [])) + transitions.append(fac.Transition(st_3, [])) st_1._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_0, False)])) st_2._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_1, True) ])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_1, True)])) st_3._set_transitionSet(transitions) return fac.Automaton(states, counters, False, containing_state=None) -locationUpdateType._Automaton = _BuildAutomaton_12() +locationUpdateType._Automaton = _BuildAutomaton_12() + +CTD_ANON_5._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "title"), + titleUpdateType, + scope=CTD_ANON_5, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 353, 12), + ) +) -CTD_ANON_5._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'title'), titleUpdateType, scope=CTD_ANON_5, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 353, 12))) -def _BuildAutomaton_13 (): +def _BuildAutomaton_13(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_13 del _BuildAutomaton_13 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 353, 12)) + cc_0 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 353, 12), + ) counters.add(cc_0) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(CTD_ANON_5._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'title')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 353, 12)) + symbol = pyxb.binding.content.ElementUse( + CTD_ANON_5._UseForTag(pyxb.namespace.ExpandedName(Namespace, "title")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 353, 12), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) st_0._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -CTD_ANON_5._Automaton = _BuildAutomaton_13() +CTD_ANON_5._Automaton = _BuildAutomaton_13() + +CTD_ANON_6._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "description"), + descriptionUpdateType, + scope=CTD_ANON_6, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 360, 12), + ) +) -CTD_ANON_6._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'description'), descriptionUpdateType, scope=CTD_ANON_6, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 360, 12))) -def _BuildAutomaton_14 (): +def _BuildAutomaton_14(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_14 del _BuildAutomaton_14 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 360, 12)) + cc_0 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 360, 12), + ) counters.add(cc_0) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(CTD_ANON_6._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'description')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 360, 12)) + symbol = pyxb.binding.content.ElementUse( + CTD_ANON_6._UseForTag(pyxb.namespace.ExpandedName(Namespace, "description")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 360, 12), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) st_0._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -CTD_ANON_6._Automaton = _BuildAutomaton_14() +CTD_ANON_6._Automaton = _BuildAutomaton_14() + +imageDataType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "data"), + pyxb.binding.datatypes.base64Binary, + scope=imageDataType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 443, 6), + ) +) -imageDataType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'data'), pyxb.binding.datatypes.base64Binary, scope=imageDataType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 443, 6))) -def _BuildAutomaton_15 (): +def _BuildAutomaton_15(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_15 del _BuildAutomaton_15 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 443, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 443, 6), + ) counters.add(cc_0) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(imageDataType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'data')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 443, 6)) + symbol = pyxb.binding.content.ElementUse( + imageDataType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "data")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 443, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) st_0._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -imageDataType._Automaton = _BuildAutomaton_15() +imageDataType._Automaton = _BuildAutomaton_15() + +imageLocationType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "mimeType"), + pyxb.binding.datatypes.string, + scope=imageLocationType, + documentation="\n Sometimes it may be usefull to explicitely specify the mimetype of the given location. (E.g. if there are no or no correct http content type headers).\n ", + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 450, 6), + ) +) -imageLocationType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'mimeType'), pyxb.binding.datatypes.string, scope=imageLocationType, documentation='\n Sometimes it may be usefull to explicitely specify the mimetype of the given location. (E.g. if there are no or no correct http content type headers).\n ', location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 450, 6))) +imageLocationType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "url"), + imageLocationUrlType, + scope=imageLocationType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 457, 6), + ) +) -imageLocationType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'url'), imageLocationUrlType, scope=imageLocationType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 457, 6))) -def _BuildAutomaton_16 (): +def _BuildAutomaton_16(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_16 del _BuildAutomaton_16 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 450, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 450, 6), + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 457, 6)) + cc_1 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 457, 6), + ) counters.add(cc_1) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(imageLocationType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'mimeType')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 450, 6)) + symbol = pyxb.binding.content.ElementUse( + imageLocationType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "mimeType")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 450, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() final_update.add(fac.UpdateInstruction(cc_1, False)) - symbol = pyxb.binding.content.ElementUse(imageLocationType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'url')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 457, 6)) + symbol = pyxb.binding.content.ElementUse( + imageLocationType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "url")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 457, 6), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, False)])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_1, True) ])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_1, True)])) st_1._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -imageLocationType._Automaton = _BuildAutomaton_16() +imageLocationType._Automaton = _BuildAutomaton_16() + +assetType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "assetData"), + assetDataType, + scope=assetType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 477, 6), + ) +) -assetType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'assetData'), assetDataType, scope=assetType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 477, 6))) +assetType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "assetLocation"), + assetLocationType, + scope=assetType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 478, 6), + ) +) -assetType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'assetLocation'), assetLocationType, scope=assetType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 478, 6))) -def _BuildAutomaton_17 (): +def _BuildAutomaton_17(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_17 del _BuildAutomaton_17 @@ -3637,11 +5180,17 @@ def _BuildAutomaton_17 (): counters = set() states = [] final_update = set() - symbol = pyxb.binding.content.ElementUse(assetType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'assetData')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 477, 6)) + symbol = pyxb.binding.content.ElementUse( + assetType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "assetData")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 477, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() - symbol = pyxb.binding.content.ElementUse(assetType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'assetLocation')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 478, 6)) + symbol = pyxb.binding.content.ElementUse( + assetType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "assetLocation")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 478, 6), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) transitions = [] @@ -3649,93 +5198,135 @@ def _BuildAutomaton_17 (): transitions = [] st_1._set_transitionSet(transitions) return fac.Automaton(states, counters, False, containing_state=None) -assetType._Automaton = _BuildAutomaton_17() +assetType._Automaton = _BuildAutomaton_17() + +assetDataType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "data"), + pyxb.binding.datatypes.base64Binary, + scope=assetDataType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 486, 6), + ) +) -assetDataType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'data'), pyxb.binding.datatypes.base64Binary, scope=assetDataType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 486, 6))) -def _BuildAutomaton_18 (): +def _BuildAutomaton_18(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_18 del _BuildAutomaton_18 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 486, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 486, 6), + ) counters.add(cc_0) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(assetDataType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'data')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 486, 6)) + symbol = pyxb.binding.content.ElementUse( + assetDataType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "data")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 486, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) st_0._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -assetDataType._Automaton = _BuildAutomaton_18() +assetDataType._Automaton = _BuildAutomaton_18() + +assetLocationType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "url"), + pyxb.binding.datatypes.anyURI, + scope=assetLocationType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 493, 6), + ) +) -assetLocationType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'url'), pyxb.binding.datatypes.anyURI, scope=assetLocationType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 493, 6))) -def _BuildAutomaton_19 (): +def _BuildAutomaton_19(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_19 del _BuildAutomaton_19 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 493, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 493, 6), + ) counters.add(cc_0) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(assetLocationType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'url')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 493, 6)) + symbol = pyxb.binding.content.ElementUse( + assetLocationType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "url")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 493, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) st_0._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -assetLocationType._Automaton = _BuildAutomaton_19() +assetLocationType._Automaton = _BuildAutomaton_19() + +CTD_ANON_7._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "segment"), + segmentUpdateType, + scope=CTD_ANON_7, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 19, 2), + ) +) -CTD_ANON_7._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'segment'), segmentUpdateType, scope=CTD_ANON_7, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 19, 2))) -def _BuildAutomaton_20 (): +def _BuildAutomaton_20(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_20 del _BuildAutomaton_20 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 530, 16)) + cc_0 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 530, 16), + ) counters.add(cc_0) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(CTD_ANON_7._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'segment')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 530, 16)) + symbol = pyxb.binding.content.ElementUse( + CTD_ANON_7._UseForTag(pyxb.namespace.ExpandedName(Namespace, "segment")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 530, 16), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) st_0._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -CTD_ANON_7._Automaton = _BuildAutomaton_20() +CTD_ANON_7._Automaton = _BuildAutomaton_20() -def _BuildAutomaton_21 (): +def _BuildAutomaton_21(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_21 del _BuildAutomaton_21 @@ -3744,22 +5335,43 @@ def _BuildAutomaton_21 (): counters = set() states = [] final_update = set() - symbol = pyxb.binding.content.WildcardUse(pyxb.binding.content.Wildcard(process_contents=pyxb.binding.content.Wildcard.PC_strict, namespace_constraint=pyxb.binding.content.Wildcard.NC_any), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 554, 6)) + symbol = pyxb.binding.content.WildcardUse( + pyxb.binding.content.Wildcard( + process_contents=pyxb.binding.content.Wildcard.PC_strict, + namespace_constraint=pyxb.binding.content.Wildcard.NC_any, + ), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 554, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) transitions = [] st_0._set_transitionSet(transitions) return fac.Automaton(states, counters, False, containing_state=None) -memberUpdateType._Automaton = _BuildAutomaton_21() +memberUpdateType._Automaton = _BuildAutomaton_21() + +moveActionType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "from"), + pyxb.binding.datatypes.int, + scope=moveActionType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 585, 6), + ) +) -moveActionType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'from'), pyxb.binding.datatypes.int, scope=moveActionType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 585, 6))) +moveActionType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "to"), + pyxb.binding.datatypes.int, + scope=moveActionType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 586, 6), + ) +) -moveActionType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'to'), pyxb.binding.datatypes.int, scope=moveActionType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 586, 6))) -def _BuildAutomaton_22 (): +def _BuildAutomaton_22(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_22 del _BuildAutomaton_22 @@ -3768,2035 +5380,2508 @@ def _BuildAutomaton_22 (): counters = set() states = [] final_update = None - symbol = pyxb.binding.content.ElementUse(moveActionType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'from')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 585, 6)) + symbol = pyxb.binding.content.ElementUse( + moveActionType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "from")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 585, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() - symbol = pyxb.binding.content.ElementUse(moveActionType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'to')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 586, 6)) + symbol = pyxb.binding.content.ElementUse( + moveActionType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "to")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 586, 6), + ) st_1 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_1) transitions = [] - transitions.append(fac.Transition(st_1, [ - ])) + transitions.append(fac.Transition(st_1, [])) st_0._set_transitionSet(transitions) transitions = [] st_1._set_transitionSet(transitions) return fac.Automaton(states, counters, False, containing_state=None) -moveActionType._Automaton = _BuildAutomaton_22() - - -transcodeType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'fileName'), pyxb.binding.datatypes.string, scope=transcodeType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 602, 6))) - -transcodeType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'encryption'), _ImportedBinding_npoapi_xml_media.encryption, scope=transcodeType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 603, 6))) +moveActionType._Automaton = _BuildAutomaton_22() -transcodeType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'priority'), priorityType, scope=transcodeType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 604, 6))) -def _BuildAutomaton_23 (): +transcodeType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "fileName"), + pyxb.binding.datatypes.string, + scope=transcodeType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 602, 6), + ) +) + +transcodeType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "encryption"), + _ImportedBinding_npoapi_xml_media.encryption, + scope=transcodeType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 603, 6), + ) +) + +transcodeType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "priority"), + priorityType, + scope=transcodeType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 604, 6), + ) +) + + +def _BuildAutomaton_23(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_23 del _BuildAutomaton_23 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 602, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 602, 6), + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 603, 6)) + cc_1 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 603, 6), + ) counters.add(cc_1) - cc_2 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 604, 6)) + cc_2 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 604, 6), + ) counters.add(cc_2) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(transcodeType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'fileName')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 602, 6)) + symbol = pyxb.binding.content.ElementUse( + transcodeType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "fileName")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 602, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() final_update.add(fac.UpdateInstruction(cc_1, False)) - symbol = pyxb.binding.content.ElementUse(transcodeType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'encryption')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 603, 6)) + symbol = pyxb.binding.content.ElementUse( + transcodeType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "encryption")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 603, 6), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) final_update = set() final_update.add(fac.UpdateInstruction(cc_2, False)) - symbol = pyxb.binding.content.ElementUse(transcodeType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'priority')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 604, 6)) + symbol = pyxb.binding.content.ElementUse( + transcodeType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "priority")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 604, 6), + ) st_2 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_2) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_0, False)])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_1, True) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_1, False) ])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_1, True)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_1, False)])) st_1._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_2, True) ])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_2, True)])) st_2._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -transcodeType._Automaton = _BuildAutomaton_23() - - - - -transcodeStatusType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'fileName'), pyxb.binding.datatypes.string, scope=transcodeStatusType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 611, 6))) - -transcodeStatusType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'status'), transcodeStatusEnum, scope=transcodeStatusType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 612, 6))) -transcodeStatusType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'statusMessage'), pyxb.binding.datatypes.string, scope=transcodeStatusType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 613, 6))) -transcodeStatusType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'workflowType'), pyxb.binding.datatypes.string, scope=transcodeStatusType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 614, 6))) - -transcodeStatusType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'workflowId'), pyxb.binding.datatypes.string, scope=transcodeStatusType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 615, 6))) - -transcodeStatusType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'startTime'), pyxb.binding.datatypes.dateTime, scope=transcodeStatusType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 616, 6))) - -transcodeStatusType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'updateTime'), pyxb.binding.datatypes.dateTime, scope=transcodeStatusType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 617, 6))) - -transcodeStatusType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'endTime'), pyxb.binding.datatypes.dateTime, scope=transcodeStatusType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 618, 6))) +transcodeType._Automaton = _BuildAutomaton_23() -transcodeStatusType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'broadcasters'), CTD_ANON_8, scope=transcodeStatusType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 619, 7))) -def _BuildAutomaton_24 (): +transcodeStatusType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "fileName"), + pyxb.binding.datatypes.string, + scope=transcodeStatusType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 611, 6), + ) +) + +transcodeStatusType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "status"), + transcodeStatusEnum, + scope=transcodeStatusType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 612, 6), + ) +) + +transcodeStatusType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "statusMessage"), + pyxb.binding.datatypes.string, + scope=transcodeStatusType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 613, 6), + ) +) + +transcodeStatusType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "workflowType"), + pyxb.binding.datatypes.string, + scope=transcodeStatusType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 614, 6), + ) +) + +transcodeStatusType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "workflowId"), + pyxb.binding.datatypes.string, + scope=transcodeStatusType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 615, 6), + ) +) + +transcodeStatusType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "startTime"), + pyxb.binding.datatypes.dateTime, + scope=transcodeStatusType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 616, 6), + ) +) + +transcodeStatusType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "updateTime"), + pyxb.binding.datatypes.dateTime, + scope=transcodeStatusType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 617, 6), + ) +) + +transcodeStatusType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "endTime"), + pyxb.binding.datatypes.dateTime, + scope=transcodeStatusType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 618, 6), + ) +) + +transcodeStatusType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "broadcasters"), + CTD_ANON_8, + scope=transcodeStatusType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 619, 7), + ) +) + + +def _BuildAutomaton_24(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_24 del _BuildAutomaton_24 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 611, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 611, 6), + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 612, 6)) + cc_1 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 612, 6), + ) counters.add(cc_1) - cc_2 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 613, 6)) + cc_2 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 613, 6), + ) counters.add(cc_2) - cc_3 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 614, 6)) + cc_3 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 614, 6), + ) counters.add(cc_3) - cc_4 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 615, 6)) + cc_4 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 615, 6), + ) counters.add(cc_4) - cc_5 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 616, 6)) + cc_5 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 616, 6), + ) counters.add(cc_5) - cc_6 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 617, 6)) + cc_6 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 617, 6), + ) counters.add(cc_6) - cc_7 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 618, 6)) + cc_7 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 618, 6), + ) counters.add(cc_7) - cc_8 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 619, 7)) + cc_8 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 619, 7), + ) counters.add(cc_8) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(transcodeStatusType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'fileName')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 611, 6)) + symbol = pyxb.binding.content.ElementUse( + transcodeStatusType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "fileName")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 611, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() final_update.add(fac.UpdateInstruction(cc_1, False)) - symbol = pyxb.binding.content.ElementUse(transcodeStatusType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'status')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 612, 6)) + symbol = pyxb.binding.content.ElementUse( + transcodeStatusType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "status")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 612, 6), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) final_update = set() final_update.add(fac.UpdateInstruction(cc_2, False)) - symbol = pyxb.binding.content.ElementUse(transcodeStatusType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'statusMessage')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 613, 6)) + symbol = pyxb.binding.content.ElementUse( + transcodeStatusType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "statusMessage")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 613, 6), + ) st_2 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_2) final_update = set() final_update.add(fac.UpdateInstruction(cc_3, False)) - symbol = pyxb.binding.content.ElementUse(transcodeStatusType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'workflowType')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 614, 6)) + symbol = pyxb.binding.content.ElementUse( + transcodeStatusType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "workflowType")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 614, 6), + ) st_3 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_3) final_update = set() final_update.add(fac.UpdateInstruction(cc_4, False)) - symbol = pyxb.binding.content.ElementUse(transcodeStatusType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'workflowId')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 615, 6)) + symbol = pyxb.binding.content.ElementUse( + transcodeStatusType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "workflowId")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 615, 6), + ) st_4 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_4) final_update = set() final_update.add(fac.UpdateInstruction(cc_5, False)) - symbol = pyxb.binding.content.ElementUse(transcodeStatusType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'startTime')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 616, 6)) + symbol = pyxb.binding.content.ElementUse( + transcodeStatusType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "startTime")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 616, 6), + ) st_5 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_5) final_update = set() final_update.add(fac.UpdateInstruction(cc_6, False)) - symbol = pyxb.binding.content.ElementUse(transcodeStatusType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'updateTime')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 617, 6)) + symbol = pyxb.binding.content.ElementUse( + transcodeStatusType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "updateTime")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 617, 6), + ) st_6 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_6) final_update = set() final_update.add(fac.UpdateInstruction(cc_7, False)) - symbol = pyxb.binding.content.ElementUse(transcodeStatusType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'endTime')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 618, 6)) + symbol = pyxb.binding.content.ElementUse( + transcodeStatusType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "endTime")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 618, 6), + ) st_7 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_7) final_update = set() final_update.add(fac.UpdateInstruction(cc_8, False)) - symbol = pyxb.binding.content.ElementUse(transcodeStatusType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'broadcasters')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 619, 7)) + symbol = pyxb.binding.content.ElementUse( + transcodeStatusType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "broadcasters")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 619, 7), + ) st_8 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_8) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_0, False)])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_1, True) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_1, False) ])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_1, True)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_1, False)])) st_1._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_2, True) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_2, False) ])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_2, True)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_2, False)])) st_2._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_3, True) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_3, False) ])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_3, True)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_3, False)])) st_3._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_4, True) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_4, False) ])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_4, True)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_4, False)])) st_4._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_5, True) ])) - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_5, False) ])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_5, True)])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_5, False)])) st_5._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_6, True) ])) - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_6, False) ])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_6, True)])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_6, False)])) st_6._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_7, True) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_7, False) ])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_7, True)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_7, False)])) st_7._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_8, True) ])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_8, True)])) st_8._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -transcodeStatusType._Automaton = _BuildAutomaton_24() +transcodeStatusType._Automaton = _BuildAutomaton_24() + +CTD_ANON_8._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "broadcaster"), + pyxb.binding.datatypes.string, + scope=CTD_ANON_8, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 622, 12), + ) +) -CTD_ANON_8._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'broadcaster'), pyxb.binding.datatypes.string, scope=CTD_ANON_8, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 622, 12))) -def _BuildAutomaton_25 (): +def _BuildAutomaton_25(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_25 del _BuildAutomaton_25 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 622, 12)) + cc_0 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 622, 12), + ) counters.add(cc_0) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(CTD_ANON_8._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'broadcaster')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 622, 12)) + symbol = pyxb.binding.content.ElementUse( + CTD_ANON_8._UseForTag(pyxb.namespace.ExpandedName(Namespace, "broadcaster")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 622, 12), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) st_0._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -CTD_ANON_8._Automaton = _BuildAutomaton_25() +CTD_ANON_8._Automaton = _BuildAutomaton_25() + +itemizeType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "start"), + pyxb.binding.datatypes.duration, + scope=itemizeType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 653, 6), + ) +) -itemizeType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'start'), pyxb.binding.datatypes.duration, scope=itemizeType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 653, 6))) +itemizeType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "stop"), + pyxb.binding.datatypes.duration, + scope=itemizeType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 654, 6), + ) +) -itemizeType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'stop'), pyxb.binding.datatypes.duration, scope=itemizeType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 654, 6))) -def _BuildAutomaton_26 (): +def _BuildAutomaton_26(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_26 del _BuildAutomaton_26 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 653, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 653, 6), + ) counters.add(cc_0) states = [] final_update = None - symbol = pyxb.binding.content.ElementUse(itemizeType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'start')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 653, 6)) + symbol = pyxb.binding.content.ElementUse( + itemizeType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "start")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 653, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() - symbol = pyxb.binding.content.ElementUse(itemizeType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'stop')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 654, 6)) + symbol = pyxb.binding.content.ElementUse( + itemizeType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "stop")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 654, 6), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, False)])) st_0._set_transitionSet(transitions) transitions = [] st_1._set_transitionSet(transitions) return fac.Automaton(states, counters, False, containing_state=None) -itemizeType._Automaton = _BuildAutomaton_26() +itemizeType._Automaton = _BuildAutomaton_26() + +liveItemize._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "start"), + pyxb.binding.datatypes.dateTime, + scope=liveItemize, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 661, 6), + ) +) -liveItemize._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'start'), pyxb.binding.datatypes.dateTime, scope=liveItemize, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 661, 6))) +liveItemize._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "stop"), + pyxb.binding.datatypes.dateTime, + scope=liveItemize, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 662, 6), + ) +) -liveItemize._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'stop'), pyxb.binding.datatypes.dateTime, scope=liveItemize, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 662, 6))) -def _BuildAutomaton_27 (): +def _BuildAutomaton_27(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_27 del _BuildAutomaton_27 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 661, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 661, 6), + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 662, 6)) + cc_1 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 662, 6), + ) counters.add(cc_1) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(liveItemize._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'start')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 661, 6)) + symbol = pyxb.binding.content.ElementUse( + liveItemize._UseForTag(pyxb.namespace.ExpandedName(Namespace, "start")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 661, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() final_update.add(fac.UpdateInstruction(cc_1, False)) - symbol = pyxb.binding.content.ElementUse(liveItemize._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'stop')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 662, 6)) + symbol = pyxb.binding.content.ElementUse( + liveItemize._UseForTag(pyxb.namespace.ExpandedName(Namespace, "stop")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 662, 6), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, False)])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_1, True) ])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_1, True)])) st_1._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -liveItemize._Automaton = _BuildAutomaton_27() - +liveItemize._Automaton = _BuildAutomaton_27() -itemizeResponseType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'request'), itemizeType, scope=itemizeResponseType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 670, 8))) - -itemizeResponseType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'liverequest'), liveItemize, scope=itemizeResponseType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 671, 8))) - -itemizeResponseType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'result'), pyxb.binding.datatypes.string, scope=itemizeResponseType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 673, 6))) - -itemizeResponseType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'id'), pyxb.binding.datatypes.string, scope=itemizeResponseType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 675, 6))) -def _BuildAutomaton_28 (): +itemizeResponseType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "request"), + itemizeType, + scope=itemizeResponseType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 670, 8), + ) +) + +itemizeResponseType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "liverequest"), + liveItemize, + scope=itemizeResponseType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 671, 8), + ) +) + +itemizeResponseType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "result"), + pyxb.binding.datatypes.string, + scope=itemizeResponseType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 673, 6), + ) +) + +itemizeResponseType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "id"), + pyxb.binding.datatypes.string, + scope=itemizeResponseType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 675, 6), + ) +) + + +def _BuildAutomaton_28(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_28 del _BuildAutomaton_28 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 669, 7)) + cc_0 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 669, 7), + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 673, 6)) + cc_1 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 673, 6), + ) counters.add(cc_1) - cc_2 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 675, 6)) + cc_2 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 675, 6), + ) counters.add(cc_2) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(itemizeResponseType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'request')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 670, 8)) + symbol = pyxb.binding.content.ElementUse( + itemizeResponseType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "request")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 670, 8), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(itemizeResponseType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'liverequest')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 671, 8)) + symbol = pyxb.binding.content.ElementUse( + itemizeResponseType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "liverequest")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 671, 8), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) final_update = set() final_update.add(fac.UpdateInstruction(cc_1, False)) - symbol = pyxb.binding.content.ElementUse(itemizeResponseType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'result')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 673, 6)) + symbol = pyxb.binding.content.ElementUse( + itemizeResponseType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "result")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 673, 6), + ) st_2 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_2) final_update = set() final_update.add(fac.UpdateInstruction(cc_2, False)) - symbol = pyxb.binding.content.ElementUse(itemizeResponseType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'id')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 675, 6)) + symbol = pyxb.binding.content.ElementUse( + itemizeResponseType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "id")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 675, 6), + ) st_3 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_3) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_0, False)])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_0, False)])) st_1._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_1, True) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_1, False) ])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_1, True)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_1, False)])) st_2._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_2, True) ])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_2, True)])) st_3._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -itemizeResponseType._Automaton = _BuildAutomaton_28() +itemizeResponseType._Automaton = _BuildAutomaton_28() + +personUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "givenName"), + pyxb.binding.datatypes.string, + scope=personUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 111, 6), + ) +) -personUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'givenName'), pyxb.binding.datatypes.string, scope=personUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 111, 6))) +personUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "familyName"), + pyxb.binding.datatypes.string, + scope=personUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 112, 6), + ) +) -personUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'familyName'), pyxb.binding.datatypes.string, scope=personUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 112, 6))) -def _BuildAutomaton_29 (): +def _BuildAutomaton_29(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_29 del _BuildAutomaton_29 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 111, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 111, 6), + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 112, 6)) + cc_1 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 112, 6), + ) counters.add(cc_1) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(personUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'givenName')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 111, 6)) + symbol = pyxb.binding.content.ElementUse( + personUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "givenName")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 111, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() final_update.add(fac.UpdateInstruction(cc_1, False)) - symbol = pyxb.binding.content.ElementUse(personUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'familyName')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 112, 6)) + symbol = pyxb.binding.content.ElementUse( + personUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "familyName")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 112, 6), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, False)])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_1, True) ])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_1, True)])) st_1._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -personUpdateType._Automaton = _BuildAutomaton_29() - - - - -mediaUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'crid'), _ImportedBinding_npoapi_xml_media.cridType, scope=mediaUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 145, 6))) - -mediaUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'broadcaster'), _ImportedBinding_npoapi_xml_media.organizationIdType, scope=mediaUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 146, 6))) - -mediaUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'portal'), _ImportedBinding_npoapi_xml_media.organizationIdType, scope=mediaUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 147, 6))) - -mediaUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'exclusive'), portalRestrictionUpdateType, scope=mediaUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 148, 6))) - -mediaUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'region'), geoRestrictionUpdateType, scope=mediaUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 150, 6))) -mediaUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'title'), titleUpdateType, scope=mediaUpdateType, documentation='\n Titles in dutch\n ', location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 151, 6))) -mediaUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'description'), descriptionUpdateType, scope=mediaUpdateType, documentation='\n Descriptions in dutch\n ', location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 158, 6))) - -mediaUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'tag'), tagUpdateType, scope=mediaUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 165, 6))) - -mediaUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'country'), pyxb.binding.datatypes.string, scope=mediaUpdateType, documentation='\n Countries somehow associated with this item. This does not refer to the used language in the meta fields of\n this object. Only supported if version >= 5.0.\n ', location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 166, 6))) - -mediaUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'language'), pyxb.binding.datatypes.string, scope=mediaUpdateType, documentation='\n Languages somehow associated with this item. This does not refer to the used language in the meta fields of this object. They should be in dutch. Only supported if version >= 5.0.\n ', location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 174, 6))) - -mediaUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'genre'), genreUpdateType, scope=mediaUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 181, 6))) - -mediaUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'intentions'), CTD_ANON, scope=mediaUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 182, 6))) - -mediaUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'targetGroups'), CTD_ANON_, scope=mediaUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 189, 6))) - -mediaUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'geoLocations'), geoLocationsUpdateType, scope=mediaUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 196, 6))) - -mediaUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'topics'), topicsUpdateType, scope=mediaUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 197, 6))) - -mediaUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'avAttributes'), avAtributeUpdateType, scope=mediaUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 198, 6))) - -mediaUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'releaseYear'), pyxb.binding.datatypes.short, scope=mediaUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 199, 6))) - -mediaUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'duration'), pyxb.binding.datatypes.duration, scope=mediaUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 200, 6))) - -mediaUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'credits'), creditsUpdateType, scope=mediaUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 201, 6))) - -mediaUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'memberOf'), memberRefUpdateType, scope=mediaUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 202, 6))) - -mediaUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'ageRating'), _ImportedBinding_npoapi_xml_media.ageRatingType, scope=mediaUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 203, 6))) - -mediaUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'contentRating'), _ImportedBinding_npoapi_xml_media.contentRatingType, scope=mediaUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 204, 6))) - -mediaUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'email'), _ImportedBinding_npoapi_xml_media.baseTextType, scope=mediaUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 206, 6))) - -mediaUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'website'), _ImportedBinding_npoapi_xml_media.websiteType, scope=mediaUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 207, 6))) - -mediaUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'twitterref'), twitterrefType, scope=mediaUpdateType, documentation='\n Only supported if version >= 5.10.\n ', location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 208, 6))) - -mediaUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'prediction'), predictionUpdateType, scope=mediaUpdateType, documentation="\n With predictions it can be indicated for which platforms locations will be available.\n If there is a prediction for a certain platform, but the mediaobject is not yet available on the streaming platform, then\n there will be no associated location for that certain platform.\n\n If the streaming platform status changes, then according to these 'prediction' records the locations will be changed.\n ", location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 215, 6))) - -mediaUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'locations'), CTD_ANON_2, scope=mediaUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 226, 6))) - -mediaUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'scheduleEvents'), CTD_ANON_3, scope=mediaUpdateType, documentation='Please note that this is only available for program upates (since 5.11)', location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 233, 6))) - -mediaUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'relation'), relationUpdateType, scope=mediaUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 244, 6))) - -mediaUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'images'), CTD_ANON_4, scope=mediaUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 245, 6))) +personUpdateType._Automaton = _BuildAutomaton_29() -mediaUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'asset'), assetType, scope=mediaUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 252, 6))) -def _BuildAutomaton_30 (): +mediaUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "crid"), + _ImportedBinding_npoapi_xml_media.cridType, + scope=mediaUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 145, 6), + ) +) + +mediaUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "broadcaster"), + _ImportedBinding_npoapi_xml_media.organizationIdType, + scope=mediaUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 146, 6), + ) +) + +mediaUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "portal"), + _ImportedBinding_npoapi_xml_media.organizationIdType, + scope=mediaUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 147, 6), + ) +) + +mediaUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "exclusive"), + portalRestrictionUpdateType, + scope=mediaUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 148, 6), + ) +) + +mediaUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "region"), + geoRestrictionUpdateType, + scope=mediaUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 150, 6), + ) +) + +mediaUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "title"), + titleUpdateType, + scope=mediaUpdateType, + documentation="\n Titles in dutch\n ", + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 151, 6), + ) +) + +mediaUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "description"), + descriptionUpdateType, + scope=mediaUpdateType, + documentation="\n Descriptions in dutch\n ", + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 158, 6), + ) +) + +mediaUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "tag"), + tagUpdateType, + scope=mediaUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 165, 6), + ) +) + +mediaUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "country"), + pyxb.binding.datatypes.string, + scope=mediaUpdateType, + documentation="\n Countries somehow associated with this item. This does not refer to the used language in the meta fields of\n this object. Only supported if version >= 5.0.\n ", + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 166, 6), + ) +) + +mediaUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "language"), + pyxb.binding.datatypes.string, + scope=mediaUpdateType, + documentation="\n Languages somehow associated with this item. This does not refer to the used language in the meta fields of this object. They should be in dutch. Only supported if version >= 5.0.\n ", + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 174, 6), + ) +) + +mediaUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "genre"), + genreUpdateType, + scope=mediaUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 181, 6), + ) +) + +mediaUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "intentions"), + CTD_ANON, + scope=mediaUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 182, 6), + ) +) + +mediaUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "targetGroups"), + CTD_ANON_, + scope=mediaUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 189, 6), + ) +) + +mediaUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "geoLocations"), + geoLocationsUpdateType, + scope=mediaUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 196, 6), + ) +) + +mediaUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "topics"), + topicsUpdateType, + scope=mediaUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 197, 6), + ) +) + +mediaUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "avAttributes"), + avAtributeUpdateType, + scope=mediaUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 198, 6), + ) +) + +mediaUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "releaseYear"), + pyxb.binding.datatypes.short, + scope=mediaUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 199, 6), + ) +) + +mediaUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "duration"), + pyxb.binding.datatypes.duration, + scope=mediaUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 200, 6), + ) +) + +mediaUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "credits"), + creditsUpdateType, + scope=mediaUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 201, 6), + ) +) + +mediaUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "memberOf"), + memberRefUpdateType, + scope=mediaUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 202, 6), + ) +) + +mediaUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "ageRating"), + _ImportedBinding_npoapi_xml_media.ageRatingType, + scope=mediaUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 203, 6), + ) +) + +mediaUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "contentRating"), + _ImportedBinding_npoapi_xml_media.contentRatingType, + scope=mediaUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 204, 6), + ) +) + +mediaUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "email"), + _ImportedBinding_npoapi_xml_media.baseTextType, + scope=mediaUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 206, 6), + ) +) + +mediaUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "website"), + _ImportedBinding_npoapi_xml_media.websiteType, + scope=mediaUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 207, 6), + ) +) + +mediaUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "twitterref"), + twitterrefType, + scope=mediaUpdateType, + documentation="\n Only supported if version >= 5.10.\n ", + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 208, 6), + ) +) + +mediaUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "prediction"), + predictionUpdateType, + scope=mediaUpdateType, + documentation="\n With predictions it can be indicated for which platforms locations will be available.\n If there is a prediction for a certain platform, but the mediaobject is not yet available on the streaming platform, then\n there will be no associated location for that certain platform.\n\n If the streaming platform status changes, then according to these 'prediction' records the locations will be changed.\n ", + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 215, 6), + ) +) + +mediaUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "locations"), + CTD_ANON_2, + scope=mediaUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 226, 6), + ) +) + +mediaUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "scheduleEvents"), + CTD_ANON_3, + scope=mediaUpdateType, + documentation="Please note that this is only available for program upates (since 5.11)", + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 233, 6), + ) +) + +mediaUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "relation"), + relationUpdateType, + scope=mediaUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 244, 6), + ) +) + +mediaUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "images"), + CTD_ANON_4, + scope=mediaUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 245, 6), + ) +) + +mediaUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "asset"), + assetType, + scope=mediaUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 252, 6), + ) +) + + +def _BuildAutomaton_30(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_30 del _BuildAutomaton_30 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 145, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 145, 6), + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 147, 6)) + cc_1 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 147, 6), + ) counters.add(cc_1) - cc_2 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 148, 6)) + cc_2 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 148, 6), + ) counters.add(cc_2) - cc_3 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 150, 6)) + cc_3 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 150, 6), + ) counters.add(cc_3) - cc_4 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 158, 6)) + cc_4 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 158, 6), + ) counters.add(cc_4) - cc_5 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 165, 6)) + cc_5 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 165, 6), + ) counters.add(cc_5) - cc_6 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 166, 6)) + cc_6 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 166, 6), + ) counters.add(cc_6) - cc_7 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 174, 6)) + cc_7 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 174, 6), + ) counters.add(cc_7) - cc_8 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 181, 6)) + cc_8 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 181, 6), + ) counters.add(cc_8) - cc_9 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 182, 6)) + cc_9 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 182, 6), + ) counters.add(cc_9) - cc_10 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 189, 6)) + cc_10 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 189, 6), + ) counters.add(cc_10) - cc_11 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 196, 6)) + cc_11 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 196, 6), + ) counters.add(cc_11) - cc_12 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 197, 6)) + cc_12 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 197, 6), + ) counters.add(cc_12) - cc_13 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 198, 6)) + cc_13 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 198, 6), + ) counters.add(cc_13) - cc_14 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 199, 6)) + cc_14 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 199, 6), + ) counters.add(cc_14) - cc_15 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 200, 6)) + cc_15 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 200, 6), + ) counters.add(cc_15) - cc_16 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 201, 6)) + cc_16 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 201, 6), + ) counters.add(cc_16) - cc_17 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 202, 6)) + cc_17 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 202, 6), + ) counters.add(cc_17) - cc_18 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 203, 6)) + cc_18 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 203, 6), + ) counters.add(cc_18) - cc_19 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 204, 6)) + cc_19 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 204, 6), + ) counters.add(cc_19) - cc_20 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 206, 6)) + cc_20 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 206, 6), + ) counters.add(cc_20) - cc_21 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 207, 6)) + cc_21 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 207, 6), + ) counters.add(cc_21) - cc_22 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 208, 6)) + cc_22 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 208, 6), + ) counters.add(cc_22) - cc_23 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 215, 6)) + cc_23 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 215, 6), + ) counters.add(cc_23) - cc_24 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 226, 6)) + cc_24 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 226, 6), + ) counters.add(cc_24) - cc_25 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 233, 6)) + cc_25 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 233, 6), + ) counters.add(cc_25) - cc_26 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 244, 6)) + cc_26 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 244, 6), + ) counters.add(cc_26) - cc_27 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 245, 6)) + cc_27 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 245, 6), + ) counters.add(cc_27) - cc_28 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 252, 6)) + cc_28 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 252, 6), + ) counters.add(cc_28) states = [] final_update = None - symbol = pyxb.binding.content.ElementUse(mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'crid')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 145, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "crid")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 145, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = None - symbol = pyxb.binding.content.ElementUse(mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'broadcaster')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 146, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "broadcaster")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 146, 6), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) final_update = None - symbol = pyxb.binding.content.ElementUse(mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'portal')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 147, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "portal")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 147, 6), + ) st_2 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_2) final_update = None - symbol = pyxb.binding.content.ElementUse(mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'exclusive')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 148, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "exclusive")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 148, 6), + ) st_3 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_3) final_update = None - symbol = pyxb.binding.content.ElementUse(mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'region')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 150, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "region")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 150, 6), + ) st_4 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_4) final_update = set() - symbol = pyxb.binding.content.ElementUse(mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'title')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 151, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "title")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 151, 6), + ) st_5 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_5) final_update = set() final_update.add(fac.UpdateInstruction(cc_4, False)) - symbol = pyxb.binding.content.ElementUse(mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'description')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 158, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "description")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 158, 6), + ) st_6 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_6) final_update = set() final_update.add(fac.UpdateInstruction(cc_5, False)) - symbol = pyxb.binding.content.ElementUse(mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'tag')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 165, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "tag")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 165, 6), + ) st_7 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_7) final_update = set() final_update.add(fac.UpdateInstruction(cc_6, False)) - symbol = pyxb.binding.content.ElementUse(mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'country')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 166, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "country")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 166, 6), + ) st_8 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_8) final_update = set() final_update.add(fac.UpdateInstruction(cc_7, False)) - symbol = pyxb.binding.content.ElementUse(mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'language')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 174, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "language")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 174, 6), + ) st_9 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_9) final_update = set() final_update.add(fac.UpdateInstruction(cc_8, False)) - symbol = pyxb.binding.content.ElementUse(mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'genre')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 181, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "genre")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 181, 6), + ) st_10 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_10) final_update = set() final_update.add(fac.UpdateInstruction(cc_9, False)) - symbol = pyxb.binding.content.ElementUse(mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'intentions')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 182, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "intentions")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 182, 6), + ) st_11 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_11) final_update = set() final_update.add(fac.UpdateInstruction(cc_10, False)) - symbol = pyxb.binding.content.ElementUse(mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'targetGroups')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 189, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "targetGroups")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 189, 6), + ) st_12 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_12) final_update = set() final_update.add(fac.UpdateInstruction(cc_11, False)) - symbol = pyxb.binding.content.ElementUse(mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'geoLocations')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 196, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "geoLocations")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 196, 6), + ) st_13 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_13) final_update = set() final_update.add(fac.UpdateInstruction(cc_12, False)) - symbol = pyxb.binding.content.ElementUse(mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'topics')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 197, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "topics")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 197, 6), + ) st_14 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_14) final_update = set() final_update.add(fac.UpdateInstruction(cc_13, False)) - symbol = pyxb.binding.content.ElementUse(mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'avAttributes')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 198, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "avAttributes")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 198, 6), + ) st_15 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_15) final_update = set() final_update.add(fac.UpdateInstruction(cc_14, False)) - symbol = pyxb.binding.content.ElementUse(mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'releaseYear')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 199, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "releaseYear")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 199, 6), + ) st_16 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_16) final_update = set() final_update.add(fac.UpdateInstruction(cc_15, False)) - symbol = pyxb.binding.content.ElementUse(mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'duration')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 200, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "duration")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 200, 6), + ) st_17 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_17) final_update = set() final_update.add(fac.UpdateInstruction(cc_16, False)) - symbol = pyxb.binding.content.ElementUse(mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'credits')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 201, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "credits")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 201, 6), + ) st_18 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_18) final_update = set() final_update.add(fac.UpdateInstruction(cc_17, False)) - symbol = pyxb.binding.content.ElementUse(mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'memberOf')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 202, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "memberOf")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 202, 6), + ) st_19 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_19) final_update = set() final_update.add(fac.UpdateInstruction(cc_18, False)) - symbol = pyxb.binding.content.ElementUse(mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'ageRating')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 203, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "ageRating")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 203, 6), + ) st_20 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_20) final_update = set() final_update.add(fac.UpdateInstruction(cc_19, False)) - symbol = pyxb.binding.content.ElementUse(mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'contentRating')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 204, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "contentRating")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 204, 6), + ) st_21 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_21) final_update = set() final_update.add(fac.UpdateInstruction(cc_20, False)) - symbol = pyxb.binding.content.ElementUse(mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'email')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 206, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "email")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 206, 6), + ) st_22 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_22) final_update = set() final_update.add(fac.UpdateInstruction(cc_21, False)) - symbol = pyxb.binding.content.ElementUse(mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'website')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 207, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "website")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 207, 6), + ) st_23 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_23) final_update = set() final_update.add(fac.UpdateInstruction(cc_22, False)) - symbol = pyxb.binding.content.ElementUse(mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'twitterref')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 208, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "twitterref")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 208, 6), + ) st_24 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_24) final_update = set() final_update.add(fac.UpdateInstruction(cc_23, False)) - symbol = pyxb.binding.content.ElementUse(mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'prediction')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 215, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "prediction")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 215, 6), + ) st_25 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_25) final_update = set() final_update.add(fac.UpdateInstruction(cc_24, False)) - symbol = pyxb.binding.content.ElementUse(mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'locations')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 226, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "locations")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 226, 6), + ) st_26 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_26) final_update = set() final_update.add(fac.UpdateInstruction(cc_25, False)) - symbol = pyxb.binding.content.ElementUse(mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'scheduleEvents')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 233, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "scheduleEvents")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 233, 6), + ) st_27 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_27) final_update = set() final_update.add(fac.UpdateInstruction(cc_26, False)) - symbol = pyxb.binding.content.ElementUse(mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'relation')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 244, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "relation")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 244, 6), + ) st_28 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_28) final_update = set() final_update.add(fac.UpdateInstruction(cc_27, False)) - symbol = pyxb.binding.content.ElementUse(mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'images')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 245, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "images")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 245, 6), + ) st_29 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_29) final_update = set() final_update.add(fac.UpdateInstruction(cc_28, False)) - symbol = pyxb.binding.content.ElementUse(mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'asset')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 252, 6)) + symbol = pyxb.binding.content.ElementUse( + mediaUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "asset")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 252, 6), + ) st_30 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_30) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, False)])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - ])) - transitions.append(fac.Transition(st_2, [ - ])) - transitions.append(fac.Transition(st_3, [ - ])) - transitions.append(fac.Transition(st_4, [ - ])) - transitions.append(fac.Transition(st_5, [ - ])) + transitions.append(fac.Transition(st_1, [])) + transitions.append(fac.Transition(st_2, [])) + transitions.append(fac.Transition(st_3, [])) + transitions.append(fac.Transition(st_4, [])) + transitions.append(fac.Transition(st_5, [])) st_1._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_1, True) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_1, False) ])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_1, True)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_1, False)])) st_2._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_2, True) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_2, False) ])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_2, True)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_2, False)])) st_3._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_3, True) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_3, False) ])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_3, True)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_3, False)])) st_4._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_5, [ - ])) - transitions.append(fac.Transition(st_6, [ - ])) - transitions.append(fac.Transition(st_7, [ - ])) - transitions.append(fac.Transition(st_8, [ - ])) - transitions.append(fac.Transition(st_9, [ - ])) - transitions.append(fac.Transition(st_10, [ - ])) - transitions.append(fac.Transition(st_11, [ - ])) - transitions.append(fac.Transition(st_12, [ - ])) - transitions.append(fac.Transition(st_13, [ - ])) - transitions.append(fac.Transition(st_14, [ - ])) - transitions.append(fac.Transition(st_15, [ - ])) - transitions.append(fac.Transition(st_16, [ - ])) - transitions.append(fac.Transition(st_17, [ - ])) - transitions.append(fac.Transition(st_18, [ - ])) - transitions.append(fac.Transition(st_19, [ - ])) - transitions.append(fac.Transition(st_20, [ - ])) - transitions.append(fac.Transition(st_21, [ - ])) - transitions.append(fac.Transition(st_22, [ - ])) - transitions.append(fac.Transition(st_23, [ - ])) - transitions.append(fac.Transition(st_24, [ - ])) - transitions.append(fac.Transition(st_25, [ - ])) - transitions.append(fac.Transition(st_26, [ - ])) - transitions.append(fac.Transition(st_27, [ - ])) - transitions.append(fac.Transition(st_28, [ - ])) - transitions.append(fac.Transition(st_29, [ - ])) - transitions.append(fac.Transition(st_30, [ - ])) + transitions.append(fac.Transition(st_5, [])) + transitions.append(fac.Transition(st_6, [])) + transitions.append(fac.Transition(st_7, [])) + transitions.append(fac.Transition(st_8, [])) + transitions.append(fac.Transition(st_9, [])) + transitions.append(fac.Transition(st_10, [])) + transitions.append(fac.Transition(st_11, [])) + transitions.append(fac.Transition(st_12, [])) + transitions.append(fac.Transition(st_13, [])) + transitions.append(fac.Transition(st_14, [])) + transitions.append(fac.Transition(st_15, [])) + transitions.append(fac.Transition(st_16, [])) + transitions.append(fac.Transition(st_17, [])) + transitions.append(fac.Transition(st_18, [])) + transitions.append(fac.Transition(st_19, [])) + transitions.append(fac.Transition(st_20, [])) + transitions.append(fac.Transition(st_21, [])) + transitions.append(fac.Transition(st_22, [])) + transitions.append(fac.Transition(st_23, [])) + transitions.append(fac.Transition(st_24, [])) + transitions.append(fac.Transition(st_25, [])) + transitions.append(fac.Transition(st_26, [])) + transitions.append(fac.Transition(st_27, [])) + transitions.append(fac.Transition(st_28, [])) + transitions.append(fac.Transition(st_29, [])) + transitions.append(fac.Transition(st_30, [])) st_5._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_4, True) ])) - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_4, False) ])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_4, True)])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_4, False)])) st_6._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_5, True) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_5, False) ])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_5, True)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_5, False)])) st_7._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_6, True) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_6, False) ])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_6, True)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_6, False)])) st_8._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_7, True) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_7, False) ])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_7, True)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_7, False)])) st_9._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_8, True) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_8, False) ])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_8, True)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_8, False)])) st_10._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_9, True) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_9, False) ])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_9, True)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_9, False)])) st_11._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_10, True) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_10, False) ])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_10, True)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_10, False)])) st_12._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_11, True) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_11, False) ])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_11, True)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_11, False)])) st_13._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_12, True) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_12, False) ])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_12, True)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_12, False)])) st_14._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_13, True) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_13, False) ])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_13, True)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_13, False)])) st_15._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_14, True) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_14, False) ])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_14, True)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_14, False)])) st_16._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_15, True) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_15, False) ])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_15, True)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_15, False)])) st_17._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_16, True) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_16, False) ])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_16, True)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_16, False)])) st_18._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_17, True) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_17, False) ])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_17, True)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_17, False)])) st_19._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_18, True) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_18, False) ])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_18, True)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_18, False)])) st_20._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_19, True) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_19, False) ])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_19, True)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_19, False)])) st_21._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_20, True) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_20, False) ])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_20, True)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_20, False)])) st_22._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_21, True) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_21, False) ])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_21, True)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_21, False)])) st_23._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_22, True) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_22, False) ])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_22, True)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_22, False)])) st_24._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_23, True) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_23, False) ])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_23, True)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_23, False)])) st_25._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_24, True) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_24, False) ])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_24, True)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_24, False)])) st_26._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_25, True) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_25, False) ])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_25, True)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_25, False)])) st_27._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_26, True) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_26, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_26, False) ])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_26, True)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_26, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_26, False)])) st_28._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_27, True) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_27, False) ])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_27, True)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_27, False)])) st_29._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_28, True) ])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_28, True)])) st_30._set_transitionSet(transitions) return fac.Automaton(states, counters, False, containing_state=None) -mediaUpdateType._Automaton = _BuildAutomaton_30() +mediaUpdateType._Automaton = _BuildAutomaton_30() + +midAndTypeType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "crid"), + _ImportedBinding_npoapi_xml_media.cridType, + scope=midAndTypeType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 284, 6), + ) +) -midAndTypeType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'crid'), _ImportedBinding_npoapi_xml_media.cridType, scope=midAndTypeType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 284, 6))) -def _BuildAutomaton_31 (): +def _BuildAutomaton_31(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_31 del _BuildAutomaton_31 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 284, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 284, 6), + ) counters.add(cc_0) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(midAndTypeType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'crid')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 284, 6)) + symbol = pyxb.binding.content.ElementUse( + midAndTypeType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "crid")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 284, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) st_0._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -midAndTypeType._Automaton = _BuildAutomaton_31() - - - - -scheduleEventUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'start'), pyxb.binding.datatypes.dateTime, scope=scheduleEventUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 347, 6))) -scheduleEventUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'guideDay'), pyxb.binding.datatypes.date, scope=scheduleEventUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 348, 6))) -scheduleEventUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'duration'), pyxb.binding.datatypes.duration, scope=scheduleEventUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 349, 6))) - -scheduleEventUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'titles'), CTD_ANON_5, scope=scheduleEventUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 350, 6))) +midAndTypeType._Automaton = _BuildAutomaton_31() -scheduleEventUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'descriptions'), CTD_ANON_6, scope=scheduleEventUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 357, 6))) -def _BuildAutomaton_32 (): +scheduleEventUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "start"), + pyxb.binding.datatypes.dateTime, + scope=scheduleEventUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 347, 6), + ) +) + +scheduleEventUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "guideDay"), + pyxb.binding.datatypes.date, + scope=scheduleEventUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 348, 6), + ) +) + +scheduleEventUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "duration"), + pyxb.binding.datatypes.duration, + scope=scheduleEventUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 349, 6), + ) +) + +scheduleEventUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "titles"), + CTD_ANON_5, + scope=scheduleEventUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 350, 6), + ) +) + +scheduleEventUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "descriptions"), + CTD_ANON_6, + scope=scheduleEventUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 357, 6), + ) +) + + +def _BuildAutomaton_32(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_32 del _BuildAutomaton_32 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 348, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 348, 6), + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 350, 6)) + cc_1 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 350, 6), + ) counters.add(cc_1) - cc_2 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 357, 6)) + cc_2 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 357, 6), + ) counters.add(cc_2) states = [] final_update = None - symbol = pyxb.binding.content.ElementUse(scheduleEventUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'start')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 347, 6)) + symbol = pyxb.binding.content.ElementUse( + scheduleEventUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "start")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 347, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = None - symbol = pyxb.binding.content.ElementUse(scheduleEventUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'guideDay')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 348, 6)) + symbol = pyxb.binding.content.ElementUse( + scheduleEventUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "guideDay")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 348, 6), + ) st_1 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_1) final_update = set() - symbol = pyxb.binding.content.ElementUse(scheduleEventUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'duration')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 349, 6)) + symbol = pyxb.binding.content.ElementUse( + scheduleEventUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "duration")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 349, 6), + ) st_2 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_2) final_update = set() final_update.add(fac.UpdateInstruction(cc_1, False)) - symbol = pyxb.binding.content.ElementUse(scheduleEventUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'titles')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 350, 6)) + symbol = pyxb.binding.content.ElementUse( + scheduleEventUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "titles")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 350, 6), + ) st_3 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_3) final_update = set() final_update.add(fac.UpdateInstruction(cc_2, False)) - symbol = pyxb.binding.content.ElementUse(scheduleEventUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'descriptions')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 357, 6)) + symbol = pyxb.binding.content.ElementUse( + scheduleEventUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "descriptions")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 357, 6), + ) st_4 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_4) transitions = [] - transitions.append(fac.Transition(st_1, [ - ])) - transitions.append(fac.Transition(st_2, [ - ])) + transitions.append(fac.Transition(st_1, [])) + transitions.append(fac.Transition(st_2, [])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_0, False)])) st_1._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_3, [ - ])) - transitions.append(fac.Transition(st_4, [ - ])) + transitions.append(fac.Transition(st_3, [])) + transitions.append(fac.Transition(st_4, [])) st_2._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_1, True) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_1, False) ])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_1, True)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_1, False)])) st_3._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_2, True) ])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_2, True)])) st_4._set_transitionSet(transitions) return fac.Automaton(states, counters, False, containing_state=None) -scheduleEventUpdateType._Automaton = _BuildAutomaton_32() - - - - -imageUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'title'), _ImportedBinding_npoapi_xml_media.baseTextType, scope=imageUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 383, 6))) - -imageUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'description'), pyxb.binding.datatypes.string, scope=imageUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 384, 6))) - -imageUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'source'), pyxb.binding.datatypes.string, scope=imageUpdateType, documentation='\n The source of the image. This is only metadata. It must be URL from where the image was originally acquired.\n ', location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 385, 6))) - -imageUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'sourceName'), pyxb.binding.datatypes.string, scope=imageUpdateType, documentation="\n A simple string representing the source of the image. E.g. 'flickr'.\n ", location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 392, 6))) - -imageUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'license'), _ImportedBinding_npoapi_xml_shared.licenseEnum, scope=imageUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 399, 6))) - -imageUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'width'), pyxb.binding.datatypes.int, scope=imageUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 400, 6))) - -imageUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'height'), pyxb.binding.datatypes.int, scope=imageUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 401, 6))) - -imageUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'credits'), pyxb.binding.datatypes.string, scope=imageUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 402, 6))) - -imageUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'date'), pyxb.binding.datatypes.string, scope=imageUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 403, 6))) - -imageUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'offset'), pyxb.binding.datatypes.duration, scope=imageUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 404, 6))) -imageUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'imageData'), imageDataType, scope=imageUpdateType, documentation='\n The image as a base-64 encoded blob.\n ', location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 411, 8))) -imageUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'imageLocation'), imageLocationType, scope=imageUpdateType, documentation='\n An URL from where the image can be downloaded from.\n ', location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 418, 8))) +scheduleEventUpdateType._Automaton = _BuildAutomaton_32() -imageUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'urn'), imageUrnType, scope=imageUpdateType, documentation='\n The URN of an already existing image inside the POMS image server.\n ', location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 425, 8))) -def _BuildAutomaton_33 (): +imageUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "title"), + _ImportedBinding_npoapi_xml_media.baseTextType, + scope=imageUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 383, 6), + ) +) + +imageUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "description"), + pyxb.binding.datatypes.string, + scope=imageUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 384, 6), + ) +) + +imageUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "source"), + pyxb.binding.datatypes.string, + scope=imageUpdateType, + documentation="\n The source of the image. This is only metadata. It must be URL from where the image was originally acquired.\n ", + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 385, 6), + ) +) + +imageUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "sourceName"), + pyxb.binding.datatypes.string, + scope=imageUpdateType, + documentation="\n A simple string representing the source of the image. E.g. 'flickr'.\n ", + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 392, 6), + ) +) + +imageUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "license"), + _ImportedBinding_npoapi_xml_shared.licenseEnum, + scope=imageUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 399, 6), + ) +) + +imageUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "width"), + pyxb.binding.datatypes.int, + scope=imageUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 400, 6), + ) +) + +imageUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "height"), + pyxb.binding.datatypes.int, + scope=imageUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 401, 6), + ) +) + +imageUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "credits"), + pyxb.binding.datatypes.string, + scope=imageUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 402, 6), + ) +) + +imageUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "date"), + pyxb.binding.datatypes.string, + scope=imageUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 403, 6), + ) +) + +imageUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "offset"), + pyxb.binding.datatypes.duration, + scope=imageUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 404, 6), + ) +) + +imageUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "imageData"), + imageDataType, + scope=imageUpdateType, + documentation="\n The image as a base-64 encoded blob.\n ", + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 411, 8), + ) +) + +imageUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "imageLocation"), + imageLocationType, + scope=imageUpdateType, + documentation="\n An URL from where the image can be downloaded from.\n ", + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 418, 8), + ) +) + +imageUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "urn"), + imageUrnType, + scope=imageUpdateType, + documentation="\n The URN of an already existing image inside the POMS image server.\n ", + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 425, 8), + ) +) + + +def _BuildAutomaton_33(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_33 del _BuildAutomaton_33 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 384, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 384, 6), + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 385, 6)) + cc_1 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 385, 6), + ) counters.add(cc_1) - cc_2 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 392, 6)) + cc_2 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 392, 6), + ) counters.add(cc_2) - cc_3 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 399, 6)) + cc_3 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 399, 6), + ) counters.add(cc_3) - cc_4 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 400, 6)) + cc_4 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 400, 6), + ) counters.add(cc_4) - cc_5 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 401, 6)) + cc_5 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 401, 6), + ) counters.add(cc_5) - cc_6 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 402, 6)) + cc_6 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 402, 6), + ) counters.add(cc_6) - cc_7 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 403, 6)) + cc_7 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 403, 6), + ) counters.add(cc_7) - cc_8 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 404, 6)) + cc_8 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 404, 6), + ) counters.add(cc_8) - cc_9 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 405, 6)) + cc_9 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 405, 6), + ) counters.add(cc_9) states = [] final_update = set() - symbol = pyxb.binding.content.ElementUse(imageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'title')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 383, 6)) + symbol = pyxb.binding.content.ElementUse( + imageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "title")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 383, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(imageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'description')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 384, 6)) + symbol = pyxb.binding.content.ElementUse( + imageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "description")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 384, 6), + ) st_1 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_1) final_update = set() final_update.add(fac.UpdateInstruction(cc_1, False)) - symbol = pyxb.binding.content.ElementUse(imageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'source')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 385, 6)) + symbol = pyxb.binding.content.ElementUse( + imageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "source")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 385, 6), + ) st_2 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_2) final_update = set() final_update.add(fac.UpdateInstruction(cc_2, False)) - symbol = pyxb.binding.content.ElementUse(imageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'sourceName')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 392, 6)) + symbol = pyxb.binding.content.ElementUse( + imageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "sourceName")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 392, 6), + ) st_3 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_3) final_update = set() final_update.add(fac.UpdateInstruction(cc_3, False)) - symbol = pyxb.binding.content.ElementUse(imageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'license')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 399, 6)) + symbol = pyxb.binding.content.ElementUse( + imageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "license")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 399, 6), + ) st_4 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_4) final_update = set() final_update.add(fac.UpdateInstruction(cc_4, False)) - symbol = pyxb.binding.content.ElementUse(imageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'width')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 400, 6)) + symbol = pyxb.binding.content.ElementUse( + imageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "width")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 400, 6), + ) st_5 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_5) final_update = set() final_update.add(fac.UpdateInstruction(cc_5, False)) - symbol = pyxb.binding.content.ElementUse(imageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'height')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 401, 6)) + symbol = pyxb.binding.content.ElementUse( + imageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "height")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 401, 6), + ) st_6 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_6) final_update = set() final_update.add(fac.UpdateInstruction(cc_6, False)) - symbol = pyxb.binding.content.ElementUse(imageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'credits')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 402, 6)) + symbol = pyxb.binding.content.ElementUse( + imageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "credits")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 402, 6), + ) st_7 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_7) final_update = set() final_update.add(fac.UpdateInstruction(cc_7, False)) - symbol = pyxb.binding.content.ElementUse(imageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'date')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 403, 6)) + symbol = pyxb.binding.content.ElementUse( + imageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "date")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 403, 6), + ) st_8 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_8) final_update = set() final_update.add(fac.UpdateInstruction(cc_8, False)) - symbol = pyxb.binding.content.ElementUse(imageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'offset')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 404, 6)) + symbol = pyxb.binding.content.ElementUse( + imageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "offset")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 404, 6), + ) st_9 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_9) final_update = set() final_update.add(fac.UpdateInstruction(cc_9, False)) - symbol = pyxb.binding.content.ElementUse(imageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'imageData')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 411, 8)) + symbol = pyxb.binding.content.ElementUse( + imageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "imageData")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 411, 8), + ) st_10 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_10) final_update = set() final_update.add(fac.UpdateInstruction(cc_9, False)) - symbol = pyxb.binding.content.ElementUse(imageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'imageLocation')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 418, 8)) + symbol = pyxb.binding.content.ElementUse( + imageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "imageLocation")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 418, 8), + ) st_11 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_11) final_update = set() final_update.add(fac.UpdateInstruction(cc_9, False)) - symbol = pyxb.binding.content.ElementUse(imageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'urn')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 425, 8)) + symbol = pyxb.binding.content.ElementUse( + imageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "urn")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 425, 8), + ) st_12 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_12) transitions = [] - transitions.append(fac.Transition(st_1, [ - ])) - transitions.append(fac.Transition(st_2, [ - ])) - transitions.append(fac.Transition(st_3, [ - ])) - transitions.append(fac.Transition(st_4, [ - ])) - transitions.append(fac.Transition(st_5, [ - ])) - transitions.append(fac.Transition(st_6, [ - ])) - transitions.append(fac.Transition(st_7, [ - ])) - transitions.append(fac.Transition(st_8, [ - ])) - transitions.append(fac.Transition(st_9, [ - ])) - transitions.append(fac.Transition(st_10, [ - ])) - transitions.append(fac.Transition(st_11, [ - ])) - transitions.append(fac.Transition(st_12, [ - ])) + transitions.append(fac.Transition(st_1, [])) + transitions.append(fac.Transition(st_2, [])) + transitions.append(fac.Transition(st_3, [])) + transitions.append(fac.Transition(st_4, [])) + transitions.append(fac.Transition(st_5, [])) + transitions.append(fac.Transition(st_6, [])) + transitions.append(fac.Transition(st_7, [])) + transitions.append(fac.Transition(st_8, [])) + transitions.append(fac.Transition(st_9, [])) + transitions.append(fac.Transition(st_10, [])) + transitions.append(fac.Transition(st_11, [])) + transitions.append(fac.Transition(st_12, [])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_0, False)])) st_1._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_1, True) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_1, False) ])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_1, True)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_1, False)])) st_2._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_2, True) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_2, False) ])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_2, True)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_2, False)])) st_3._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_3, True) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_3, False) ])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_3, True)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_3, False)])) st_4._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_4, True) ])) - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_4, False) ])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_4, True)])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_4, False)])) st_5._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_5, True) ])) - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_5, False) ])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_5, True)])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_5, False)])) st_6._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_6, True) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_6, False) ])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_6, True)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_6, False)])) st_7._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_7, True) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_7, False) ])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_7, True)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_7, False)])) st_8._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_8, True) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_8, False) ])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_8, True)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_8, False)])) st_9._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_9, True) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_9, True) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_9, True) ])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_9, True)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_9, True)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_9, True)])) st_10._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_9, True) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_9, True) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_9, True) ])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_9, True)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_9, True)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_9, True)])) st_11._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_9, True) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_9, True) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_9, True) ])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_9, True)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_9, True)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_9, True)])) st_12._set_transitionSet(transitions) return fac.Automaton(states, counters, False, containing_state=None) -imageUpdateType._Automaton = _BuildAutomaton_33() +imageUpdateType._Automaton = _BuildAutomaton_33() -def _BuildAutomaton_34 (): +def _BuildAutomaton_34(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_34 del _BuildAutomaton_34 @@ -5805,3294 +7890,2776 @@ def _BuildAutomaton_34 (): counters = set() states = [] final_update = set() - symbol = pyxb.binding.content.WildcardUse(pyxb.binding.content.Wildcard(process_contents=pyxb.binding.content.Wildcard.PC_strict, namespace_constraint=pyxb.binding.content.Wildcard.NC_any), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 566, 8)) + symbol = pyxb.binding.content.WildcardUse( + pyxb.binding.content.Wildcard( + process_contents=pyxb.binding.content.Wildcard.PC_strict, + namespace_constraint=pyxb.binding.content.Wildcard.NC_any, + ), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 566, 8), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) transitions = [] st_0._set_transitionSet(transitions) return fac.Automaton(states, counters, False, containing_state=None) -CTD_ANON_9._Automaton = _BuildAutomaton_34() +CTD_ANON_9._Automaton = _BuildAutomaton_34() + +groupUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "poSeriesID"), + _ImportedBinding_npoapi_xml_media.baseTextType, + scope=groupUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 136, 10), + ) +) -groupUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'poSeriesID'), _ImportedBinding_npoapi_xml_media.baseTextType, scope=groupUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 136, 10))) -def _BuildAutomaton_35 (): +def _BuildAutomaton_35(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_35 del _BuildAutomaton_35 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 145, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 145, 6), + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 147, 6)) + cc_1 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 147, 6), + ) counters.add(cc_1) - cc_2 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 148, 6)) + cc_2 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 148, 6), + ) counters.add(cc_2) - cc_3 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 150, 6)) + cc_3 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 150, 6), + ) counters.add(cc_3) - cc_4 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 158, 6)) + cc_4 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 158, 6), + ) counters.add(cc_4) - cc_5 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 165, 6)) + cc_5 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 165, 6), + ) counters.add(cc_5) - cc_6 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 166, 6)) + cc_6 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 166, 6), + ) counters.add(cc_6) - cc_7 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 174, 6)) + cc_7 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 174, 6), + ) counters.add(cc_7) - cc_8 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 181, 6)) + cc_8 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 181, 6), + ) counters.add(cc_8) - cc_9 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 182, 6)) + cc_9 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 182, 6), + ) counters.add(cc_9) - cc_10 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 189, 6)) + cc_10 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 189, 6), + ) counters.add(cc_10) - cc_11 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 196, 6)) + cc_11 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 196, 6), + ) counters.add(cc_11) - cc_12 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 197, 6)) + cc_12 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 197, 6), + ) counters.add(cc_12) - cc_13 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 198, 6)) + cc_13 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 198, 6), + ) counters.add(cc_13) - cc_14 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 199, 6)) + cc_14 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 199, 6), + ) counters.add(cc_14) - cc_15 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 200, 6)) + cc_15 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 200, 6), + ) counters.add(cc_15) - cc_16 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 201, 6)) + cc_16 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 201, 6), + ) counters.add(cc_16) - cc_17 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 202, 6)) + cc_17 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 202, 6), + ) counters.add(cc_17) - cc_18 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 203, 6)) + cc_18 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 203, 6), + ) counters.add(cc_18) - cc_19 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 204, 6)) + cc_19 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 204, 6), + ) counters.add(cc_19) - cc_20 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 206, 6)) + cc_20 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 206, 6), + ) counters.add(cc_20) - cc_21 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 207, 6)) + cc_21 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 207, 6), + ) counters.add(cc_21) - cc_22 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 208, 6)) + cc_22 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 208, 6), + ) counters.add(cc_22) - cc_23 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 215, 6)) + cc_23 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 215, 6), + ) counters.add(cc_23) - cc_24 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 226, 6)) + cc_24 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 226, 6), + ) counters.add(cc_24) - cc_25 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 233, 6)) + cc_25 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 233, 6), + ) counters.add(cc_25) - cc_26 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 244, 6)) + cc_26 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 244, 6), + ) counters.add(cc_26) - cc_27 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 245, 6)) + cc_27 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 245, 6), + ) counters.add(cc_27) - cc_28 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 252, 6)) + cc_28 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 252, 6), + ) counters.add(cc_28) - cc_29 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 136, 10)) + cc_29 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 136, 10), + ) counters.add(cc_29) states = [] final_update = None - symbol = pyxb.binding.content.ElementUse(groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'crid')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 145, 6)) + symbol = pyxb.binding.content.ElementUse( + groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "crid")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 145, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = None - symbol = pyxb.binding.content.ElementUse(groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'broadcaster')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 146, 6)) + symbol = pyxb.binding.content.ElementUse( + groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "broadcaster")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 146, 6), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) final_update = None - symbol = pyxb.binding.content.ElementUse(groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'portal')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 147, 6)) + symbol = pyxb.binding.content.ElementUse( + groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "portal")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 147, 6), + ) st_2 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_2) final_update = None - symbol = pyxb.binding.content.ElementUse(groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'exclusive')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 148, 6)) + symbol = pyxb.binding.content.ElementUse( + groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "exclusive")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 148, 6), + ) st_3 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_3) final_update = None - symbol = pyxb.binding.content.ElementUse(groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'region')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 150, 6)) + symbol = pyxb.binding.content.ElementUse( + groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "region")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 150, 6), + ) st_4 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_4) final_update = set() - symbol = pyxb.binding.content.ElementUse(groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'title')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 151, 6)) + symbol = pyxb.binding.content.ElementUse( + groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "title")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 151, 6), + ) st_5 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_5) final_update = set() final_update.add(fac.UpdateInstruction(cc_4, False)) - symbol = pyxb.binding.content.ElementUse(groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'description')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 158, 6)) + symbol = pyxb.binding.content.ElementUse( + groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "description")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 158, 6), + ) st_6 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_6) final_update = set() final_update.add(fac.UpdateInstruction(cc_5, False)) - symbol = pyxb.binding.content.ElementUse(groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'tag')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 165, 6)) + symbol = pyxb.binding.content.ElementUse( + groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "tag")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 165, 6), + ) st_7 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_7) final_update = set() final_update.add(fac.UpdateInstruction(cc_6, False)) - symbol = pyxb.binding.content.ElementUse(groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'country')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 166, 6)) + symbol = pyxb.binding.content.ElementUse( + groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "country")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 166, 6), + ) st_8 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_8) final_update = set() final_update.add(fac.UpdateInstruction(cc_7, False)) - symbol = pyxb.binding.content.ElementUse(groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'language')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 174, 6)) + symbol = pyxb.binding.content.ElementUse( + groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "language")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 174, 6), + ) st_9 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_9) final_update = set() final_update.add(fac.UpdateInstruction(cc_8, False)) - symbol = pyxb.binding.content.ElementUse(groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'genre')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 181, 6)) + symbol = pyxb.binding.content.ElementUse( + groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "genre")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 181, 6), + ) st_10 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_10) final_update = set() final_update.add(fac.UpdateInstruction(cc_9, False)) - symbol = pyxb.binding.content.ElementUse(groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'intentions')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 182, 6)) + symbol = pyxb.binding.content.ElementUse( + groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "intentions")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 182, 6), + ) st_11 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_11) final_update = set() final_update.add(fac.UpdateInstruction(cc_10, False)) - symbol = pyxb.binding.content.ElementUse(groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'targetGroups')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 189, 6)) + symbol = pyxb.binding.content.ElementUse( + groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "targetGroups")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 189, 6), + ) st_12 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_12) final_update = set() final_update.add(fac.UpdateInstruction(cc_11, False)) - symbol = pyxb.binding.content.ElementUse(groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'geoLocations')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 196, 6)) + symbol = pyxb.binding.content.ElementUse( + groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "geoLocations")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 196, 6), + ) st_13 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_13) final_update = set() final_update.add(fac.UpdateInstruction(cc_12, False)) - symbol = pyxb.binding.content.ElementUse(groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'topics')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 197, 6)) + symbol = pyxb.binding.content.ElementUse( + groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "topics")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 197, 6), + ) st_14 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_14) final_update = set() final_update.add(fac.UpdateInstruction(cc_13, False)) - symbol = pyxb.binding.content.ElementUse(groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'avAttributes')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 198, 6)) + symbol = pyxb.binding.content.ElementUse( + groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "avAttributes")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 198, 6), + ) st_15 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_15) final_update = set() final_update.add(fac.UpdateInstruction(cc_14, False)) - symbol = pyxb.binding.content.ElementUse(groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'releaseYear')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 199, 6)) + symbol = pyxb.binding.content.ElementUse( + groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "releaseYear")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 199, 6), + ) st_16 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_16) final_update = set() final_update.add(fac.UpdateInstruction(cc_15, False)) - symbol = pyxb.binding.content.ElementUse(groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'duration')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 200, 6)) + symbol = pyxb.binding.content.ElementUse( + groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "duration")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 200, 6), + ) st_17 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_17) final_update = set() final_update.add(fac.UpdateInstruction(cc_16, False)) - symbol = pyxb.binding.content.ElementUse(groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'credits')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 201, 6)) + symbol = pyxb.binding.content.ElementUse( + groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "credits")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 201, 6), + ) st_18 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_18) final_update = set() final_update.add(fac.UpdateInstruction(cc_17, False)) - symbol = pyxb.binding.content.ElementUse(groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'memberOf')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 202, 6)) + symbol = pyxb.binding.content.ElementUse( + groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "memberOf")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 202, 6), + ) st_19 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_19) final_update = set() final_update.add(fac.UpdateInstruction(cc_18, False)) - symbol = pyxb.binding.content.ElementUse(groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'ageRating')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 203, 6)) + symbol = pyxb.binding.content.ElementUse( + groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "ageRating")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 203, 6), + ) st_20 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_20) final_update = set() final_update.add(fac.UpdateInstruction(cc_19, False)) - symbol = pyxb.binding.content.ElementUse(groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'contentRating')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 204, 6)) + symbol = pyxb.binding.content.ElementUse( + groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "contentRating")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 204, 6), + ) st_21 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_21) final_update = set() final_update.add(fac.UpdateInstruction(cc_20, False)) - symbol = pyxb.binding.content.ElementUse(groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'email')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 206, 6)) + symbol = pyxb.binding.content.ElementUse( + groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "email")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 206, 6), + ) st_22 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_22) final_update = set() final_update.add(fac.UpdateInstruction(cc_21, False)) - symbol = pyxb.binding.content.ElementUse(groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'website')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 207, 6)) + symbol = pyxb.binding.content.ElementUse( + groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "website")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 207, 6), + ) st_23 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_23) final_update = set() final_update.add(fac.UpdateInstruction(cc_22, False)) - symbol = pyxb.binding.content.ElementUse(groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'twitterref')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 208, 6)) + symbol = pyxb.binding.content.ElementUse( + groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "twitterref")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 208, 6), + ) st_24 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_24) final_update = set() final_update.add(fac.UpdateInstruction(cc_23, False)) - symbol = pyxb.binding.content.ElementUse(groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'prediction')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 215, 6)) + symbol = pyxb.binding.content.ElementUse( + groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "prediction")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 215, 6), + ) st_25 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_25) final_update = set() final_update.add(fac.UpdateInstruction(cc_24, False)) - symbol = pyxb.binding.content.ElementUse(groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'locations')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 226, 6)) + symbol = pyxb.binding.content.ElementUse( + groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "locations")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 226, 6), + ) st_26 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_26) final_update = set() final_update.add(fac.UpdateInstruction(cc_25, False)) - symbol = pyxb.binding.content.ElementUse(groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'scheduleEvents')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 233, 6)) + symbol = pyxb.binding.content.ElementUse( + groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "scheduleEvents")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 233, 6), + ) st_27 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_27) final_update = set() final_update.add(fac.UpdateInstruction(cc_26, False)) - symbol = pyxb.binding.content.ElementUse(groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'relation')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 244, 6)) + symbol = pyxb.binding.content.ElementUse( + groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "relation")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 244, 6), + ) st_28 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_28) final_update = set() final_update.add(fac.UpdateInstruction(cc_27, False)) - symbol = pyxb.binding.content.ElementUse(groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'images')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 245, 6)) + symbol = pyxb.binding.content.ElementUse( + groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "images")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 245, 6), + ) st_29 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_29) final_update = set() final_update.add(fac.UpdateInstruction(cc_28, False)) - symbol = pyxb.binding.content.ElementUse(groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'asset')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 252, 6)) + symbol = pyxb.binding.content.ElementUse( + groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "asset")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 252, 6), + ) st_30 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_30) final_update = set() final_update.add(fac.UpdateInstruction(cc_29, False)) - symbol = pyxb.binding.content.ElementUse(groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'poSeriesID')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 136, 10)) + symbol = pyxb.binding.content.ElementUse( + groupUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "poSeriesID")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 136, 10), + ) st_31 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_31) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, False)])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - ])) - transitions.append(fac.Transition(st_2, [ - ])) - transitions.append(fac.Transition(st_3, [ - ])) - transitions.append(fac.Transition(st_4, [ - ])) - transitions.append(fac.Transition(st_5, [ - ])) + transitions.append(fac.Transition(st_1, [])) + transitions.append(fac.Transition(st_2, [])) + transitions.append(fac.Transition(st_3, [])) + transitions.append(fac.Transition(st_4, [])) + transitions.append(fac.Transition(st_5, [])) st_1._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_1, True) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_1, False) ])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_1, True)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_1, False)])) st_2._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_2, True) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_2, False) ])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_2, True)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_2, False)])) st_3._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_3, True) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_3, False) ])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_3, True)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_3, False)])) st_4._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_5, [ - ])) - transitions.append(fac.Transition(st_6, [ - ])) - transitions.append(fac.Transition(st_7, [ - ])) - transitions.append(fac.Transition(st_8, [ - ])) - transitions.append(fac.Transition(st_9, [ - ])) - transitions.append(fac.Transition(st_10, [ - ])) - transitions.append(fac.Transition(st_11, [ - ])) - transitions.append(fac.Transition(st_12, [ - ])) - transitions.append(fac.Transition(st_13, [ - ])) - transitions.append(fac.Transition(st_14, [ - ])) - transitions.append(fac.Transition(st_15, [ - ])) - transitions.append(fac.Transition(st_16, [ - ])) - transitions.append(fac.Transition(st_17, [ - ])) - transitions.append(fac.Transition(st_18, [ - ])) - transitions.append(fac.Transition(st_19, [ - ])) - transitions.append(fac.Transition(st_20, [ - ])) - transitions.append(fac.Transition(st_21, [ - ])) - transitions.append(fac.Transition(st_22, [ - ])) - transitions.append(fac.Transition(st_23, [ - ])) - transitions.append(fac.Transition(st_24, [ - ])) - transitions.append(fac.Transition(st_25, [ - ])) - transitions.append(fac.Transition(st_26, [ - ])) - transitions.append(fac.Transition(st_27, [ - ])) - transitions.append(fac.Transition(st_28, [ - ])) - transitions.append(fac.Transition(st_29, [ - ])) - transitions.append(fac.Transition(st_30, [ - ])) - transitions.append(fac.Transition(st_31, [ - ])) + transitions.append(fac.Transition(st_5, [])) + transitions.append(fac.Transition(st_6, [])) + transitions.append(fac.Transition(st_7, [])) + transitions.append(fac.Transition(st_8, [])) + transitions.append(fac.Transition(st_9, [])) + transitions.append(fac.Transition(st_10, [])) + transitions.append(fac.Transition(st_11, [])) + transitions.append(fac.Transition(st_12, [])) + transitions.append(fac.Transition(st_13, [])) + transitions.append(fac.Transition(st_14, [])) + transitions.append(fac.Transition(st_15, [])) + transitions.append(fac.Transition(st_16, [])) + transitions.append(fac.Transition(st_17, [])) + transitions.append(fac.Transition(st_18, [])) + transitions.append(fac.Transition(st_19, [])) + transitions.append(fac.Transition(st_20, [])) + transitions.append(fac.Transition(st_21, [])) + transitions.append(fac.Transition(st_22, [])) + transitions.append(fac.Transition(st_23, [])) + transitions.append(fac.Transition(st_24, [])) + transitions.append(fac.Transition(st_25, [])) + transitions.append(fac.Transition(st_26, [])) + transitions.append(fac.Transition(st_27, [])) + transitions.append(fac.Transition(st_28, [])) + transitions.append(fac.Transition(st_29, [])) + transitions.append(fac.Transition(st_30, [])) + transitions.append(fac.Transition(st_31, [])) st_5._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_4, True) ])) - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_4, False) ])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_4, True)])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_4, False)])) st_6._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_5, True) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_5, False) ])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_5, True)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_5, False)])) st_7._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_6, True) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_6, False) ])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_6, True)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_6, False)])) st_8._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_7, True) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_7, False) ])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_7, True)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_7, False)])) st_9._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_8, True) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_8, False) ])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_8, True)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_8, False)])) st_10._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_9, True) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_9, False) ])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_9, True)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_9, False)])) st_11._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_10, True) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_10, False) ])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_10, True)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_10, False)])) st_12._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_11, True) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_11, False) ])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_11, True)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_11, False)])) st_13._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_12, True) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_12, False) ])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_12, True)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_12, False)])) st_14._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_13, True) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_13, False) ])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_13, True)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_13, False)])) st_15._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_14, True) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_14, False) ])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_14, True)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_14, False)])) st_16._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_15, True) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_15, False) ])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_15, True)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_15, False)])) st_17._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_16, True) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_16, False) ])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_16, True)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_16, False)])) st_18._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_17, True) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_17, False) ])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_17, True)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_17, False)])) st_19._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_18, True) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_18, False) ])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_18, True)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_18, False)])) st_20._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_19, True) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_19, False) ])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_19, True)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_19, False)])) st_21._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_20, True) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_20, False) ])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_20, True)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_20, False)])) st_22._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_21, True) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_21, False) ])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_21, True)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_21, False)])) st_23._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_22, True) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_22, False) ])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_22, True)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_22, False)])) st_24._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_23, True) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_23, False) ])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_23, True)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_23, False)])) st_25._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_24, True) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_24, False) ])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_24, True)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_24, False)])) st_26._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_25, True) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_25, False) ])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_25, True)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_25, False)])) st_27._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_26, True) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_26, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_26, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_26, False) ])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_26, True)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_26, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_26, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_26, False)])) st_28._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_27, True) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_27, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_27, False) ])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_27, True)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_27, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_27, False)])) st_29._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_28, True) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_28, False) ])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_28, True)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_28, False)])) st_30._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_29, True) ])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_29, True)])) st_31._set_transitionSet(transitions) return fac.Automaton(states, counters, False, containing_state=None) -groupUpdateType._Automaton = _BuildAutomaton_35() - +groupUpdateType._Automaton = _BuildAutomaton_35() -programUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'episodeOf'), memberRefUpdateType, scope=programUpdateType, documentation='\n episodeOf works similar to memberOf. Important differences: only programs of type CLIP or BROADCAST can\n be an episode of a group and the group can only be of type SERIES or SEASON.\n ', location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 501, 10))) - -programUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'segments'), CTD_ANON_7, scope=programUpdateType, documentation='\n Optional list of program segments. A segment is a part of a program that can be visually shown on the\n timeline of a player. A segment always has a start time indicating the start of the segment relative to\n the parent program. A segment can have the same fields as other media objects, like titles, descriptions,\n images, locations, etc.\n\n The standard scenario when playing a segment is to load a location of the parent media object and\n to use the start time as an offset to start playing the segment. However, it is also possible for a\n segment to have its own locations. This makes it possible to for instance have a podcast of a weekly\n segment in a radio show without providing the complete radio program it is a part of.\n\n Rules:\n - Start time is required\n - If duration is not set the player should play until the end of the program\n - Removing a program also deletes its segments\n ', location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 509, 10))) -def _BuildAutomaton_36 (): +programUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "episodeOf"), + memberRefUpdateType, + scope=programUpdateType, + documentation="\n episodeOf works similar to memberOf. Important differences: only programs of type CLIP or BROADCAST can\n be an episode of a group and the group can only be of type SERIES or SEASON.\n ", + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 501, 10), + ) +) + +programUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "segments"), + CTD_ANON_7, + scope=programUpdateType, + documentation="\n Optional list of program segments. A segment is a part of a program that can be visually shown on the\n timeline of a player. A segment always has a start time indicating the start of the segment relative to\n the parent program. A segment can have the same fields as other media objects, like titles, descriptions,\n images, locations, etc.\n\n The standard scenario when playing a segment is to load a location of the parent media object and\n to use the start time as an offset to start playing the segment. However, it is also possible for a\n segment to have its own locations. This makes it possible to for instance have a podcast of a weekly\n segment in a radio show without providing the complete radio program it is a part of.\n\n Rules:\n - Start time is required\n - If duration is not set the player should play until the end of the program\n - Removing a program also deletes its segments\n ", + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 509, 10), + ) +) + + +def _BuildAutomaton_36(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_36 del _BuildAutomaton_36 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 145, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 145, 6), + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 147, 6)) + cc_1 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 147, 6), + ) counters.add(cc_1) - cc_2 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 148, 6)) + cc_2 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 148, 6), + ) counters.add(cc_2) - cc_3 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 150, 6)) + cc_3 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 150, 6), + ) counters.add(cc_3) - cc_4 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 158, 6)) + cc_4 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 158, 6), + ) counters.add(cc_4) - cc_5 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 165, 6)) + cc_5 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 165, 6), + ) counters.add(cc_5) - cc_6 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 166, 6)) + cc_6 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 166, 6), + ) counters.add(cc_6) - cc_7 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 174, 6)) + cc_7 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 174, 6), + ) counters.add(cc_7) - cc_8 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 181, 6)) + cc_8 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 181, 6), + ) counters.add(cc_8) - cc_9 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 182, 6)) + cc_9 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 182, 6), + ) counters.add(cc_9) - cc_10 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 189, 6)) + cc_10 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 189, 6), + ) counters.add(cc_10) - cc_11 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 196, 6)) + cc_11 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 196, 6), + ) counters.add(cc_11) - cc_12 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 197, 6)) + cc_12 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 197, 6), + ) counters.add(cc_12) - cc_13 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 198, 6)) + cc_13 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 198, 6), + ) counters.add(cc_13) - cc_14 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 199, 6)) + cc_14 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 199, 6), + ) counters.add(cc_14) - cc_15 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 200, 6)) + cc_15 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 200, 6), + ) counters.add(cc_15) - cc_16 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 201, 6)) + cc_16 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 201, 6), + ) counters.add(cc_16) - cc_17 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 202, 6)) + cc_17 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 202, 6), + ) counters.add(cc_17) - cc_18 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 203, 6)) + cc_18 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 203, 6), + ) counters.add(cc_18) - cc_19 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 204, 6)) + cc_19 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 204, 6), + ) counters.add(cc_19) - cc_20 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 206, 6)) + cc_20 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 206, 6), + ) counters.add(cc_20) - cc_21 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 207, 6)) + cc_21 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 207, 6), + ) counters.add(cc_21) - cc_22 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 208, 6)) + cc_22 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 208, 6), + ) counters.add(cc_22) - cc_23 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 215, 6)) + cc_23 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 215, 6), + ) counters.add(cc_23) - cc_24 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 226, 6)) + cc_24 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 226, 6), + ) counters.add(cc_24) - cc_25 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 233, 6)) + cc_25 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 233, 6), + ) counters.add(cc_25) - cc_26 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 244, 6)) + cc_26 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 244, 6), + ) counters.add(cc_26) - cc_27 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 245, 6)) + cc_27 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 245, 6), + ) counters.add(cc_27) - cc_28 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 252, 6)) + cc_28 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 252, 6), + ) counters.add(cc_28) - cc_29 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 501, 10)) + cc_29 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 501, 10), + ) counters.add(cc_29) - cc_30 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 509, 10)) + cc_30 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 509, 10), + ) counters.add(cc_30) states = [] final_update = None - symbol = pyxb.binding.content.ElementUse(programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'crid')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 145, 6)) + symbol = pyxb.binding.content.ElementUse( + programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "crid")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 145, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = None - symbol = pyxb.binding.content.ElementUse(programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'broadcaster')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 146, 6)) + symbol = pyxb.binding.content.ElementUse( + programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "broadcaster")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 146, 6), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) final_update = None - symbol = pyxb.binding.content.ElementUse(programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'portal')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 147, 6)) + symbol = pyxb.binding.content.ElementUse( + programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "portal")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 147, 6), + ) st_2 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_2) final_update = None - symbol = pyxb.binding.content.ElementUse(programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'exclusive')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 148, 6)) + symbol = pyxb.binding.content.ElementUse( + programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "exclusive")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 148, 6), + ) st_3 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_3) final_update = None - symbol = pyxb.binding.content.ElementUse(programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'region')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 150, 6)) + symbol = pyxb.binding.content.ElementUse( + programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "region")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 150, 6), + ) st_4 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_4) final_update = set() - symbol = pyxb.binding.content.ElementUse(programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'title')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 151, 6)) + symbol = pyxb.binding.content.ElementUse( + programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "title")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 151, 6), + ) st_5 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_5) final_update = set() final_update.add(fac.UpdateInstruction(cc_4, False)) - symbol = pyxb.binding.content.ElementUse(programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'description')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 158, 6)) + symbol = pyxb.binding.content.ElementUse( + programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "description")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 158, 6), + ) st_6 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_6) final_update = set() final_update.add(fac.UpdateInstruction(cc_5, False)) - symbol = pyxb.binding.content.ElementUse(programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'tag')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 165, 6)) + symbol = pyxb.binding.content.ElementUse( + programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "tag")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 165, 6), + ) st_7 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_7) final_update = set() final_update.add(fac.UpdateInstruction(cc_6, False)) - symbol = pyxb.binding.content.ElementUse(programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'country')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 166, 6)) + symbol = pyxb.binding.content.ElementUse( + programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "country")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 166, 6), + ) st_8 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_8) final_update = set() final_update.add(fac.UpdateInstruction(cc_7, False)) - symbol = pyxb.binding.content.ElementUse(programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'language')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 174, 6)) + symbol = pyxb.binding.content.ElementUse( + programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "language")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 174, 6), + ) st_9 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_9) final_update = set() final_update.add(fac.UpdateInstruction(cc_8, False)) - symbol = pyxb.binding.content.ElementUse(programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'genre')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 181, 6)) + symbol = pyxb.binding.content.ElementUse( + programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "genre")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 181, 6), + ) st_10 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_10) final_update = set() final_update.add(fac.UpdateInstruction(cc_9, False)) - symbol = pyxb.binding.content.ElementUse(programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'intentions')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 182, 6)) + symbol = pyxb.binding.content.ElementUse( + programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "intentions")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 182, 6), + ) st_11 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_11) final_update = set() final_update.add(fac.UpdateInstruction(cc_10, False)) - symbol = pyxb.binding.content.ElementUse(programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'targetGroups')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 189, 6)) + symbol = pyxb.binding.content.ElementUse( + programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "targetGroups")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 189, 6), + ) st_12 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_12) final_update = set() final_update.add(fac.UpdateInstruction(cc_11, False)) - symbol = pyxb.binding.content.ElementUse(programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'geoLocations')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 196, 6)) + symbol = pyxb.binding.content.ElementUse( + programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "geoLocations")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 196, 6), + ) st_13 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_13) final_update = set() final_update.add(fac.UpdateInstruction(cc_12, False)) - symbol = pyxb.binding.content.ElementUse(programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'topics')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 197, 6)) + symbol = pyxb.binding.content.ElementUse( + programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "topics")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 197, 6), + ) st_14 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_14) final_update = set() final_update.add(fac.UpdateInstruction(cc_13, False)) - symbol = pyxb.binding.content.ElementUse(programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'avAttributes')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 198, 6)) + symbol = pyxb.binding.content.ElementUse( + programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "avAttributes")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 198, 6), + ) st_15 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_15) final_update = set() final_update.add(fac.UpdateInstruction(cc_14, False)) - symbol = pyxb.binding.content.ElementUse(programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'releaseYear')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 199, 6)) + symbol = pyxb.binding.content.ElementUse( + programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "releaseYear")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 199, 6), + ) st_16 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_16) final_update = set() final_update.add(fac.UpdateInstruction(cc_15, False)) - symbol = pyxb.binding.content.ElementUse(programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'duration')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 200, 6)) + symbol = pyxb.binding.content.ElementUse( + programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "duration")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 200, 6), + ) st_17 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_17) final_update = set() final_update.add(fac.UpdateInstruction(cc_16, False)) - symbol = pyxb.binding.content.ElementUse(programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'credits')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 201, 6)) + symbol = pyxb.binding.content.ElementUse( + programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "credits")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 201, 6), + ) st_18 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_18) final_update = set() final_update.add(fac.UpdateInstruction(cc_17, False)) - symbol = pyxb.binding.content.ElementUse(programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'memberOf')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 202, 6)) + symbol = pyxb.binding.content.ElementUse( + programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "memberOf")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 202, 6), + ) st_19 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_19) final_update = set() final_update.add(fac.UpdateInstruction(cc_18, False)) - symbol = pyxb.binding.content.ElementUse(programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'ageRating')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 203, 6)) + symbol = pyxb.binding.content.ElementUse( + programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "ageRating")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 203, 6), + ) st_20 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_20) final_update = set() final_update.add(fac.UpdateInstruction(cc_19, False)) - symbol = pyxb.binding.content.ElementUse(programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'contentRating')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 204, 6)) + symbol = pyxb.binding.content.ElementUse( + programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "contentRating")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 204, 6), + ) st_21 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_21) final_update = set() final_update.add(fac.UpdateInstruction(cc_20, False)) - symbol = pyxb.binding.content.ElementUse(programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'email')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 206, 6)) + symbol = pyxb.binding.content.ElementUse( + programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "email")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 206, 6), + ) st_22 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_22) final_update = set() final_update.add(fac.UpdateInstruction(cc_21, False)) - symbol = pyxb.binding.content.ElementUse(programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'website')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 207, 6)) + symbol = pyxb.binding.content.ElementUse( + programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "website")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 207, 6), + ) st_23 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_23) final_update = set() final_update.add(fac.UpdateInstruction(cc_22, False)) - symbol = pyxb.binding.content.ElementUse(programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'twitterref')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 208, 6)) + symbol = pyxb.binding.content.ElementUse( + programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "twitterref")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 208, 6), + ) st_24 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_24) final_update = set() final_update.add(fac.UpdateInstruction(cc_23, False)) - symbol = pyxb.binding.content.ElementUse(programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'prediction')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 215, 6)) + symbol = pyxb.binding.content.ElementUse( + programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "prediction")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 215, 6), + ) st_25 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_25) final_update = set() final_update.add(fac.UpdateInstruction(cc_24, False)) - symbol = pyxb.binding.content.ElementUse(programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'locations')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 226, 6)) + symbol = pyxb.binding.content.ElementUse( + programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "locations")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 226, 6), + ) st_26 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_26) final_update = set() final_update.add(fac.UpdateInstruction(cc_25, False)) - symbol = pyxb.binding.content.ElementUse(programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'scheduleEvents')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 233, 6)) + symbol = pyxb.binding.content.ElementUse( + programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "scheduleEvents")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 233, 6), + ) st_27 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_27) final_update = set() final_update.add(fac.UpdateInstruction(cc_26, False)) - symbol = pyxb.binding.content.ElementUse(programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'relation')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 244, 6)) + symbol = pyxb.binding.content.ElementUse( + programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "relation")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 244, 6), + ) st_28 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_28) final_update = set() final_update.add(fac.UpdateInstruction(cc_27, False)) - symbol = pyxb.binding.content.ElementUse(programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'images')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 245, 6)) + symbol = pyxb.binding.content.ElementUse( + programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "images")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 245, 6), + ) st_29 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_29) final_update = set() final_update.add(fac.UpdateInstruction(cc_28, False)) - symbol = pyxb.binding.content.ElementUse(programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'asset')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 252, 6)) + symbol = pyxb.binding.content.ElementUse( + programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "asset")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 252, 6), + ) st_30 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_30) final_update = set() final_update.add(fac.UpdateInstruction(cc_29, False)) - symbol = pyxb.binding.content.ElementUse(programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'episodeOf')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 501, 10)) + symbol = pyxb.binding.content.ElementUse( + programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "episodeOf")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 501, 10), + ) st_31 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_31) final_update = set() final_update.add(fac.UpdateInstruction(cc_30, False)) - symbol = pyxb.binding.content.ElementUse(programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'segments')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 509, 10)) + symbol = pyxb.binding.content.ElementUse( + programUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "segments")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 509, 10), + ) st_32 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_32) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, False)])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - ])) - transitions.append(fac.Transition(st_2, [ - ])) - transitions.append(fac.Transition(st_3, [ - ])) - transitions.append(fac.Transition(st_4, [ - ])) - transitions.append(fac.Transition(st_5, [ - ])) + transitions.append(fac.Transition(st_1, [])) + transitions.append(fac.Transition(st_2, [])) + transitions.append(fac.Transition(st_3, [])) + transitions.append(fac.Transition(st_4, [])) + transitions.append(fac.Transition(st_5, [])) st_1._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_1, True) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_1, False) ])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_1, True)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_1, False)])) st_2._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_2, True) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_2, False) ])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_2, True)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_2, False)])) st_3._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_3, True) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_3, False) ])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_3, True)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_3, False)])) st_4._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_5, [ - ])) - transitions.append(fac.Transition(st_6, [ - ])) - transitions.append(fac.Transition(st_7, [ - ])) - transitions.append(fac.Transition(st_8, [ - ])) - transitions.append(fac.Transition(st_9, [ - ])) - transitions.append(fac.Transition(st_10, [ - ])) - transitions.append(fac.Transition(st_11, [ - ])) - transitions.append(fac.Transition(st_12, [ - ])) - transitions.append(fac.Transition(st_13, [ - ])) - transitions.append(fac.Transition(st_14, [ - ])) - transitions.append(fac.Transition(st_15, [ - ])) - transitions.append(fac.Transition(st_16, [ - ])) - transitions.append(fac.Transition(st_17, [ - ])) - transitions.append(fac.Transition(st_18, [ - ])) - transitions.append(fac.Transition(st_19, [ - ])) - transitions.append(fac.Transition(st_20, [ - ])) - transitions.append(fac.Transition(st_21, [ - ])) - transitions.append(fac.Transition(st_22, [ - ])) - transitions.append(fac.Transition(st_23, [ - ])) - transitions.append(fac.Transition(st_24, [ - ])) - transitions.append(fac.Transition(st_25, [ - ])) - transitions.append(fac.Transition(st_26, [ - ])) - transitions.append(fac.Transition(st_27, [ - ])) - transitions.append(fac.Transition(st_28, [ - ])) - transitions.append(fac.Transition(st_29, [ - ])) - transitions.append(fac.Transition(st_30, [ - ])) - transitions.append(fac.Transition(st_31, [ - ])) - transitions.append(fac.Transition(st_32, [ - ])) + transitions.append(fac.Transition(st_5, [])) + transitions.append(fac.Transition(st_6, [])) + transitions.append(fac.Transition(st_7, [])) + transitions.append(fac.Transition(st_8, [])) + transitions.append(fac.Transition(st_9, [])) + transitions.append(fac.Transition(st_10, [])) + transitions.append(fac.Transition(st_11, [])) + transitions.append(fac.Transition(st_12, [])) + transitions.append(fac.Transition(st_13, [])) + transitions.append(fac.Transition(st_14, [])) + transitions.append(fac.Transition(st_15, [])) + transitions.append(fac.Transition(st_16, [])) + transitions.append(fac.Transition(st_17, [])) + transitions.append(fac.Transition(st_18, [])) + transitions.append(fac.Transition(st_19, [])) + transitions.append(fac.Transition(st_20, [])) + transitions.append(fac.Transition(st_21, [])) + transitions.append(fac.Transition(st_22, [])) + transitions.append(fac.Transition(st_23, [])) + transitions.append(fac.Transition(st_24, [])) + transitions.append(fac.Transition(st_25, [])) + transitions.append(fac.Transition(st_26, [])) + transitions.append(fac.Transition(st_27, [])) + transitions.append(fac.Transition(st_28, [])) + transitions.append(fac.Transition(st_29, [])) + transitions.append(fac.Transition(st_30, [])) + transitions.append(fac.Transition(st_31, [])) + transitions.append(fac.Transition(st_32, [])) st_5._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_4, True) ])) - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_4, False) ])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_4, True)])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_4, False)])) st_6._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_5, True) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_5, False) ])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_5, True)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_5, False)])) st_7._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_6, True) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_6, False) ])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_6, True)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_6, False)])) st_8._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_7, True) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_7, False) ])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_7, True)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_7, False)])) st_9._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_8, True) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_8, False) ])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_8, True)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_8, False)])) st_10._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_9, True) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_9, False) ])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_9, True)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_9, False)])) st_11._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_10, True) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_10, False) ])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_10, True)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_10, False)])) st_12._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_11, True) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_11, False) ])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_11, True)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_11, False)])) st_13._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_12, True) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_12, False) ])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_12, True)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_12, False)])) st_14._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_13, True) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_13, False) ])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_13, True)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_13, False)])) st_15._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_14, True) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_14, False) ])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_14, True)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_14, False)])) st_16._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_15, True) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_15, False) ])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_15, True)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_15, False)])) st_17._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_16, True) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_16, False) ])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_16, True)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_16, False)])) st_18._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_17, True) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_17, False) ])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_17, True)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_17, False)])) st_19._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_18, True) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_18, False) ])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_18, True)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_18, False)])) st_20._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_19, True) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_19, False) ])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_19, True)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_19, False)])) st_21._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_20, True) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_20, False) ])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_20, True)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_20, False)])) st_22._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_21, True) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_21, False) ])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_21, True)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_21, False)])) st_23._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_22, True) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_22, False) ])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_22, True)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_22, False)])) st_24._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_23, True) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_23, False) ])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_23, True)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_23, False)])) st_25._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_24, True) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_24, False) ])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_24, True)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_24, False)])) st_26._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_25, True) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_25, False) ])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_25, True)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_25, False)])) st_27._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_26, True) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_26, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_26, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_26, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_26, False) ])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_26, True)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_26, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_26, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_26, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_26, False)])) st_28._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_27, True) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_27, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_27, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_27, False) ])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_27, True)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_27, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_27, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_27, False)])) st_29._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_28, True) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_28, False) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_28, False) ])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_28, True)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_28, False)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_28, False)])) st_30._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_29, True) ])) - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_29, False) ])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_29, True)])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_29, False)])) st_31._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_32, [ - fac.UpdateInstruction(cc_30, True) ])) + transitions.append(fac.Transition(st_32, [fac.UpdateInstruction(cc_30, True)])) st_32._set_transitionSet(transitions) return fac.Automaton(states, counters, False, containing_state=None) -programUpdateType._Automaton = _BuildAutomaton_36() +programUpdateType._Automaton = _BuildAutomaton_36() + +segmentUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "start"), + pyxb.binding.datatypes.duration, + scope=segmentUpdateType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 544, 10), + ) +) -segmentUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'start'), pyxb.binding.datatypes.duration, scope=segmentUpdateType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 544, 10))) -def _BuildAutomaton_37 (): +def _BuildAutomaton_37(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_37 del _BuildAutomaton_37 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 145, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 145, 6), + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 147, 6)) + cc_1 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 147, 6), + ) counters.add(cc_1) - cc_2 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 148, 6)) + cc_2 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 148, 6), + ) counters.add(cc_2) - cc_3 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 150, 6)) + cc_3 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 150, 6), + ) counters.add(cc_3) - cc_4 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 158, 6)) + cc_4 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 158, 6), + ) counters.add(cc_4) - cc_5 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 165, 6)) + cc_5 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 165, 6), + ) counters.add(cc_5) - cc_6 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 166, 6)) + cc_6 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 166, 6), + ) counters.add(cc_6) - cc_7 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 174, 6)) + cc_7 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 174, 6), + ) counters.add(cc_7) - cc_8 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 181, 6)) + cc_8 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 181, 6), + ) counters.add(cc_8) - cc_9 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 182, 6)) + cc_9 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 182, 6), + ) counters.add(cc_9) - cc_10 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 189, 6)) + cc_10 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 189, 6), + ) counters.add(cc_10) - cc_11 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 196, 6)) + cc_11 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 196, 6), + ) counters.add(cc_11) - cc_12 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 197, 6)) + cc_12 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 197, 6), + ) counters.add(cc_12) - cc_13 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 198, 6)) + cc_13 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 198, 6), + ) counters.add(cc_13) - cc_14 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 199, 6)) + cc_14 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 199, 6), + ) counters.add(cc_14) - cc_15 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 200, 6)) + cc_15 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 200, 6), + ) counters.add(cc_15) - cc_16 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 201, 6)) + cc_16 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 201, 6), + ) counters.add(cc_16) - cc_17 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 202, 6)) + cc_17 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 202, 6), + ) counters.add(cc_17) - cc_18 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 203, 6)) + cc_18 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 203, 6), + ) counters.add(cc_18) - cc_19 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 204, 6)) + cc_19 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 204, 6), + ) counters.add(cc_19) - cc_20 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 206, 6)) + cc_20 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 206, 6), + ) counters.add(cc_20) - cc_21 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 207, 6)) + cc_21 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 207, 6), + ) counters.add(cc_21) - cc_22 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 208, 6)) + cc_22 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 208, 6), + ) counters.add(cc_22) - cc_23 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 215, 6)) + cc_23 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 215, 6), + ) counters.add(cc_23) - cc_24 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 226, 6)) + cc_24 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 226, 6), + ) counters.add(cc_24) - cc_25 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 233, 6)) + cc_25 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 233, 6), + ) counters.add(cc_25) - cc_26 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 244, 6)) + cc_26 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 244, 6), + ) counters.add(cc_26) - cc_27 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 245, 6)) + cc_27 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 245, 6), + ) counters.add(cc_27) - cc_28 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 252, 6)) + cc_28 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 252, 6), + ) counters.add(cc_28) states = [] final_update = None - symbol = pyxb.binding.content.ElementUse(segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'crid')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 145, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "crid")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 145, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'broadcaster')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 146, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "broadcaster")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 146, 6), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'portal')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 147, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "portal")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 147, 6), + ) st_2 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_2) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'exclusive')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 148, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "exclusive")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 148, 6), + ) st_3 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_3) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'region')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 150, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "region")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 150, 6), + ) st_4 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_4) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'title')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 151, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "title")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 151, 6), + ) st_5 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_5) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'description')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 158, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "description")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 158, 6), + ) st_6 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_6) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'tag')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 165, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "tag")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 165, 6), + ) st_7 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_7) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'country')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 166, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "country")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 166, 6), + ) st_8 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_8) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'language')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 174, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "language")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 174, 6), + ) st_9 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_9) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'genre')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 181, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "genre")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 181, 6), + ) st_10 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_10) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'intentions')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 182, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "intentions")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 182, 6), + ) st_11 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_11) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'targetGroups')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 189, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "targetGroups")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 189, 6), + ) st_12 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_12) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'geoLocations')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 196, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "geoLocations")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 196, 6), + ) st_13 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_13) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'topics')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 197, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "topics")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 197, 6), + ) st_14 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_14) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'avAttributes')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 198, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "avAttributes")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 198, 6), + ) st_15 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_15) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'releaseYear')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 199, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "releaseYear")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 199, 6), + ) st_16 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_16) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'duration')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 200, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "duration")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 200, 6), + ) st_17 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_17) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'credits')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 201, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "credits")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 201, 6), + ) st_18 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_18) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'memberOf')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 202, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "memberOf")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 202, 6), + ) st_19 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_19) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'ageRating')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 203, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "ageRating")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 203, 6), + ) st_20 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_20) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'contentRating')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 204, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "contentRating")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 204, 6), + ) st_21 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_21) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'email')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 206, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "email")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 206, 6), + ) st_22 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_22) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'website')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 207, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "website")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 207, 6), + ) st_23 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_23) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'twitterref')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 208, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "twitterref")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 208, 6), + ) st_24 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_24) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'prediction')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 215, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "prediction")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 215, 6), + ) st_25 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_25) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'locations')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 226, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "locations")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 226, 6), + ) st_26 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_26) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'scheduleEvents')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 233, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "scheduleEvents")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 233, 6), + ) st_27 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_27) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'relation')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 244, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "relation")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 244, 6), + ) st_28 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_28) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'images')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 245, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "images")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 245, 6), + ) st_29 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_29) final_update = None - symbol = pyxb.binding.content.ElementUse(segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'asset')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 252, 6)) + symbol = pyxb.binding.content.ElementUse( + segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "asset")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 252, 6), + ) st_30 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_30) final_update = set() - symbol = pyxb.binding.content.ElementUse(segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'start')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd', 544, 10)) + symbol = pyxb.binding.content.ElementUse( + segmentUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "start")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/update/vproMediaUpdate.xsd", 544, 10), + ) st_31 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_31) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, False)])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - ])) - transitions.append(fac.Transition(st_2, [ - ])) - transitions.append(fac.Transition(st_3, [ - ])) - transitions.append(fac.Transition(st_4, [ - ])) - transitions.append(fac.Transition(st_5, [ - ])) + transitions.append(fac.Transition(st_1, [])) + transitions.append(fac.Transition(st_2, [])) + transitions.append(fac.Transition(st_3, [])) + transitions.append(fac.Transition(st_4, [])) + transitions.append(fac.Transition(st_5, [])) st_1._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_1, True) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_1, False) ])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_1, True)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_1, False)])) st_2._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_2, True) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_2, False) ])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_2, True)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_2, False)])) st_3._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_3, True) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_3, False) ])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_3, True)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_3, False)])) st_4._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_5, [ - ])) - transitions.append(fac.Transition(st_6, [ - ])) - transitions.append(fac.Transition(st_7, [ - ])) - transitions.append(fac.Transition(st_8, [ - ])) - transitions.append(fac.Transition(st_9, [ - ])) - transitions.append(fac.Transition(st_10, [ - ])) - transitions.append(fac.Transition(st_11, [ - ])) - transitions.append(fac.Transition(st_12, [ - ])) - transitions.append(fac.Transition(st_13, [ - ])) - transitions.append(fac.Transition(st_14, [ - ])) - transitions.append(fac.Transition(st_15, [ - ])) - transitions.append(fac.Transition(st_16, [ - ])) - transitions.append(fac.Transition(st_17, [ - ])) - transitions.append(fac.Transition(st_18, [ - ])) - transitions.append(fac.Transition(st_19, [ - ])) - transitions.append(fac.Transition(st_20, [ - ])) - transitions.append(fac.Transition(st_21, [ - ])) - transitions.append(fac.Transition(st_22, [ - ])) - transitions.append(fac.Transition(st_23, [ - ])) - transitions.append(fac.Transition(st_24, [ - ])) - transitions.append(fac.Transition(st_25, [ - ])) - transitions.append(fac.Transition(st_26, [ - ])) - transitions.append(fac.Transition(st_27, [ - ])) - transitions.append(fac.Transition(st_28, [ - ])) - transitions.append(fac.Transition(st_29, [ - ])) - transitions.append(fac.Transition(st_30, [ - ])) - transitions.append(fac.Transition(st_31, [ - ])) + transitions.append(fac.Transition(st_5, [])) + transitions.append(fac.Transition(st_6, [])) + transitions.append(fac.Transition(st_7, [])) + transitions.append(fac.Transition(st_8, [])) + transitions.append(fac.Transition(st_9, [])) + transitions.append(fac.Transition(st_10, [])) + transitions.append(fac.Transition(st_11, [])) + transitions.append(fac.Transition(st_12, [])) + transitions.append(fac.Transition(st_13, [])) + transitions.append(fac.Transition(st_14, [])) + transitions.append(fac.Transition(st_15, [])) + transitions.append(fac.Transition(st_16, [])) + transitions.append(fac.Transition(st_17, [])) + transitions.append(fac.Transition(st_18, [])) + transitions.append(fac.Transition(st_19, [])) + transitions.append(fac.Transition(st_20, [])) + transitions.append(fac.Transition(st_21, [])) + transitions.append(fac.Transition(st_22, [])) + transitions.append(fac.Transition(st_23, [])) + transitions.append(fac.Transition(st_24, [])) + transitions.append(fac.Transition(st_25, [])) + transitions.append(fac.Transition(st_26, [])) + transitions.append(fac.Transition(st_27, [])) + transitions.append(fac.Transition(st_28, [])) + transitions.append(fac.Transition(st_29, [])) + transitions.append(fac.Transition(st_30, [])) + transitions.append(fac.Transition(st_31, [])) st_5._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_4, True) ])) - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_4, False) ])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_4, True)])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_4, False)])) st_6._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_5, True) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_5, False) ])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_5, True)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_5, False)])) st_7._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_6, True) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_6, False) ])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_6, True)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_6, False)])) st_8._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_7, True) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_7, False) ])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_7, True)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_7, False)])) st_9._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_8, True) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_8, False) ])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_8, True)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_8, False)])) st_10._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_9, True) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_9, False) ])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_9, True)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_9, False)])) st_11._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_10, True) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_10, False) ])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_10, True)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_10, False)])) st_12._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_11, True) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_11, False) ])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_11, True)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_11, False)])) st_13._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_12, True) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_12, False) ])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_12, True)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_12, False)])) st_14._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_13, True) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_13, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_13, False) ])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_13, True)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_13, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_13, False)])) st_15._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_14, True) ])) - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_14, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_14, False) ])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_14, True)])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_14, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_14, False)])) st_16._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_17, [ - fac.UpdateInstruction(cc_15, True) ])) - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_15, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_15, False) ])) + transitions.append(fac.Transition(st_17, [fac.UpdateInstruction(cc_15, True)])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_15, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_15, False)])) st_17._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_18, [ - fac.UpdateInstruction(cc_16, True) ])) - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_16, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_16, False) ])) + transitions.append(fac.Transition(st_18, [fac.UpdateInstruction(cc_16, True)])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_16, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_16, False)])) st_18._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_19, [ - fac.UpdateInstruction(cc_17, True) ])) - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_17, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_17, False) ])) + transitions.append(fac.Transition(st_19, [fac.UpdateInstruction(cc_17, True)])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_17, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_17, False)])) st_19._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_20, [ - fac.UpdateInstruction(cc_18, True) ])) - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_18, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_18, False) ])) + transitions.append(fac.Transition(st_20, [fac.UpdateInstruction(cc_18, True)])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_18, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_18, False)])) st_20._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_21, [ - fac.UpdateInstruction(cc_19, True) ])) - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_19, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_19, False) ])) + transitions.append(fac.Transition(st_21, [fac.UpdateInstruction(cc_19, True)])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_19, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_19, False)])) st_21._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_22, [ - fac.UpdateInstruction(cc_20, True) ])) - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_20, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_20, False) ])) + transitions.append(fac.Transition(st_22, [fac.UpdateInstruction(cc_20, True)])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_20, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_20, False)])) st_22._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_23, [ - fac.UpdateInstruction(cc_21, True) ])) - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_21, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_21, False) ])) + transitions.append(fac.Transition(st_23, [fac.UpdateInstruction(cc_21, True)])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_21, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_21, False)])) st_23._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_24, [ - fac.UpdateInstruction(cc_22, True) ])) - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_22, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_22, False) ])) + transitions.append(fac.Transition(st_24, [fac.UpdateInstruction(cc_22, True)])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_22, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_22, False)])) st_24._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_25, [ - fac.UpdateInstruction(cc_23, True) ])) - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_23, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_23, False) ])) + transitions.append(fac.Transition(st_25, [fac.UpdateInstruction(cc_23, True)])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_23, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_23, False)])) st_25._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_26, [ - fac.UpdateInstruction(cc_24, True) ])) - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_24, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_24, False) ])) + transitions.append(fac.Transition(st_26, [fac.UpdateInstruction(cc_24, True)])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_24, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_24, False)])) st_26._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_27, [ - fac.UpdateInstruction(cc_25, True) ])) - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_25, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_25, False) ])) + transitions.append(fac.Transition(st_27, [fac.UpdateInstruction(cc_25, True)])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_25, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_25, False)])) st_27._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_28, [ - fac.UpdateInstruction(cc_26, True) ])) - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_26, False) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_26, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_26, False) ])) + transitions.append(fac.Transition(st_28, [fac.UpdateInstruction(cc_26, True)])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_26, False)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_26, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_26, False)])) st_28._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_29, [ - fac.UpdateInstruction(cc_27, True) ])) - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_27, False) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_27, False) ])) + transitions.append(fac.Transition(st_29, [fac.UpdateInstruction(cc_27, True)])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_27, False)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_27, False)])) st_29._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_30, [ - fac.UpdateInstruction(cc_28, True) ])) - transitions.append(fac.Transition(st_31, [ - fac.UpdateInstruction(cc_28, False) ])) + transitions.append(fac.Transition(st_30, [fac.UpdateInstruction(cc_28, True)])) + transitions.append(fac.Transition(st_31, [fac.UpdateInstruction(cc_28, False)])) st_30._set_transitionSet(transitions) transitions = [] st_31._set_transitionSet(transitions) return fac.Automaton(states, counters, False, containing_state=None) -segmentUpdateType._Automaton = _BuildAutomaton_37() + +segmentUpdateType._Automaton = _BuildAutomaton_37() diff --git a/src/npoapi/xml/page.py b/src/npoapi/xml/page.py index d789593..4c16eea 100644 --- a/src/npoapi/xml/page.py +++ b/src/npoapi/xml/page.py @@ -5,19 +5,22 @@ # Namespace urn:vpro:pages:2013 [xmlns:page] from __future__ import unicode_literals + +import io +import sys + import pyxb import pyxb.binding import pyxb.binding.saxer -import io -import pyxb.utils.utility import pyxb.utils.domutils -import sys import pyxb.utils.six as _six +import pyxb.utils.utility + # Unique identifier for bindings created at the same time -_GenerationUID = pyxb.utils.utility.UniqueIdentifier('urn:uuid:fa5187de-5153-11ed-9cc8-3e22fb45f01a') +_GenerationUID = pyxb.utils.utility.UniqueIdentifier("urn:uuid:fa5187de-5153-11ed-9cc8-3e22fb45f01a") # Version of PyXB used to generate the bindings -_PyXBVersion = '1.2.6' +_PyXBVersion = "1.2.6" # Generated bindings are not compatible across PyXB versions if pyxb.__version__ != _PyXBVersion: raise pyxb.PyXBVersionError(_PyXBVersion) @@ -28,16 +31,18 @@ # Import bindings for namespaces imported into schema import pyxb.binding.datatypes + import npoapi.xml.media as _ImportedBinding_npoapi_xml_media import npoapi.xml.shared as _ImportedBinding_npoapi_xml_shared # NOTE: All namespace declarations are reserved within the binding -Namespace = pyxb.namespace.NamespaceForURI('urn:vpro:pages:2013', create_if_missing=True) -Namespace.configureCategories(['typeBinding', 'elementBinding']) +Namespace = pyxb.namespace.NamespaceForURI("urn:vpro:pages:2013", create_if_missing=True) +Namespace.configureCategories(["typeBinding", "elementBinding"]) _Namespace_media = _ImportedBinding_npoapi_xml_media.Namespace -_Namespace_media.configureCategories(['typeBinding', 'elementBinding']) +_Namespace_media.configureCategories(["typeBinding", "elementBinding"]) -def CreateFromDocument (xml_text, default_namespace=None, location_base=None): + +def CreateFromDocument(xml_text, default_namespace=None, location_base=None): """Parse the given XML and use the document element to create a Python instance. @@ -70,7 +75,8 @@ def CreateFromDocument (xml_text, default_namespace=None, location_base=None): instance = handler.rootObject() return instance -def CreateFromDOM (node, default_namespace=None): + +def CreateFromDOM(node, default_namespace=None): """Create a Python instance from the given DOM node. The node tag must correspond to an element declaration in this module. @@ -81,1639 +87,2378 @@ def CreateFromDOM (node, default_namespace=None): # Atomic simple type: {urn:vpro:pages:2013}pageTermType -class pageTermType (pyxb.binding.datatypes.string): - +class pageTermType(pyxb.binding.datatypes.string): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'pageTermType') - _XSDLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 80, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "pageTermType") + _XSDLocation = pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 80, 2) _Documentation = None + + pageTermType._InitializeFacetMap() -Namespace.addCategoryObject('typeBinding', 'pageTermType', pageTermType) +Namespace.addCategoryObject("typeBinding", "pageTermType", pageTermType) _module_typeBindings.pageTermType = pageTermType -# Atomic simple type: {urn:vpro:pages:2013}linkTypeEnum -class linkTypeEnum (pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): +# Atomic simple type: {urn:vpro:pages:2013}linkTypeEnum +class linkTypeEnum(pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'linkTypeEnum') - _XSDLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 144, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "linkTypeEnum") + _XSDLocation = pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 144, 2) _Documentation = None + + linkTypeEnum._CF_enumeration = pyxb.binding.facets.CF_enumeration(value_datatype=linkTypeEnum, enum_prefix=None) -linkTypeEnum.TOP_STORY = linkTypeEnum._CF_enumeration.addEnumeration(unicode_value='TOP_STORY', tag='TOP_STORY') +linkTypeEnum.TOP_STORY = linkTypeEnum._CF_enumeration.addEnumeration(unicode_value="TOP_STORY", tag="TOP_STORY") linkTypeEnum._InitializeFacetMap(linkTypeEnum._CF_enumeration) -Namespace.addCategoryObject('typeBinding', 'linkTypeEnum', linkTypeEnum) +Namespace.addCategoryObject("typeBinding", "linkTypeEnum", linkTypeEnum) _module_typeBindings.linkTypeEnum = linkTypeEnum -# Atomic simple type: {urn:vpro:pages:2013}pageTypeEnum -class pageTypeEnum (pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): +# Atomic simple type: {urn:vpro:pages:2013}pageTypeEnum +class pageTypeEnum(pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'pageTypeEnum') - _XSDLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 150, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "pageTypeEnum") + _XSDLocation = pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 150, 2) _Documentation = None + + pageTypeEnum._CF_enumeration = pyxb.binding.facets.CF_enumeration(value_datatype=pageTypeEnum, enum_prefix=None) -pageTypeEnum.ARTICLE = pageTypeEnum._CF_enumeration.addEnumeration(unicode_value='ARTICLE', tag='ARTICLE') -pageTypeEnum.SPECIAL = pageTypeEnum._CF_enumeration.addEnumeration(unicode_value='SPECIAL', tag='SPECIAL') -pageTypeEnum.HOME = pageTypeEnum._CF_enumeration.addEnumeration(unicode_value='HOME', tag='HOME') -pageTypeEnum.OVERVIEW = pageTypeEnum._CF_enumeration.addEnumeration(unicode_value='OVERVIEW', tag='OVERVIEW') -pageTypeEnum.PRODUCT = pageTypeEnum._CF_enumeration.addEnumeration(unicode_value='PRODUCT', tag='PRODUCT') -pageTypeEnum.PLAYER = pageTypeEnum._CF_enumeration.addEnumeration(unicode_value='PLAYER', tag='PLAYER') -pageTypeEnum.AUDIO = pageTypeEnum._CF_enumeration.addEnumeration(unicode_value='AUDIO', tag='AUDIO') -pageTypeEnum.VIDEO = pageTypeEnum._CF_enumeration.addEnumeration(unicode_value='VIDEO', tag='VIDEO') -pageTypeEnum.MIXED = pageTypeEnum._CF_enumeration.addEnumeration(unicode_value='MIXED', tag='MIXED') -pageTypeEnum.PLAYLIST = pageTypeEnum._CF_enumeration.addEnumeration(unicode_value='PLAYLIST', tag='PLAYLIST') -pageTypeEnum.MOVIE = pageTypeEnum._CF_enumeration.addEnumeration(unicode_value='MOVIE', tag='MOVIE') -pageTypeEnum.SERIES = pageTypeEnum._CF_enumeration.addEnumeration(unicode_value='SERIES', tag='SERIES') -pageTypeEnum.PERSON = pageTypeEnum._CF_enumeration.addEnumeration(unicode_value='PERSON', tag='PERSON') -pageTypeEnum.SEARCH = pageTypeEnum._CF_enumeration.addEnumeration(unicode_value='SEARCH', tag='SEARCH') +pageTypeEnum.ARTICLE = pageTypeEnum._CF_enumeration.addEnumeration(unicode_value="ARTICLE", tag="ARTICLE") +pageTypeEnum.SPECIAL = pageTypeEnum._CF_enumeration.addEnumeration(unicode_value="SPECIAL", tag="SPECIAL") +pageTypeEnum.HOME = pageTypeEnum._CF_enumeration.addEnumeration(unicode_value="HOME", tag="HOME") +pageTypeEnum.OVERVIEW = pageTypeEnum._CF_enumeration.addEnumeration(unicode_value="OVERVIEW", tag="OVERVIEW") +pageTypeEnum.PRODUCT = pageTypeEnum._CF_enumeration.addEnumeration(unicode_value="PRODUCT", tag="PRODUCT") +pageTypeEnum.PLAYER = pageTypeEnum._CF_enumeration.addEnumeration(unicode_value="PLAYER", tag="PLAYER") +pageTypeEnum.AUDIO = pageTypeEnum._CF_enumeration.addEnumeration(unicode_value="AUDIO", tag="AUDIO") +pageTypeEnum.VIDEO = pageTypeEnum._CF_enumeration.addEnumeration(unicode_value="VIDEO", tag="VIDEO") +pageTypeEnum.MIXED = pageTypeEnum._CF_enumeration.addEnumeration(unicode_value="MIXED", tag="MIXED") +pageTypeEnum.PLAYLIST = pageTypeEnum._CF_enumeration.addEnumeration(unicode_value="PLAYLIST", tag="PLAYLIST") +pageTypeEnum.MOVIE = pageTypeEnum._CF_enumeration.addEnumeration(unicode_value="MOVIE", tag="MOVIE") +pageTypeEnum.SERIES = pageTypeEnum._CF_enumeration.addEnumeration(unicode_value="SERIES", tag="SERIES") +pageTypeEnum.PERSON = pageTypeEnum._CF_enumeration.addEnumeration(unicode_value="PERSON", tag="PERSON") +pageTypeEnum.SEARCH = pageTypeEnum._CF_enumeration.addEnumeration(unicode_value="SEARCH", tag="SEARCH") pageTypeEnum._InitializeFacetMap(pageTypeEnum._CF_enumeration) -Namespace.addCategoryObject('typeBinding', 'pageTypeEnum', pageTypeEnum) +Namespace.addCategoryObject("typeBinding", "pageTypeEnum", pageTypeEnum) _module_typeBindings.pageTypeEnum = pageTypeEnum -# Atomic simple type: {urn:vpro:pages:2013}pageWorkflow -class pageWorkflow (pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): +# Atomic simple type: {urn:vpro:pages:2013}pageWorkflow +class pageWorkflow(pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'pageWorkflow') - _XSDLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 169, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "pageWorkflow") + _XSDLocation = pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 169, 2) _Documentation = None + + pageWorkflow._CF_enumeration = pyxb.binding.facets.CF_enumeration(value_datatype=pageWorkflow, enum_prefix=None) -pageWorkflow.PUBLISHED = pageWorkflow._CF_enumeration.addEnumeration(unicode_value='PUBLISHED', tag='PUBLISHED') -pageWorkflow.DELETED = pageWorkflow._CF_enumeration.addEnumeration(unicode_value='DELETED', tag='DELETED') +pageWorkflow.PUBLISHED = pageWorkflow._CF_enumeration.addEnumeration(unicode_value="PUBLISHED", tag="PUBLISHED") +pageWorkflow.DELETED = pageWorkflow._CF_enumeration.addEnumeration(unicode_value="DELETED", tag="DELETED") pageWorkflow._InitializeFacetMap(pageWorkflow._CF_enumeration) -Namespace.addCategoryObject('typeBinding', 'pageWorkflow', pageWorkflow) +Namespace.addCategoryObject("typeBinding", "pageWorkflow", pageWorkflow) _module_typeBindings.pageWorkflow = pageWorkflow + # Complex type [anonymous] with content type ELEMENT_ONLY -class CTD_ANON (pyxb.binding.basis.complexTypeDefinition): +class CTD_ANON(pyxb.binding.basis.complexTypeDefinition): """Complex type [anonymous] with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False _ExpandedName = None - _XSDLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 23, 8) + _XSDLocation = pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 23, 8) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:pages:2013}paragraph uses Python identifier paragraph - __paragraph = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'paragraph'), 'paragraph', '__urnvpropages2013_CTD_ANON_urnvpropages2013paragraph', True, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 25, 12), ) + __paragraph = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "paragraph"), + "paragraph", + "__urnvpropages2013_CTD_ANON_urnvpropages2013paragraph", + True, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 25, 12), + ) - paragraph = property(__paragraph.value, __paragraph.set, None, None) - _ElementMap.update({ - __paragraph.name() : __paragraph - }) - _AttributeMap.update({ - - }) + _ElementMap.update({__paragraph.name(): __paragraph}) + _AttributeMap.update({}) + + _module_typeBindings.CTD_ANON = CTD_ANON # Complex type [anonymous] with content type ELEMENT_ONLY -class CTD_ANON_ (pyxb.binding.basis.complexTypeDefinition): +class CTD_ANON_(pyxb.binding.basis.complexTypeDefinition): """Complex type [anonymous] with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False _ExpandedName = None - _XSDLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 35, 8) + _XSDLocation = pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 35, 8) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:pages:2013}image uses Python identifier image - __image = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'image'), 'image', '__urnvpropages2013_CTD_ANON__urnvpropages2013image', True, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 37, 12), ) + __image = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "image"), + "image", + "__urnvpropages2013_CTD_ANON__urnvpropages2013image", + True, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 37, 12), + ) - image = property(__image.value, __image.set, None, None) - _ElementMap.update({ - __image.name() : __image - }) - _AttributeMap.update({ - - }) + _ElementMap.update({__image.name(): __image}) + _AttributeMap.update({}) + + _module_typeBindings.CTD_ANON_ = CTD_ANON_ # Complex type {urn:vpro:pages:2013}portalType with content type ELEMENT_ONLY -class portalType (pyxb.binding.basis.complexTypeDefinition): +class portalType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:pages:2013}portalType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'portalType') - _XSDLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 55, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "portalType") + _XSDLocation = pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 55, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:pages:2013}name uses Python identifier name - __name = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'name'), 'name', '__urnvpropages2013_portalType_urnvpropages2013name', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 57, 6), ) + __name = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "name"), + "name", + "__urnvpropages2013_portalType_urnvpropages2013name", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 57, 6), + ) - name = property(__name.value, __name.set, None, None) - # Element {urn:vpro:pages:2013}section uses Python identifier section - __section = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'section'), 'section', '__urnvpropages2013_portalType_urnvpropages2013section', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 58, 6), ) + __section = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "section"), + "section", + "__urnvpropages2013_portalType_urnvpropages2013section", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 58, 6), + ) - section = property(__section.value, __section.set, None, None) - # Attribute id uses Python identifier id - __id = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'id'), 'id', '__urnvpropages2013_portalType_id', pyxb.binding.datatypes.string, required=True) - __id._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 60, 4) - __id._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 60, 4) - + __id = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "id"), + "id", + "__urnvpropages2013_portalType_id", + pyxb.binding.datatypes.string, + required=True, + ) + __id._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 60, 4 + ) + __id._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 60, 4 + ) + id = property(__id.value, __id.set, None, None) - # Attribute url uses Python identifier url - __url = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'url'), 'url', '__urnvpropages2013_portalType_url', pyxb.binding.datatypes.string, required=True) - __url._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 61, 4) - __url._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 61, 4) - + __url = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "url"), + "url", + "__urnvpropages2013_portalType_url", + pyxb.binding.datatypes.string, + required=True, + ) + __url._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 61, 4 + ) + __url._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 61, 4 + ) + url = property(__url.value, __url.set, None, None) - _ElementMap.update({ - __name.name() : __name, - __section.name() : __section - }) - _AttributeMap.update({ - __id.name() : __id, - __url.name() : __url - }) + _ElementMap.update({__name.name(): __name, __section.name(): __section}) + _AttributeMap.update({__id.name(): __id, __url.name(): __url}) + + _module_typeBindings.portalType = portalType -Namespace.addCategoryObject('typeBinding', 'portalType', portalType) +Namespace.addCategoryObject("typeBinding", "portalType", portalType) # Complex type {urn:vpro:pages:2013}sectionType with content type SIMPLE -class sectionType (pyxb.binding.basis.complexTypeDefinition): +class sectionType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:pages:2013}sectionType with content type SIMPLE""" + _TypeDefinition = pyxb.binding.datatypes.string _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_SIMPLE _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'sectionType') - _XSDLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 64, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "sectionType") + _XSDLocation = pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 64, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.string - + # Attribute path uses Python identifier path - __path = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'path'), 'path', '__urnvpropages2013_sectionType_path', pyxb.binding.datatypes.string) - __path._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 67, 8) - __path._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 67, 8) - + __path = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "path"), + "path", + "__urnvpropages2013_sectionType_path", + pyxb.binding.datatypes.string, + ) + __path._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 67, 8 + ) + __path._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 67, 8 + ) + path = property(__path.value, __path.set, None, None) - _ElementMap.update({ - - }) - _AttributeMap.update({ - __path.name() : __path - }) + _ElementMap.update({}) + _AttributeMap.update({__path.name(): __path}) + + _module_typeBindings.sectionType = sectionType -Namespace.addCategoryObject('typeBinding', 'sectionType', sectionType) +Namespace.addCategoryObject("typeBinding", "sectionType", sectionType) # Complex type {urn:vpro:pages:2013}genreType with content type ELEMENT_ONLY -class genreType (pyxb.binding.basis.complexTypeDefinition): +class genreType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:pages:2013}genreType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'genreType') - _XSDLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 72, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "genreType") + _XSDLocation = pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 72, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:pages:2013}term uses Python identifier term - __term = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'term'), 'term', '__urnvpropages2013_genreType_urnvpropages2013term', True, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 74, 6), ) + __term = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "term"), + "term", + "__urnvpropages2013_genreType_urnvpropages2013term", + True, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 74, 6), + ) - term = property(__term.value, __term.set, None, None) - # Attribute displayName uses Python identifier displayName - __displayName = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'displayName'), 'displayName', '__urnvpropages2013_genreType_displayName', pyxb.binding.datatypes.string) - __displayName._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 76, 4) - __displayName._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 76, 4) - + __displayName = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "displayName"), + "displayName", + "__urnvpropages2013_genreType_displayName", + pyxb.binding.datatypes.string, + ) + __displayName._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 76, 4 + ) + __displayName._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 76, 4 + ) + displayName = property(__displayName.value, __displayName.set, None, None) - # Attribute id uses Python identifier id - __id = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'id'), 'id', '__urnvpropages2013_genreType_id', pyxb.binding.datatypes.string) - __id._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 77, 4) - __id._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 77, 4) - + __id = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "id"), "id", "__urnvpropages2013_genreType_id", pyxb.binding.datatypes.string + ) + __id._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 77, 4 + ) + __id._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 77, 4 + ) + id = property(__id.value, __id.set, None, None) - _ElementMap.update({ - __term.name() : __term - }) - _AttributeMap.update({ - __displayName.name() : __displayName, - __id.name() : __id - }) + _ElementMap.update({__term.name(): __term}) + _AttributeMap.update({__displayName.name(): __displayName, __id.name(): __id}) + + _module_typeBindings.genreType = genreType -Namespace.addCategoryObject('typeBinding', 'genreType', genreType) +Namespace.addCategoryObject("typeBinding", "genreType", genreType) # Complex type {urn:vpro:pages:2013}paragraphType with content type ELEMENT_ONLY -class paragraphType (pyxb.binding.basis.complexTypeDefinition): +class paragraphType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:pages:2013}paragraphType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'paragraphType') - _XSDLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 84, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "paragraphType") + _XSDLocation = pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 84, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:pages:2013}title uses Python identifier title - __title = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'title'), 'title', '__urnvpropages2013_paragraphType_urnvpropages2013title', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 86, 6), ) + __title = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "title"), + "title", + "__urnvpropages2013_paragraphType_urnvpropages2013title", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 86, 6), + ) - title = property(__title.value, __title.set, None, None) - # Element {urn:vpro:pages:2013}body uses Python identifier body - __body = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'body'), 'body', '__urnvpropages2013_paragraphType_urnvpropages2013body', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 87, 6), ) + __body = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "body"), + "body", + "__urnvpropages2013_paragraphType_urnvpropages2013body", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 87, 6), + ) - body = property(__body.value, __body.set, None, None) - # Element {urn:vpro:pages:2013}image uses Python identifier image - __image = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'image'), 'image', '__urnvpropages2013_paragraphType_urnvpropages2013image', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 88, 6), ) + __image = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "image"), + "image", + "__urnvpropages2013_paragraphType_urnvpropages2013image", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 88, 6), + ) - image = property(__image.value, __image.set, None, None) - _ElementMap.update({ - __title.name() : __title, - __body.name() : __body, - __image.name() : __image - }) - _AttributeMap.update({ - - }) + _ElementMap.update({__title.name(): __title, __body.name(): __body, __image.name(): __image}) + _AttributeMap.update({}) + + _module_typeBindings.paragraphType = paragraphType -Namespace.addCategoryObject('typeBinding', 'paragraphType', paragraphType) +Namespace.addCategoryObject("typeBinding", "paragraphType", paragraphType) # Complex type {urn:vpro:pages:2013}embedType with content type ELEMENT_ONLY -class embedType (pyxb.binding.basis.complexTypeDefinition): +class embedType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:pages:2013}embedType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'embedType') - _XSDLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 122, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "embedType") + _XSDLocation = pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 122, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - - # Element {urn:vpro:media:2009}program uses Python identifier program - __program = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(_Namespace_media, 'program'), 'program', '__urnvpropages2013_embedType_urnvpromedia2009program', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 25, 2), ) - - program = property(__program.value, __program.set, None, '\n This is the most used entity in POMS. It represents e.g. one broadcast program or one web-only clip. It represent a standalone entity which a consumer can view or listen to.\n ') + # Element {urn:vpro:media:2009}program uses Python identifier program + __program = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(_Namespace_media, "program"), + "program", + "__urnvpropages2013_embedType_urnvpromedia2009program", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 25, 2), + ) + + program = property( + __program.value, + __program.set, + None, + "\n This is the most used entity in POMS. It represents e.g. one broadcast program or one web-only clip. It represent a standalone entity which a consumer can view or listen to.\n ", + ) - # Element {urn:vpro:media:2009}group uses Python identifier group - __group = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(_Namespace_media, 'group'), 'group', '__urnvpropages2013_embedType_urnvpromedia2009group', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 32, 2), ) + __group = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(_Namespace_media, "group"), + "group", + "__urnvpropages2013_embedType_urnvpromedia2009group", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 32, 2), + ) + + group = property( + __group.value, + __group.set, + None, + "\n A groups collects a number of programs and/or other groups. Examples: season, series, playlist and album.\n ", + ) - - group = property(__group.value, __group.set, None, '\n A groups collects a number of programs and/or other groups. Examples: season, series, playlist and album.\n ') - - # Element {urn:vpro:media:2009}segment uses Python identifier segment - __segment = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(_Namespace_media, 'segment'), 'segment', '__urnvpropages2013_embedType_urnvpromedia2009segment', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 39, 2), ) - - - segment = property(__segment.value, __segment.set, None, '\n A program can contain a number of segments. A segment is an identifiable part of a program.\n ') + __segment = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(_Namespace_media, "segment"), + "segment", + "__urnvpropages2013_embedType_urnvpromedia2009segment", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 39, 2), + ) + + segment = property( + __segment.value, + __segment.set, + None, + "\n A program can contain a number of segments. A segment is an identifiable part of a program.\n ", + ) - # Element {urn:vpro:pages:2013}title uses Python identifier title - __title = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'title'), 'title', '__urnvpropages2013_embedType_urnvpropages2013title', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 124, 6), ) + __title = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "title"), + "title", + "__urnvpropages2013_embedType_urnvpropages2013title", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 124, 6), + ) - title = property(__title.value, __title.set, None, None) - # Element {urn:vpro:pages:2013}description uses Python identifier description - __description = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'description'), 'description', '__urnvpropages2013_embedType_urnvpropages2013description', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 125, 6), ) + __description = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "description"), + "description", + "__urnvpropages2013_embedType_urnvpropages2013description", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 125, 6), + ) - description = property(__description.value, __description.set, None, None) - _ElementMap.update({ - __program.name() : __program, - __group.name() : __group, - __segment.name() : __segment, - __title.name() : __title, - __description.name() : __description - }) - _AttributeMap.update({ - - }) + _ElementMap.update( + { + __program.name(): __program, + __group.name(): __group, + __segment.name(): __segment, + __title.name(): __title, + __description.name(): __description, + } + ) + _AttributeMap.update({}) + + _module_typeBindings.embedType = embedType -Namespace.addCategoryObject('typeBinding', 'embedType', embedType) +Namespace.addCategoryObject("typeBinding", "embedType", embedType) # Complex type {urn:vpro:pages:2013}relationType with content type SIMPLE -class relationType (pyxb.binding.basis.complexTypeDefinition): +class relationType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:pages:2013}relationType with content type SIMPLE""" + _TypeDefinition = pyxb.binding.datatypes.string _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_SIMPLE _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'relationType') - _XSDLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 134, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "relationType") + _XSDLocation = pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 134, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.string - + # Attribute uriRef uses Python identifier uriRef - __uriRef = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'uriRef'), 'uriRef', '__urnvpropages2013_relationType_uriRef', pyxb.binding.datatypes.string) - __uriRef._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 137, 8) - __uriRef._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 137, 8) - + __uriRef = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "uriRef"), + "uriRef", + "__urnvpropages2013_relationType_uriRef", + pyxb.binding.datatypes.string, + ) + __uriRef._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 137, 8 + ) + __uriRef._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 137, 8 + ) + uriRef = property(__uriRef.value, __uriRef.set, None, None) - # Attribute broadcaster uses Python identifier broadcaster - __broadcaster = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'broadcaster'), 'broadcaster', '__urnvpropages2013_relationType_broadcaster', pyxb.binding.datatypes.string, required=True) - __broadcaster._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 138, 8) - __broadcaster._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 138, 8) - + __broadcaster = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "broadcaster"), + "broadcaster", + "__urnvpropages2013_relationType_broadcaster", + pyxb.binding.datatypes.string, + required=True, + ) + __broadcaster._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 138, 8 + ) + __broadcaster._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 138, 8 + ) + broadcaster = property(__broadcaster.value, __broadcaster.set, None, None) - # Attribute type uses Python identifier type - __type = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'type'), 'type', '__urnvpropages2013_relationType_type', pyxb.binding.datatypes.string, required=True) - __type._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 139, 8) - __type._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 139, 8) - + __type = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "type"), + "type", + "__urnvpropages2013_relationType_type", + pyxb.binding.datatypes.string, + required=True, + ) + __type._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 139, 8 + ) + __type._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 139, 8 + ) + type = property(__type.value, __type.set, None, None) - _ElementMap.update({ - - }) - _AttributeMap.update({ - __uriRef.name() : __uriRef, - __broadcaster.name() : __broadcaster, - __type.name() : __type - }) + _ElementMap.update({}) + _AttributeMap.update({__uriRef.name(): __uriRef, __broadcaster.name(): __broadcaster, __type.name(): __type}) + + _module_typeBindings.relationType = relationType -Namespace.addCategoryObject('typeBinding', 'relationType', relationType) +Namespace.addCategoryObject("typeBinding", "relationType", relationType) # Complex type {urn:vpro:pages:2013}pageType with content type ELEMENT_ONLY -class pageType (pyxb.binding.basis.complexTypeDefinition): +class pageType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:pages:2013}pageType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'pageType') - _XSDLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 11, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "pageType") + _XSDLocation = pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 11, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:pages:2013}genre uses Python identifier genre - __genre = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'genre'), 'genre', '__urnvpropages2013_pageType_urnvpropages2013genre', True, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 7, 2), ) + __genre = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "genre"), + "genre", + "__urnvpropages2013_pageType_urnvpropages2013genre", + True, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 7, 2), + ) - genre = property(__genre.value, __genre.set, None, None) - # Element {urn:vpro:pages:2013}crid uses Python identifier crid - __crid = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'crid'), 'crid', '__urnvpropages2013_pageType_urnvpropages2013crid', True, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 13, 6), ) + __crid = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "crid"), + "crid", + "__urnvpropages2013_pageType_urnvpropages2013crid", + True, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 13, 6), + ) - crid = property(__crid.value, __crid.set, None, None) - # Element {urn:vpro:pages:2013}alternativeUrl uses Python identifier alternativeUrl - __alternativeUrl = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'alternativeUrl'), 'alternativeUrl', '__urnvpropages2013_pageType_urnvpropages2013alternativeUrl', True, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 14, 6), ) + __alternativeUrl = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "alternativeUrl"), + "alternativeUrl", + "__urnvpropages2013_pageType_urnvpropages2013alternativeUrl", + True, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 14, 6), + ) - alternativeUrl = property(__alternativeUrl.value, __alternativeUrl.set, None, None) - # Element {urn:vpro:pages:2013}broadcaster uses Python identifier broadcaster - __broadcaster = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'broadcaster'), 'broadcaster', '__urnvpropages2013_pageType_urnvpropages2013broadcaster', True, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 15, 6), ) + __broadcaster = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "broadcaster"), + "broadcaster", + "__urnvpropages2013_pageType_urnvpropages2013broadcaster", + True, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 15, 6), + ) - broadcaster = property(__broadcaster.value, __broadcaster.set, None, None) - # Element {urn:vpro:pages:2013}portal uses Python identifier portal - __portal = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'portal'), 'portal', '__urnvpropages2013_pageType_urnvpropages2013portal', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 16, 6), ) + __portal = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "portal"), + "portal", + "__urnvpropages2013_pageType_urnvpropages2013portal", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 16, 6), + ) - portal = property(__portal.value, __portal.set, None, None) - # Element {urn:vpro:pages:2013}title uses Python identifier title - __title = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'title'), 'title', '__urnvpropages2013_pageType_urnvpropages2013title', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 17, 6), ) + __title = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "title"), + "title", + "__urnvpropages2013_pageType_urnvpropages2013title", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 17, 6), + ) - title = property(__title.value, __title.set, None, None) - # Element {urn:vpro:pages:2013}subTitle uses Python identifier subTitle - __subTitle = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'subTitle'), 'subTitle', '__urnvpropages2013_pageType_urnvpropages2013subTitle', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 18, 6), ) + __subTitle = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "subTitle"), + "subTitle", + "__urnvpropages2013_pageType_urnvpropages2013subTitle", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 18, 6), + ) - subTitle = property(__subTitle.value, __subTitle.set, None, None) - # Element {urn:vpro:pages:2013}keyword uses Python identifier keyword - __keyword = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'keyword'), 'keyword', '__urnvpropages2013_pageType_urnvpropages2013keyword', True, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 19, 6), ) + __keyword = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "keyword"), + "keyword", + "__urnvpropages2013_pageType_urnvpropages2013keyword", + True, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 19, 6), + ) - keyword = property(__keyword.value, __keyword.set, None, None) - # Element {urn:vpro:pages:2013}summary uses Python identifier summary - __summary = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'summary'), 'summary', '__urnvpropages2013_pageType_urnvpropages2013summary', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 21, 6), ) + __summary = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "summary"), + "summary", + "__urnvpropages2013_pageType_urnvpropages2013summary", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 21, 6), + ) - summary = property(__summary.value, __summary.set, None, None) - # Element {urn:vpro:pages:2013}paragraphs uses Python identifier paragraphs - __paragraphs = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'paragraphs'), 'paragraphs', '__urnvpropages2013_pageType_urnvpropages2013paragraphs', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 22, 6), ) + __paragraphs = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "paragraphs"), + "paragraphs", + "__urnvpropages2013_pageType_urnvpropages2013paragraphs", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 22, 6), + ) - paragraphs = property(__paragraphs.value, __paragraphs.set, None, None) - # Element {urn:vpro:pages:2013}tag uses Python identifier tag - __tag = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'tag'), 'tag', '__urnvpropages2013_pageType_urnvpropages2013tag', True, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 29, 6), ) + __tag = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "tag"), + "tag", + "__urnvpropages2013_pageType_urnvpropages2013tag", + True, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 29, 6), + ) - tag = property(__tag.value, __tag.set, None, None) - # Element {urn:vpro:pages:2013}referral uses Python identifier referral - __referral = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'referral'), 'referral', '__urnvpropages2013_pageType_urnvpropages2013referral', True, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 30, 6), ) + __referral = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "referral"), + "referral", + "__urnvpropages2013_pageType_urnvpropages2013referral", + True, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 30, 6), + ) - referral = property(__referral.value, __referral.set, None, None) - # Element {urn:vpro:pages:2013}link uses Python identifier link - __link = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'link'), 'link', '__urnvpropages2013_pageType_urnvpropages2013link', True, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 31, 6), ) + __link = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "link"), + "link", + "__urnvpropages2013_pageType_urnvpropages2013link", + True, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 31, 6), + ) - link = property(__link.value, __link.set, None, None) - # Element {urn:vpro:pages:2013}embed uses Python identifier embed - __embed = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'embed'), 'embed', '__urnvpropages2013_pageType_urnvpropages2013embed', True, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 32, 6), ) + __embed = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "embed"), + "embed", + "__urnvpropages2013_pageType_urnvpropages2013embed", + True, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 32, 6), + ) - embed = property(__embed.value, __embed.set, None, None) - # Element {urn:vpro:pages:2013}statRef uses Python identifier statRef - __statRef = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'statRef'), 'statRef', '__urnvpropages2013_pageType_urnvpropages2013statRef', True, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 33, 6), ) + __statRef = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "statRef"), + "statRef", + "__urnvpropages2013_pageType_urnvpropages2013statRef", + True, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 33, 6), + ) - statRef = property(__statRef.value, __statRef.set, None, None) - # Element {urn:vpro:pages:2013}images uses Python identifier images - __images = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'images'), 'images', '__urnvpropages2013_pageType_urnvpropages2013images', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 34, 6), ) + __images = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "images"), + "images", + "__urnvpropages2013_pageType_urnvpropages2013images", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 34, 6), + ) - images = property(__images.value, __images.set, None, None) - # Element {urn:vpro:pages:2013}relation uses Python identifier relation - __relation = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'relation'), 'relation', '__urnvpropages2013_pageType_urnvpropages2013relation', True, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 41, 6), ) + __relation = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "relation"), + "relation", + "__urnvpropages2013_pageType_urnvpropages2013relation", + True, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 41, 6), + ) - relation = property(__relation.value, __relation.set, None, None) - # Attribute url uses Python identifier url - __url = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'url'), 'url', '__urnvpropages2013_pageType_url', pyxb.binding.datatypes.string, required=True) - __url._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 43, 4) - __url._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 43, 4) - + __url = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "url"), + "url", + "__urnvpropages2013_pageType_url", + pyxb.binding.datatypes.string, + required=True, + ) + __url._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 43, 4 + ) + __url._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 43, 4 + ) + url = property(__url.value, __url.set, None, None) - # Attribute type uses Python identifier type - __type = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'type'), 'type', '__urnvpropages2013_pageType_type', _module_typeBindings.pageTypeEnum, required=True) - __type._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 44, 4) - __type._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 44, 4) - + __type = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "type"), + "type", + "__urnvpropages2013_pageType_type", + _module_typeBindings.pageTypeEnum, + required=True, + ) + __type._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 44, 4 + ) + __type._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 44, 4 + ) + type = property(__type.value, __type.set, None, None) - # Attribute creationDate uses Python identifier creationDate - __creationDate = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'creationDate'), 'creationDate', '__urnvpropages2013_pageType_creationDate', pyxb.binding.datatypes.dateTime) - __creationDate._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 45, 4) - __creationDate._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 45, 4) - + __creationDate = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "creationDate"), + "creationDate", + "__urnvpropages2013_pageType_creationDate", + pyxb.binding.datatypes.dateTime, + ) + __creationDate._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 45, 4 + ) + __creationDate._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 45, 4 + ) + creationDate = property(__creationDate.value, __creationDate.set, None, None) - # Attribute lastModified uses Python identifier lastModified - __lastModified = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'lastModified'), 'lastModified', '__urnvpropages2013_pageType_lastModified', pyxb.binding.datatypes.dateTime) - __lastModified._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 46, 4) - __lastModified._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 46, 4) - + __lastModified = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "lastModified"), + "lastModified", + "__urnvpropages2013_pageType_lastModified", + pyxb.binding.datatypes.dateTime, + ) + __lastModified._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 46, 4 + ) + __lastModified._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 46, 4 + ) + lastModified = property(__lastModified.value, __lastModified.set, None, None) - # Attribute lastPublished uses Python identifier lastPublished - __lastPublished = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'lastPublished'), 'lastPublished', '__urnvpropages2013_pageType_lastPublished', pyxb.binding.datatypes.dateTime) - __lastPublished._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 47, 4) - __lastPublished._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 47, 4) - + __lastPublished = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "lastPublished"), + "lastPublished", + "__urnvpropages2013_pageType_lastPublished", + pyxb.binding.datatypes.dateTime, + ) + __lastPublished._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 47, 4 + ) + __lastPublished._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 47, 4 + ) + lastPublished = property(__lastPublished.value, __lastPublished.set, None, None) - # Attribute publishStart uses Python identifier publishStart - __publishStart = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'publishStart'), 'publishStart', '__urnvpropages2013_pageType_publishStart', pyxb.binding.datatypes.dateTime) - __publishStart._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 48, 4) - __publishStart._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 48, 4) - + __publishStart = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "publishStart"), + "publishStart", + "__urnvpropages2013_pageType_publishStart", + pyxb.binding.datatypes.dateTime, + ) + __publishStart._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 48, 4 + ) + __publishStart._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 48, 4 + ) + publishStart = property(__publishStart.value, __publishStart.set, None, None) - # Attribute publishStop uses Python identifier publishStop - __publishStop = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'publishStop'), 'publishStop', '__urnvpropages2013_pageType_publishStop', pyxb.binding.datatypes.dateTime) - __publishStop._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 49, 4) - __publishStop._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 49, 4) - + __publishStop = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "publishStop"), + "publishStop", + "__urnvpropages2013_pageType_publishStop", + pyxb.binding.datatypes.dateTime, + ) + __publishStop._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 49, 4 + ) + __publishStop._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 49, 4 + ) + publishStop = property(__publishStop.value, __publishStop.set, None, None) - # Attribute refCount uses Python identifier refCount - __refCount = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'refCount'), 'refCount', '__urnvpropages2013_pageType_refCount', pyxb.binding.datatypes.int) - __refCount._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 50, 4) - __refCount._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 50, 4) - + __refCount = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "refCount"), + "refCount", + "__urnvpropages2013_pageType_refCount", + pyxb.binding.datatypes.int, + ) + __refCount._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 50, 4 + ) + __refCount._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 50, 4 + ) + refCount = property(__refCount.value, __refCount.set, None, None) - # Attribute sortDate uses Python identifier sortDate - __sortDate = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'sortDate'), 'sortDate', '__urnvpropages2013_pageType_sortDate', pyxb.binding.datatypes.dateTime) - __sortDate._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 51, 4) - __sortDate._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 51, 4) - + __sortDate = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "sortDate"), + "sortDate", + "__urnvpropages2013_pageType_sortDate", + pyxb.binding.datatypes.dateTime, + ) + __sortDate._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 51, 4 + ) + __sortDate._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 51, 4 + ) + sortDate = property(__sortDate.value, __sortDate.set, None, None) - # Attribute workflow uses Python identifier workflow - __workflow = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'workflow'), 'workflow', '__urnvpropages2013_pageType_workflow', _module_typeBindings.pageWorkflow) - __workflow._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 52, 4) - __workflow._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 52, 4) - + __workflow = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "workflow"), + "workflow", + "__urnvpropages2013_pageType_workflow", + _module_typeBindings.pageWorkflow, + ) + __workflow._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 52, 4 + ) + __workflow._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 52, 4 + ) + workflow = property(__workflow.value, __workflow.set, None, None) - _ElementMap.update({ - __genre.name() : __genre, - __crid.name() : __crid, - __alternativeUrl.name() : __alternativeUrl, - __broadcaster.name() : __broadcaster, - __portal.name() : __portal, - __title.name() : __title, - __subTitle.name() : __subTitle, - __keyword.name() : __keyword, - __summary.name() : __summary, - __paragraphs.name() : __paragraphs, - __tag.name() : __tag, - __referral.name() : __referral, - __link.name() : __link, - __embed.name() : __embed, - __statRef.name() : __statRef, - __images.name() : __images, - __relation.name() : __relation - }) - _AttributeMap.update({ - __url.name() : __url, - __type.name() : __type, - __creationDate.name() : __creationDate, - __lastModified.name() : __lastModified, - __lastPublished.name() : __lastPublished, - __publishStart.name() : __publishStart, - __publishStop.name() : __publishStop, - __refCount.name() : __refCount, - __sortDate.name() : __sortDate, - __workflow.name() : __workflow - }) + _ElementMap.update( + { + __genre.name(): __genre, + __crid.name(): __crid, + __alternativeUrl.name(): __alternativeUrl, + __broadcaster.name(): __broadcaster, + __portal.name(): __portal, + __title.name(): __title, + __subTitle.name(): __subTitle, + __keyword.name(): __keyword, + __summary.name(): __summary, + __paragraphs.name(): __paragraphs, + __tag.name(): __tag, + __referral.name(): __referral, + __link.name(): __link, + __embed.name(): __embed, + __statRef.name(): __statRef, + __images.name(): __images, + __relation.name(): __relation, + } + ) + _AttributeMap.update( + { + __url.name(): __url, + __type.name(): __type, + __creationDate.name(): __creationDate, + __lastModified.name(): __lastModified, + __lastPublished.name(): __lastPublished, + __publishStart.name(): __publishStart, + __publishStop.name(): __publishStop, + __refCount.name(): __refCount, + __sortDate.name(): __sortDate, + __workflow.name(): __workflow, + } + ) + + _module_typeBindings.pageType = pageType -Namespace.addCategoryObject('typeBinding', 'pageType', pageType) +Namespace.addCategoryObject("typeBinding", "pageType", pageType) # Complex type {urn:vpro:pages:2013}imageType with content type ELEMENT_ONLY -class imageType (pyxb.binding.basis.complexTypeDefinition): +class imageType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:pages:2013}imageType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'imageType') - _XSDLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 92, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "imageType") + _XSDLocation = pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 92, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:pages:2013}title uses Python identifier title - __title = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'title'), 'title', '__urnvpropages2013_imageType_urnvpropages2013title', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 94, 6), ) + __title = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "title"), + "title", + "__urnvpropages2013_imageType_urnvpropages2013title", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 94, 6), + ) - title = property(__title.value, __title.set, None, None) - # Element {urn:vpro:pages:2013}description uses Python identifier description - __description = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'description'), 'description', '__urnvpropages2013_imageType_urnvpropages2013description', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 95, 6), ) + __description = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "description"), + "description", + "__urnvpropages2013_imageType_urnvpropages2013description", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 95, 6), + ) - description = property(__description.value, __description.set, None, None) - # Element {urn:vpro:pages:2013}credits uses Python identifier credits - __credits = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'credits'), 'credits', '__urnvpropages2013_imageType_urnvpropages2013credits', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 96, 6), ) + __credits = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "credits"), + "credits", + "__urnvpropages2013_imageType_urnvpropages2013credits", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 96, 6), + ) - credits = property(__credits.value, __credits.set, None, None) - # Element {urn:vpro:pages:2013}source uses Python identifier source - __source = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'source'), 'source', '__urnvpropages2013_imageType_urnvpropages2013source', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 97, 6), ) + __source = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "source"), + "source", + "__urnvpropages2013_imageType_urnvpropages2013source", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 97, 6), + ) - source = property(__source.value, __source.set, None, None) - # Element {urn:vpro:pages:2013}sourceName uses Python identifier sourceName - __sourceName = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'sourceName'), 'sourceName', '__urnvpropages2013_imageType_urnvpropages2013sourceName', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 98, 6), ) + __sourceName = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "sourceName"), + "sourceName", + "__urnvpropages2013_imageType_urnvpropages2013sourceName", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 98, 6), + ) - sourceName = property(__sourceName.value, __sourceName.set, None, None) - # Element {urn:vpro:pages:2013}license uses Python identifier license - __license = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'license'), 'license', '__urnvpropages2013_imageType_urnvpropages2013license', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 99, 6), ) + __license = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "license"), + "license", + "__urnvpropages2013_imageType_urnvpropages2013license", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 99, 6), + ) - license = property(__license.value, __license.set, None, None) - # Attribute type uses Python identifier type - __type = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'type'), 'type', '__urnvpropages2013_imageType_type', _ImportedBinding_npoapi_xml_shared.imageTypeEnum) - __type._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 101, 4) - __type._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 101, 4) - + __type = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "type"), + "type", + "__urnvpropages2013_imageType_type", + _ImportedBinding_npoapi_xml_shared.imageTypeEnum, + ) + __type._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 101, 4 + ) + __type._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 101, 4 + ) + type = property(__type.value, __type.set, None, None) - # Attribute url uses Python identifier url - __url = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'url'), 'url', '__urnvpropages2013_imageType_url', pyxb.binding.datatypes.string) - __url._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 102, 4) - __url._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 102, 4) - + __url = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "url"), + "url", + "__urnvpropages2013_imageType_url", + pyxb.binding.datatypes.string, + ) + __url._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 102, 4 + ) + __url._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 102, 4 + ) + url = property(__url.value, __url.set, None, None) - _ElementMap.update({ - __title.name() : __title, - __description.name() : __description, - __credits.name() : __credits, - __source.name() : __source, - __sourceName.name() : __sourceName, - __license.name() : __license - }) - _AttributeMap.update({ - __type.name() : __type, - __url.name() : __url - }) + _ElementMap.update( + { + __title.name(): __title, + __description.name(): __description, + __credits.name(): __credits, + __source.name(): __source, + __sourceName.name(): __sourceName, + __license.name(): __license, + } + ) + _AttributeMap.update({__type.name(): __type, __url.name(): __url}) + + _module_typeBindings.imageType = imageType -Namespace.addCategoryObject('typeBinding', 'imageType', imageType) +Namespace.addCategoryObject("typeBinding", "imageType", imageType) # Complex type {urn:vpro:pages:2013}referralType with content type SIMPLE -class referralType (pyxb.binding.basis.complexTypeDefinition): +class referralType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:pages:2013}referralType with content type SIMPLE""" + _TypeDefinition = pyxb.binding.datatypes.string _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_SIMPLE _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'referralType') - _XSDLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 105, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "referralType") + _XSDLocation = pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 105, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.string - + # Attribute referrer uses Python identifier referrer - __referrer = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'referrer'), 'referrer', '__urnvpropages2013_referralType_referrer', pyxb.binding.datatypes.string) - __referrer._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 108, 8) - __referrer._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 108, 8) - + __referrer = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "referrer"), + "referrer", + "__urnvpropages2013_referralType_referrer", + pyxb.binding.datatypes.string, + ) + __referrer._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 108, 8 + ) + __referrer._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 108, 8 + ) + referrer = property(__referrer.value, __referrer.set, None, None) - # Attribute type uses Python identifier type - __type = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'type'), 'type', '__urnvpropages2013_referralType_type', _module_typeBindings.linkTypeEnum) - __type._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 109, 8) - __type._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 109, 8) - + __type = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "type"), + "type", + "__urnvpropages2013_referralType_type", + _module_typeBindings.linkTypeEnum, + ) + __type._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 109, 8 + ) + __type._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 109, 8 + ) + type = property(__type.value, __type.set, None, None) - _ElementMap.update({ - - }) - _AttributeMap.update({ - __referrer.name() : __referrer, - __type.name() : __type - }) + _ElementMap.update({}) + _AttributeMap.update({__referrer.name(): __referrer, __type.name(): __type}) + + _module_typeBindings.referralType = referralType -Namespace.addCategoryObject('typeBinding', 'referralType', referralType) +Namespace.addCategoryObject("typeBinding", "referralType", referralType) # Complex type {urn:vpro:pages:2013}linkType with content type ELEMENT_ONLY -class linkType (pyxb.binding.basis.complexTypeDefinition): +class linkType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:pages:2013}linkType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'linkType') - _XSDLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 114, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "linkType") + _XSDLocation = pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 114, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:pages:2013}text uses Python identifier text - __text = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'text'), 'text', '__urnvpropages2013_linkType_urnvpropages2013text', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 116, 6), ) + __text = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "text"), + "text", + "__urnvpropages2013_linkType_urnvpropages2013text", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 116, 6), + ) - text = property(__text.value, __text.set, None, None) - # Attribute pageRef uses Python identifier pageRef - __pageRef = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'pageRef'), 'pageRef', '__urnvpropages2013_linkType_pageRef', pyxb.binding.datatypes.string) - __pageRef._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 118, 4) - __pageRef._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 118, 4) - + __pageRef = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "pageRef"), + "pageRef", + "__urnvpropages2013_linkType_pageRef", + pyxb.binding.datatypes.string, + ) + __pageRef._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 118, 4 + ) + __pageRef._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 118, 4 + ) + pageRef = property(__pageRef.value, __pageRef.set, None, None) - # Attribute type uses Python identifier type - __type = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'type'), 'type', '__urnvpropages2013_linkType_type', _module_typeBindings.linkTypeEnum) - __type._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 119, 4) - __type._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 119, 4) - + __type = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "type"), + "type", + "__urnvpropages2013_linkType_type", + _module_typeBindings.linkTypeEnum, + ) + __type._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 119, 4 + ) + __type._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 119, 4 + ) + type = property(__type.value, __type.set, None, None) - _ElementMap.update({ - __text.name() : __text - }) - _AttributeMap.update({ - __pageRef.name() : __pageRef, - __type.name() : __type - }) + _ElementMap.update({__text.name(): __text}) + _AttributeMap.update({__pageRef.name(): __pageRef, __type.name(): __type}) + + _module_typeBindings.linkType = linkType -Namespace.addCategoryObject('typeBinding', 'linkType', linkType) +Namespace.addCategoryObject("typeBinding", "linkType", linkType) -genre = pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'genre'), genreType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 7, 2)) -Namespace.addCategoryObject('elementBinding', genre.name().localName(), genre) +genre = pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "genre"), + genreType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 7, 2), +) +Namespace.addCategoryObject("elementBinding", genre.name().localName(), genre) -page = pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'page'), pageType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 9, 2)) -Namespace.addCategoryObject('elementBinding', page.name().localName(), page) +page = pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "page"), + pageType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 9, 2), +) +Namespace.addCategoryObject("elementBinding", page.name().localName(), page) +CTD_ANON._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "paragraph"), + paragraphType, + scope=CTD_ANON, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 25, 12), + ) +) -CTD_ANON._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'paragraph'), paragraphType, scope=CTD_ANON, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 25, 12))) -def _BuildAutomaton (): +def _BuildAutomaton(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton del _BuildAutomaton import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 25, 12)) + cc_0 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 25, 12), + ) counters.add(cc_0) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(CTD_ANON._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'paragraph')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 25, 12)) + symbol = pyxb.binding.content.ElementUse( + CTD_ANON._UseForTag(pyxb.namespace.ExpandedName(Namespace, "paragraph")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 25, 12), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) st_0._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -CTD_ANON._Automaton = _BuildAutomaton() +CTD_ANON._Automaton = _BuildAutomaton() + +CTD_ANON_._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "image"), + imageType, + scope=CTD_ANON_, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 37, 12), + ) +) -CTD_ANON_._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'image'), imageType, scope=CTD_ANON_, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 37, 12))) -def _BuildAutomaton_ (): +def _BuildAutomaton_(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_ del _BuildAutomaton_ import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 37, 12)) + cc_0 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 37, 12), + ) counters.add(cc_0) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(CTD_ANON_._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'image')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 37, 12)) + symbol = pyxb.binding.content.ElementUse( + CTD_ANON_._UseForTag(pyxb.namespace.ExpandedName(Namespace, "image")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 37, 12), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) st_0._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -CTD_ANON_._Automaton = _BuildAutomaton_() +CTD_ANON_._Automaton = _BuildAutomaton_() + +portalType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "name"), + pyxb.binding.datatypes.string, + scope=portalType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 57, 6), + ) +) -portalType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'name'), pyxb.binding.datatypes.string, scope=portalType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 57, 6))) +portalType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "section"), + sectionType, + scope=portalType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 58, 6), + ) +) -portalType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'section'), sectionType, scope=portalType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 58, 6))) -def _BuildAutomaton_2 (): +def _BuildAutomaton_2(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_2 del _BuildAutomaton_2 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 58, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 58, 6), + ) counters.add(cc_0) states = [] final_update = set() - symbol = pyxb.binding.content.ElementUse(portalType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'name')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 57, 6)) + symbol = pyxb.binding.content.ElementUse( + portalType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "name")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 57, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(portalType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'section')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 58, 6)) + symbol = pyxb.binding.content.ElementUse( + portalType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "section")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 58, 6), + ) st_1 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_1) transitions = [] - transitions.append(fac.Transition(st_1, [ - ])) + transitions.append(fac.Transition(st_1, [])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, True) ])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, True)])) st_1._set_transitionSet(transitions) return fac.Automaton(states, counters, False, containing_state=None) -portalType._Automaton = _BuildAutomaton_2() +portalType._Automaton = _BuildAutomaton_2() + +genreType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "term"), + pageTermType, + scope=genreType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 74, 6), + ) +) -genreType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'term'), pageTermType, scope=genreType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 74, 6))) -def _BuildAutomaton_3 (): +def _BuildAutomaton_3(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_3 del _BuildAutomaton_3 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 74, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 74, 6), + ) counters.add(cc_0) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(genreType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'term')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 74, 6)) + symbol = pyxb.binding.content.ElementUse( + genreType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "term")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 74, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) st_0._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -genreType._Automaton = _BuildAutomaton_3() - +genreType._Automaton = _BuildAutomaton_3() -paragraphType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'title'), pyxb.binding.datatypes.string, scope=paragraphType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 86, 6))) - -paragraphType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'body'), pyxb.binding.datatypes.string, scope=paragraphType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 87, 6))) - -paragraphType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'image'), imageType, scope=paragraphType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 88, 6))) -def _BuildAutomaton_4 (): +paragraphType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "title"), + pyxb.binding.datatypes.string, + scope=paragraphType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 86, 6), + ) +) + +paragraphType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "body"), + pyxb.binding.datatypes.string, + scope=paragraphType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 87, 6), + ) +) + +paragraphType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "image"), + imageType, + scope=paragraphType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 88, 6), + ) +) + + +def _BuildAutomaton_4(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_4 del _BuildAutomaton_4 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 86, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 86, 6), + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 87, 6)) + cc_1 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 87, 6), + ) counters.add(cc_1) - cc_2 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 88, 6)) + cc_2 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 88, 6), + ) counters.add(cc_2) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(paragraphType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'title')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 86, 6)) + symbol = pyxb.binding.content.ElementUse( + paragraphType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "title")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 86, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() final_update.add(fac.UpdateInstruction(cc_1, False)) - symbol = pyxb.binding.content.ElementUse(paragraphType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'body')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 87, 6)) + symbol = pyxb.binding.content.ElementUse( + paragraphType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "body")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 87, 6), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) final_update = set() final_update.add(fac.UpdateInstruction(cc_2, False)) - symbol = pyxb.binding.content.ElementUse(paragraphType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'image')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 88, 6)) + symbol = pyxb.binding.content.ElementUse( + paragraphType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "image")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 88, 6), + ) st_2 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_2) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_0, False)])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_1, True) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_1, False) ])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_1, True)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_1, False)])) st_1._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_2, True) ])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_2, True)])) st_2._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -paragraphType._Automaton = _BuildAutomaton_4() +paragraphType._Automaton = _BuildAutomaton_4() -embedType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(_Namespace_media, 'program'), _ImportedBinding_npoapi_xml_media.programType, scope=embedType, documentation='\n This is the most used entity in POMS. It represents e.g. one broadcast program or one web-only clip. It represent a standalone entity which a consumer can view or listen to.\n ', location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 25, 2))) - -embedType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(_Namespace_media, 'group'), _ImportedBinding_npoapi_xml_media.groupType, scope=embedType, documentation='\n A groups collects a number of programs and/or other groups. Examples: season, series, playlist and album.\n ', location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 32, 2))) - -embedType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(_Namespace_media, 'segment'), _ImportedBinding_npoapi_xml_media.segmentType, scope=embedType, documentation='\n A program can contain a number of segments. A segment is an identifiable part of a program.\n ', location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproMedia.xsd', 39, 2))) - -embedType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'title'), pyxb.binding.datatypes.string, scope=embedType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 124, 6))) - -embedType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'description'), pyxb.binding.datatypes.string, scope=embedType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 125, 6))) - -def _BuildAutomaton_5 (): +embedType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(_Namespace_media, "program"), + _ImportedBinding_npoapi_xml_media.programType, + scope=embedType, + documentation="\n This is the most used entity in POMS. It represents e.g. one broadcast program or one web-only clip. It represent a standalone entity which a consumer can view or listen to.\n ", + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 25, 2), + ) +) + +embedType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(_Namespace_media, "group"), + _ImportedBinding_npoapi_xml_media.groupType, + scope=embedType, + documentation="\n A groups collects a number of programs and/or other groups. Examples: season, series, playlist and album.\n ", + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 32, 2), + ) +) + +embedType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(_Namespace_media, "segment"), + _ImportedBinding_npoapi_xml_media.segmentType, + scope=embedType, + documentation="\n A program can contain a number of segments. A segment is an identifiable part of a program.\n ", + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproMedia.xsd", 39, 2), + ) +) + +embedType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "title"), + pyxb.binding.datatypes.string, + scope=embedType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 124, 6), + ) +) + +embedType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "description"), + pyxb.binding.datatypes.string, + scope=embedType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 125, 6), + ) +) + + +def _BuildAutomaton_5(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_5 del _BuildAutomaton_5 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 124, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 124, 6), + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 125, 6)) + cc_1 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 125, 6), + ) counters.add(cc_1) - cc_2 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 126, 6)) + cc_2 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 126, 6), + ) counters.add(cc_2) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(embedType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'title')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 124, 6)) + symbol = pyxb.binding.content.ElementUse( + embedType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "title")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 124, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() final_update.add(fac.UpdateInstruction(cc_1, False)) - symbol = pyxb.binding.content.ElementUse(embedType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'description')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 125, 6)) + symbol = pyxb.binding.content.ElementUse( + embedType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "description")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 125, 6), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) final_update = set() final_update.add(fac.UpdateInstruction(cc_2, False)) - symbol = pyxb.binding.content.ElementUse(embedType._UseForTag(pyxb.namespace.ExpandedName(_Namespace_media, 'group')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 127, 8)) + symbol = pyxb.binding.content.ElementUse( + embedType._UseForTag(pyxb.namespace.ExpandedName(_Namespace_media, "group")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 127, 8), + ) st_2 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_2) final_update = set() final_update.add(fac.UpdateInstruction(cc_2, False)) - symbol = pyxb.binding.content.ElementUse(embedType._UseForTag(pyxb.namespace.ExpandedName(_Namespace_media, 'program')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 128, 8)) + symbol = pyxb.binding.content.ElementUse( + embedType._UseForTag(pyxb.namespace.ExpandedName(_Namespace_media, "program")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 128, 8), + ) st_3 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_3) final_update = set() final_update.add(fac.UpdateInstruction(cc_2, False)) - symbol = pyxb.binding.content.ElementUse(embedType._UseForTag(pyxb.namespace.ExpandedName(_Namespace_media, 'segment')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 129, 8)) + symbol = pyxb.binding.content.ElementUse( + embedType._UseForTag(pyxb.namespace.ExpandedName(_Namespace_media, "segment")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 129, 8), + ) st_4 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_4) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_0, False)])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_1, True) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_1, False) ])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_1, True)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_1, False)])) st_1._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_2, True) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_2, True) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_2, True) ])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_2, True)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_2, True)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_2, True)])) st_2._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_2, True) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_2, True) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_2, True) ])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_2, True)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_2, True)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_2, True)])) st_3._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_2, True) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_2, True) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_2, True) ])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_2, True)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_2, True)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_2, True)])) st_4._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -embedType._Automaton = _BuildAutomaton_5() - - - - -pageType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'genre'), genreType, scope=pageType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 7, 2))) - -pageType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'crid'), pyxb.binding.datatypes.string, scope=pageType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 13, 6))) - -pageType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'alternativeUrl'), pyxb.binding.datatypes.string, scope=pageType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 14, 6))) - -pageType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'broadcaster'), _ImportedBinding_npoapi_xml_media.broadcasterType, scope=pageType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 15, 6))) - -pageType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'portal'), portalType, scope=pageType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 16, 6))) - -pageType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'title'), pyxb.binding.datatypes.string, scope=pageType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 17, 6))) - -pageType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'subTitle'), pyxb.binding.datatypes.string, scope=pageType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 18, 6))) - -pageType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'keyword'), pyxb.binding.datatypes.string, scope=pageType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 19, 6))) - -pageType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'summary'), pyxb.binding.datatypes.string, scope=pageType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 21, 6))) - -pageType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'paragraphs'), CTD_ANON, scope=pageType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 22, 6))) -pageType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'tag'), pyxb.binding.datatypes.string, scope=pageType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 29, 6))) -pageType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'referral'), referralType, scope=pageType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 30, 6))) - -pageType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'link'), linkType, scope=pageType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 31, 6))) - -pageType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'embed'), embedType, scope=pageType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 32, 6))) - -pageType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'statRef'), pyxb.binding.datatypes.string, scope=pageType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 33, 6))) - -pageType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'images'), CTD_ANON_, scope=pageType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 34, 6))) +embedType._Automaton = _BuildAutomaton_5() -pageType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'relation'), relationType, scope=pageType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 41, 6))) -def _BuildAutomaton_6 (): +pageType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "genre"), + genreType, + scope=pageType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 7, 2), + ) +) + +pageType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "crid"), + pyxb.binding.datatypes.string, + scope=pageType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 13, 6), + ) +) + +pageType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "alternativeUrl"), + pyxb.binding.datatypes.string, + scope=pageType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 14, 6), + ) +) + +pageType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "broadcaster"), + _ImportedBinding_npoapi_xml_media.broadcasterType, + scope=pageType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 15, 6), + ) +) + +pageType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "portal"), + portalType, + scope=pageType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 16, 6), + ) +) + +pageType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "title"), + pyxb.binding.datatypes.string, + scope=pageType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 17, 6), + ) +) + +pageType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "subTitle"), + pyxb.binding.datatypes.string, + scope=pageType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 18, 6), + ) +) + +pageType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "keyword"), + pyxb.binding.datatypes.string, + scope=pageType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 19, 6), + ) +) + +pageType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "summary"), + pyxb.binding.datatypes.string, + scope=pageType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 21, 6), + ) +) + +pageType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "paragraphs"), + CTD_ANON, + scope=pageType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 22, 6), + ) +) + +pageType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "tag"), + pyxb.binding.datatypes.string, + scope=pageType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 29, 6), + ) +) + +pageType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "referral"), + referralType, + scope=pageType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 30, 6), + ) +) + +pageType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "link"), + linkType, + scope=pageType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 31, 6), + ) +) + +pageType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "embed"), + embedType, + scope=pageType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 32, 6), + ) +) + +pageType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "statRef"), + pyxb.binding.datatypes.string, + scope=pageType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 33, 6), + ) +) + +pageType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "images"), + CTD_ANON_, + scope=pageType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 34, 6), + ) +) + +pageType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "relation"), + relationType, + scope=pageType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 41, 6), + ) +) + + +def _BuildAutomaton_6(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_6 del _BuildAutomaton_6 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 13, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 13, 6), + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 14, 6)) + cc_1 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 14, 6), + ) counters.add(cc_1) - cc_2 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 16, 6)) + cc_2 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 16, 6), + ) counters.add(cc_2) - cc_3 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 18, 6)) + cc_3 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 18, 6), + ) counters.add(cc_3) - cc_4 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 19, 6)) + cc_4 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 19, 6), + ) counters.add(cc_4) - cc_5 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 20, 6)) + cc_5 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 20, 6), + ) counters.add(cc_5) - cc_6 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 21, 6)) + cc_6 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 21, 6), + ) counters.add(cc_6) - cc_7 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 22, 6)) + cc_7 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 22, 6), + ) counters.add(cc_7) - cc_8 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 29, 6)) + cc_8 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 29, 6), + ) counters.add(cc_8) - cc_9 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 30, 6)) + cc_9 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 30, 6), + ) counters.add(cc_9) - cc_10 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 31, 6)) + cc_10 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 31, 6), + ) counters.add(cc_10) - cc_11 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 32, 6)) + cc_11 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 32, 6), + ) counters.add(cc_11) - cc_12 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 33, 6)) + cc_12 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 33, 6), + ) counters.add(cc_12) - cc_13 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 34, 6)) + cc_13 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 34, 6), + ) counters.add(cc_13) - cc_14 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 41, 6)) + cc_14 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 41, 6), + ) counters.add(cc_14) states = [] final_update = None - symbol = pyxb.binding.content.ElementUse(pageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'crid')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 13, 6)) + symbol = pyxb.binding.content.ElementUse( + pageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "crid")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 13, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = None - symbol = pyxb.binding.content.ElementUse(pageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'alternativeUrl')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 14, 6)) + symbol = pyxb.binding.content.ElementUse( + pageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "alternativeUrl")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 14, 6), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) final_update = None - symbol = pyxb.binding.content.ElementUse(pageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'broadcaster')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 15, 6)) + symbol = pyxb.binding.content.ElementUse( + pageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "broadcaster")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 15, 6), + ) st_2 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_2) final_update = None - symbol = pyxb.binding.content.ElementUse(pageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'portal')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 16, 6)) + symbol = pyxb.binding.content.ElementUse( + pageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "portal")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 16, 6), + ) st_3 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_3) final_update = set() - symbol = pyxb.binding.content.ElementUse(pageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'title')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 17, 6)) + symbol = pyxb.binding.content.ElementUse( + pageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "title")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 17, 6), + ) st_4 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_4) final_update = set() final_update.add(fac.UpdateInstruction(cc_3, False)) - symbol = pyxb.binding.content.ElementUse(pageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'subTitle')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 18, 6)) + symbol = pyxb.binding.content.ElementUse( + pageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "subTitle")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 18, 6), + ) st_5 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_5) final_update = set() final_update.add(fac.UpdateInstruction(cc_4, False)) - symbol = pyxb.binding.content.ElementUse(pageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'keyword')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 19, 6)) + symbol = pyxb.binding.content.ElementUse( + pageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "keyword")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 19, 6), + ) st_6 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_6) final_update = set() final_update.add(fac.UpdateInstruction(cc_5, False)) - symbol = pyxb.binding.content.ElementUse(pageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'genre')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 20, 6)) + symbol = pyxb.binding.content.ElementUse( + pageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "genre")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 20, 6), + ) st_7 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_7) final_update = set() final_update.add(fac.UpdateInstruction(cc_6, False)) - symbol = pyxb.binding.content.ElementUse(pageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'summary')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 21, 6)) + symbol = pyxb.binding.content.ElementUse( + pageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "summary")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 21, 6), + ) st_8 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_8) final_update = set() final_update.add(fac.UpdateInstruction(cc_7, False)) - symbol = pyxb.binding.content.ElementUse(pageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'paragraphs')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 22, 6)) + symbol = pyxb.binding.content.ElementUse( + pageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "paragraphs")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 22, 6), + ) st_9 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_9) final_update = set() final_update.add(fac.UpdateInstruction(cc_8, False)) - symbol = pyxb.binding.content.ElementUse(pageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'tag')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 29, 6)) + symbol = pyxb.binding.content.ElementUse( + pageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "tag")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 29, 6), + ) st_10 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_10) final_update = set() final_update.add(fac.UpdateInstruction(cc_9, False)) - symbol = pyxb.binding.content.ElementUse(pageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'referral')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 30, 6)) + symbol = pyxb.binding.content.ElementUse( + pageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "referral")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 30, 6), + ) st_11 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_11) final_update = set() final_update.add(fac.UpdateInstruction(cc_10, False)) - symbol = pyxb.binding.content.ElementUse(pageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'link')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 31, 6)) + symbol = pyxb.binding.content.ElementUse( + pageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "link")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 31, 6), + ) st_12 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_12) final_update = set() final_update.add(fac.UpdateInstruction(cc_11, False)) - symbol = pyxb.binding.content.ElementUse(pageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'embed')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 32, 6)) + symbol = pyxb.binding.content.ElementUse( + pageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "embed")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 32, 6), + ) st_13 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_13) final_update = set() final_update.add(fac.UpdateInstruction(cc_12, False)) - symbol = pyxb.binding.content.ElementUse(pageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'statRef')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 33, 6)) + symbol = pyxb.binding.content.ElementUse( + pageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "statRef")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 33, 6), + ) st_14 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_14) final_update = set() final_update.add(fac.UpdateInstruction(cc_13, False)) - symbol = pyxb.binding.content.ElementUse(pageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'images')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 34, 6)) + symbol = pyxb.binding.content.ElementUse( + pageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "images")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 34, 6), + ) st_15 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_15) final_update = set() final_update.add(fac.UpdateInstruction(cc_14, False)) - symbol = pyxb.binding.content.ElementUse(pageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'relation')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 41, 6)) + symbol = pyxb.binding.content.ElementUse( + pageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "relation")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 41, 6), + ) st_16 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_16) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_0, False)])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_1, True) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_1, False) ])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_1, True)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_1, False)])) st_1._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_2, [ - ])) - transitions.append(fac.Transition(st_3, [ - ])) - transitions.append(fac.Transition(st_4, [ - ])) + transitions.append(fac.Transition(st_2, [])) + transitions.append(fac.Transition(st_3, [])) + transitions.append(fac.Transition(st_4, [])) st_2._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_2, True) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_2, False) ])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_2, True)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_2, False)])) st_3._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_5, [ - ])) - transitions.append(fac.Transition(st_6, [ - ])) - transitions.append(fac.Transition(st_7, [ - ])) - transitions.append(fac.Transition(st_8, [ - ])) - transitions.append(fac.Transition(st_9, [ - ])) - transitions.append(fac.Transition(st_10, [ - ])) - transitions.append(fac.Transition(st_11, [ - ])) - transitions.append(fac.Transition(st_12, [ - ])) - transitions.append(fac.Transition(st_13, [ - ])) - transitions.append(fac.Transition(st_14, [ - ])) - transitions.append(fac.Transition(st_15, [ - ])) - transitions.append(fac.Transition(st_16, [ - ])) + transitions.append(fac.Transition(st_5, [])) + transitions.append(fac.Transition(st_6, [])) + transitions.append(fac.Transition(st_7, [])) + transitions.append(fac.Transition(st_8, [])) + transitions.append(fac.Transition(st_9, [])) + transitions.append(fac.Transition(st_10, [])) + transitions.append(fac.Transition(st_11, [])) + transitions.append(fac.Transition(st_12, [])) + transitions.append(fac.Transition(st_13, [])) + transitions.append(fac.Transition(st_14, [])) + transitions.append(fac.Transition(st_15, [])) + transitions.append(fac.Transition(st_16, [])) st_4._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_3, True) ])) - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_3, False) ])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_3, True)])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_3, False)])) st_5._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_4, True) ])) - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_4, False) ])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_4, True)])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_4, False)])) st_6._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_5, True) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_5, False) ])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_5, True)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_5, False)])) st_7._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_6, True) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_6, False) ])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_6, True)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_6, False)])) st_8._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_7, True) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_7, False) ])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_7, True)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_7, False)])) st_9._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_8, True) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_8, False) ])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_8, True)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_8, False)])) st_10._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_9, True) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_9, False) ])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_9, True)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_9, False)])) st_11._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_10, True) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_10, False) ])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_10, True)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_10, False)])) st_12._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_11, True) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_11, False) ])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_11, True)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_11, False)])) st_13._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_12, True) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_12, False) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_12, False) ])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_12, True)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_12, False)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_12, False)])) st_14._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_13, True) ])) - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_13, False) ])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_13, True)])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_13, False)])) st_15._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_16, [ - fac.UpdateInstruction(cc_14, True) ])) + transitions.append(fac.Transition(st_16, [fac.UpdateInstruction(cc_14, True)])) st_16._set_transitionSet(transitions) return fac.Automaton(states, counters, False, containing_state=None) -pageType._Automaton = _BuildAutomaton_6() - - - - -imageType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'title'), pyxb.binding.datatypes.string, scope=imageType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 94, 6))) -imageType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'description'), pyxb.binding.datatypes.string, scope=imageType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 95, 6))) -imageType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'credits'), pyxb.binding.datatypes.string, scope=imageType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 96, 6))) - -imageType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'source'), pyxb.binding.datatypes.string, scope=imageType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 97, 6))) - -imageType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'sourceName'), pyxb.binding.datatypes.string, scope=imageType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 98, 6))) +pageType._Automaton = _BuildAutomaton_6() -imageType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'license'), _ImportedBinding_npoapi_xml_shared.licenseEnum, scope=imageType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 99, 6))) -def _BuildAutomaton_7 (): +imageType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "title"), + pyxb.binding.datatypes.string, + scope=imageType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 94, 6), + ) +) + +imageType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "description"), + pyxb.binding.datatypes.string, + scope=imageType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 95, 6), + ) +) + +imageType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "credits"), + pyxb.binding.datatypes.string, + scope=imageType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 96, 6), + ) +) + +imageType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "source"), + pyxb.binding.datatypes.string, + scope=imageType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 97, 6), + ) +) + +imageType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "sourceName"), + pyxb.binding.datatypes.string, + scope=imageType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 98, 6), + ) +) + +imageType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "license"), + _ImportedBinding_npoapi_xml_shared.licenseEnum, + scope=imageType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 99, 6), + ) +) + + +def _BuildAutomaton_7(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_7 del _BuildAutomaton_7 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 94, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 94, 6), + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 95, 6)) + cc_1 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 95, 6), + ) counters.add(cc_1) - cc_2 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 96, 6)) + cc_2 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 96, 6), + ) counters.add(cc_2) - cc_3 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 97, 6)) + cc_3 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 97, 6), + ) counters.add(cc_3) - cc_4 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 98, 6)) + cc_4 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 98, 6), + ) counters.add(cc_4) - cc_5 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 99, 6)) + cc_5 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 99, 6), + ) counters.add(cc_5) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(imageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'title')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 94, 6)) + symbol = pyxb.binding.content.ElementUse( + imageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "title")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 94, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() final_update.add(fac.UpdateInstruction(cc_1, False)) - symbol = pyxb.binding.content.ElementUse(imageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'description')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 95, 6)) + symbol = pyxb.binding.content.ElementUse( + imageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "description")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 95, 6), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) final_update = set() final_update.add(fac.UpdateInstruction(cc_2, False)) - symbol = pyxb.binding.content.ElementUse(imageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'credits')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 96, 6)) + symbol = pyxb.binding.content.ElementUse( + imageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "credits")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 96, 6), + ) st_2 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_2) final_update = set() final_update.add(fac.UpdateInstruction(cc_3, False)) - symbol = pyxb.binding.content.ElementUse(imageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'source')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 97, 6)) + symbol = pyxb.binding.content.ElementUse( + imageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "source")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 97, 6), + ) st_3 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_3) final_update = set() final_update.add(fac.UpdateInstruction(cc_4, False)) - symbol = pyxb.binding.content.ElementUse(imageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'sourceName')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 98, 6)) + symbol = pyxb.binding.content.ElementUse( + imageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "sourceName")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 98, 6), + ) st_4 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_4) final_update = set() final_update.add(fac.UpdateInstruction(cc_5, False)) - symbol = pyxb.binding.content.ElementUse(imageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'license')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 99, 6)) + symbol = pyxb.binding.content.ElementUse( + imageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "license")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 99, 6), + ) st_5 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_5) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_0, False)])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_1, True) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_1, False) ])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_1, True)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_1, False)])) st_1._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_2, True) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_2, False) ])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_2, True)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_2, False)])) st_2._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_3, True) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_3, False) ])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_3, True)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_3, False)])) st_3._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_4, True) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_4, False) ])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_4, True)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_4, False)])) st_4._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_5, True) ])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_5, True)])) st_5._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -imageType._Automaton = _BuildAutomaton_7() +imageType._Automaton = _BuildAutomaton_7() -linkType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'text'), pyxb.binding.datatypes.string, scope=linkType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 116, 6))) +linkType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "text"), + pyxb.binding.datatypes.string, + scope=linkType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 116, 6), + ) +) -def _BuildAutomaton_8 (): + +def _BuildAutomaton_8(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_8 del _BuildAutomaton_8 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 116, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 116, 6), + ) counters.add(cc_0) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(linkType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'text')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013', 116, 6)) + symbol = pyxb.binding.content.ElementUse( + linkType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "text")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:2013", 116, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) st_0._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -linkType._Automaton = _BuildAutomaton_8() + +linkType._Automaton = _BuildAutomaton_8() diff --git a/src/npoapi/xml/pageupdate.py b/src/npoapi/xml/pageupdate.py index 5d4b221..7c2e599 100644 --- a/src/npoapi/xml/pageupdate.py +++ b/src/npoapi/xml/pageupdate.py @@ -5,19 +5,22 @@ # Namespace urn:vpro:pages:update:2013 from __future__ import unicode_literals + +import io +import sys + import pyxb import pyxb.binding import pyxb.binding.saxer -import io -import pyxb.utils.utility import pyxb.utils.domutils -import sys import pyxb.utils.six as _six +import pyxb.utils.utility + # Unique identifier for bindings created at the same time -_GenerationUID = pyxb.utils.utility.UniqueIdentifier('urn:uuid:fa5187de-5153-11ed-9cc8-3e22fb45f01a') +_GenerationUID = pyxb.utils.utility.UniqueIdentifier("urn:uuid:fa5187de-5153-11ed-9cc8-3e22fb45f01a") # Version of PyXB used to generate the bindings -_PyXBVersion = '1.2.6' +_PyXBVersion = "1.2.6" # Generated bindings are not compatible across PyXB versions if pyxb.__version__ != _PyXBVersion: raise pyxb.PyXBVersionError(_PyXBVersion) @@ -28,14 +31,16 @@ # Import bindings for namespaces imported into schema import pyxb.binding.datatypes + import npoapi.xml.page as _ImportedBinding_npoapi_xml_page import npoapi.xml.shared as _ImportedBinding_npoapi_xml_shared # NOTE: All namespace declarations are reserved within the binding -Namespace = pyxb.namespace.NamespaceForURI('urn:vpro:pages:update:2013', create_if_missing=True) -Namespace.configureCategories(['typeBinding', 'elementBinding']) +Namespace = pyxb.namespace.NamespaceForURI("urn:vpro:pages:update:2013", create_if_missing=True) +Namespace.configureCategories(["typeBinding", "elementBinding"]) -def CreateFromDocument (xml_text, default_namespace=None, location_base=None): + +def CreateFromDocument(xml_text, default_namespace=None, location_base=None): """Parse the given XML and use the document element to create a Python instance. @@ -68,7 +73,8 @@ def CreateFromDocument (xml_text, default_namespace=None, location_base=None): instance = handler.rootObject() return instance -def CreateFromDOM (node, default_namespace=None): + +def CreateFromDOM(node, default_namespace=None): """Create a Python instance from the given DOM node. The node tag must correspond to an element declaration in this module. @@ -79,1346 +85,2114 @@ def CreateFromDOM (node, default_namespace=None): # Complex type [anonymous] with content type ELEMENT_ONLY -class CTD_ANON (pyxb.binding.basis.complexTypeDefinition): +class CTD_ANON(pyxb.binding.basis.complexTypeDefinition): """Complex type [anonymous] with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False _ExpandedName = None - _XSDLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 22, 8) + _XSDLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 22, 8 + ) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:pages:update:2013}paragraph uses Python identifier paragraph - __paragraph = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'paragraph'), 'paragraph', '__urnvpropagesupdate2013_CTD_ANON_urnvpropagesupdate2013paragraph', True, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 24, 12), ) + __paragraph = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "paragraph"), + "paragraph", + "__urnvpropagesupdate2013_CTD_ANON_urnvpropagesupdate2013paragraph", + True, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 24, 12), + ) - paragraph = property(__paragraph.value, __paragraph.set, None, None) - _ElementMap.update({ - __paragraph.name() : __paragraph - }) - _AttributeMap.update({ - - }) + _ElementMap.update({__paragraph.name(): __paragraph}) + _AttributeMap.update({}) + + _module_typeBindings.CTD_ANON = CTD_ANON # Complex type [anonymous] with content type ELEMENT_ONLY -class CTD_ANON_ (pyxb.binding.basis.complexTypeDefinition): +class CTD_ANON_(pyxb.binding.basis.complexTypeDefinition): """Complex type [anonymous] with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False _ExpandedName = None - _XSDLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 32, 8) + _XSDLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 32, 8 + ) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:pages:update:2013}embed uses Python identifier embed - __embed = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'embed'), 'embed', '__urnvpropagesupdate2013_CTD_ANON__urnvpropagesupdate2013embed', True, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 34, 12), ) + __embed = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "embed"), + "embed", + "__urnvpropagesupdate2013_CTD_ANON__urnvpropagesupdate2013embed", + True, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 34, 12), + ) - embed = property(__embed.value, __embed.set, None, None) - _ElementMap.update({ - __embed.name() : __embed - }) - _AttributeMap.update({ - - }) + _ElementMap.update({__embed.name(): __embed}) + _AttributeMap.update({}) + + _module_typeBindings.CTD_ANON_ = CTD_ANON_ # Complex type {urn:vpro:pages:update:2013}portalUpdateType with content type ELEMENT_ONLY -class portalUpdateType (pyxb.binding.basis.complexTypeDefinition): +class portalUpdateType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:pages:update:2013}portalUpdateType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'portalUpdateType') - _XSDLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 51, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "portalUpdateType") + _XSDLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 51, 2 + ) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:pages:update:2013}section uses Python identifier section - __section = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'section'), 'section', '__urnvpropagesupdate2013_portalUpdateType_urnvpropagesupdate2013section', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 53, 6), ) + __section = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "section"), + "section", + "__urnvpropagesupdate2013_portalUpdateType_urnvpropagesupdate2013section", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 53, 6), + ) - section = property(__section.value, __section.set, None, None) - # Attribute id uses Python identifier id - __id = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'id'), 'id', '__urnvpropagesupdate2013_portalUpdateType_id', pyxb.binding.datatypes.string, required=True) - __id._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 55, 4) - __id._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 55, 4) - + __id = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "id"), + "id", + "__urnvpropagesupdate2013_portalUpdateType_id", + pyxb.binding.datatypes.string, + required=True, + ) + __id._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 55, 4 + ) + __id._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 55, 4 + ) + id = property(__id.value, __id.set, None, None) - # Attribute url uses Python identifier url - __url = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'url'), 'url', '__urnvpropagesupdate2013_portalUpdateType_url', pyxb.binding.datatypes.string, required=True) - __url._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 56, 4) - __url._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 56, 4) - + __url = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "url"), + "url", + "__urnvpropagesupdate2013_portalUpdateType_url", + pyxb.binding.datatypes.string, + required=True, + ) + __url._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 56, 4 + ) + __url._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 56, 4 + ) + url = property(__url.value, __url.set, None, None) - _ElementMap.update({ - __section.name() : __section - }) - _AttributeMap.update({ - __id.name() : __id, - __url.name() : __url - }) + _ElementMap.update({__section.name(): __section}) + _AttributeMap.update({__id.name(): __id, __url.name(): __url}) + + _module_typeBindings.portalUpdateType = portalUpdateType -Namespace.addCategoryObject('typeBinding', 'portalUpdateType', portalUpdateType) +Namespace.addCategoryObject("typeBinding", "portalUpdateType", portalUpdateType) # Complex type {urn:vpro:pages:update:2013}paragraphUpdateType with content type ELEMENT_ONLY -class paragraphUpdateType (pyxb.binding.basis.complexTypeDefinition): +class paragraphUpdateType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:pages:update:2013}paragraphUpdateType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'paragraphUpdateType') - _XSDLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 59, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "paragraphUpdateType") + _XSDLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 59, 2 + ) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:pages:update:2013}image uses Python identifier image - __image = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'image'), 'image', '__urnvpropagesupdate2013_paragraphUpdateType_urnvpropagesupdate2013image', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 7, 2), ) + __image = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "image"), + "image", + "__urnvpropagesupdate2013_paragraphUpdateType_urnvpropagesupdate2013image", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 7, 2), + ) - image = property(__image.value, __image.set, None, None) - # Element {urn:vpro:pages:update:2013}title uses Python identifier title - __title = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'title'), 'title', '__urnvpropagesupdate2013_paragraphUpdateType_urnvpropagesupdate2013title', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 61, 6), ) + __title = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "title"), + "title", + "__urnvpropagesupdate2013_paragraphUpdateType_urnvpropagesupdate2013title", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 61, 6), + ) - title = property(__title.value, __title.set, None, None) - # Element {urn:vpro:pages:update:2013}body uses Python identifier body - __body = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'body'), 'body', '__urnvpropagesupdate2013_paragraphUpdateType_urnvpropagesupdate2013body', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 62, 6), ) + __body = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "body"), + "body", + "__urnvpropagesupdate2013_paragraphUpdateType_urnvpropagesupdate2013body", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 62, 6), + ) - body = property(__body.value, __body.set, None, None) - _ElementMap.update({ - __image.name() : __image, - __title.name() : __title, - __body.name() : __body - }) - _AttributeMap.update({ - - }) + _ElementMap.update({__image.name(): __image, __title.name(): __title, __body.name(): __body}) + _AttributeMap.update({}) + + _module_typeBindings.paragraphUpdateType = paragraphUpdateType -Namespace.addCategoryObject('typeBinding', 'paragraphUpdateType', paragraphUpdateType) +Namespace.addCategoryObject("typeBinding", "paragraphUpdateType", paragraphUpdateType) # Complex type {urn:vpro:pages:update:2013}imageLocationType with content type ELEMENT_ONLY -class imageLocationType (pyxb.binding.basis.complexTypeDefinition): +class imageLocationType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:pages:update:2013}imageLocationType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'imageLocationType') - _XSDLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 80, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "imageLocationType") + _XSDLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 80, 2 + ) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:pages:update:2013}url uses Python identifier url - __url = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'url'), 'url', '__urnvpropagesupdate2013_imageLocationType_urnvpropagesupdate2013url', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 82, 6), ) + __url = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "url"), + "url", + "__urnvpropagesupdate2013_imageLocationType_urnvpropagesupdate2013url", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 82, 6), + ) - url = property(__url.value, __url.set, None, None) - _ElementMap.update({ - __url.name() : __url - }) - _AttributeMap.update({ - - }) + _ElementMap.update({__url.name(): __url}) + _AttributeMap.update({}) + + _module_typeBindings.imageLocationType = imageLocationType -Namespace.addCategoryObject('typeBinding', 'imageLocationType', imageLocationType) +Namespace.addCategoryObject("typeBinding", "imageLocationType", imageLocationType) # Complex type {urn:vpro:pages:update:2013}embedUpdateType with content type ELEMENT_ONLY -class embedUpdateType (pyxb.binding.basis.complexTypeDefinition): +class embedUpdateType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:pages:update:2013}embedUpdateType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'embedUpdateType') - _XSDLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 94, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "embedUpdateType") + _XSDLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 94, 2 + ) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:pages:update:2013}title uses Python identifier title - __title = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'title'), 'title', '__urnvpropagesupdate2013_embedUpdateType_urnvpropagesupdate2013title', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 96, 6), ) + __title = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "title"), + "title", + "__urnvpropagesupdate2013_embedUpdateType_urnvpropagesupdate2013title", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 96, 6), + ) - title = property(__title.value, __title.set, None, None) - # Element {urn:vpro:pages:update:2013}description uses Python identifier description - __description = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'description'), 'description', '__urnvpropagesupdate2013_embedUpdateType_urnvpropagesupdate2013description', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 97, 6), ) + __description = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "description"), + "description", + "__urnvpropagesupdate2013_embedUpdateType_urnvpropagesupdate2013description", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 97, 6), + ) - description = property(__description.value, __description.set, None, None) - # Attribute midRef uses Python identifier midRef - __midRef = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'midRef'), 'midRef', '__urnvpropagesupdate2013_embedUpdateType_midRef', pyxb.binding.datatypes.string) - __midRef._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 99, 4) - __midRef._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 99, 4) - + __midRef = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "midRef"), + "midRef", + "__urnvpropagesupdate2013_embedUpdateType_midRef", + pyxb.binding.datatypes.string, + ) + __midRef._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 99, 4 + ) + __midRef._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 99, 4 + ) + midRef = property(__midRef.value, __midRef.set, None, None) - _ElementMap.update({ - __title.name() : __title, - __description.name() : __description - }) - _AttributeMap.update({ - __midRef.name() : __midRef - }) + _ElementMap.update({__title.name(): __title, __description.name(): __description}) + _AttributeMap.update({__midRef.name(): __midRef}) + + _module_typeBindings.embedUpdateType = embedUpdateType -Namespace.addCategoryObject('typeBinding', 'embedUpdateType', embedUpdateType) +Namespace.addCategoryObject("typeBinding", "embedUpdateType", embedUpdateType) # Complex type {urn:vpro:pages:update:2013}relationUpdateType with content type SIMPLE -class relationUpdateType (pyxb.binding.basis.complexTypeDefinition): +class relationUpdateType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:pages:update:2013}relationUpdateType with content type SIMPLE""" + _TypeDefinition = pyxb.binding.datatypes.string _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_SIMPLE _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'relationUpdateType') - _XSDLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 102, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "relationUpdateType") + _XSDLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 102, 2 + ) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.string - + # Attribute type uses Python identifier type - __type = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'type'), 'type', '__urnvpropagesupdate2013_relationUpdateType_type', pyxb.binding.datatypes.string, required=True) - __type._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 105, 8) - __type._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 105, 8) - + __type = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "type"), + "type", + "__urnvpropagesupdate2013_relationUpdateType_type", + pyxb.binding.datatypes.string, + required=True, + ) + __type._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 105, 8 + ) + __type._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 105, 8 + ) + type = property(__type.value, __type.set, None, None) - # Attribute broadcaster uses Python identifier broadcaster - __broadcaster = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'broadcaster'), 'broadcaster', '__urnvpropagesupdate2013_relationUpdateType_broadcaster', pyxb.binding.datatypes.string, required=True) - __broadcaster._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 106, 8) - __broadcaster._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 106, 8) - + __broadcaster = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "broadcaster"), + "broadcaster", + "__urnvpropagesupdate2013_relationUpdateType_broadcaster", + pyxb.binding.datatypes.string, + required=True, + ) + __broadcaster._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 106, 8 + ) + __broadcaster._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 106, 8 + ) + broadcaster = property(__broadcaster.value, __broadcaster.set, None, None) - # Attribute uriRef uses Python identifier uriRef - __uriRef = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'uriRef'), 'uriRef', '__urnvpropagesupdate2013_relationUpdateType_uriRef', pyxb.binding.datatypes.string) - __uriRef._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 107, 8) - __uriRef._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 107, 8) - + __uriRef = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "uriRef"), + "uriRef", + "__urnvpropagesupdate2013_relationUpdateType_uriRef", + pyxb.binding.datatypes.string, + ) + __uriRef._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 107, 8 + ) + __uriRef._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 107, 8 + ) + uriRef = property(__uriRef.value, __uriRef.set, None, None) - _ElementMap.update({ - - }) - _AttributeMap.update({ - __type.name() : __type, - __broadcaster.name() : __broadcaster, - __uriRef.name() : __uriRef - }) + _ElementMap.update({}) + _AttributeMap.update({__type.name(): __type, __broadcaster.name(): __broadcaster, __uriRef.name(): __uriRef}) + + _module_typeBindings.relationUpdateType = relationUpdateType -Namespace.addCategoryObject('typeBinding', 'relationUpdateType', relationUpdateType) +Namespace.addCategoryObject("typeBinding", "relationUpdateType", relationUpdateType) # Complex type {urn:vpro:pages:update:2013}pageUpdateType with content type ELEMENT_ONLY -class pageUpdateType (pyxb.binding.basis.complexTypeDefinition): +class pageUpdateType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:pages:update:2013}pageUpdateType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'pageUpdateType') - _XSDLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 11, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "pageUpdateType") + _XSDLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 11, 2 + ) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:pages:update:2013}image uses Python identifier image - __image = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'image'), 'image', '__urnvpropagesupdate2013_pageUpdateType_urnvpropagesupdate2013image', True, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 7, 2), ) + __image = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "image"), + "image", + "__urnvpropagesupdate2013_pageUpdateType_urnvpropagesupdate2013image", + True, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 7, 2), + ) - image = property(__image.value, __image.set, None, None) - # Element {urn:vpro:pages:update:2013}crid uses Python identifier crid - __crid = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'crid'), 'crid', '__urnvpropagesupdate2013_pageUpdateType_urnvpropagesupdate2013crid', True, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 13, 6), ) + __crid = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "crid"), + "crid", + "__urnvpropagesupdate2013_pageUpdateType_urnvpropagesupdate2013crid", + True, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 13, 6), + ) - crid = property(__crid.value, __crid.set, None, None) - # Element {urn:vpro:pages:update:2013}alternativeUrl uses Python identifier alternativeUrl - __alternativeUrl = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'alternativeUrl'), 'alternativeUrl', '__urnvpropagesupdate2013_pageUpdateType_urnvpropagesupdate2013alternativeUrl', True, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 14, 6), ) + __alternativeUrl = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "alternativeUrl"), + "alternativeUrl", + "__urnvpropagesupdate2013_pageUpdateType_urnvpropagesupdate2013alternativeUrl", + True, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 14, 6), + ) - alternativeUrl = property(__alternativeUrl.value, __alternativeUrl.set, None, None) - # Element {urn:vpro:pages:update:2013}broadcaster uses Python identifier broadcaster - __broadcaster = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'broadcaster'), 'broadcaster', '__urnvpropagesupdate2013_pageUpdateType_urnvpropagesupdate2013broadcaster', True, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 15, 6), ) + __broadcaster = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "broadcaster"), + "broadcaster", + "__urnvpropagesupdate2013_pageUpdateType_urnvpropagesupdate2013broadcaster", + True, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 15, 6), + ) - broadcaster = property(__broadcaster.value, __broadcaster.set, None, None) - # Element {urn:vpro:pages:update:2013}portal uses Python identifier portal - __portal = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'portal'), 'portal', '__urnvpropagesupdate2013_pageUpdateType_urnvpropagesupdate2013portal', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 16, 6), ) + __portal = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "portal"), + "portal", + "__urnvpropagesupdate2013_pageUpdateType_urnvpropagesupdate2013portal", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 16, 6), + ) - portal = property(__portal.value, __portal.set, None, None) - # Element {urn:vpro:pages:update:2013}title uses Python identifier title - __title = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'title'), 'title', '__urnvpropagesupdate2013_pageUpdateType_urnvpropagesupdate2013title', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 17, 6), ) + __title = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "title"), + "title", + "__urnvpropagesupdate2013_pageUpdateType_urnvpropagesupdate2013title", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 17, 6), + ) - title = property(__title.value, __title.set, None, None) - # Element {urn:vpro:pages:update:2013}subtitle uses Python identifier subtitle - __subtitle = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'subtitle'), 'subtitle', '__urnvpropagesupdate2013_pageUpdateType_urnvpropagesupdate2013subtitle', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 18, 6), ) + __subtitle = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "subtitle"), + "subtitle", + "__urnvpropagesupdate2013_pageUpdateType_urnvpropagesupdate2013subtitle", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 18, 6), + ) - subtitle = property(__subtitle.value, __subtitle.set, None, None) - # Element {urn:vpro:pages:update:2013}keyword uses Python identifier keyword - __keyword = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'keyword'), 'keyword', '__urnvpropagesupdate2013_pageUpdateType_urnvpropagesupdate2013keyword', True, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 19, 6), ) + __keyword = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "keyword"), + "keyword", + "__urnvpropagesupdate2013_pageUpdateType_urnvpropagesupdate2013keyword", + True, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 19, 6), + ) - keyword = property(__keyword.value, __keyword.set, None, None) - # Element {urn:vpro:pages:update:2013}summary uses Python identifier summary - __summary = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'summary'), 'summary', '__urnvpropagesupdate2013_pageUpdateType_urnvpropagesupdate2013summary', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 20, 6), ) + __summary = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "summary"), + "summary", + "__urnvpropagesupdate2013_pageUpdateType_urnvpropagesupdate2013summary", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 20, 6), + ) - summary = property(__summary.value, __summary.set, None, None) - # Element {urn:vpro:pages:update:2013}paragraphs uses Python identifier paragraphs - __paragraphs = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'paragraphs'), 'paragraphs', '__urnvpropagesupdate2013_pageUpdateType_urnvpropagesupdate2013paragraphs', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 21, 6), ) + __paragraphs = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "paragraphs"), + "paragraphs", + "__urnvpropagesupdate2013_pageUpdateType_urnvpropagesupdate2013paragraphs", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 21, 6), + ) - paragraphs = property(__paragraphs.value, __paragraphs.set, None, None) - # Element {urn:vpro:pages:update:2013}tag uses Python identifier tag - __tag = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'tag'), 'tag', '__urnvpropagesupdate2013_pageUpdateType_urnvpropagesupdate2013tag', True, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 28, 6), ) + __tag = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "tag"), + "tag", + "__urnvpropagesupdate2013_pageUpdateType_urnvpropagesupdate2013tag", + True, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 28, 6), + ) - tag = property(__tag.value, __tag.set, None, None) - # Element {urn:vpro:pages:update:2013}genre uses Python identifier genre - __genre = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'genre'), 'genre', '__urnvpropagesupdate2013_pageUpdateType_urnvpropagesupdate2013genre', True, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 29, 6), ) - - - genre = property(__genre.value, __genre.set, None, 'Genres, as specified in https://publish.pages.omroep.nl/schema/classification') + __genre = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "genre"), + "genre", + "__urnvpropagesupdate2013_pageUpdateType_urnvpropagesupdate2013genre", + True, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 29, 6), + ) + + genre = property( + __genre.value, + __genre.set, + None, + "Genres, as specified in https://publish.pages.omroep.nl/schema/classification", + ) - # Element {urn:vpro:pages:update:2013}link uses Python identifier link - __link = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'link'), 'link', '__urnvpropagesupdate2013_pageUpdateType_urnvpropagesupdate2013link', True, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 30, 6), ) + __link = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "link"), + "link", + "__urnvpropagesupdate2013_pageUpdateType_urnvpropagesupdate2013link", + True, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 30, 6), + ) - link = property(__link.value, __link.set, None, None) - # Element {urn:vpro:pages:update:2013}embeds uses Python identifier embeds - __embeds = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'embeds'), 'embeds', '__urnvpropagesupdate2013_pageUpdateType_urnvpropagesupdate2013embeds', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 31, 6), ) + __embeds = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "embeds"), + "embeds", + "__urnvpropagesupdate2013_pageUpdateType_urnvpropagesupdate2013embeds", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 31, 6), + ) - embeds = property(__embeds.value, __embeds.set, None, None) - # Element {urn:vpro:pages:update:2013}statRef uses Python identifier statRef - __statRef = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'statRef'), 'statRef', '__urnvpropagesupdate2013_pageUpdateType_urnvpropagesupdate2013statRef', True, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 38, 6), ) + __statRef = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "statRef"), + "statRef", + "__urnvpropagesupdate2013_pageUpdateType_urnvpropagesupdate2013statRef", + True, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 38, 6), + ) - statRef = property(__statRef.value, __statRef.set, None, None) - # Element {urn:vpro:pages:update:2013}relation uses Python identifier relation - __relation = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'relation'), 'relation', '__urnvpropagesupdate2013_pageUpdateType_urnvpropagesupdate2013relation', True, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 40, 6), ) + __relation = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "relation"), + "relation", + "__urnvpropagesupdate2013_pageUpdateType_urnvpropagesupdate2013relation", + True, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 40, 6), + ) - relation = property(__relation.value, __relation.set, None, None) - # Attribute type uses Python identifier type - __type = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'type'), 'type', '__urnvpropagesupdate2013_pageUpdateType_type', _ImportedBinding_npoapi_xml_page.pageTypeEnum, required=True) - __type._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 42, 4) - __type._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 42, 4) - + __type = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "type"), + "type", + "__urnvpropagesupdate2013_pageUpdateType_type", + _ImportedBinding_npoapi_xml_page.pageTypeEnum, + required=True, + ) + __type._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 42, 4 + ) + __type._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 42, 4 + ) + type = property(__type.value, __type.set, None, None) - # Attribute url uses Python identifier url - __url = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'url'), 'url', '__urnvpropagesupdate2013_pageUpdateType_url', pyxb.binding.datatypes.string, required=True) - __url._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 43, 4) - __url._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 43, 4) - + __url = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "url"), + "url", + "__urnvpropagesupdate2013_pageUpdateType_url", + pyxb.binding.datatypes.string, + required=True, + ) + __url._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 43, 4 + ) + __url._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 43, 4 + ) + url = property(__url.value, __url.set, None, None) - # Attribute publishStart uses Python identifier publishStart - __publishStart = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'publishStart'), 'publishStart', '__urnvpropagesupdate2013_pageUpdateType_publishStart', pyxb.binding.datatypes.dateTime) - __publishStart._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 44, 4) - __publishStart._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 44, 4) - + __publishStart = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "publishStart"), + "publishStart", + "__urnvpropagesupdate2013_pageUpdateType_publishStart", + pyxb.binding.datatypes.dateTime, + ) + __publishStart._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 44, 4 + ) + __publishStart._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 44, 4 + ) + publishStart = property(__publishStart.value, __publishStart.set, None, None) - # Attribute lastPublished uses Python identifier lastPublished - __lastPublished = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'lastPublished'), 'lastPublished', '__urnvpropagesupdate2013_pageUpdateType_lastPublished', pyxb.binding.datatypes.dateTime) - __lastPublished._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 45, 4) - __lastPublished._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 45, 4) - + __lastPublished = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "lastPublished"), + "lastPublished", + "__urnvpropagesupdate2013_pageUpdateType_lastPublished", + pyxb.binding.datatypes.dateTime, + ) + __lastPublished._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 45, 4 + ) + __lastPublished._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 45, 4 + ) + lastPublished = property(__lastPublished.value, __lastPublished.set, None, None) - # Attribute creationDate uses Python identifier creationDate - __creationDate = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'creationDate'), 'creationDate', '__urnvpropagesupdate2013_pageUpdateType_creationDate', pyxb.binding.datatypes.dateTime) - __creationDate._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 46, 4) - __creationDate._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 46, 4) - + __creationDate = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "creationDate"), + "creationDate", + "__urnvpropagesupdate2013_pageUpdateType_creationDate", + pyxb.binding.datatypes.dateTime, + ) + __creationDate._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 46, 4 + ) + __creationDate._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 46, 4 + ) + creationDate = property(__creationDate.value, __creationDate.set, None, None) - # Attribute lastModified uses Python identifier lastModified - __lastModified = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'lastModified'), 'lastModified', '__urnvpropagesupdate2013_pageUpdateType_lastModified', pyxb.binding.datatypes.dateTime) - __lastModified._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 47, 4) - __lastModified._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 47, 4) - + __lastModified = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "lastModified"), + "lastModified", + "__urnvpropagesupdate2013_pageUpdateType_lastModified", + pyxb.binding.datatypes.dateTime, + ) + __lastModified._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 47, 4 + ) + __lastModified._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 47, 4 + ) + lastModified = property(__lastModified.value, __lastModified.set, None, None) - # Attribute workflow uses Python identifier workflow - __workflow = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'workflow'), 'workflow', '__urnvpropagesupdate2013_pageUpdateType_workflow', _ImportedBinding_npoapi_xml_page.pageWorkflow) - __workflow._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 48, 4) - __workflow._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 48, 4) - + __workflow = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "workflow"), + "workflow", + "__urnvpropagesupdate2013_pageUpdateType_workflow", + _ImportedBinding_npoapi_xml_page.pageWorkflow, + ) + __workflow._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 48, 4 + ) + __workflow._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 48, 4 + ) + workflow = property(__workflow.value, __workflow.set, None, None) - _ElementMap.update({ - __image.name() : __image, - __crid.name() : __crid, - __alternativeUrl.name() : __alternativeUrl, - __broadcaster.name() : __broadcaster, - __portal.name() : __portal, - __title.name() : __title, - __subtitle.name() : __subtitle, - __keyword.name() : __keyword, - __summary.name() : __summary, - __paragraphs.name() : __paragraphs, - __tag.name() : __tag, - __genre.name() : __genre, - __link.name() : __link, - __embeds.name() : __embeds, - __statRef.name() : __statRef, - __relation.name() : __relation - }) - _AttributeMap.update({ - __type.name() : __type, - __url.name() : __url, - __publishStart.name() : __publishStart, - __lastPublished.name() : __lastPublished, - __creationDate.name() : __creationDate, - __lastModified.name() : __lastModified, - __workflow.name() : __workflow - }) + _ElementMap.update( + { + __image.name(): __image, + __crid.name(): __crid, + __alternativeUrl.name(): __alternativeUrl, + __broadcaster.name(): __broadcaster, + __portal.name(): __portal, + __title.name(): __title, + __subtitle.name(): __subtitle, + __keyword.name(): __keyword, + __summary.name(): __summary, + __paragraphs.name(): __paragraphs, + __tag.name(): __tag, + __genre.name(): __genre, + __link.name(): __link, + __embeds.name(): __embeds, + __statRef.name(): __statRef, + __relation.name(): __relation, + } + ) + _AttributeMap.update( + { + __type.name(): __type, + __url.name(): __url, + __publishStart.name(): __publishStart, + __lastPublished.name(): __lastPublished, + __creationDate.name(): __creationDate, + __lastModified.name(): __lastModified, + __workflow.name(): __workflow, + } + ) + + _module_typeBindings.pageUpdateType = pageUpdateType -Namespace.addCategoryObject('typeBinding', 'pageUpdateType', pageUpdateType) +Namespace.addCategoryObject("typeBinding", "pageUpdateType", pageUpdateType) # Complex type {urn:vpro:pages:update:2013}imageUpdateType with content type ELEMENT_ONLY -class imageUpdateType (pyxb.binding.basis.complexTypeDefinition): +class imageUpdateType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:pages:update:2013}imageUpdateType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'imageUpdateType') - _XSDLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 67, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "imageUpdateType") + _XSDLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 67, 2 + ) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:pages:update:2013}title uses Python identifier title - __title = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'title'), 'title', '__urnvpropagesupdate2013_imageUpdateType_urnvpropagesupdate2013title', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 69, 6), ) + __title = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "title"), + "title", + "__urnvpropagesupdate2013_imageUpdateType_urnvpropagesupdate2013title", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 69, 6), + ) - title = property(__title.value, __title.set, None, None) - # Element {urn:vpro:pages:update:2013}description uses Python identifier description - __description = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'description'), 'description', '__urnvpropagesupdate2013_imageUpdateType_urnvpropagesupdate2013description', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 70, 6), ) + __description = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "description"), + "description", + "__urnvpropagesupdate2013_imageUpdateType_urnvpropagesupdate2013description", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 70, 6), + ) - description = property(__description.value, __description.set, None, None) - # Element {urn:vpro:pages:update:2013}source uses Python identifier source - __source = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'source'), 'source', '__urnvpropagesupdate2013_imageUpdateType_urnvpropagesupdate2013source', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 71, 6), ) + __source = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "source"), + "source", + "__urnvpropagesupdate2013_imageUpdateType_urnvpropagesupdate2013source", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 71, 6), + ) - source = property(__source.value, __source.set, None, None) - # Element {urn:vpro:pages:update:2013}sourceName uses Python identifier sourceName - __sourceName = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'sourceName'), 'sourceName', '__urnvpropagesupdate2013_imageUpdateType_urnvpropagesupdate2013sourceName', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 72, 6), ) + __sourceName = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "sourceName"), + "sourceName", + "__urnvpropagesupdate2013_imageUpdateType_urnvpropagesupdate2013sourceName", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 72, 6), + ) - sourceName = property(__sourceName.value, __sourceName.set, None, None) - # Element {urn:vpro:pages:update:2013}license uses Python identifier license - __license = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'license'), 'license', '__urnvpropagesupdate2013_imageUpdateType_urnvpropagesupdate2013license', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 73, 6), ) + __license = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "license"), + "license", + "__urnvpropagesupdate2013_imageUpdateType_urnvpropagesupdate2013license", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 73, 6), + ) - license = property(__license.value, __license.set, None, None) - # Element {urn:vpro:pages:update:2013}credits uses Python identifier credits - __credits = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'credits'), 'credits', '__urnvpropagesupdate2013_imageUpdateType_urnvpropagesupdate2013credits', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 74, 6), ) + __credits = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "credits"), + "credits", + "__urnvpropagesupdate2013_imageUpdateType_urnvpropagesupdate2013credits", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 74, 6), + ) - credits = property(__credits.value, __credits.set, None, None) - # Element {urn:vpro:pages:update:2013}imageLocation uses Python identifier imageLocation - __imageLocation = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'imageLocation'), 'imageLocation', '__urnvpropagesupdate2013_imageUpdateType_urnvpropagesupdate2013imageLocation', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 75, 6), ) + __imageLocation = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "imageLocation"), + "imageLocation", + "__urnvpropagesupdate2013_imageUpdateType_urnvpropagesupdate2013imageLocation", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 75, 6), + ) - imageLocation = property(__imageLocation.value, __imageLocation.set, None, None) - # Attribute type uses Python identifier type - __type = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'type'), 'type', '__urnvpropagesupdate2013_imageUpdateType_type', _ImportedBinding_npoapi_xml_shared.imageTypeEnum, required=True) - __type._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 77, 4) - __type._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 77, 4) - + __type = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "type"), + "type", + "__urnvpropagesupdate2013_imageUpdateType_type", + _ImportedBinding_npoapi_xml_shared.imageTypeEnum, + required=True, + ) + __type._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 77, 4 + ) + __type._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 77, 4 + ) + type = property(__type.value, __type.set, None, None) - _ElementMap.update({ - __title.name() : __title, - __description.name() : __description, - __source.name() : __source, - __sourceName.name() : __sourceName, - __license.name() : __license, - __credits.name() : __credits, - __imageLocation.name() : __imageLocation - }) - _AttributeMap.update({ - __type.name() : __type - }) + _ElementMap.update( + { + __title.name(): __title, + __description.name(): __description, + __source.name(): __source, + __sourceName.name(): __sourceName, + __license.name(): __license, + __credits.name(): __credits, + __imageLocation.name(): __imageLocation, + } + ) + _AttributeMap.update({__type.name(): __type}) + + _module_typeBindings.imageUpdateType = imageUpdateType -Namespace.addCategoryObject('typeBinding', 'imageUpdateType', imageUpdateType) +Namespace.addCategoryObject("typeBinding", "imageUpdateType", imageUpdateType) # Complex type {urn:vpro:pages:update:2013}linkUpdateType with content type ELEMENT_ONLY -class linkUpdateType (pyxb.binding.basis.complexTypeDefinition): +class linkUpdateType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:pages:update:2013}linkUpdateType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'linkUpdateType') - _XSDLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 86, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "linkUpdateType") + _XSDLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 86, 2 + ) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:pages:update:2013}text uses Python identifier text - __text = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'text'), 'text', '__urnvpropagesupdate2013_linkUpdateType_urnvpropagesupdate2013text', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 88, 6), ) + __text = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "text"), + "text", + "__urnvpropagesupdate2013_linkUpdateType_urnvpropagesupdate2013text", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 88, 6), + ) - text = property(__text.value, __text.set, None, None) - # Attribute pageRef uses Python identifier pageRef - __pageRef = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'pageRef'), 'pageRef', '__urnvpropagesupdate2013_linkUpdateType_pageRef', pyxb.binding.datatypes.string) - __pageRef._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 90, 4) - __pageRef._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 90, 4) - + __pageRef = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "pageRef"), + "pageRef", + "__urnvpropagesupdate2013_linkUpdateType_pageRef", + pyxb.binding.datatypes.string, + ) + __pageRef._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 90, 4 + ) + __pageRef._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 90, 4 + ) + pageRef = property(__pageRef.value, __pageRef.set, None, None) - # Attribute type uses Python identifier type - __type = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'type'), 'type', '__urnvpropagesupdate2013_linkUpdateType_type', _ImportedBinding_npoapi_xml_page.linkTypeEnum) - __type._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 91, 4) - __type._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 91, 4) - + __type = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "type"), + "type", + "__urnvpropagesupdate2013_linkUpdateType_type", + _ImportedBinding_npoapi_xml_page.linkTypeEnum, + ) + __type._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 91, 4 + ) + __type._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 91, 4 + ) + type = property(__type.value, __type.set, None, None) - _ElementMap.update({ - __text.name() : __text - }) - _AttributeMap.update({ - __pageRef.name() : __pageRef, - __type.name() : __type - }) + _ElementMap.update({__text.name(): __text}) + _AttributeMap.update({__pageRef.name(): __pageRef, __type.name(): __type}) + + _module_typeBindings.linkUpdateType = linkUpdateType -Namespace.addCategoryObject('typeBinding', 'linkUpdateType', linkUpdateType) +Namespace.addCategoryObject("typeBinding", "linkUpdateType", linkUpdateType) -image = pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'image'), imageUpdateType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 7, 2)) -Namespace.addCategoryObject('elementBinding', image.name().localName(), image) +image = pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "image"), + imageUpdateType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 7, 2), +) +Namespace.addCategoryObject("elementBinding", image.name().localName(), image) -page = pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'page'), pageUpdateType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 9, 2)) -Namespace.addCategoryObject('elementBinding', page.name().localName(), page) +page = pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "page"), + pageUpdateType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 9, 2), +) +Namespace.addCategoryObject("elementBinding", page.name().localName(), page) +CTD_ANON._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "paragraph"), + paragraphUpdateType, + scope=CTD_ANON, + location=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 24, 12 + ), + ) +) -CTD_ANON._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'paragraph'), paragraphUpdateType, scope=CTD_ANON, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 24, 12))) -def _BuildAutomaton (): +def _BuildAutomaton(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton del _BuildAutomaton import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 24, 12)) + cc_0 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 24, 12 + ), + ) counters.add(cc_0) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(CTD_ANON._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'paragraph')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 24, 12)) + symbol = pyxb.binding.content.ElementUse( + CTD_ANON._UseForTag(pyxb.namespace.ExpandedName(Namespace, "paragraph")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 24, 12), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) st_0._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -CTD_ANON._Automaton = _BuildAutomaton() +CTD_ANON._Automaton = _BuildAutomaton() + +CTD_ANON_._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "embed"), + embedUpdateType, + scope=CTD_ANON_, + location=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 34, 12 + ), + ) +) -CTD_ANON_._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'embed'), embedUpdateType, scope=CTD_ANON_, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 34, 12))) -def _BuildAutomaton_ (): +def _BuildAutomaton_(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_ del _BuildAutomaton_ import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 34, 12)) + cc_0 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 34, 12 + ), + ) counters.add(cc_0) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(CTD_ANON_._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'embed')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 34, 12)) + symbol = pyxb.binding.content.ElementUse( + CTD_ANON_._UseForTag(pyxb.namespace.ExpandedName(Namespace, "embed")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 34, 12), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) st_0._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -CTD_ANON_._Automaton = _BuildAutomaton_() +CTD_ANON_._Automaton = _BuildAutomaton_() + +portalUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "section"), + _ImportedBinding_npoapi_xml_page.sectionType, + scope=portalUpdateType, + location=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 53, 6 + ), + ) +) -portalUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'section'), _ImportedBinding_npoapi_xml_page.sectionType, scope=portalUpdateType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 53, 6))) -def _BuildAutomaton_2 (): +def _BuildAutomaton_2(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_2 del _BuildAutomaton_2 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 53, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 53, 6 + ), + ) counters.add(cc_0) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(portalUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'section')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 53, 6)) + symbol = pyxb.binding.content.ElementUse( + portalUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "section")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 53, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) st_0._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -portalUpdateType._Automaton = _BuildAutomaton_2() - - - -paragraphUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'image'), imageUpdateType, scope=paragraphUpdateType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 7, 2))) -paragraphUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'title'), pyxb.binding.datatypes.string, scope=paragraphUpdateType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 61, 6))) +portalUpdateType._Automaton = _BuildAutomaton_2() -paragraphUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'body'), pyxb.binding.datatypes.string, scope=paragraphUpdateType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 62, 6))) -def _BuildAutomaton_3 (): +paragraphUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "image"), + imageUpdateType, + scope=paragraphUpdateType, + location=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 7, 2 + ), + ) +) + +paragraphUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "title"), + pyxb.binding.datatypes.string, + scope=paragraphUpdateType, + location=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 61, 6 + ), + ) +) + +paragraphUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "body"), + pyxb.binding.datatypes.string, + scope=paragraphUpdateType, + location=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 62, 6 + ), + ) +) + + +def _BuildAutomaton_3(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_3 del _BuildAutomaton_3 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 61, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 61, 6 + ), + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 62, 6)) + cc_1 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 62, 6 + ), + ) counters.add(cc_1) - cc_2 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 63, 6)) + cc_2 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 63, 6 + ), + ) counters.add(cc_2) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(paragraphUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'title')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 61, 6)) + symbol = pyxb.binding.content.ElementUse( + paragraphUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "title")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 61, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() final_update.add(fac.UpdateInstruction(cc_1, False)) - symbol = pyxb.binding.content.ElementUse(paragraphUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'body')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 62, 6)) + symbol = pyxb.binding.content.ElementUse( + paragraphUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "body")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 62, 6), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) final_update = set() final_update.add(fac.UpdateInstruction(cc_2, False)) - symbol = pyxb.binding.content.ElementUse(paragraphUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'image')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 63, 6)) + symbol = pyxb.binding.content.ElementUse( + paragraphUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "image")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 63, 6), + ) st_2 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_2) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_0, False)])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_1, True) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_1, False) ])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_1, True)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_1, False)])) st_1._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_2, True) ])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_2, True)])) st_2._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -paragraphUpdateType._Automaton = _BuildAutomaton_3() +paragraphUpdateType._Automaton = _BuildAutomaton_3() + +imageLocationType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "url"), + pyxb.binding.datatypes.string, + scope=imageLocationType, + location=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 82, 6 + ), + ) +) -imageLocationType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'url'), pyxb.binding.datatypes.string, scope=imageLocationType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 82, 6))) -def _BuildAutomaton_4 (): +def _BuildAutomaton_4(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_4 del _BuildAutomaton_4 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 82, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 82, 6 + ), + ) counters.add(cc_0) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(imageLocationType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'url')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 82, 6)) + symbol = pyxb.binding.content.ElementUse( + imageLocationType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "url")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 82, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) st_0._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -imageLocationType._Automaton = _BuildAutomaton_4() - +imageLocationType._Automaton = _BuildAutomaton_4() -embedUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'title'), pyxb.binding.datatypes.string, scope=embedUpdateType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 96, 6))) - -embedUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'description'), pyxb.binding.datatypes.string, scope=embedUpdateType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 97, 6))) -def _BuildAutomaton_5 (): +embedUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "title"), + pyxb.binding.datatypes.string, + scope=embedUpdateType, + location=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 96, 6 + ), + ) +) + +embedUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "description"), + pyxb.binding.datatypes.string, + scope=embedUpdateType, + location=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 97, 6 + ), + ) +) + + +def _BuildAutomaton_5(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_5 del _BuildAutomaton_5 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 96, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 96, 6 + ), + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 97, 6)) + cc_1 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 97, 6 + ), + ) counters.add(cc_1) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(embedUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'title')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 96, 6)) + symbol = pyxb.binding.content.ElementUse( + embedUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "title")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 96, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() final_update.add(fac.UpdateInstruction(cc_1, False)) - symbol = pyxb.binding.content.ElementUse(embedUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'description')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 97, 6)) + symbol = pyxb.binding.content.ElementUse( + embedUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "description")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 97, 6), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, False)])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_1, True) ])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_1, True)])) st_1._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -embedUpdateType._Automaton = _BuildAutomaton_5() - - -pageUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'image'), imageUpdateType, scope=pageUpdateType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 7, 2))) - -pageUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'crid'), pyxb.binding.datatypes.string, scope=pageUpdateType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 13, 6))) - -pageUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'alternativeUrl'), pyxb.binding.datatypes.string, scope=pageUpdateType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 14, 6))) - -pageUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'broadcaster'), pyxb.binding.datatypes.string, scope=pageUpdateType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 15, 6))) - -pageUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'portal'), portalUpdateType, scope=pageUpdateType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 16, 6))) - -pageUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'title'), pyxb.binding.datatypes.string, scope=pageUpdateType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 17, 6))) - -pageUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'subtitle'), pyxb.binding.datatypes.string, scope=pageUpdateType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 18, 6))) - -pageUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'keyword'), pyxb.binding.datatypes.string, scope=pageUpdateType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 19, 6))) - -pageUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'summary'), pyxb.binding.datatypes.string, scope=pageUpdateType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 20, 6))) - -pageUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'paragraphs'), CTD_ANON, scope=pageUpdateType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 21, 6))) - -pageUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'tag'), pyxb.binding.datatypes.string, scope=pageUpdateType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 28, 6))) - -pageUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'genre'), pyxb.binding.datatypes.string, scope=pageUpdateType, documentation='Genres, as specified in https://publish.pages.omroep.nl/schema/classification', location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 29, 6))) - -pageUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'link'), linkUpdateType, scope=pageUpdateType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 30, 6))) - -pageUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'embeds'), CTD_ANON_, scope=pageUpdateType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 31, 6))) - -pageUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'statRef'), pyxb.binding.datatypes.string, scope=pageUpdateType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 38, 6))) +embedUpdateType._Automaton = _BuildAutomaton_5() -pageUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'relation'), relationUpdateType, scope=pageUpdateType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 40, 6))) -def _BuildAutomaton_6 (): +pageUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "image"), + imageUpdateType, + scope=pageUpdateType, + location=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 7, 2 + ), + ) +) + +pageUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "crid"), + pyxb.binding.datatypes.string, + scope=pageUpdateType, + location=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 13, 6 + ), + ) +) + +pageUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "alternativeUrl"), + pyxb.binding.datatypes.string, + scope=pageUpdateType, + location=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 14, 6 + ), + ) +) + +pageUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "broadcaster"), + pyxb.binding.datatypes.string, + scope=pageUpdateType, + location=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 15, 6 + ), + ) +) + +pageUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "portal"), + portalUpdateType, + scope=pageUpdateType, + location=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 16, 6 + ), + ) +) + +pageUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "title"), + pyxb.binding.datatypes.string, + scope=pageUpdateType, + location=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 17, 6 + ), + ) +) + +pageUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "subtitle"), + pyxb.binding.datatypes.string, + scope=pageUpdateType, + location=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 18, 6 + ), + ) +) + +pageUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "keyword"), + pyxb.binding.datatypes.string, + scope=pageUpdateType, + location=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 19, 6 + ), + ) +) + +pageUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "summary"), + pyxb.binding.datatypes.string, + scope=pageUpdateType, + location=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 20, 6 + ), + ) +) + +pageUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "paragraphs"), + CTD_ANON, + scope=pageUpdateType, + location=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 21, 6 + ), + ) +) + +pageUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "tag"), + pyxb.binding.datatypes.string, + scope=pageUpdateType, + location=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 28, 6 + ), + ) +) + +pageUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "genre"), + pyxb.binding.datatypes.string, + scope=pageUpdateType, + documentation="Genres, as specified in https://publish.pages.omroep.nl/schema/classification", + location=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 29, 6 + ), + ) +) + +pageUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "link"), + linkUpdateType, + scope=pageUpdateType, + location=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 30, 6 + ), + ) +) + +pageUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "embeds"), + CTD_ANON_, + scope=pageUpdateType, + location=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 31, 6 + ), + ) +) + +pageUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "statRef"), + pyxb.binding.datatypes.string, + scope=pageUpdateType, + location=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 38, 6 + ), + ) +) + +pageUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "relation"), + relationUpdateType, + scope=pageUpdateType, + location=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 40, 6 + ), + ) +) + + +def _BuildAutomaton_6(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_6 del _BuildAutomaton_6 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 13, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 13, 6 + ), + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 14, 6)) + cc_1 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 14, 6 + ), + ) counters.add(cc_1) - cc_2 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 16, 6)) + cc_2 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 16, 6 + ), + ) counters.add(cc_2) - cc_3 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 18, 6)) + cc_3 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 18, 6 + ), + ) counters.add(cc_3) - cc_4 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 19, 6)) + cc_4 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 19, 6 + ), + ) counters.add(cc_4) - cc_5 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 20, 6)) + cc_5 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 20, 6 + ), + ) counters.add(cc_5) - cc_6 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 21, 6)) + cc_6 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 21, 6 + ), + ) counters.add(cc_6) - cc_7 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 28, 6)) + cc_7 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 28, 6 + ), + ) counters.add(cc_7) - cc_8 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 29, 6)) + cc_8 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 29, 6 + ), + ) counters.add(cc_8) - cc_9 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 30, 6)) + cc_9 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 30, 6 + ), + ) counters.add(cc_9) - cc_10 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 31, 6)) + cc_10 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 31, 6 + ), + ) counters.add(cc_10) - cc_11 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 38, 6)) + cc_11 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 38, 6 + ), + ) counters.add(cc_11) - cc_12 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 39, 6)) + cc_12 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 39, 6 + ), + ) counters.add(cc_12) - cc_13 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 40, 6)) + cc_13 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 40, 6 + ), + ) counters.add(cc_13) states = [] final_update = None - symbol = pyxb.binding.content.ElementUse(pageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'crid')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 13, 6)) + symbol = pyxb.binding.content.ElementUse( + pageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "crid")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 13, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = None - symbol = pyxb.binding.content.ElementUse(pageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'alternativeUrl')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 14, 6)) + symbol = pyxb.binding.content.ElementUse( + pageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "alternativeUrl")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 14, 6), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) final_update = None - symbol = pyxb.binding.content.ElementUse(pageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'broadcaster')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 15, 6)) + symbol = pyxb.binding.content.ElementUse( + pageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "broadcaster")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 15, 6), + ) st_2 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_2) final_update = None - symbol = pyxb.binding.content.ElementUse(pageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'portal')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 16, 6)) + symbol = pyxb.binding.content.ElementUse( + pageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "portal")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 16, 6), + ) st_3 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_3) final_update = set() - symbol = pyxb.binding.content.ElementUse(pageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'title')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 17, 6)) + symbol = pyxb.binding.content.ElementUse( + pageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "title")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 17, 6), + ) st_4 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_4) final_update = set() final_update.add(fac.UpdateInstruction(cc_3, False)) - symbol = pyxb.binding.content.ElementUse(pageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'subtitle')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 18, 6)) + symbol = pyxb.binding.content.ElementUse( + pageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "subtitle")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 18, 6), + ) st_5 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_5) final_update = set() final_update.add(fac.UpdateInstruction(cc_4, False)) - symbol = pyxb.binding.content.ElementUse(pageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'keyword')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 19, 6)) + symbol = pyxb.binding.content.ElementUse( + pageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "keyword")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 19, 6), + ) st_6 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_6) final_update = set() final_update.add(fac.UpdateInstruction(cc_5, False)) - symbol = pyxb.binding.content.ElementUse(pageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'summary')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 20, 6)) + symbol = pyxb.binding.content.ElementUse( + pageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "summary")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 20, 6), + ) st_7 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_7) final_update = set() final_update.add(fac.UpdateInstruction(cc_6, False)) - symbol = pyxb.binding.content.ElementUse(pageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'paragraphs')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 21, 6)) + symbol = pyxb.binding.content.ElementUse( + pageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "paragraphs")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 21, 6), + ) st_8 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_8) final_update = set() final_update.add(fac.UpdateInstruction(cc_7, False)) - symbol = pyxb.binding.content.ElementUse(pageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'tag')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 28, 6)) + symbol = pyxb.binding.content.ElementUse( + pageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "tag")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 28, 6), + ) st_9 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_9) final_update = set() final_update.add(fac.UpdateInstruction(cc_8, False)) - symbol = pyxb.binding.content.ElementUse(pageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'genre')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 29, 6)) + symbol = pyxb.binding.content.ElementUse( + pageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "genre")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 29, 6), + ) st_10 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_10) final_update = set() final_update.add(fac.UpdateInstruction(cc_9, False)) - symbol = pyxb.binding.content.ElementUse(pageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'link')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 30, 6)) + symbol = pyxb.binding.content.ElementUse( + pageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "link")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 30, 6), + ) st_11 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_11) final_update = set() final_update.add(fac.UpdateInstruction(cc_10, False)) - symbol = pyxb.binding.content.ElementUse(pageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'embeds')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 31, 6)) + symbol = pyxb.binding.content.ElementUse( + pageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "embeds")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 31, 6), + ) st_12 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_12) final_update = set() final_update.add(fac.UpdateInstruction(cc_11, False)) - symbol = pyxb.binding.content.ElementUse(pageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'statRef')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 38, 6)) + symbol = pyxb.binding.content.ElementUse( + pageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "statRef")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 38, 6), + ) st_13 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_13) final_update = set() final_update.add(fac.UpdateInstruction(cc_12, False)) - symbol = pyxb.binding.content.ElementUse(pageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'image')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 39, 6)) + symbol = pyxb.binding.content.ElementUse( + pageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "image")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 39, 6), + ) st_14 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_14) final_update = set() final_update.add(fac.UpdateInstruction(cc_13, False)) - symbol = pyxb.binding.content.ElementUse(pageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'relation')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 40, 6)) + symbol = pyxb.binding.content.ElementUse( + pageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "relation")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 40, 6), + ) st_15 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_15) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_0, False)])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_1, True) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_1, False) ])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_1, True)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_1, False)])) st_1._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_2, [ - ])) - transitions.append(fac.Transition(st_3, [ - ])) - transitions.append(fac.Transition(st_4, [ - ])) + transitions.append(fac.Transition(st_2, [])) + transitions.append(fac.Transition(st_3, [])) + transitions.append(fac.Transition(st_4, [])) st_2._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_2, True) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_2, False) ])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_2, True)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_2, False)])) st_3._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_5, [ - ])) - transitions.append(fac.Transition(st_6, [ - ])) - transitions.append(fac.Transition(st_7, [ - ])) - transitions.append(fac.Transition(st_8, [ - ])) - transitions.append(fac.Transition(st_9, [ - ])) - transitions.append(fac.Transition(st_10, [ - ])) - transitions.append(fac.Transition(st_11, [ - ])) - transitions.append(fac.Transition(st_12, [ - ])) - transitions.append(fac.Transition(st_13, [ - ])) - transitions.append(fac.Transition(st_14, [ - ])) - transitions.append(fac.Transition(st_15, [ - ])) + transitions.append(fac.Transition(st_5, [])) + transitions.append(fac.Transition(st_6, [])) + transitions.append(fac.Transition(st_7, [])) + transitions.append(fac.Transition(st_8, [])) + transitions.append(fac.Transition(st_9, [])) + transitions.append(fac.Transition(st_10, [])) + transitions.append(fac.Transition(st_11, [])) + transitions.append(fac.Transition(st_12, [])) + transitions.append(fac.Transition(st_13, [])) + transitions.append(fac.Transition(st_14, [])) + transitions.append(fac.Transition(st_15, [])) st_4._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_3, True) ])) - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_3, False) ])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_3, True)])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_3, False)])) st_5._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_4, True) ])) - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_4, False) ])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_4, True)])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_4, False)])) st_6._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_5, True) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_5, False) ])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_5, True)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_5, False)])) st_7._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_6, True) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_6, False) ])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_6, True)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_6, False)])) st_8._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_7, True) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_7, False) ])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_7, True)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_7, False)])) st_9._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_8, True) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_8, False) ])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_8, True)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_8, False)])) st_10._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_9, True) ])) - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_9, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_9, False) ])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_9, True)])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_9, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_9, False)])) st_11._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_12, [ - fac.UpdateInstruction(cc_10, True) ])) - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_10, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_10, False) ])) + transitions.append(fac.Transition(st_12, [fac.UpdateInstruction(cc_10, True)])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_10, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_10, False)])) st_12._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_13, [ - fac.UpdateInstruction(cc_11, True) ])) - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_11, False) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_11, False) ])) + transitions.append(fac.Transition(st_13, [fac.UpdateInstruction(cc_11, True)])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_11, False)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_11, False)])) st_13._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_14, [ - fac.UpdateInstruction(cc_12, True) ])) - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_12, False) ])) + transitions.append(fac.Transition(st_14, [fac.UpdateInstruction(cc_12, True)])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_12, False)])) st_14._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_15, [ - fac.UpdateInstruction(cc_13, True) ])) + transitions.append(fac.Transition(st_15, [fac.UpdateInstruction(cc_13, True)])) st_15._set_transitionSet(transitions) return fac.Automaton(states, counters, False, containing_state=None) -pageUpdateType._Automaton = _BuildAutomaton_6() - - - - -imageUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'title'), pyxb.binding.datatypes.string, scope=imageUpdateType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 69, 6))) - -imageUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'description'), pyxb.binding.datatypes.string, scope=imageUpdateType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 70, 6))) - -imageUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'source'), pyxb.binding.datatypes.string, scope=imageUpdateType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 71, 6))) - -imageUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'sourceName'), pyxb.binding.datatypes.string, scope=imageUpdateType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 72, 6))) -imageUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'license'), _ImportedBinding_npoapi_xml_shared.licenseEnum, scope=imageUpdateType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 73, 6))) -imageUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'credits'), pyxb.binding.datatypes.string, scope=imageUpdateType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 74, 6))) +pageUpdateType._Automaton = _BuildAutomaton_6() -imageUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'imageLocation'), imageLocationType, scope=imageUpdateType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 75, 6))) -def _BuildAutomaton_7 (): +imageUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "title"), + pyxb.binding.datatypes.string, + scope=imageUpdateType, + location=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 69, 6 + ), + ) +) + +imageUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "description"), + pyxb.binding.datatypes.string, + scope=imageUpdateType, + location=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 70, 6 + ), + ) +) + +imageUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "source"), + pyxb.binding.datatypes.string, + scope=imageUpdateType, + location=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 71, 6 + ), + ) +) + +imageUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "sourceName"), + pyxb.binding.datatypes.string, + scope=imageUpdateType, + location=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 72, 6 + ), + ) +) + +imageUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "license"), + _ImportedBinding_npoapi_xml_shared.licenseEnum, + scope=imageUpdateType, + location=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 73, 6 + ), + ) +) + +imageUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "credits"), + pyxb.binding.datatypes.string, + scope=imageUpdateType, + location=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 74, 6 + ), + ) +) + +imageUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "imageLocation"), + imageLocationType, + scope=imageUpdateType, + location=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 75, 6 + ), + ) +) + + +def _BuildAutomaton_7(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_7 del _BuildAutomaton_7 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 69, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 69, 6 + ), + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 70, 6)) + cc_1 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 70, 6 + ), + ) counters.add(cc_1) - cc_2 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 71, 6)) + cc_2 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 71, 6 + ), + ) counters.add(cc_2) - cc_3 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 72, 6)) + cc_3 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 72, 6 + ), + ) counters.add(cc_3) - cc_4 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 73, 6)) + cc_4 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 73, 6 + ), + ) counters.add(cc_4) - cc_5 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 74, 6)) + cc_5 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 74, 6 + ), + ) counters.add(cc_5) - cc_6 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 75, 6)) + cc_6 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 75, 6 + ), + ) counters.add(cc_6) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(imageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'title')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 69, 6)) + symbol = pyxb.binding.content.ElementUse( + imageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "title")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 69, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() final_update.add(fac.UpdateInstruction(cc_1, False)) - symbol = pyxb.binding.content.ElementUse(imageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'description')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 70, 6)) + symbol = pyxb.binding.content.ElementUse( + imageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "description")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 70, 6), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) final_update = set() final_update.add(fac.UpdateInstruction(cc_2, False)) - symbol = pyxb.binding.content.ElementUse(imageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'source')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 71, 6)) + symbol = pyxb.binding.content.ElementUse( + imageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "source")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 71, 6), + ) st_2 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_2) final_update = set() final_update.add(fac.UpdateInstruction(cc_3, False)) - symbol = pyxb.binding.content.ElementUse(imageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'sourceName')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 72, 6)) + symbol = pyxb.binding.content.ElementUse( + imageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "sourceName")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 72, 6), + ) st_3 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_3) final_update = set() final_update.add(fac.UpdateInstruction(cc_4, False)) - symbol = pyxb.binding.content.ElementUse(imageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'license')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 73, 6)) + symbol = pyxb.binding.content.ElementUse( + imageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "license")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 73, 6), + ) st_4 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_4) final_update = set() final_update.add(fac.UpdateInstruction(cc_5, False)) - symbol = pyxb.binding.content.ElementUse(imageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'credits')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 74, 6)) + symbol = pyxb.binding.content.ElementUse( + imageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "credits")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 74, 6), + ) st_5 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_5) final_update = set() final_update.add(fac.UpdateInstruction(cc_6, False)) - symbol = pyxb.binding.content.ElementUse(imageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'imageLocation')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 75, 6)) + symbol = pyxb.binding.content.ElementUse( + imageUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "imageLocation")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 75, 6), + ) st_6 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_6) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_0, False)])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_1, True) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_1, False) ])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_1, True)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_1, False)])) st_1._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_2, True) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_2, False) ])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_2, True)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_2, False)])) st_2._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_3, True) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_3, False) ])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_3, True)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_3, False)])) st_3._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_4, True) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_4, False) ])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_4, True)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_4, False)])) st_4._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_5, True) ])) - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_5, False) ])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_5, True)])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_5, False)])) st_5._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_6, True) ])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_6, True)])) st_6._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -imageUpdateType._Automaton = _BuildAutomaton_7() +imageUpdateType._Automaton = _BuildAutomaton_7() + +linkUpdateType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "text"), + pyxb.binding.datatypes.string, + scope=linkUpdateType, + location=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 88, 6 + ), + ) +) -linkUpdateType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'text'), pyxb.binding.datatypes.string, scope=linkUpdateType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 88, 6))) -def _BuildAutomaton_8 (): +def _BuildAutomaton_8(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_8 del _BuildAutomaton_8 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 88, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 88, 6 + ), + ) counters.add(cc_0) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(linkUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'text')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013', 88, 6)) + symbol = pyxb.binding.content.ElementUse( + linkUpdateType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "text")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:pages:update:2013", 88, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) st_0._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -linkUpdateType._Automaton = _BuildAutomaton_8() + +linkUpdateType._Automaton = _BuildAutomaton_8() diff --git a/src/npoapi/xml/poms.py b/src/npoapi/xml/poms.py index 2a032f2..48521d8 100644 --- a/src/npoapi/xml/poms.py +++ b/src/npoapi/xml/poms.py @@ -5,19 +5,22 @@ # Namespace AbsentNamespace0 from __future__ import unicode_literals + +import io +import sys + import pyxb import pyxb.binding import pyxb.binding.saxer -import io -import pyxb.utils.utility import pyxb.utils.domutils -import sys import pyxb.utils.six as _six +import pyxb.utils.utility + # Unique identifier for bindings created at the same time -_GenerationUID = pyxb.utils.utility.UniqueIdentifier('urn:uuid:fa5187de-5153-11ed-9cc8-3e22fb45f01a') +_GenerationUID = pyxb.utils.utility.UniqueIdentifier("urn:uuid:fa5187de-5153-11ed-9cc8-3e22fb45f01a") # Version of PyXB used to generate the bindings -_PyXBVersion = '1.2.6' +_PyXBVersion = "1.2.6" # Generated bindings are not compatible across PyXB versions if pyxb.__version__ != _PyXBVersion: raise pyxb.PyXBVersionError(_PyXBVersion) @@ -31,9 +34,10 @@ # NOTE: All namespace declarations are reserved within the binding Namespace = pyxb.namespace.CreateAbsentNamespace() -Namespace.configureCategories(['typeBinding', 'elementBinding']) +Namespace.configureCategories(["typeBinding", "elementBinding"]) -def CreateFromDocument (xml_text, default_namespace=None, location_base=None): + +def CreateFromDocument(xml_text, default_namespace=None, location_base=None): """Parse the given XML and use the document element to create a Python instance. @@ -66,7 +70,8 @@ def CreateFromDocument (xml_text, default_namespace=None, location_base=None): instance = handler.rootObject() return instance -def CreateFromDOM (node, default_namespace=None): + +def CreateFromDOM(node, default_namespace=None): """Create a Python instance from the given DOM node. The node tag must correspond to an element declaration in this module. @@ -77,72 +82,95 @@ def CreateFromDOM (node, default_namespace=None): # Atomic simple type: [anonymous] -class STD_ANON (pyxb.binding.datatypes.string): - +class STD_ANON(pyxb.binding.datatypes.string): """An atomic simple type.""" _ExpandedName = None - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/absentnamespace.xsd', 12, 6) + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/absentnamespace.xsd", 12, 6) _Documentation = None + + STD_ANON._CF_pattern = pyxb.binding.facets.CF_pattern() -STD_ANON._CF_pattern.addPattern(pattern='[0-9]+(\\.[0-9]+(\\.[0-9]+)?)?') +STD_ANON._CF_pattern.addPattern(pattern="[0-9]+(\\.[0-9]+(\\.[0-9]+)?)?") STD_ANON._InitializeFacetMap(STD_ANON._CF_pattern) _module_typeBindings.STD_ANON = STD_ANON + # Complex type collectionType with content type ELEMENT_ONLY -class collectionType (pyxb.binding.basis.complexTypeDefinition): +class collectionType(pyxb.binding.basis.complexTypeDefinition): """Complex type collectionType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'collectionType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/absentnamespace.xsd', 7, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "collectionType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/absentnamespace.xsd", 7, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Attribute version uses Python identifier version - __version = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'version'), 'version', '__AbsentNamespace0_collectionType_version', _module_typeBindings.STD_ANON) - __version._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/absentnamespace.xsd', 11, 4) - __version._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/absentnamespace.xsd', 11, 4) - + __version = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "version"), + "version", + "__AbsentNamespace0_collectionType_version", + _module_typeBindings.STD_ANON, + ) + __version._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/absentnamespace.xsd", 11, 4 + ) + __version._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/absentnamespace.xsd", 11, 4 + ) + version = property(__version.value, __version.set, None, None) _HasWildcardElement = True - _ElementMap.update({ - - }) - _AttributeMap.update({ - __version.name() : __version - }) -_module_typeBindings.collectionType = collectionType -Namespace.addCategoryObject('typeBinding', 'collectionType', collectionType) + _ElementMap.update({}) + _AttributeMap.update({__version.name(): __version}) + +_module_typeBindings.collectionType = collectionType +Namespace.addCategoryObject("typeBinding", "collectionType", collectionType) -collection = pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'collection'), collectionType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/absentnamespace.xsd', 5, 2)) -Namespace.addCategoryObject('elementBinding', collection.name().localName(), collection) +collection = pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "collection"), + collectionType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/absentnamespace.xsd", 5, 2), +) +Namespace.addCategoryObject("elementBinding", collection.name().localName(), collection) -def _BuildAutomaton (): +def _BuildAutomaton(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton del _BuildAutomaton import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/absentnamespace.xsd', 9, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/absentnamespace.xsd", 9, 6), + ) counters.add(cc_0) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.WildcardUse(pyxb.binding.content.Wildcard(process_contents=pyxb.binding.content.Wildcard.PC_lax, namespace_constraint=(pyxb.binding.content.Wildcard.NC_not, None)), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/absentnamespace.xsd', 9, 6)) + symbol = pyxb.binding.content.WildcardUse( + pyxb.binding.content.Wildcard( + process_contents=pyxb.binding.content.Wildcard.PC_lax, + namespace_constraint=(pyxb.binding.content.Wildcard.NC_not, None), + ), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/absentnamespace.xsd", 9, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) st_0._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -collectionType._Automaton = _BuildAutomaton() + +collectionType._Automaton = _BuildAutomaton() diff --git a/src/npoapi/xml/profile.py b/src/npoapi/xml/profile.py index af67fa3..fa17498 100644 --- a/src/npoapi/xml/profile.py +++ b/src/npoapi/xml/profile.py @@ -5,19 +5,22 @@ # Namespace urn:vpro:api:profile:2013 from __future__ import unicode_literals + +import io +import sys + import pyxb import pyxb.binding import pyxb.binding.saxer -import io -import pyxb.utils.utility import pyxb.utils.domutils -import sys import pyxb.utils.six as _six +import pyxb.utils.utility + # Unique identifier for bindings created at the same time -_GenerationUID = pyxb.utils.utility.UniqueIdentifier('urn:uuid:fa5187de-5153-11ed-9cc8-3e22fb45f01a') +_GenerationUID = pyxb.utils.utility.UniqueIdentifier("urn:uuid:fa5187de-5153-11ed-9cc8-3e22fb45f01a") # Version of PyXB used to generate the bindings -_PyXBVersion = '1.2.6' +_PyXBVersion = "1.2.6" # Generated bindings are not compatible across PyXB versions if pyxb.__version__ != _PyXBVersion: raise pyxb.PyXBVersionError(_PyXBVersion) @@ -28,18 +31,20 @@ # Import bindings for namespaces imported into schema import pyxb.binding.datatypes + import npoapi.xml.api_constraint_media as _ImportedBinding_npoapi_xml_api_constraint_media import npoapi.xml.api_constraint_page as _ImportedBinding_npoapi_xml_api_constraint_page # NOTE: All namespace declarations are reserved within the binding -Namespace = pyxb.namespace.NamespaceForURI('urn:vpro:api:profile:2013', create_if_missing=True) -Namespace.configureCategories(['typeBinding', 'elementBinding']) +Namespace = pyxb.namespace.NamespaceForURI("urn:vpro:api:profile:2013", create_if_missing=True) +Namespace.configureCategories(["typeBinding", "elementBinding"]) _Namespace_media = _ImportedBinding_npoapi_xml_api_constraint_media.Namespace -_Namespace_media.configureCategories(['typeBinding', 'elementBinding']) +_Namespace_media.configureCategories(["typeBinding", "elementBinding"]) _Namespace_page = _ImportedBinding_npoapi_xml_api_constraint_page.Namespace -_Namespace_page.configureCategories(['typeBinding', 'elementBinding']) +_Namespace_page.configureCategories(["typeBinding", "elementBinding"]) + -def CreateFromDocument (xml_text, default_namespace=None, location_base=None): +def CreateFromDocument(xml_text, default_namespace=None, location_base=None): """Parse the given XML and use the document element to create a Python instance. @@ -72,7 +77,8 @@ def CreateFromDocument (xml_text, default_namespace=None, location_base=None): instance = handler.rootObject() return instance -def CreateFromDOM (node, default_namespace=None): + +def CreateFromDOM(node, default_namespace=None): """Create a Python instance from the given DOM node. The node tag must correspond to an element declaration in this module. @@ -83,185 +89,293 @@ def CreateFromDOM (node, default_namespace=None): # Complex type {urn:vpro:api:profile:2013}profileType with content type ELEMENT_ONLY -class profileType (pyxb.binding.basis.complexTypeDefinition): +class profileType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:api:profile:2013}profileType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'profileType') - _XSDLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:api:profile:2013', 9, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "profileType") + _XSDLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:api:profile:2013", 9, 2 + ) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:api:profile:2013}pageProfile uses Python identifier pageProfile - __pageProfile = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'pageProfile'), 'pageProfile', '__urnvproapiprofile2013_profileType_urnvproapiprofile2013pageProfile', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:api:profile:2013', 11, 6), ) + __pageProfile = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "pageProfile"), + "pageProfile", + "__urnvproapiprofile2013_profileType_urnvproapiprofile2013pageProfile", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:api:profile:2013", 11, 6), + ) - pageProfile = property(__pageProfile.value, __pageProfile.set, None, None) - # Element {urn:vpro:api:profile:2013}mediaProfile uses Python identifier mediaProfile - __mediaProfile = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'mediaProfile'), 'mediaProfile', '__urnvproapiprofile2013_profileType_urnvproapiprofile2013mediaProfile', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:api:profile:2013', 12, 6), ) + __mediaProfile = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "mediaProfile"), + "mediaProfile", + "__urnvproapiprofile2013_profileType_urnvproapiprofile2013mediaProfile", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:api:profile:2013", 12, 6), + ) - mediaProfile = property(__mediaProfile.value, __mediaProfile.set, None, None) - # Attribute timestamp uses Python identifier timestamp - __timestamp = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'timestamp'), 'timestamp', '__urnvproapiprofile2013_profileType_timestamp', pyxb.binding.datatypes.dateTime) - __timestamp._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:api:profile:2013', 14, 4) - __timestamp._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:api:profile:2013', 14, 4) - + __timestamp = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "timestamp"), + "timestamp", + "__urnvproapiprofile2013_profileType_timestamp", + pyxb.binding.datatypes.dateTime, + ) + __timestamp._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:api:profile:2013", 14, 4 + ) + __timestamp._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:api:profile:2013", 14, 4 + ) + timestamp = property(__timestamp.value, __timestamp.set, None, None) - # Attribute name uses Python identifier name - __name = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'name'), 'name', '__urnvproapiprofile2013_profileType_name', pyxb.binding.datatypes.string) - __name._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:api:profile:2013', 15, 4) - __name._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:api:profile:2013', 15, 4) - + __name = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "name"), + "name", + "__urnvproapiprofile2013_profileType_name", + pyxb.binding.datatypes.string, + ) + __name._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:api:profile:2013", 15, 4 + ) + __name._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:api:profile:2013", 15, 4 + ) + name = property(__name.value, __name.set, None, None) - _ElementMap.update({ - __pageProfile.name() : __pageProfile, - __mediaProfile.name() : __mediaProfile - }) - _AttributeMap.update({ - __timestamp.name() : __timestamp, - __name.name() : __name - }) + _ElementMap.update({__pageProfile.name(): __pageProfile, __mediaProfile.name(): __mediaProfile}) + _AttributeMap.update({__timestamp.name(): __timestamp, __name.name(): __name}) + + _module_typeBindings.profileType = profileType -Namespace.addCategoryObject('typeBinding', 'profileType', profileType) +Namespace.addCategoryObject("typeBinding", "profileType", profileType) # Complex type {urn:vpro:api:profile:2013}profileDefinitionType with content type ELEMENT_ONLY -class profileDefinitionType (pyxb.binding.basis.complexTypeDefinition): +class profileDefinitionType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:api:profile:2013}profileDefinitionType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'profileDefinitionType') - _XSDLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:api:profile:2013', 18, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "profileDefinitionType") + _XSDLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:api:profile:2013", 18, 2 + ) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:api:constraint:media:2013}filter uses Python identifier filter - __filter = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(_Namespace_media, 'filter'), 'filter', '__urnvproapiprofile2013_profileDefinitionType_urnvproapiconstraintmedia2013filter', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:api:constraint:media:2013', 7, 2), ) + __filter = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(_Namespace_media, "filter"), + "filter", + "__urnvproapiprofile2013_profileDefinitionType_urnvproapiconstraintmedia2013filter", + False, + pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:api:constraint:media:2013", 7, 2 + ), + ) - filter = property(__filter.value, __filter.set, None, None) - # Element {urn:vpro:api:constraint:page:2013}filter uses Python identifier filter_ - __filter_ = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(_Namespace_page, 'filter'), 'filter_', '__urnvproapiprofile2013_profileDefinitionType_urnvproapiconstraintpage2013filter', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:api:constraint:page:2013', 3, 2), ) + __filter_ = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(_Namespace_page, "filter"), + "filter_", + "__urnvproapiprofile2013_profileDefinitionType_urnvproapiconstraintpage2013filter", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:api:constraint:page:2013", 3, 2), + ) - filter_ = property(__filter_.value, __filter_.set, None, None) - # Attribute since uses Python identifier since - __since = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'since'), 'since', '__urnvproapiprofile2013_profileDefinitionType_since', pyxb.binding.datatypes.dateTime) - __since._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:api:profile:2013', 25, 4) - __since._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:api:profile:2013', 25, 4) - - since = property(__since.value, __since.set, None, None) - - _ElementMap.update({ - __filter.name() : __filter, - __filter_.name() : __filter_ - }) - _AttributeMap.update({ - __since.name() : __since - }) -_module_typeBindings.profileDefinitionType = profileDefinitionType -Namespace.addCategoryObject('typeBinding', 'profileDefinitionType', profileDefinitionType) - - -profile = pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'profile'), profileType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:api:profile:2013', 7, 2)) -Namespace.addCategoryObject('elementBinding', profile.name().localName(), profile) - + __since = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "since"), + "since", + "__urnvproapiprofile2013_profileDefinitionType_since", + pyxb.binding.datatypes.dateTime, + ) + __since._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:api:profile:2013", 25, 4 + ) + __since._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:api:profile:2013", 25, 4 + ) + since = property(__since.value, __since.set, None, None) -profileType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'pageProfile'), profileDefinitionType, scope=profileType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:api:profile:2013', 11, 6))) + _ElementMap.update({__filter.name(): __filter, __filter_.name(): __filter_}) + _AttributeMap.update({__since.name(): __since}) -profileType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'mediaProfile'), profileDefinitionType, scope=profileType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:api:profile:2013', 12, 6))) -def _BuildAutomaton (): +_module_typeBindings.profileDefinitionType = profileDefinitionType +Namespace.addCategoryObject("typeBinding", "profileDefinitionType", profileDefinitionType) + + +profile = pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "profile"), + profileType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:api:profile:2013", 7, 2), +) +Namespace.addCategoryObject("elementBinding", profile.name().localName(), profile) + + +profileType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "pageProfile"), + profileDefinitionType, + scope=profileType, + location=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:api:profile:2013", 11, 6 + ), + ) +) + +profileType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "mediaProfile"), + profileDefinitionType, + scope=profileType, + location=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:api:profile:2013", 12, 6 + ), + ) +) + + +def _BuildAutomaton(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton del _BuildAutomaton import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:api:profile:2013', 11, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:api:profile:2013", 11, 6 + ), + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:api:profile:2013', 12, 6)) + cc_1 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:api:profile:2013", 12, 6 + ), + ) counters.add(cc_1) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(profileType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'pageProfile')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:api:profile:2013', 11, 6)) + symbol = pyxb.binding.content.ElementUse( + profileType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "pageProfile")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:api:profile:2013", 11, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() final_update.add(fac.UpdateInstruction(cc_1, False)) - symbol = pyxb.binding.content.ElementUse(profileType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'mediaProfile')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:api:profile:2013', 12, 6)) + symbol = pyxb.binding.content.ElementUse( + profileType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "mediaProfile")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:api:profile:2013", 12, 6), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, False)])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_1, True) ])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_1, True)])) st_1._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -profileType._Automaton = _BuildAutomaton() - - -profileDefinitionType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(_Namespace_media, 'filter'), _ImportedBinding_npoapi_xml_api_constraint_media.filter_, scope=profileDefinitionType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:api:constraint:media:2013', 7, 2))) +profileType._Automaton = _BuildAutomaton() -profileDefinitionType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(_Namespace_page, 'filter'), _ImportedBinding_npoapi_xml_api_constraint_page.filter_, scope=profileDefinitionType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:api:constraint:page:2013', 3, 2))) -def _BuildAutomaton_ (): +profileDefinitionType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(_Namespace_media, "filter"), + _ImportedBinding_npoapi_xml_api_constraint_media.filter_, + scope=profileDefinitionType, + location=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:api:constraint:media:2013", 7, 2 + ), + ) +) + +profileDefinitionType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(_Namespace_page, "filter"), + _ImportedBinding_npoapi_xml_api_constraint_page.filter_, + scope=profileDefinitionType, + location=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:api:constraint:page:2013", 3, 2 + ), + ) +) + + +def _BuildAutomaton_(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_ del _BuildAutomaton_ import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:api:profile:2013', 20, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:api:profile:2013", 20, 6 + ), + ) counters.add(cc_0) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(profileDefinitionType._UseForTag(pyxb.namespace.ExpandedName(_Namespace_media, 'filter')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:api:profile:2013', 21, 8)) + symbol = pyxb.binding.content.ElementUse( + profileDefinitionType._UseForTag(pyxb.namespace.ExpandedName(_Namespace_media, "filter")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:api:profile:2013", 21, 8), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(profileDefinitionType._UseForTag(pyxb.namespace.ExpandedName(_Namespace_page, 'filter')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:api:profile:2013', 22, 8)) + symbol = pyxb.binding.content.ElementUse( + profileDefinitionType._UseForTag(pyxb.namespace.ExpandedName(_Namespace_page, "filter")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:api:profile:2013", 22, 8), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, True) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, True)])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, True) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, True)])) st_1._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -profileDefinitionType._Automaton = _BuildAutomaton_() + +profileDefinitionType._Automaton = _BuildAutomaton_() diff --git a/src/npoapi/xml/shared.py b/src/npoapi/xml/shared.py index 264bea2..04421cd 100644 --- a/src/npoapi/xml/shared.py +++ b/src/npoapi/xml/shared.py @@ -5,19 +5,22 @@ # Namespace urn:vpro:shared:2009 [xmlns:shared] from __future__ import unicode_literals + +import io +import sys + import pyxb import pyxb.binding import pyxb.binding.saxer -import io -import pyxb.utils.utility import pyxb.utils.domutils -import sys import pyxb.utils.six as _six +import pyxb.utils.utility + # Unique identifier for bindings created at the same time -_GenerationUID = pyxb.utils.utility.UniqueIdentifier('urn:uuid:fa5187de-5153-11ed-9cc8-3e22fb45f01a') +_GenerationUID = pyxb.utils.utility.UniqueIdentifier("urn:uuid:fa5187de-5153-11ed-9cc8-3e22fb45f01a") # Version of PyXB used to generate the bindings -_PyXBVersion = '1.2.6' +_PyXBVersion = "1.2.6" # Generated bindings are not compatible across PyXB versions if pyxb.__version__ != _PyXBVersion: raise pyxb.PyXBVersionError(_PyXBVersion) @@ -30,10 +33,11 @@ import pyxb.binding.datatypes # NOTE: All namespace declarations are reserved within the binding -Namespace = pyxb.namespace.NamespaceForURI('urn:vpro:shared:2009', create_if_missing=True) -Namespace.configureCategories(['typeBinding', 'elementBinding']) +Namespace = pyxb.namespace.NamespaceForURI("urn:vpro:shared:2009", create_if_missing=True) +Namespace.configureCategories(["typeBinding", "elementBinding"]) -def CreateFromDocument (xml_text, default_namespace=None, location_base=None): + +def CreateFromDocument(xml_text, default_namespace=None, location_base=None): """Parse the given XML and use the document element to create a Python instance. @@ -66,7 +70,8 @@ def CreateFromDocument (xml_text, default_namespace=None, location_base=None): instance = handler.rootObject() return instance -def CreateFromDOM (node, default_namespace=None): + +def CreateFromDOM(node, default_namespace=None): """Create a Python instance from the given DOM node. The node tag must correspond to an element declaration in this module. @@ -77,745 +82,1063 @@ def CreateFromDOM (node, default_namespace=None): # Atomic simple type: {urn:vpro:shared:2009}workflowEnumType -class workflowEnumType (pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): - +class workflowEnumType(pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): + """ + These are the possible values of several 'workflow' fields. These serve administrative purposes only. In the Frontent API you should + only encounter 'PUBLISHED'. """ - These are the possible values of several 'workflow' fields. These serve administrative purposes only. In the Frontent API you should - only encounter 'PUBLISHED'. - """ - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'workflowEnumType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 25, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "workflowEnumType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 25, 2) _Documentation = "\n These are the possible values of several 'workflow' fields. These serve administrative purposes only. In the Frontent API you should\n only encounter 'PUBLISHED'.\n " + + workflowEnumType._CF_enumeration = pyxb.binding.facets.CF_enumeration(value_datatype=workflowEnumType, enum_prefix=None) -workflowEnumType.FOR_PUBLICATION = workflowEnumType._CF_enumeration.addEnumeration(unicode_value='FOR PUBLICATION', tag='FOR_PUBLICATION') -workflowEnumType.FOR_REPUBLICATION = workflowEnumType._CF_enumeration.addEnumeration(unicode_value='FOR REPUBLICATION', tag='FOR_REPUBLICATION') -workflowEnumType.PUBLISHED = workflowEnumType._CF_enumeration.addEnumeration(unicode_value='PUBLISHED', tag='PUBLISHED') -workflowEnumType.PARENT_REVOKED = workflowEnumType._CF_enumeration.addEnumeration(unicode_value='PARENT REVOKED', tag='PARENT_REVOKED') -workflowEnumType.REVOKED = workflowEnumType._CF_enumeration.addEnumeration(unicode_value='REVOKED', tag='REVOKED') -workflowEnumType.FOR_DELETION = workflowEnumType._CF_enumeration.addEnumeration(unicode_value='FOR DELETION', tag='FOR_DELETION') -workflowEnumType.DELETED = workflowEnumType._CF_enumeration.addEnumeration(unicode_value='DELETED', tag='DELETED') -workflowEnumType.MERGED = workflowEnumType._CF_enumeration.addEnumeration(unicode_value='MERGED', tag='MERGED') -workflowEnumType.IGNORE = workflowEnumType._CF_enumeration.addEnumeration(unicode_value='IGNORE', tag='IGNORE') +workflowEnumType.FOR_PUBLICATION = workflowEnumType._CF_enumeration.addEnumeration( + unicode_value="FOR PUBLICATION", tag="FOR_PUBLICATION" +) +workflowEnumType.FOR_REPUBLICATION = workflowEnumType._CF_enumeration.addEnumeration( + unicode_value="FOR REPUBLICATION", tag="FOR_REPUBLICATION" +) +workflowEnumType.PUBLISHED = workflowEnumType._CF_enumeration.addEnumeration(unicode_value="PUBLISHED", tag="PUBLISHED") +workflowEnumType.PARENT_REVOKED = workflowEnumType._CF_enumeration.addEnumeration( + unicode_value="PARENT REVOKED", tag="PARENT_REVOKED" +) +workflowEnumType.REVOKED = workflowEnumType._CF_enumeration.addEnumeration(unicode_value="REVOKED", tag="REVOKED") +workflowEnumType.FOR_DELETION = workflowEnumType._CF_enumeration.addEnumeration( + unicode_value="FOR DELETION", tag="FOR_DELETION" +) +workflowEnumType.DELETED = workflowEnumType._CF_enumeration.addEnumeration(unicode_value="DELETED", tag="DELETED") +workflowEnumType.MERGED = workflowEnumType._CF_enumeration.addEnumeration(unicode_value="MERGED", tag="MERGED") +workflowEnumType.IGNORE = workflowEnumType._CF_enumeration.addEnumeration(unicode_value="IGNORE", tag="IGNORE") workflowEnumType._InitializeFacetMap(workflowEnumType._CF_enumeration) -Namespace.addCategoryObject('typeBinding', 'workflowEnumType', workflowEnumType) +Namespace.addCategoryObject("typeBinding", "workflowEnumType", workflowEnumType) _module_typeBindings.workflowEnumType = workflowEnumType -# Atomic simple type: {urn:vpro:shared:2009}imageTypeEnum -class imageTypeEnum (pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): +# Atomic simple type: {urn:vpro:shared:2009}imageTypeEnum +class imageTypeEnum(pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'imageTypeEnum') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 84, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "imageTypeEnum") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 84, 2) _Documentation = None + + imageTypeEnum._CF_enumeration = pyxb.binding.facets.CF_enumeration(value_datatype=imageTypeEnum, enum_prefix=None) -imageTypeEnum.PICTURE = imageTypeEnum._CF_enumeration.addEnumeration(unicode_value='PICTURE', tag='PICTURE') -imageTypeEnum.PORTRAIT = imageTypeEnum._CF_enumeration.addEnumeration(unicode_value='PORTRAIT', tag='PORTRAIT') -imageTypeEnum.STILL = imageTypeEnum._CF_enumeration.addEnumeration(unicode_value='STILL', tag='STILL') -imageTypeEnum.LOGO = imageTypeEnum._CF_enumeration.addEnumeration(unicode_value='LOGO', tag='LOGO') -imageTypeEnum.ICON = imageTypeEnum._CF_enumeration.addEnumeration(unicode_value='ICON', tag='ICON') -imageTypeEnum.PROMO_LANDSCAPE = imageTypeEnum._CF_enumeration.addEnumeration(unicode_value='PROMO_LANDSCAPE', tag='PROMO_LANDSCAPE') -imageTypeEnum.PROMO_PORTRAIT = imageTypeEnum._CF_enumeration.addEnumeration(unicode_value='PROMO_PORTRAIT', tag='PROMO_PORTRAIT') -imageTypeEnum.BACKGROUND = imageTypeEnum._CF_enumeration.addEnumeration(unicode_value='BACKGROUND', tag='BACKGROUND') +imageTypeEnum.PICTURE = imageTypeEnum._CF_enumeration.addEnumeration(unicode_value="PICTURE", tag="PICTURE") +imageTypeEnum.PORTRAIT = imageTypeEnum._CF_enumeration.addEnumeration(unicode_value="PORTRAIT", tag="PORTRAIT") +imageTypeEnum.STILL = imageTypeEnum._CF_enumeration.addEnumeration(unicode_value="STILL", tag="STILL") +imageTypeEnum.LOGO = imageTypeEnum._CF_enumeration.addEnumeration(unicode_value="LOGO", tag="LOGO") +imageTypeEnum.ICON = imageTypeEnum._CF_enumeration.addEnumeration(unicode_value="ICON", tag="ICON") +imageTypeEnum.PROMO_LANDSCAPE = imageTypeEnum._CF_enumeration.addEnumeration( + unicode_value="PROMO_LANDSCAPE", tag="PROMO_LANDSCAPE" +) +imageTypeEnum.PROMO_PORTRAIT = imageTypeEnum._CF_enumeration.addEnumeration( + unicode_value="PROMO_PORTRAIT", tag="PROMO_PORTRAIT" +) +imageTypeEnum.BACKGROUND = imageTypeEnum._CF_enumeration.addEnumeration(unicode_value="BACKGROUND", tag="BACKGROUND") imageTypeEnum._InitializeFacetMap(imageTypeEnum._CF_enumeration) -Namespace.addCategoryObject('typeBinding', 'imageTypeEnum', imageTypeEnum) +Namespace.addCategoryObject("typeBinding", "imageTypeEnum", imageTypeEnum) _module_typeBindings.imageTypeEnum = imageTypeEnum -# Atomic simple type: {urn:vpro:shared:2009}ownerTypeEnum -class ownerTypeEnum (pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): +# Atomic simple type: {urn:vpro:shared:2009}ownerTypeEnum +class ownerTypeEnum(pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'ownerTypeEnum') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 97, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "ownerTypeEnum") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 97, 2) _Documentation = None + + ownerTypeEnum._CF_enumeration = pyxb.binding.facets.CF_enumeration(value_datatype=ownerTypeEnum, enum_prefix=None) -ownerTypeEnum.BROADCASTER = ownerTypeEnum._CF_enumeration.addEnumeration(unicode_value='BROADCASTER', tag='BROADCASTER') -ownerTypeEnum.NEBO = ownerTypeEnum._CF_enumeration.addEnumeration(unicode_value='NEBO', tag='NEBO') -ownerTypeEnum.NPO = ownerTypeEnum._CF_enumeration.addEnumeration(unicode_value='NPO', tag='NPO') -ownerTypeEnum.MIS = ownerTypeEnum._CF_enumeration.addEnumeration(unicode_value='MIS', tag='MIS') -ownerTypeEnum.CERES = ownerTypeEnum._CF_enumeration.addEnumeration(unicode_value='CERES', tag='CERES') -ownerTypeEnum.PLUTO = ownerTypeEnum._CF_enumeration.addEnumeration(unicode_value='PLUTO', tag='PLUTO') -ownerTypeEnum.PROJECTM = ownerTypeEnum._CF_enumeration.addEnumeration(unicode_value='PROJECTM', tag='PROJECTM') -ownerTypeEnum.WHATS_ON = ownerTypeEnum._CF_enumeration.addEnumeration(unicode_value='WHATS_ON', tag='WHATS_ON') -ownerTypeEnum.IMMIX = ownerTypeEnum._CF_enumeration.addEnumeration(unicode_value='IMMIX', tag='IMMIX') -ownerTypeEnum.AUTHORITY = ownerTypeEnum._CF_enumeration.addEnumeration(unicode_value='AUTHORITY', tag='AUTHORITY') -ownerTypeEnum.RADIOBOX = ownerTypeEnum._CF_enumeration.addEnumeration(unicode_value='RADIOBOX', tag='RADIOBOX') -ownerTypeEnum.BEELDENGELUID = ownerTypeEnum._CF_enumeration.addEnumeration(unicode_value='BEELDENGELUID', tag='BEELDENGELUID') +ownerTypeEnum.BROADCASTER = ownerTypeEnum._CF_enumeration.addEnumeration(unicode_value="BROADCASTER", tag="BROADCASTER") +ownerTypeEnum.NEBO = ownerTypeEnum._CF_enumeration.addEnumeration(unicode_value="NEBO", tag="NEBO") +ownerTypeEnum.NPO = ownerTypeEnum._CF_enumeration.addEnumeration(unicode_value="NPO", tag="NPO") +ownerTypeEnum.MIS = ownerTypeEnum._CF_enumeration.addEnumeration(unicode_value="MIS", tag="MIS") +ownerTypeEnum.CERES = ownerTypeEnum._CF_enumeration.addEnumeration(unicode_value="CERES", tag="CERES") +ownerTypeEnum.PLUTO = ownerTypeEnum._CF_enumeration.addEnumeration(unicode_value="PLUTO", tag="PLUTO") +ownerTypeEnum.PROJECTM = ownerTypeEnum._CF_enumeration.addEnumeration(unicode_value="PROJECTM", tag="PROJECTM") +ownerTypeEnum.WHATS_ON = ownerTypeEnum._CF_enumeration.addEnumeration(unicode_value="WHATS_ON", tag="WHATS_ON") +ownerTypeEnum.IMMIX = ownerTypeEnum._CF_enumeration.addEnumeration(unicode_value="IMMIX", tag="IMMIX") +ownerTypeEnum.AUTHORITY = ownerTypeEnum._CF_enumeration.addEnumeration(unicode_value="AUTHORITY", tag="AUTHORITY") +ownerTypeEnum.RADIOBOX = ownerTypeEnum._CF_enumeration.addEnumeration(unicode_value="RADIOBOX", tag="RADIOBOX") +ownerTypeEnum.BEELDENGELUID = ownerTypeEnum._CF_enumeration.addEnumeration( + unicode_value="BEELDENGELUID", tag="BEELDENGELUID" +) ownerTypeEnum._InitializeFacetMap(ownerTypeEnum._CF_enumeration) -Namespace.addCategoryObject('typeBinding', 'ownerTypeEnum', ownerTypeEnum) +Namespace.addCategoryObject("typeBinding", "ownerTypeEnum", ownerTypeEnum) _module_typeBindings.ownerTypeEnum = ownerTypeEnum -# Atomic simple type: {urn:vpro:shared:2009}subtitlesTypeEnum -class subtitlesTypeEnum (pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): +# Atomic simple type: {urn:vpro:shared:2009}subtitlesTypeEnum +class subtitlesTypeEnum(pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): + """ + The type of a subtitles object. TODO these descriptions are provisional? """ - The type of a subtitles object. TODO these descriptions are provisional? - """ - - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'subtitlesTypeEnum') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 115, 2) - _Documentation = '\n The type of a subtitles object. TODO these descriptions are provisional?\n ' -subtitlesTypeEnum._CF_enumeration = pyxb.binding.facets.CF_enumeration(value_datatype=subtitlesTypeEnum, enum_prefix=None) -subtitlesTypeEnum.CAPTION = subtitlesTypeEnum._CF_enumeration.addEnumeration(unicode_value='CAPTION', tag='CAPTION') -subtitlesTypeEnum.TRANSLATION = subtitlesTypeEnum._CF_enumeration.addEnumeration(unicode_value='TRANSLATION', tag='TRANSLATION') -subtitlesTypeEnum.TRANSCRIPT = subtitlesTypeEnum._CF_enumeration.addEnumeration(unicode_value='TRANSCRIPT', tag='TRANSCRIPT') + + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "subtitlesTypeEnum") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 115, 2) + _Documentation = "\n The type of a subtitles object. TODO these descriptions are provisional?\n " + + +subtitlesTypeEnum._CF_enumeration = pyxb.binding.facets.CF_enumeration( + value_datatype=subtitlesTypeEnum, enum_prefix=None +) +subtitlesTypeEnum.CAPTION = subtitlesTypeEnum._CF_enumeration.addEnumeration(unicode_value="CAPTION", tag="CAPTION") +subtitlesTypeEnum.TRANSLATION = subtitlesTypeEnum._CF_enumeration.addEnumeration( + unicode_value="TRANSLATION", tag="TRANSLATION" +) +subtitlesTypeEnum.TRANSCRIPT = subtitlesTypeEnum._CF_enumeration.addEnumeration( + unicode_value="TRANSCRIPT", tag="TRANSCRIPT" +) subtitlesTypeEnum._InitializeFacetMap(subtitlesTypeEnum._CF_enumeration) -Namespace.addCategoryObject('typeBinding', 'subtitlesTypeEnum', subtitlesTypeEnum) +Namespace.addCategoryObject("typeBinding", "subtitlesTypeEnum", subtitlesTypeEnum) _module_typeBindings.subtitlesTypeEnum = subtitlesTypeEnum -# Atomic simple type: {urn:vpro:shared:2009}subtitlesWorkflowEnum -class subtitlesWorkflowEnum (pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): +# Atomic simple type: {urn:vpro:shared:2009}subtitlesWorkflowEnum +class subtitlesWorkflowEnum(pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'subtitlesWorkflowEnum') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 140, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "subtitlesWorkflowEnum") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 140, 2) _Documentation = None -subtitlesWorkflowEnum._CF_enumeration = pyxb.binding.facets.CF_enumeration(value_datatype=subtitlesWorkflowEnum, enum_prefix=None) -subtitlesWorkflowEnum.IGNORE = subtitlesWorkflowEnum._CF_enumeration.addEnumeration(unicode_value='IGNORE', tag='IGNORE') -subtitlesWorkflowEnum.REVOKED = subtitlesWorkflowEnum._CF_enumeration.addEnumeration(unicode_value='REVOKED', tag='REVOKED') -subtitlesWorkflowEnum.FOR_DELETION = subtitlesWorkflowEnum._CF_enumeration.addEnumeration(unicode_value='FOR_DELETION', tag='FOR_DELETION') -subtitlesWorkflowEnum.DELETED = subtitlesWorkflowEnum._CF_enumeration.addEnumeration(unicode_value='DELETED', tag='DELETED') -subtitlesWorkflowEnum.FOR_PUBLICATION = subtitlesWorkflowEnum._CF_enumeration.addEnumeration(unicode_value='FOR_PUBLICATION', tag='FOR_PUBLICATION') -subtitlesWorkflowEnum.FOR_REPUBLICATION = subtitlesWorkflowEnum._CF_enumeration.addEnumeration(unicode_value='FOR_REPUBLICATION', tag='FOR_REPUBLICATION') -subtitlesWorkflowEnum.PUBLISHED = subtitlesWorkflowEnum._CF_enumeration.addEnumeration(unicode_value='PUBLISHED', tag='PUBLISHED') -subtitlesWorkflowEnum.PUBLISH_ERROR = subtitlesWorkflowEnum._CF_enumeration.addEnumeration(unicode_value='PUBLISH_ERROR', tag='PUBLISH_ERROR') + + +subtitlesWorkflowEnum._CF_enumeration = pyxb.binding.facets.CF_enumeration( + value_datatype=subtitlesWorkflowEnum, enum_prefix=None +) +subtitlesWorkflowEnum.IGNORE = subtitlesWorkflowEnum._CF_enumeration.addEnumeration( + unicode_value="IGNORE", tag="IGNORE" +) +subtitlesWorkflowEnum.REVOKED = subtitlesWorkflowEnum._CF_enumeration.addEnumeration( + unicode_value="REVOKED", tag="REVOKED" +) +subtitlesWorkflowEnum.FOR_DELETION = subtitlesWorkflowEnum._CF_enumeration.addEnumeration( + unicode_value="FOR_DELETION", tag="FOR_DELETION" +) +subtitlesWorkflowEnum.DELETED = subtitlesWorkflowEnum._CF_enumeration.addEnumeration( + unicode_value="DELETED", tag="DELETED" +) +subtitlesWorkflowEnum.FOR_PUBLICATION = subtitlesWorkflowEnum._CF_enumeration.addEnumeration( + unicode_value="FOR_PUBLICATION", tag="FOR_PUBLICATION" +) +subtitlesWorkflowEnum.FOR_REPUBLICATION = subtitlesWorkflowEnum._CF_enumeration.addEnumeration( + unicode_value="FOR_REPUBLICATION", tag="FOR_REPUBLICATION" +) +subtitlesWorkflowEnum.PUBLISHED = subtitlesWorkflowEnum._CF_enumeration.addEnumeration( + unicode_value="PUBLISHED", tag="PUBLISHED" +) +subtitlesWorkflowEnum.PUBLISH_ERROR = subtitlesWorkflowEnum._CF_enumeration.addEnumeration( + unicode_value="PUBLISH_ERROR", tag="PUBLISH_ERROR" +) subtitlesWorkflowEnum._InitializeFacetMap(subtitlesWorkflowEnum._CF_enumeration) -Namespace.addCategoryObject('typeBinding', 'subtitlesWorkflowEnum', subtitlesWorkflowEnum) +Namespace.addCategoryObject("typeBinding", "subtitlesWorkflowEnum", subtitlesWorkflowEnum) _module_typeBindings.subtitlesWorkflowEnum = subtitlesWorkflowEnum -# Atomic simple type: {urn:vpro:shared:2009}licenseEnum -class licenseEnum (pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): +# Atomic simple type: {urn:vpro:shared:2009}licenseEnum +class licenseEnum(pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'licenseEnum') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 153, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "licenseEnum") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 153, 2) _Documentation = None + + licenseEnum._CF_enumeration = pyxb.binding.facets.CF_enumeration(value_datatype=licenseEnum, enum_prefix=None) -licenseEnum.COPYRIGHTED = licenseEnum._CF_enumeration.addEnumeration(unicode_value='COPYRIGHTED', tag='COPYRIGHTED') -licenseEnum.PUBLIC_DOMAIN = licenseEnum._CF_enumeration.addEnumeration(unicode_value='PUBLIC_DOMAIN', tag='PUBLIC_DOMAIN') -licenseEnum.CC_BY = licenseEnum._CF_enumeration.addEnumeration(unicode_value='CC_BY', tag='CC_BY') -licenseEnum.CC_BY_1_0 = licenseEnum._CF_enumeration.addEnumeration(unicode_value='CC_BY_1_0', tag='CC_BY_1_0') -licenseEnum.CC_BY_2_0 = licenseEnum._CF_enumeration.addEnumeration(unicode_value='CC_BY_2_0', tag='CC_BY_2_0') -licenseEnum.CC_BY_3_0 = licenseEnum._CF_enumeration.addEnumeration(unicode_value='CC_BY_3_0', tag='CC_BY_3_0') -licenseEnum.CC_BY_4_0 = licenseEnum._CF_enumeration.addEnumeration(unicode_value='CC_BY_4_0', tag='CC_BY_4_0') -licenseEnum.CC_BY_SA = licenseEnum._CF_enumeration.addEnumeration(unicode_value='CC_BY_SA', tag='CC_BY_SA') -licenseEnum.CC_BY_SA_1_0 = licenseEnum._CF_enumeration.addEnumeration(unicode_value='CC_BY_SA_1_0', tag='CC_BY_SA_1_0') -licenseEnum.CC_BY_SA_2_0 = licenseEnum._CF_enumeration.addEnumeration(unicode_value='CC_BY_SA_2_0', tag='CC_BY_SA_2_0') -licenseEnum.CC_BY_SA_3_0 = licenseEnum._CF_enumeration.addEnumeration(unicode_value='CC_BY_SA_3_0', tag='CC_BY_SA_3_0') -licenseEnum.CC_BY_SA_4_0 = licenseEnum._CF_enumeration.addEnumeration(unicode_value='CC_BY_SA_4_0', tag='CC_BY_SA_4_0') -licenseEnum.CC_BY_ND = licenseEnum._CF_enumeration.addEnumeration(unicode_value='CC_BY_ND', tag='CC_BY_ND') -licenseEnum.CC_BY_ND_1_0 = licenseEnum._CF_enumeration.addEnumeration(unicode_value='CC_BY_ND_1_0', tag='CC_BY_ND_1_0') -licenseEnum.CC_BY_ND_2_0 = licenseEnum._CF_enumeration.addEnumeration(unicode_value='CC_BY_ND_2_0', tag='CC_BY_ND_2_0') -licenseEnum.CC_BY_ND_3_0 = licenseEnum._CF_enumeration.addEnumeration(unicode_value='CC_BY_ND_3_0', tag='CC_BY_ND_3_0') -licenseEnum.CC_BY_ND_4_0 = licenseEnum._CF_enumeration.addEnumeration(unicode_value='CC_BY_ND_4_0', tag='CC_BY_ND_4_0') -licenseEnum.CC_BY_NC = licenseEnum._CF_enumeration.addEnumeration(unicode_value='CC_BY_NC', tag='CC_BY_NC') -licenseEnum.CC_BY_NC_1_0 = licenseEnum._CF_enumeration.addEnumeration(unicode_value='CC_BY_NC_1_0', tag='CC_BY_NC_1_0') -licenseEnum.CC_BY_NC_2_0 = licenseEnum._CF_enumeration.addEnumeration(unicode_value='CC_BY_NC_2_0', tag='CC_BY_NC_2_0') -licenseEnum.CC_BY_NC_3_0 = licenseEnum._CF_enumeration.addEnumeration(unicode_value='CC_BY_NC_3_0', tag='CC_BY_NC_3_0') -licenseEnum.CC_BY_NC_4_0 = licenseEnum._CF_enumeration.addEnumeration(unicode_value='CC_BY_NC_4_0', tag='CC_BY_NC_4_0') -licenseEnum.CC_BY_NC_SA = licenseEnum._CF_enumeration.addEnumeration(unicode_value='CC_BY_NC_SA', tag='CC_BY_NC_SA') -licenseEnum.CC_BY_NC_SA_1_0 = licenseEnum._CF_enumeration.addEnumeration(unicode_value='CC_BY_NC_SA_1_0', tag='CC_BY_NC_SA_1_0') -licenseEnum.CC_BY_NC_SA_2_0 = licenseEnum._CF_enumeration.addEnumeration(unicode_value='CC_BY_NC_SA_2_0', tag='CC_BY_NC_SA_2_0') -licenseEnum.CC_BY_NC_SA_3_0 = licenseEnum._CF_enumeration.addEnumeration(unicode_value='CC_BY_NC_SA_3_0', tag='CC_BY_NC_SA_3_0') -licenseEnum.CC_BY_NC_SA_4_0 = licenseEnum._CF_enumeration.addEnumeration(unicode_value='CC_BY_NC_SA_4_0', tag='CC_BY_NC_SA_4_0') -licenseEnum.CC_BY_NC_ND = licenseEnum._CF_enumeration.addEnumeration(unicode_value='CC_BY_NC_ND', tag='CC_BY_NC_ND') -licenseEnum.CC_BY_NC_ND_1_0 = licenseEnum._CF_enumeration.addEnumeration(unicode_value='CC_BY_NC_ND_1_0', tag='CC_BY_NC_ND_1_0') -licenseEnum.CC_BY_NC_ND_2_0 = licenseEnum._CF_enumeration.addEnumeration(unicode_value='CC_BY_NC_ND_2_0', tag='CC_BY_NC_ND_2_0') -licenseEnum.CC_BY_NC_ND_3_0 = licenseEnum._CF_enumeration.addEnumeration(unicode_value='CC_BY_NC_ND_3_0', tag='CC_BY_NC_ND_3_0') -licenseEnum.CC_BY_NC_ND_4_0 = licenseEnum._CF_enumeration.addEnumeration(unicode_value='CC_BY_NC_ND_4_0', tag='CC_BY_NC_ND_4_0') -licenseEnum.USA_GOV = licenseEnum._CF_enumeration.addEnumeration(unicode_value='USA_GOV', tag='USA_GOV') +licenseEnum.COPYRIGHTED = licenseEnum._CF_enumeration.addEnumeration(unicode_value="COPYRIGHTED", tag="COPYRIGHTED") +licenseEnum.PUBLIC_DOMAIN = licenseEnum._CF_enumeration.addEnumeration( + unicode_value="PUBLIC_DOMAIN", tag="PUBLIC_DOMAIN" +) +licenseEnum.CC_BY = licenseEnum._CF_enumeration.addEnumeration(unicode_value="CC_BY", tag="CC_BY") +licenseEnum.CC_BY_1_0 = licenseEnum._CF_enumeration.addEnumeration(unicode_value="CC_BY_1_0", tag="CC_BY_1_0") +licenseEnum.CC_BY_2_0 = licenseEnum._CF_enumeration.addEnumeration(unicode_value="CC_BY_2_0", tag="CC_BY_2_0") +licenseEnum.CC_BY_3_0 = licenseEnum._CF_enumeration.addEnumeration(unicode_value="CC_BY_3_0", tag="CC_BY_3_0") +licenseEnum.CC_BY_4_0 = licenseEnum._CF_enumeration.addEnumeration(unicode_value="CC_BY_4_0", tag="CC_BY_4_0") +licenseEnum.CC_BY_SA = licenseEnum._CF_enumeration.addEnumeration(unicode_value="CC_BY_SA", tag="CC_BY_SA") +licenseEnum.CC_BY_SA_1_0 = licenseEnum._CF_enumeration.addEnumeration(unicode_value="CC_BY_SA_1_0", tag="CC_BY_SA_1_0") +licenseEnum.CC_BY_SA_2_0 = licenseEnum._CF_enumeration.addEnumeration(unicode_value="CC_BY_SA_2_0", tag="CC_BY_SA_2_0") +licenseEnum.CC_BY_SA_3_0 = licenseEnum._CF_enumeration.addEnumeration(unicode_value="CC_BY_SA_3_0", tag="CC_BY_SA_3_0") +licenseEnum.CC_BY_SA_4_0 = licenseEnum._CF_enumeration.addEnumeration(unicode_value="CC_BY_SA_4_0", tag="CC_BY_SA_4_0") +licenseEnum.CC_BY_ND = licenseEnum._CF_enumeration.addEnumeration(unicode_value="CC_BY_ND", tag="CC_BY_ND") +licenseEnum.CC_BY_ND_1_0 = licenseEnum._CF_enumeration.addEnumeration(unicode_value="CC_BY_ND_1_0", tag="CC_BY_ND_1_0") +licenseEnum.CC_BY_ND_2_0 = licenseEnum._CF_enumeration.addEnumeration(unicode_value="CC_BY_ND_2_0", tag="CC_BY_ND_2_0") +licenseEnum.CC_BY_ND_3_0 = licenseEnum._CF_enumeration.addEnumeration(unicode_value="CC_BY_ND_3_0", tag="CC_BY_ND_3_0") +licenseEnum.CC_BY_ND_4_0 = licenseEnum._CF_enumeration.addEnumeration(unicode_value="CC_BY_ND_4_0", tag="CC_BY_ND_4_0") +licenseEnum.CC_BY_NC = licenseEnum._CF_enumeration.addEnumeration(unicode_value="CC_BY_NC", tag="CC_BY_NC") +licenseEnum.CC_BY_NC_1_0 = licenseEnum._CF_enumeration.addEnumeration(unicode_value="CC_BY_NC_1_0", tag="CC_BY_NC_1_0") +licenseEnum.CC_BY_NC_2_0 = licenseEnum._CF_enumeration.addEnumeration(unicode_value="CC_BY_NC_2_0", tag="CC_BY_NC_2_0") +licenseEnum.CC_BY_NC_3_0 = licenseEnum._CF_enumeration.addEnumeration(unicode_value="CC_BY_NC_3_0", tag="CC_BY_NC_3_0") +licenseEnum.CC_BY_NC_4_0 = licenseEnum._CF_enumeration.addEnumeration(unicode_value="CC_BY_NC_4_0", tag="CC_BY_NC_4_0") +licenseEnum.CC_BY_NC_SA = licenseEnum._CF_enumeration.addEnumeration(unicode_value="CC_BY_NC_SA", tag="CC_BY_NC_SA") +licenseEnum.CC_BY_NC_SA_1_0 = licenseEnum._CF_enumeration.addEnumeration( + unicode_value="CC_BY_NC_SA_1_0", tag="CC_BY_NC_SA_1_0" +) +licenseEnum.CC_BY_NC_SA_2_0 = licenseEnum._CF_enumeration.addEnumeration( + unicode_value="CC_BY_NC_SA_2_0", tag="CC_BY_NC_SA_2_0" +) +licenseEnum.CC_BY_NC_SA_3_0 = licenseEnum._CF_enumeration.addEnumeration( + unicode_value="CC_BY_NC_SA_3_0", tag="CC_BY_NC_SA_3_0" +) +licenseEnum.CC_BY_NC_SA_4_0 = licenseEnum._CF_enumeration.addEnumeration( + unicode_value="CC_BY_NC_SA_4_0", tag="CC_BY_NC_SA_4_0" +) +licenseEnum.CC_BY_NC_ND = licenseEnum._CF_enumeration.addEnumeration(unicode_value="CC_BY_NC_ND", tag="CC_BY_NC_ND") +licenseEnum.CC_BY_NC_ND_1_0 = licenseEnum._CF_enumeration.addEnumeration( + unicode_value="CC_BY_NC_ND_1_0", tag="CC_BY_NC_ND_1_0" +) +licenseEnum.CC_BY_NC_ND_2_0 = licenseEnum._CF_enumeration.addEnumeration( + unicode_value="CC_BY_NC_ND_2_0", tag="CC_BY_NC_ND_2_0" +) +licenseEnum.CC_BY_NC_ND_3_0 = licenseEnum._CF_enumeration.addEnumeration( + unicode_value="CC_BY_NC_ND_3_0", tag="CC_BY_NC_ND_3_0" +) +licenseEnum.CC_BY_NC_ND_4_0 = licenseEnum._CF_enumeration.addEnumeration( + unicode_value="CC_BY_NC_ND_4_0", tag="CC_BY_NC_ND_4_0" +) +licenseEnum.USA_GOV = licenseEnum._CF_enumeration.addEnumeration(unicode_value="USA_GOV", tag="USA_GOV") licenseEnum._InitializeFacetMap(licenseEnum._CF_enumeration) -Namespace.addCategoryObject('typeBinding', 'licenseEnum', licenseEnum) +Namespace.addCategoryObject("typeBinding", "licenseEnum", licenseEnum) _module_typeBindings.licenseEnum = licenseEnum + # Complex type {urn:vpro:shared:2009}publishableObjectType with content type EMPTY -class publishableObjectType (pyxb.binding.basis.complexTypeDefinition): +class publishableObjectType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:shared:2009}publishableObjectType with content type EMPTY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_EMPTY _Abstract = True - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'publishableObjectType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 21, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "publishableObjectType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 21, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Attribute urn uses Python identifier urn - __urn = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'urn'), 'urn', '__urnvproshared2009_publishableObjectType_urn', pyxb.binding.datatypes.anyURI) - __urn._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 11, 4) - __urn._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 11, 4) - + __urn = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "urn"), + "urn", + "__urnvproshared2009_publishableObjectType_urn", + pyxb.binding.datatypes.anyURI, + ) + __urn._DeclarationLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 11, 4) + __urn._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 11, 4) + urn = property(__urn.value, __urn.set, None, None) - # Attribute publishStart uses Python identifier publishStart - __publishStart = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'publishStart'), 'publishStart', '__urnvproshared2009_publishableObjectType_publishStart', pyxb.binding.datatypes.dateTime) - __publishStart._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 12, 4) - __publishStart._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 12, 4) - + __publishStart = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "publishStart"), + "publishStart", + "__urnvproshared2009_publishableObjectType_publishStart", + pyxb.binding.datatypes.dateTime, + ) + __publishStart._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproShared.xsd", 12, 4 + ) + __publishStart._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproShared.xsd", 12, 4 + ) + publishStart = property(__publishStart.value, __publishStart.set, None, None) - # Attribute publishStop uses Python identifier publishStop - __publishStop = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'publishStop'), 'publishStop', '__urnvproshared2009_publishableObjectType_publishStop', pyxb.binding.datatypes.dateTime) - __publishStop._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 13, 4) - __publishStop._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 13, 4) - + __publishStop = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "publishStop"), + "publishStop", + "__urnvproshared2009_publishableObjectType_publishStop", + pyxb.binding.datatypes.dateTime, + ) + __publishStop._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproShared.xsd", 13, 4 + ) + __publishStop._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 13, 4) + publishStop = property(__publishStop.value, __publishStop.set, None, None) - # Attribute publishDate uses Python identifier publishDate - __publishDate = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'publishDate'), 'publishDate', '__urnvproshared2009_publishableObjectType_publishDate', pyxb.binding.datatypes.dateTime) - __publishDate._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 14, 4) - __publishDate._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 14, 4) - + __publishDate = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "publishDate"), + "publishDate", + "__urnvproshared2009_publishableObjectType_publishDate", + pyxb.binding.datatypes.dateTime, + ) + __publishDate._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproShared.xsd", 14, 4 + ) + __publishDate._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 14, 4) + publishDate = property(__publishDate.value, __publishDate.set, None, None) - # Attribute creationDate uses Python identifier creationDate - __creationDate = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'creationDate'), 'creationDate', '__urnvproshared2009_publishableObjectType_creationDate', pyxb.binding.datatypes.dateTime) - __creationDate._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 15, 4) - __creationDate._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 15, 4) - + __creationDate = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "creationDate"), + "creationDate", + "__urnvproshared2009_publishableObjectType_creationDate", + pyxb.binding.datatypes.dateTime, + ) + __creationDate._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproShared.xsd", 15, 4 + ) + __creationDate._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproShared.xsd", 15, 4 + ) + creationDate = property(__creationDate.value, __creationDate.set, None, None) - # Attribute lastModified uses Python identifier lastModified - __lastModified = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'lastModified'), 'lastModified', '__urnvproshared2009_publishableObjectType_lastModified', pyxb.binding.datatypes.dateTime) - __lastModified._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 16, 4) - __lastModified._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 16, 4) - + __lastModified = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "lastModified"), + "lastModified", + "__urnvproshared2009_publishableObjectType_lastModified", + pyxb.binding.datatypes.dateTime, + ) + __lastModified._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproShared.xsd", 16, 4 + ) + __lastModified._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproShared.xsd", 16, 4 + ) + lastModified = property(__lastModified.value, __lastModified.set, None, None) - # Attribute workflow uses Python identifier workflow - __workflow = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'workflow'), 'workflow', '__urnvproshared2009_publishableObjectType_workflow', _module_typeBindings.workflowEnumType) - __workflow._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 17, 4) - __workflow._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 17, 4) - + __workflow = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "workflow"), + "workflow", + "__urnvproshared2009_publishableObjectType_workflow", + _module_typeBindings.workflowEnumType, + ) + __workflow._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproShared.xsd", 17, 4 + ) + __workflow._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 17, 4) + workflow = property(__workflow.value, __workflow.set, None, None) - _ElementMap.update({ - - }) - _AttributeMap.update({ - __urn.name() : __urn, - __publishStart.name() : __publishStart, - __publishStop.name() : __publishStop, - __publishDate.name() : __publishDate, - __creationDate.name() : __creationDate, - __lastModified.name() : __lastModified, - __workflow.name() : __workflow - }) + _ElementMap.update({}) + _AttributeMap.update( + { + __urn.name(): __urn, + __publishStart.name(): __publishStart, + __publishStop.name(): __publishStop, + __publishDate.name(): __publishDate, + __creationDate.name(): __creationDate, + __lastModified.name(): __lastModified, + __workflow.name(): __workflow, + } + ) + + _module_typeBindings.publishableObjectType = publishableObjectType -Namespace.addCategoryObject('typeBinding', 'publishableObjectType', publishableObjectType) +Namespace.addCategoryObject("typeBinding", "publishableObjectType", publishableObjectType) # Complex type {urn:vpro:shared:2009}imageType with content type ELEMENT_ONLY -class imageType (pyxb.binding.basis.complexTypeDefinition): +class imageType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:shared:2009}imageType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'imageType') - _XSDLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 51, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "imageType") + _XSDLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 51, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:shared:2009}title uses Python identifier title - __title = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'title'), 'title', '__urnvproshared2009_imageType_urnvproshared2009title', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 53, 6), ) + __title = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "title"), + "title", + "__urnvproshared2009_imageType_urnvproshared2009title", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 53, 6), + ) - title = property(__title.value, __title.set, None, None) - # Element {urn:vpro:shared:2009}description uses Python identifier description - __description = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'description'), 'description', '__urnvproshared2009_imageType_urnvproshared2009description', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 54, 6), ) + __description = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "description"), + "description", + "__urnvproshared2009_imageType_urnvproshared2009description", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 54, 6), + ) - description = property(__description.value, __description.set, None, None) - # Element {urn:vpro:shared:2009}imageUri uses Python identifier imageUri - __imageUri = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'imageUri'), 'imageUri', '__urnvproshared2009_imageType_urnvproshared2009imageUri', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 55, 6), ) + __imageUri = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "imageUri"), + "imageUri", + "__urnvproshared2009_imageType_urnvproshared2009imageUri", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 55, 6), + ) - imageUri = property(__imageUri.value, __imageUri.set, None, None) - # Element {urn:vpro:shared:2009}offset uses Python identifier offset - __offset = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'offset'), 'offset', '__urnvproshared2009_imageType_urnvproshared2009offset', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 56, 6), ) + __offset = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "offset"), + "offset", + "__urnvproshared2009_imageType_urnvproshared2009offset", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 56, 6), + ) - offset = property(__offset.value, __offset.set, None, None) - # Element {urn:vpro:shared:2009}height uses Python identifier height - __height = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'height'), 'height', '__urnvproshared2009_imageType_urnvproshared2009height', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 57, 6), ) + __height = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "height"), + "height", + "__urnvproshared2009_imageType_urnvproshared2009height", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 57, 6), + ) - height = property(__height.value, __height.set, None, None) - # Element {urn:vpro:shared:2009}width uses Python identifier width - __width = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'width'), 'width', '__urnvproshared2009_imageType_urnvproshared2009width', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 58, 6), ) + __width = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "width"), + "width", + "__urnvproshared2009_imageType_urnvproshared2009width", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 58, 6), + ) - width = property(__width.value, __width.set, None, None) - # Element {urn:vpro:shared:2009}credits uses Python identifier credits - __credits = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'credits'), 'credits', '__urnvproshared2009_imageType_urnvproshared2009credits', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 59, 6), ) + __credits = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "credits"), + "credits", + "__urnvproshared2009_imageType_urnvproshared2009credits", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 59, 6), + ) - credits = property(__credits.value, __credits.set, None, None) - # Element {urn:vpro:shared:2009}source uses Python identifier source - __source = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'source'), 'source', '__urnvproshared2009_imageType_urnvproshared2009source', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 60, 6), ) + __source = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "source"), + "source", + "__urnvproshared2009_imageType_urnvproshared2009source", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 60, 6), + ) + + source = property( + __source.value, __source.set, None, "\n Where this image was found. In words. E.g. 'ANP'\n " + ) - - source = property(__source.value, __source.set, None, "\n Where this image was found. In words. E.g. 'ANP'\n ") - - # Element {urn:vpro:shared:2009}sourceName uses Python identifier sourceName - __sourceName = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'sourceName'), 'sourceName', '__urnvproshared2009_imageType_urnvproshared2009sourceName', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 67, 6), ) - - - sourceName = property(__sourceName.value, __sourceName.set, None, '\n Where this image was found. As an URL.\n ') + __sourceName = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "sourceName"), + "sourceName", + "__urnvproshared2009_imageType_urnvproshared2009sourceName", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 67, 6), + ) + + sourceName = property( + __sourceName.value, __sourceName.set, None, "\n Where this image was found. As an URL.\n " + ) - # Element {urn:vpro:shared:2009}license uses Python identifier license - __license = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'license'), 'license', '__urnvproshared2009_imageType_urnvproshared2009license', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 74, 6), ) + __license = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "license"), + "license", + "__urnvproshared2009_imageType_urnvproshared2009license", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 74, 6), + ) - license = property(__license.value, __license.set, None, None) - # Element {urn:vpro:shared:2009}crid uses Python identifier crid - __crid = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'crid'), 'crid', '__urnvproshared2009_imageType_urnvproshared2009crid', True, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 75, 6), ) + __crid = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "crid"), + "crid", + "__urnvproshared2009_imageType_urnvproshared2009crid", + True, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 75, 6), + ) - crid = property(__crid.value, __crid.set, None, None) - # Element {urn:vpro:shared:2009}date uses Python identifier date - __date = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'date'), 'date', '__urnvproshared2009_imageType_urnvproshared2009date', False, pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 76, 6), ) + __date = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "date"), + "date", + "__urnvproshared2009_imageType_urnvproshared2009date", + False, + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 76, 6), + ) - date = property(__date.value, __date.set, None, None) - # Attribute urn uses Python identifier urn - __urn = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'urn'), 'urn', '__urnvproshared2009_imageType_urn', pyxb.binding.datatypes.anyURI) - __urn._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 11, 4) - __urn._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 11, 4) - + __urn = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "urn"), + "urn", + "__urnvproshared2009_imageType_urn", + pyxb.binding.datatypes.anyURI, + ) + __urn._DeclarationLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 11, 4) + __urn._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 11, 4) + urn = property(__urn.value, __urn.set, None, None) - # Attribute publishStart uses Python identifier publishStart - __publishStart = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'publishStart'), 'publishStart', '__urnvproshared2009_imageType_publishStart', pyxb.binding.datatypes.dateTime) - __publishStart._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 12, 4) - __publishStart._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 12, 4) - + __publishStart = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "publishStart"), + "publishStart", + "__urnvproshared2009_imageType_publishStart", + pyxb.binding.datatypes.dateTime, + ) + __publishStart._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproShared.xsd", 12, 4 + ) + __publishStart._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproShared.xsd", 12, 4 + ) + publishStart = property(__publishStart.value, __publishStart.set, None, None) - # Attribute publishStop uses Python identifier publishStop - __publishStop = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'publishStop'), 'publishStop', '__urnvproshared2009_imageType_publishStop', pyxb.binding.datatypes.dateTime) - __publishStop._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 13, 4) - __publishStop._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 13, 4) - + __publishStop = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "publishStop"), + "publishStop", + "__urnvproshared2009_imageType_publishStop", + pyxb.binding.datatypes.dateTime, + ) + __publishStop._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproShared.xsd", 13, 4 + ) + __publishStop._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 13, 4) + publishStop = property(__publishStop.value, __publishStop.set, None, None) - # Attribute publishDate uses Python identifier publishDate - __publishDate = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'publishDate'), 'publishDate', '__urnvproshared2009_imageType_publishDate', pyxb.binding.datatypes.dateTime) - __publishDate._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 14, 4) - __publishDate._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 14, 4) - + __publishDate = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "publishDate"), + "publishDate", + "__urnvproshared2009_imageType_publishDate", + pyxb.binding.datatypes.dateTime, + ) + __publishDate._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproShared.xsd", 14, 4 + ) + __publishDate._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 14, 4) + publishDate = property(__publishDate.value, __publishDate.set, None, None) - # Attribute creationDate uses Python identifier creationDate - __creationDate = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'creationDate'), 'creationDate', '__urnvproshared2009_imageType_creationDate', pyxb.binding.datatypes.dateTime) - __creationDate._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 15, 4) - __creationDate._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 15, 4) - + __creationDate = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "creationDate"), + "creationDate", + "__urnvproshared2009_imageType_creationDate", + pyxb.binding.datatypes.dateTime, + ) + __creationDate._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproShared.xsd", 15, 4 + ) + __creationDate._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproShared.xsd", 15, 4 + ) + creationDate = property(__creationDate.value, __creationDate.set, None, None) - # Attribute lastModified uses Python identifier lastModified - __lastModified = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'lastModified'), 'lastModified', '__urnvproshared2009_imageType_lastModified', pyxb.binding.datatypes.dateTime) - __lastModified._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 16, 4) - __lastModified._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 16, 4) - + __lastModified = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "lastModified"), + "lastModified", + "__urnvproshared2009_imageType_lastModified", + pyxb.binding.datatypes.dateTime, + ) + __lastModified._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproShared.xsd", 16, 4 + ) + __lastModified._UseLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproShared.xsd", 16, 4 + ) + lastModified = property(__lastModified.value, __lastModified.set, None, None) - # Attribute workflow uses Python identifier workflow - __workflow = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'workflow'), 'workflow', '__urnvproshared2009_imageType_workflow', _module_typeBindings.workflowEnumType) - __workflow._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 17, 4) - __workflow._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 17, 4) - + __workflow = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "workflow"), + "workflow", + "__urnvproshared2009_imageType_workflow", + _module_typeBindings.workflowEnumType, + ) + __workflow._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproShared.xsd", 17, 4 + ) + __workflow._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 17, 4) + workflow = property(__workflow.value, __workflow.set, None, None) - # Attribute type uses Python identifier type - __type = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'type'), 'type', '__urnvproshared2009_imageType_type', _module_typeBindings.imageTypeEnum) - __type._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 78, 4) - __type._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 78, 4) - + __type = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "type"), + "type", + "__urnvproshared2009_imageType_type", + _module_typeBindings.imageTypeEnum, + ) + __type._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproShared.xsd", 78, 4 + ) + __type._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 78, 4) + type = property(__type.value, __type.set, None, None) - # Attribute owner uses Python identifier owner - __owner = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'owner'), 'owner', '__urnvproshared2009_imageType_owner', _module_typeBindings.ownerTypeEnum, required=True) - __owner._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 79, 4) - __owner._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 79, 4) - + __owner = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "owner"), + "owner", + "__urnvproshared2009_imageType_owner", + _module_typeBindings.ownerTypeEnum, + required=True, + ) + __owner._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproShared.xsd", 79, 4 + ) + __owner._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 79, 4) + owner = property(__owner.value, __owner.set, None, None) - # Attribute highlighted uses Python identifier highlighted - __highlighted = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'highlighted'), 'highlighted', '__urnvproshared2009_imageType_highlighted', pyxb.binding.datatypes.boolean, unicode_default='false') - __highlighted._DeclarationLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 80, 4) - __highlighted._UseLocation = pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 80, 4) - - highlighted = property(__highlighted.value, __highlighted.set, None, None) + __highlighted = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "highlighted"), + "highlighted", + "__urnvproshared2009_imageType_highlighted", + pyxb.binding.datatypes.boolean, + unicode_default="false", + ) + __highlighted._DeclarationLocation = pyxb.utils.utility.Location( + "https://poms-test.omroep.nl/schema/vproShared.xsd", 80, 4 + ) + __highlighted._UseLocation = pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 80, 4) - _ElementMap.update({ - __title.name() : __title, - __description.name() : __description, - __imageUri.name() : __imageUri, - __offset.name() : __offset, - __height.name() : __height, - __width.name() : __width, - __credits.name() : __credits, - __source.name() : __source, - __sourceName.name() : __sourceName, - __license.name() : __license, - __crid.name() : __crid, - __date.name() : __date - }) - _AttributeMap.update({ - __urn.name() : __urn, - __publishStart.name() : __publishStart, - __publishStop.name() : __publishStop, - __publishDate.name() : __publishDate, - __creationDate.name() : __creationDate, - __lastModified.name() : __lastModified, - __workflow.name() : __workflow, - __type.name() : __type, - __owner.name() : __owner, - __highlighted.name() : __highlighted - }) -_module_typeBindings.imageType = imageType -Namespace.addCategoryObject('typeBinding', 'imageType', imageType) - - -image = pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'image'), imageType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 8, 2)) -Namespace.addCategoryObject('elementBinding', image.name().localName(), image) - - - -imageType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'title'), pyxb.binding.datatypes.string, scope=imageType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 53, 6))) - -imageType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'description'), pyxb.binding.datatypes.string, scope=imageType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 54, 6))) - -imageType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'imageUri'), pyxb.binding.datatypes.anyURI, scope=imageType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 55, 6))) - -imageType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'offset'), pyxb.binding.datatypes.duration, scope=imageType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 56, 6))) - -imageType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'height'), pyxb.binding.datatypes.positiveInteger, scope=imageType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 57, 6))) - -imageType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'width'), pyxb.binding.datatypes.positiveInteger, scope=imageType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 58, 6))) - -imageType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'credits'), pyxb.binding.datatypes.string, scope=imageType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 59, 6))) - -imageType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'source'), pyxb.binding.datatypes.string, scope=imageType, documentation="\n Where this image was found. In words. E.g. 'ANP'\n ", location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 60, 6))) - -imageType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'sourceName'), pyxb.binding.datatypes.string, scope=imageType, documentation='\n Where this image was found. As an URL.\n ', location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 67, 6))) - -imageType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'license'), licenseEnum, scope=imageType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 74, 6))) + highlighted = property(__highlighted.value, __highlighted.set, None, None) -imageType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'crid'), pyxb.binding.datatypes.string, scope=imageType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 75, 6))) + _ElementMap.update( + { + __title.name(): __title, + __description.name(): __description, + __imageUri.name(): __imageUri, + __offset.name(): __offset, + __height.name(): __height, + __width.name(): __width, + __credits.name(): __credits, + __source.name(): __source, + __sourceName.name(): __sourceName, + __license.name(): __license, + __crid.name(): __crid, + __date.name(): __date, + } + ) + _AttributeMap.update( + { + __urn.name(): __urn, + __publishStart.name(): __publishStart, + __publishStop.name(): __publishStop, + __publishDate.name(): __publishDate, + __creationDate.name(): __creationDate, + __lastModified.name(): __lastModified, + __workflow.name(): __workflow, + __type.name(): __type, + __owner.name(): __owner, + __highlighted.name(): __highlighted, + } + ) -imageType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'date'), pyxb.binding.datatypes.string, scope=imageType, location=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 76, 6))) -def _BuildAutomaton (): +_module_typeBindings.imageType = imageType +Namespace.addCategoryObject("typeBinding", "imageType", imageType) + + +image = pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "image"), + imageType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 8, 2), +) +Namespace.addCategoryObject("elementBinding", image.name().localName(), image) + + +imageType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "title"), + pyxb.binding.datatypes.string, + scope=imageType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 53, 6), + ) +) + +imageType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "description"), + pyxb.binding.datatypes.string, + scope=imageType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 54, 6), + ) +) + +imageType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "imageUri"), + pyxb.binding.datatypes.anyURI, + scope=imageType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 55, 6), + ) +) + +imageType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "offset"), + pyxb.binding.datatypes.duration, + scope=imageType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 56, 6), + ) +) + +imageType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "height"), + pyxb.binding.datatypes.positiveInteger, + scope=imageType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 57, 6), + ) +) + +imageType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "width"), + pyxb.binding.datatypes.positiveInteger, + scope=imageType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 58, 6), + ) +) + +imageType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "credits"), + pyxb.binding.datatypes.string, + scope=imageType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 59, 6), + ) +) + +imageType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "source"), + pyxb.binding.datatypes.string, + scope=imageType, + documentation="\n Where this image was found. In words. E.g. 'ANP'\n ", + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 60, 6), + ) +) + +imageType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "sourceName"), + pyxb.binding.datatypes.string, + scope=imageType, + documentation="\n Where this image was found. As an URL.\n ", + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 67, 6), + ) +) + +imageType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "license"), + licenseEnum, + scope=imageType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 74, 6), + ) +) + +imageType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "crid"), + pyxb.binding.datatypes.string, + scope=imageType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 75, 6), + ) +) + +imageType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "date"), + pyxb.binding.datatypes.string, + scope=imageType, + location=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 76, 6), + ) +) + + +def _BuildAutomaton(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton del _BuildAutomaton import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 54, 6)) + cc_0 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 54, 6) + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 55, 6)) + cc_1 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 55, 6) + ) counters.add(cc_1) - cc_2 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 56, 6)) + cc_2 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 56, 6) + ) counters.add(cc_2) - cc_3 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 57, 6)) + cc_3 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 57, 6) + ) counters.add(cc_3) - cc_4 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 58, 6)) + cc_4 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 58, 6) + ) counters.add(cc_4) - cc_5 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 59, 6)) + cc_5 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 59, 6) + ) counters.add(cc_5) - cc_6 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 60, 6)) + cc_6 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 60, 6) + ) counters.add(cc_6) - cc_7 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 67, 6)) + cc_7 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 67, 6) + ) counters.add(cc_7) - cc_8 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 74, 6)) + cc_8 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 74, 6) + ) counters.add(cc_8) - cc_9 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 75, 6)) + cc_9 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 75, 6), + ) counters.add(cc_9) - cc_10 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 76, 6)) + cc_10 = fac.CounterCondition( + min=0, max=1, metadata=pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 76, 6) + ) counters.add(cc_10) states = [] final_update = set() - symbol = pyxb.binding.content.ElementUse(imageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'title')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 53, 6)) + symbol = pyxb.binding.content.ElementUse( + imageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "title")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 53, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(imageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'description')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 54, 6)) + symbol = pyxb.binding.content.ElementUse( + imageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "description")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 54, 6), + ) st_1 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_1) final_update = set() final_update.add(fac.UpdateInstruction(cc_1, False)) - symbol = pyxb.binding.content.ElementUse(imageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'imageUri')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 55, 6)) + symbol = pyxb.binding.content.ElementUse( + imageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "imageUri")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 55, 6), + ) st_2 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_2) final_update = set() final_update.add(fac.UpdateInstruction(cc_2, False)) - symbol = pyxb.binding.content.ElementUse(imageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'offset')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 56, 6)) + symbol = pyxb.binding.content.ElementUse( + imageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "offset")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 56, 6), + ) st_3 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_3) final_update = set() final_update.add(fac.UpdateInstruction(cc_3, False)) - symbol = pyxb.binding.content.ElementUse(imageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'height')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 57, 6)) + symbol = pyxb.binding.content.ElementUse( + imageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "height")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 57, 6), + ) st_4 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_4) final_update = set() final_update.add(fac.UpdateInstruction(cc_4, False)) - symbol = pyxb.binding.content.ElementUse(imageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'width')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 58, 6)) + symbol = pyxb.binding.content.ElementUse( + imageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "width")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 58, 6), + ) st_5 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_5) final_update = set() final_update.add(fac.UpdateInstruction(cc_5, False)) - symbol = pyxb.binding.content.ElementUse(imageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'credits')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 59, 6)) + symbol = pyxb.binding.content.ElementUse( + imageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "credits")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 59, 6), + ) st_6 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_6) final_update = set() final_update.add(fac.UpdateInstruction(cc_6, False)) - symbol = pyxb.binding.content.ElementUse(imageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'source')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 60, 6)) + symbol = pyxb.binding.content.ElementUse( + imageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "source")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 60, 6), + ) st_7 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_7) final_update = set() final_update.add(fac.UpdateInstruction(cc_7, False)) - symbol = pyxb.binding.content.ElementUse(imageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'sourceName')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 67, 6)) + symbol = pyxb.binding.content.ElementUse( + imageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "sourceName")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 67, 6), + ) st_8 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_8) final_update = set() final_update.add(fac.UpdateInstruction(cc_8, False)) - symbol = pyxb.binding.content.ElementUse(imageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'license')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 74, 6)) + symbol = pyxb.binding.content.ElementUse( + imageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "license")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 74, 6), + ) st_9 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_9) final_update = set() final_update.add(fac.UpdateInstruction(cc_9, False)) - symbol = pyxb.binding.content.ElementUse(imageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'crid')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 75, 6)) + symbol = pyxb.binding.content.ElementUse( + imageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "crid")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 75, 6), + ) st_10 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_10) final_update = set() final_update.add(fac.UpdateInstruction(cc_10, False)) - symbol = pyxb.binding.content.ElementUse(imageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'date')), pyxb.utils.utility.Location('https://poms-test.omroep.nl/schema/vproShared.xsd', 76, 6)) + symbol = pyxb.binding.content.ElementUse( + imageType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "date")), + pyxb.utils.utility.Location("https://poms-test.omroep.nl/schema/vproShared.xsd", 76, 6), + ) st_11 = fac.State(symbol, is_initial=False, final_update=final_update, is_unordered_catenation=False) states.append(st_11) transitions = [] - transitions.append(fac.Transition(st_1, [ - ])) - transitions.append(fac.Transition(st_2, [ - ])) - transitions.append(fac.Transition(st_3, [ - ])) - transitions.append(fac.Transition(st_4, [ - ])) - transitions.append(fac.Transition(st_5, [ - ])) - transitions.append(fac.Transition(st_6, [ - ])) - transitions.append(fac.Transition(st_7, [ - ])) - transitions.append(fac.Transition(st_8, [ - ])) - transitions.append(fac.Transition(st_9, [ - ])) - transitions.append(fac.Transition(st_10, [ - ])) - transitions.append(fac.Transition(st_11, [ - ])) + transitions.append(fac.Transition(st_1, [])) + transitions.append(fac.Transition(st_2, [])) + transitions.append(fac.Transition(st_3, [])) + transitions.append(fac.Transition(st_4, [])) + transitions.append(fac.Transition(st_5, [])) + transitions.append(fac.Transition(st_6, [])) + transitions.append(fac.Transition(st_7, [])) + transitions.append(fac.Transition(st_8, [])) + transitions.append(fac.Transition(st_9, [])) + transitions.append(fac.Transition(st_10, [])) + transitions.append(fac.Transition(st_11, [])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_0, False)])) st_1._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_1, True) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_1, False) ])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_1, True)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_1, False)])) st_2._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_2, True) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_2, False) ])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_2, True)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_2, False)])) st_3._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_3, True) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_3, False) ])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_3, True)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_3, False)])) st_4._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_4, True) ])) - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_4, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_4, False) ])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_4, True)])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_4, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_4, False)])) st_5._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_6, [ - fac.UpdateInstruction(cc_5, True) ])) - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_5, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_5, False) ])) + transitions.append(fac.Transition(st_6, [fac.UpdateInstruction(cc_5, True)])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_5, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_5, False)])) st_6._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_7, [ - fac.UpdateInstruction(cc_6, True) ])) - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_6, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_6, False) ])) + transitions.append(fac.Transition(st_7, [fac.UpdateInstruction(cc_6, True)])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_6, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_6, False)])) st_7._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_8, [ - fac.UpdateInstruction(cc_7, True) ])) - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_7, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_7, False) ])) + transitions.append(fac.Transition(st_8, [fac.UpdateInstruction(cc_7, True)])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_7, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_7, False)])) st_8._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_9, [ - fac.UpdateInstruction(cc_8, True) ])) - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_8, False) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_8, False) ])) + transitions.append(fac.Transition(st_9, [fac.UpdateInstruction(cc_8, True)])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_8, False)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_8, False)])) st_9._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_10, [ - fac.UpdateInstruction(cc_9, True) ])) - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_9, False) ])) + transitions.append(fac.Transition(st_10, [fac.UpdateInstruction(cc_9, True)])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_9, False)])) st_10._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_11, [ - fac.UpdateInstruction(cc_10, True) ])) + transitions.append(fac.Transition(st_11, [fac.UpdateInstruction(cc_10, True)])) st_11._set_transitionSet(transitions) return fac.Automaton(states, counters, False, containing_state=None) -imageType._Automaton = _BuildAutomaton() + +imageType._Automaton = _BuildAutomaton() diff --git a/src/npoapi/xml/subtitles.py b/src/npoapi/xml/subtitles.py index 2d6c3de..626b398 100644 --- a/src/npoapi/xml/subtitles.py +++ b/src/npoapi/xml/subtitles.py @@ -5,19 +5,22 @@ # Namespace urn:vpro:media:subtitles:2009 from __future__ import unicode_literals + +import io +import sys + import pyxb import pyxb.binding import pyxb.binding.saxer -import io -import pyxb.utils.utility import pyxb.utils.domutils -import sys import pyxb.utils.six as _six +import pyxb.utils.utility + # Unique identifier for bindings created at the same time -_GenerationUID = pyxb.utils.utility.UniqueIdentifier('urn:uuid:fa5187de-5153-11ed-9cc8-3e22fb45f01a') +_GenerationUID = pyxb.utils.utility.UniqueIdentifier("urn:uuid:fa5187de-5153-11ed-9cc8-3e22fb45f01a") # Version of PyXB used to generate the bindings -_PyXBVersion = '1.2.6' +_PyXBVersion = "1.2.6" # Generated bindings are not compatible across PyXB versions if pyxb.__version__ != _PyXBVersion: raise pyxb.PyXBVersionError(_PyXBVersion) @@ -29,13 +32,15 @@ # Import bindings for namespaces imported into schema import pyxb.binding.datatypes import pyxb.binding.xml_ + import npoapi.xml.shared as _ImportedBinding_npoapi_xml_shared # NOTE: All namespace declarations are reserved within the binding -Namespace = pyxb.namespace.NamespaceForURI('urn:vpro:media:subtitles:2009', create_if_missing=True) -Namespace.configureCategories(['typeBinding', 'elementBinding']) +Namespace = pyxb.namespace.NamespaceForURI("urn:vpro:media:subtitles:2009", create_if_missing=True) +Namespace.configureCategories(["typeBinding", "elementBinding"]) -def CreateFromDocument (xml_text, default_namespace=None, location_base=None): + +def CreateFromDocument(xml_text, default_namespace=None, location_base=None): """Parse the given XML and use the document element to create a Python instance. @@ -68,7 +73,8 @@ def CreateFromDocument (xml_text, default_namespace=None, location_base=None): instance = handler.rootObject() return instance -def CreateFromDOM (node, default_namespace=None): + +def CreateFromDOM(node, default_namespace=None): """Create a Python instance from the given DOM node. The node tag must correspond to an element declaration in this module. @@ -79,176 +85,295 @@ def CreateFromDOM (node, default_namespace=None): # Atomic simple type: {urn:vpro:media:subtitles:2009}subtitlesFormatEnum -class subtitlesFormatEnum (pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): - +class subtitlesFormatEnum(pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'subtitlesFormatEnum') - _XSDLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009', 33, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "subtitlesFormatEnum") + _XSDLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009", 33, 2 + ) _Documentation = None -subtitlesFormatEnum._CF_enumeration = pyxb.binding.facets.CF_enumeration(value_datatype=subtitlesFormatEnum, enum_prefix=None) -subtitlesFormatEnum.WEBVTT = subtitlesFormatEnum._CF_enumeration.addEnumeration(unicode_value='WEBVTT', tag='WEBVTT') -subtitlesFormatEnum.TT888 = subtitlesFormatEnum._CF_enumeration.addEnumeration(unicode_value='TT888', tag='TT888') -subtitlesFormatEnum.EBU = subtitlesFormatEnum._CF_enumeration.addEnumeration(unicode_value='EBU', tag='EBU') -subtitlesFormatEnum.SRT = subtitlesFormatEnum._CF_enumeration.addEnumeration(unicode_value='SRT', tag='SRT') + + +subtitlesFormatEnum._CF_enumeration = pyxb.binding.facets.CF_enumeration( + value_datatype=subtitlesFormatEnum, enum_prefix=None +) +subtitlesFormatEnum.WEBVTT = subtitlesFormatEnum._CF_enumeration.addEnumeration(unicode_value="WEBVTT", tag="WEBVTT") +subtitlesFormatEnum.TT888 = subtitlesFormatEnum._CF_enumeration.addEnumeration(unicode_value="TT888", tag="TT888") +subtitlesFormatEnum.EBU = subtitlesFormatEnum._CF_enumeration.addEnumeration(unicode_value="EBU", tag="EBU") +subtitlesFormatEnum.SRT = subtitlesFormatEnum._CF_enumeration.addEnumeration(unicode_value="SRT", tag="SRT") subtitlesFormatEnum._InitializeFacetMap(subtitlesFormatEnum._CF_enumeration) -Namespace.addCategoryObject('typeBinding', 'subtitlesFormatEnum', subtitlesFormatEnum) +Namespace.addCategoryObject("typeBinding", "subtitlesFormatEnum", subtitlesFormatEnum) _module_typeBindings.subtitlesFormatEnum = subtitlesFormatEnum + # Complex type {urn:vpro:media:subtitles:2009}subtitlesType with content type ELEMENT_ONLY -class subtitlesType (pyxb.binding.basis.complexTypeDefinition): +class subtitlesType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:subtitles:2009}subtitlesType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'subtitlesType') - _XSDLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009', 9, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "subtitlesType") + _XSDLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009", 9, 2 + ) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:media:subtitles:2009}content uses Python identifier content_ - __content = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'content'), 'content_', '__urnvpromediasubtitles2009_subtitlesType_urnvpromediasubtitles2009content', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009', 11, 6), ) + __content = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "content"), + "content_", + "__urnvpromediasubtitles2009_subtitlesType_urnvpromediasubtitles2009content", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009", 11, 6), + ) - content_ = property(__content.value, __content.set, None, None) - # Attribute {http://www.w3.org/XML/1998/namespace}lang uses Python identifier lang - __lang = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(pyxb.namespace.XML, 'lang'), 'lang', '__urnvpromediasubtitles2009_subtitlesType_httpwww_w3_orgXML1998namespacelang', pyxb.binding.xml_.STD_ANON_lang) + __lang = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(pyxb.namespace.XML, "lang"), + "lang", + "__urnvpromediasubtitles2009_subtitlesType_httpwww_w3_orgXML1998namespacelang", + pyxb.binding.xml_.STD_ANON_lang, + ) __lang._DeclarationLocation = None - __lang._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009', 18, 4) - + __lang._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009", 18, 4 + ) + lang = property(__lang.value, __lang.set, None, None) - # Attribute mid uses Python identifier mid - __mid = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'mid'), 'mid', '__urnvpromediasubtitles2009_subtitlesType_mid', pyxb.binding.datatypes.string, required=True) - __mid._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009', 13, 4) - __mid._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009', 13, 4) - + __mid = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "mid"), + "mid", + "__urnvpromediasubtitles2009_subtitlesType_mid", + pyxb.binding.datatypes.string, + required=True, + ) + __mid._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009", 13, 4 + ) + __mid._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009", 13, 4 + ) + mid = property(__mid.value, __mid.set, None, None) - # Attribute offset uses Python identifier offset - __offset = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'offset'), 'offset', '__urnvpromediasubtitles2009_subtitlesType_offset', pyxb.binding.datatypes.duration) - __offset._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009', 14, 4) - __offset._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009', 14, 4) - + __offset = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "offset"), + "offset", + "__urnvpromediasubtitles2009_subtitlesType_offset", + pyxb.binding.datatypes.duration, + ) + __offset._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009", 14, 4 + ) + __offset._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009", 14, 4 + ) + offset = property(__offset.value, __offset.set, None, None) - # Attribute creationDate uses Python identifier creationDate - __creationDate = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'creationDate'), 'creationDate', '__urnvpromediasubtitles2009_subtitlesType_creationDate', pyxb.binding.datatypes.dateTime) - __creationDate._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009', 15, 4) - __creationDate._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009', 15, 4) - + __creationDate = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "creationDate"), + "creationDate", + "__urnvpromediasubtitles2009_subtitlesType_creationDate", + pyxb.binding.datatypes.dateTime, + ) + __creationDate._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009", 15, 4 + ) + __creationDate._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009", 15, 4 + ) + creationDate = property(__creationDate.value, __creationDate.set, None, None) - # Attribute lastModified uses Python identifier lastModified - __lastModified = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'lastModified'), 'lastModified', '__urnvpromediasubtitles2009_subtitlesType_lastModified', pyxb.binding.datatypes.dateTime) - __lastModified._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009', 16, 4) - __lastModified._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009', 16, 4) - + __lastModified = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "lastModified"), + "lastModified", + "__urnvpromediasubtitles2009_subtitlesType_lastModified", + pyxb.binding.datatypes.dateTime, + ) + __lastModified._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009", 16, 4 + ) + __lastModified._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009", 16, 4 + ) + lastModified = property(__lastModified.value, __lastModified.set, None, None) - # Attribute type uses Python identifier type - __type = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'type'), 'type', '__urnvpromediasubtitles2009_subtitlesType_type', _ImportedBinding_npoapi_xml_shared.subtitlesTypeEnum) - __type._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009', 17, 4) - __type._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009', 17, 4) - + __type = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "type"), + "type", + "__urnvpromediasubtitles2009_subtitlesType_type", + _ImportedBinding_npoapi_xml_shared.subtitlesTypeEnum, + ) + __type._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009", 17, 4 + ) + __type._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009", 17, 4 + ) + type = property(__type.value, __type.set, None, None) - # Attribute owner uses Python identifier owner - __owner = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'owner'), 'owner', '__urnvpromediasubtitles2009_subtitlesType_owner', _ImportedBinding_npoapi_xml_shared.ownerTypeEnum) - __owner._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009', 19, 4) - __owner._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009', 19, 4) - + __owner = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "owner"), + "owner", + "__urnvpromediasubtitles2009_subtitlesType_owner", + _ImportedBinding_npoapi_xml_shared.ownerTypeEnum, + ) + __owner._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009", 19, 4 + ) + __owner._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009", 19, 4 + ) + owner = property(__owner.value, __owner.set, None, None) - # Attribute workflow uses Python identifier workflow - __workflow = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'workflow'), 'workflow', '__urnvpromediasubtitles2009_subtitlesType_workflow', _ImportedBinding_npoapi_xml_shared.subtitlesWorkflowEnum) - __workflow._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009', 20, 4) - __workflow._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009', 20, 4) - + __workflow = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "workflow"), + "workflow", + "__urnvpromediasubtitles2009_subtitlesType_workflow", + _ImportedBinding_npoapi_xml_shared.subtitlesWorkflowEnum, + ) + __workflow._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009", 20, 4 + ) + __workflow._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009", 20, 4 + ) + workflow = property(__workflow.value, __workflow.set, None, None) - # Attribute cueCount uses Python identifier cueCount - __cueCount = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'cueCount'), 'cueCount', '__urnvpromediasubtitles2009_subtitlesType_cueCount', pyxb.binding.datatypes.int) - __cueCount._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009', 21, 4) - __cueCount._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009', 21, 4) - + __cueCount = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "cueCount"), + "cueCount", + "__urnvpromediasubtitles2009_subtitlesType_cueCount", + pyxb.binding.datatypes.int, + ) + __cueCount._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009", 21, 4 + ) + __cueCount._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009", 21, 4 + ) + cueCount = property(__cueCount.value, __cueCount.set, None, None) - _ElementMap.update({ - __content.name() : __content - }) - _AttributeMap.update({ - __lang.name() : __lang, - __mid.name() : __mid, - __offset.name() : __offset, - __creationDate.name() : __creationDate, - __lastModified.name() : __lastModified, - __type.name() : __type, - __owner.name() : __owner, - __workflow.name() : __workflow, - __cueCount.name() : __cueCount - }) + _ElementMap.update({__content.name(): __content}) + _AttributeMap.update( + { + __lang.name(): __lang, + __mid.name(): __mid, + __offset.name(): __offset, + __creationDate.name(): __creationDate, + __lastModified.name(): __lastModified, + __type.name(): __type, + __owner.name(): __owner, + __workflow.name(): __workflow, + __cueCount.name(): __cueCount, + } + ) + + _module_typeBindings.subtitlesType = subtitlesType -Namespace.addCategoryObject('typeBinding', 'subtitlesType', subtitlesType) +Namespace.addCategoryObject("typeBinding", "subtitlesType", subtitlesType) # Complex type {urn:vpro:media:subtitles:2009}subtitlesContentType with content type SIMPLE -class subtitlesContentType (pyxb.binding.basis.complexTypeDefinition): +class subtitlesContentType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:media:subtitles:2009}subtitlesContentType with content type SIMPLE""" + _TypeDefinition = pyxb.binding.datatypes.base64Binary _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_SIMPLE _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'subtitlesContentType') - _XSDLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009', 24, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "subtitlesContentType") + _XSDLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009", 24, 2 + ) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.base64Binary - + # Attribute format uses Python identifier format - __format = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'format'), 'format', '__urnvpromediasubtitles2009_subtitlesContentType_format', _module_typeBindings.subtitlesFormatEnum) - __format._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009', 27, 8) - __format._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009', 27, 8) - + __format = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "format"), + "format", + "__urnvpromediasubtitles2009_subtitlesContentType_format", + _module_typeBindings.subtitlesFormatEnum, + ) + __format._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009", 27, 8 + ) + __format._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009", 27, 8 + ) + format = property(__format.value, __format.set, None, None) - # Attribute charset uses Python identifier charset - __charset = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(None, 'charset'), 'charset', '__urnvpromediasubtitles2009_subtitlesContentType_charset', pyxb.binding.datatypes.string) - __charset._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009', 28, 8) - __charset._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009', 28, 8) - + __charset = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(None, "charset"), + "charset", + "__urnvpromediasubtitles2009_subtitlesContentType_charset", + pyxb.binding.datatypes.string, + ) + __charset._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009", 28, 8 + ) + __charset._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009", 28, 8 + ) + charset = property(__charset.value, __charset.set, None, None) - _ElementMap.update({ - - }) - _AttributeMap.update({ - __format.name() : __format, - __charset.name() : __charset - }) + _ElementMap.update({}) + _AttributeMap.update({__format.name(): __format, __charset.name(): __charset}) + + _module_typeBindings.subtitlesContentType = subtitlesContentType -Namespace.addCategoryObject('typeBinding', 'subtitlesContentType', subtitlesContentType) +Namespace.addCategoryObject("typeBinding", "subtitlesContentType", subtitlesContentType) -subtitles = pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'subtitles'), subtitlesType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009', 7, 2)) -Namespace.addCategoryObject('elementBinding', subtitles.name().localName(), subtitles) +subtitles = pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "subtitles"), + subtitlesType, + location=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009", 7, 2 + ), +) +Namespace.addCategoryObject("elementBinding", subtitles.name().localName(), subtitles) +subtitlesType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "content"), + subtitlesContentType, + scope=subtitlesType, + location=pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009", 11, 6 + ), + ) +) -subtitlesType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'content'), subtitlesContentType, scope=subtitlesType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009', 11, 6))) -def _BuildAutomaton (): +def _BuildAutomaton(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton del _BuildAutomaton @@ -257,11 +382,15 @@ def _BuildAutomaton (): counters = set() states = [] final_update = set() - symbol = pyxb.binding.content.ElementUse(subtitlesType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'content')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009', 11, 6)) + symbol = pyxb.binding.content.ElementUse( + subtitlesType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "content")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:media:subtitles:2009", 11, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) transitions = [] st_0._set_transitionSet(transitions) return fac.Automaton(states, counters, False, containing_state=None) -subtitlesType._Automaton = _BuildAutomaton() + +subtitlesType._Automaton = _BuildAutomaton() diff --git a/src/npoapi/xml/thesaurus.py b/src/npoapi/xml/thesaurus.py index cdf4623..ddd58bb 100644 --- a/src/npoapi/xml/thesaurus.py +++ b/src/npoapi/xml/thesaurus.py @@ -5,19 +5,22 @@ # Namespace urn:vpro:gtaa:2017 from __future__ import unicode_literals + +import io +import sys + import pyxb import pyxb.binding import pyxb.binding.saxer -import io -import pyxb.utils.utility import pyxb.utils.domutils -import sys import pyxb.utils.six as _six +import pyxb.utils.utility + # Unique identifier for bindings created at the same time -_GenerationUID = pyxb.utils.utility.UniqueIdentifier('urn:uuid:fa5187de-5153-11ed-9cc8-3e22fb45f01a') +_GenerationUID = pyxb.utils.utility.UniqueIdentifier("urn:uuid:fa5187de-5153-11ed-9cc8-3e22fb45f01a") # Version of PyXB used to generate the bindings -_PyXBVersion = '1.2.6' +_PyXBVersion = "1.2.6" # Generated bindings are not compatible across PyXB versions if pyxb.__version__ != _PyXBVersion: raise pyxb.PyXBVersionError(_PyXBVersion) @@ -30,10 +33,11 @@ import pyxb.binding.datatypes # NOTE: All namespace declarations are reserved within the binding -Namespace = pyxb.namespace.NamespaceForURI('urn:vpro:gtaa:2017', create_if_missing=True) -Namespace.configureCategories(['typeBinding', 'elementBinding']) +Namespace = pyxb.namespace.NamespaceForURI("urn:vpro:gtaa:2017", create_if_missing=True) +Namespace.configureCategories(["typeBinding", "elementBinding"]) -def CreateFromDocument (xml_text, default_namespace=None, location_base=None): + +def CreateFromDocument(xml_text, default_namespace=None, location_base=None): """Parse the given XML and use the document element to create a Python instance. @@ -66,7 +70,8 @@ def CreateFromDocument (xml_text, default_namespace=None, location_base=None): instance = handler.rootObject() return instance -def CreateFromDOM (node, default_namespace=None): + +def CreateFromDOM(node, default_namespace=None): """Create a Python instance from the given DOM node. The node tag must correspond to an element declaration in this module. @@ -77,1242 +82,1920 @@ def CreateFromDOM (node, default_namespace=None): # Atomic simple type: {urn:vpro:gtaa:2017}status -class status (pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): - +class status(pyxb.binding.datatypes.string, pyxb.binding.basis.enumeration_mixin): """An atomic simple type.""" - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'status') - _XSDLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 117, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "status") + _XSDLocation = pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 117, 2) _Documentation = None + + status._CF_enumeration = pyxb.binding.facets.CF_enumeration(value_datatype=status, enum_prefix=None) -status.candidate = status._CF_enumeration.addEnumeration(unicode_value='candidate', tag='candidate') -status.approved = status._CF_enumeration.addEnumeration(unicode_value='approved', tag='approved') -status.redirected = status._CF_enumeration.addEnumeration(unicode_value='redirected', tag='redirected') -status.not_compliant = status._CF_enumeration.addEnumeration(unicode_value='not_compliant', tag='not_compliant') -status.rejected = status._CF_enumeration.addEnumeration(unicode_value='rejected', tag='rejected') -status.obsolete = status._CF_enumeration.addEnumeration(unicode_value='obsolete', tag='obsolete') -status.deleted = status._CF_enumeration.addEnumeration(unicode_value='deleted', tag='deleted') +status.candidate = status._CF_enumeration.addEnumeration(unicode_value="candidate", tag="candidate") +status.approved = status._CF_enumeration.addEnumeration(unicode_value="approved", tag="approved") +status.redirected = status._CF_enumeration.addEnumeration(unicode_value="redirected", tag="redirected") +status.not_compliant = status._CF_enumeration.addEnumeration(unicode_value="not_compliant", tag="not_compliant") +status.rejected = status._CF_enumeration.addEnumeration(unicode_value="rejected", tag="rejected") +status.obsolete = status._CF_enumeration.addEnumeration(unicode_value="obsolete", tag="obsolete") +status.deleted = status._CF_enumeration.addEnumeration(unicode_value="deleted", tag="deleted") status._InitializeFacetMap(status._CF_enumeration) -Namespace.addCategoryObject('typeBinding', 'status', status) +Namespace.addCategoryObject("typeBinding", "status", status) _module_typeBindings.status = status + # Complex type {urn:vpro:gtaa:2017}personType with content type ELEMENT_ONLY -class personType (pyxb.binding.basis.complexTypeDefinition): +class personType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:gtaa:2017}personType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'personType') - _XSDLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 19, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "personType") + _XSDLocation = pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 19, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:gtaa:2017}name uses Python identifier name - __name = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'name'), 'name', '__urnvprogtaa2017_personType_urnvprogtaa2017name', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 21, 6), ) + __name = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "name"), + "name", + "__urnvprogtaa2017_personType_urnvprogtaa2017name", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 21, 6), + ) - name = property(__name.value, __name.set, None, None) - # Element {urn:vpro:gtaa:2017}givenName uses Python identifier givenName - __givenName = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'givenName'), 'givenName', '__urnvprogtaa2017_personType_urnvprogtaa2017givenName', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 22, 6), ) + __givenName = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "givenName"), + "givenName", + "__urnvprogtaa2017_personType_urnvprogtaa2017givenName", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 22, 6), + ) - givenName = property(__givenName.value, __givenName.set, None, None) - # Element {urn:vpro:gtaa:2017}familyName uses Python identifier familyName - __familyName = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'familyName'), 'familyName', '__urnvprogtaa2017_personType_urnvprogtaa2017familyName', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 23, 6), ) + __familyName = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "familyName"), + "familyName", + "__urnvprogtaa2017_personType_urnvprogtaa2017familyName", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 23, 6), + ) - familyName = property(__familyName.value, __familyName.set, None, None) - # Element {urn:vpro:gtaa:2017}scopeNote uses Python identifier scopeNote - __scopeNote = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'scopeNote'), 'scopeNote', '__urnvprogtaa2017_personType_urnvprogtaa2017scopeNote', True, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 24, 6), ) + __scopeNote = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "scopeNote"), + "scopeNote", + "__urnvprogtaa2017_personType_urnvprogtaa2017scopeNote", + True, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 24, 6), + ) - scopeNote = property(__scopeNote.value, __scopeNote.set, None, None) - # Element {urn:vpro:gtaa:2017}knownAs uses Python identifier knownAs - __knownAs = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'knownAs'), 'knownAs', '__urnvprogtaa2017_personType_urnvprogtaa2017knownAs', True, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 25, 6), ) + __knownAs = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "knownAs"), + "knownAs", + "__urnvprogtaa2017_personType_urnvprogtaa2017knownAs", + True, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 25, 6), + ) - knownAs = property(__knownAs.value, __knownAs.set, None, None) - # Element {urn:vpro:gtaa:2017}redirectedFrom uses Python identifier redirectedFrom - __redirectedFrom = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'redirectedFrom'), 'redirectedFrom', '__urnvprogtaa2017_personType_urnvprogtaa2017redirectedFrom', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 26, 6), ) + __redirectedFrom = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "redirectedFrom"), + "redirectedFrom", + "__urnvprogtaa2017_personType_urnvprogtaa2017redirectedFrom", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 26, 6), + ) - redirectedFrom = property(__redirectedFrom.value, __redirectedFrom.set, None, None) - # Attribute {urn:vpro:gtaa:2017}id uses Python identifier id - __id = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(Namespace, 'id'), 'id', '__urnvprogtaa2017_personType_urnvprogtaa2017id', pyxb.binding.datatypes.string) - __id._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 129, 2) - __id._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 28, 4) - + __id = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(Namespace, "id"), + "id", + "__urnvprogtaa2017_personType_urnvprogtaa2017id", + pyxb.binding.datatypes.string, + ) + __id._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 129, 2 + ) + __id._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 28, 4 + ) + id = property(__id.value, __id.set, None, None) - # Attribute {urn:vpro:gtaa:2017}lastModified uses Python identifier lastModified - __lastModified = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(Namespace, 'lastModified'), 'lastModified', '__urnvprogtaa2017_personType_urnvprogtaa2017lastModified', pyxb.binding.datatypes.string) - __lastModified._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 131, 2) - __lastModified._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 30, 4) - + __lastModified = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(Namespace, "lastModified"), + "lastModified", + "__urnvprogtaa2017_personType_urnvprogtaa2017lastModified", + pyxb.binding.datatypes.string, + ) + __lastModified._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 131, 2 + ) + __lastModified._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 30, 4 + ) + lastModified = property(__lastModified.value, __lastModified.set, None, None) - # Attribute {urn:vpro:gtaa:2017}status uses Python identifier status - __status = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(Namespace, 'status'), 'status', '__urnvprogtaa2017_personType_urnvprogtaa2017status', pyxb.binding.datatypes.string) - __status._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 133, 2) - __status._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 29, 4) - + __status = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(Namespace, "status"), + "status", + "__urnvprogtaa2017_personType_urnvprogtaa2017status", + pyxb.binding.datatypes.string, + ) + __status._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 133, 2 + ) + __status._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 29, 4 + ) + status = property(__status.value, __status.set, None, None) - _ElementMap.update({ - __name.name() : __name, - __givenName.name() : __givenName, - __familyName.name() : __familyName, - __scopeNote.name() : __scopeNote, - __knownAs.name() : __knownAs, - __redirectedFrom.name() : __redirectedFrom - }) - _AttributeMap.update({ - __id.name() : __id, - __lastModified.name() : __lastModified, - __status.name() : __status - }) + _ElementMap.update( + { + __name.name(): __name, + __givenName.name(): __givenName, + __familyName.name(): __familyName, + __scopeNote.name(): __scopeNote, + __knownAs.name(): __knownAs, + __redirectedFrom.name(): __redirectedFrom, + } + ) + _AttributeMap.update({__id.name(): __id, __lastModified.name(): __lastModified, __status.name(): __status}) + + _module_typeBindings.personType = personType -Namespace.addCategoryObject('typeBinding', 'personType', personType) +Namespace.addCategoryObject("typeBinding", "personType", personType) # Complex type {urn:vpro:gtaa:2017}names with content type ELEMENT_ONLY -class names (pyxb.binding.basis.complexTypeDefinition): +class names(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:gtaa:2017}names with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'names') - _XSDLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 33, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "names") + _XSDLocation = pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 33, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:gtaa:2017}familyName uses Python identifier familyName - __familyName = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'familyName'), 'familyName', '__urnvprogtaa2017_names_urnvprogtaa2017familyName', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 35, 6), ) + __familyName = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "familyName"), + "familyName", + "__urnvprogtaa2017_names_urnvprogtaa2017familyName", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 35, 6), + ) - familyName = property(__familyName.value, __familyName.set, None, None) - # Element {urn:vpro:gtaa:2017}givenName uses Python identifier givenName - __givenName = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'givenName'), 'givenName', '__urnvprogtaa2017_names_urnvprogtaa2017givenName', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 36, 6), ) + __givenName = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "givenName"), + "givenName", + "__urnvprogtaa2017_names_urnvprogtaa2017givenName", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 36, 6), + ) - givenName = property(__givenName.value, __givenName.set, None, None) - _ElementMap.update({ - __familyName.name() : __familyName, - __givenName.name() : __givenName - }) - _AttributeMap.update({ - - }) + _ElementMap.update({__familyName.name(): __familyName, __givenName.name(): __givenName}) + _AttributeMap.update({}) + + _module_typeBindings.names = names -Namespace.addCategoryObject('typeBinding', 'names', names) +Namespace.addCategoryObject("typeBinding", "names", names) # Complex type {urn:vpro:gtaa:2017}geographicNameType with content type ELEMENT_ONLY -class geographicNameType (pyxb.binding.basis.complexTypeDefinition): +class geographicNameType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:gtaa:2017}geographicNameType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'geographicNameType') - _XSDLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 40, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "geographicNameType") + _XSDLocation = pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 40, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:gtaa:2017}name uses Python identifier name - __name = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'name'), 'name', '__urnvprogtaa2017_geographicNameType_urnvprogtaa2017name', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 42, 6), ) + __name = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "name"), + "name", + "__urnvprogtaa2017_geographicNameType_urnvprogtaa2017name", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 42, 6), + ) - name = property(__name.value, __name.set, None, None) - # Element {urn:vpro:gtaa:2017}scopeNote uses Python identifier scopeNote - __scopeNote = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'scopeNote'), 'scopeNote', '__urnvprogtaa2017_geographicNameType_urnvprogtaa2017scopeNote', True, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 43, 6), ) + __scopeNote = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "scopeNote"), + "scopeNote", + "__urnvprogtaa2017_geographicNameType_urnvprogtaa2017scopeNote", + True, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 43, 6), + ) - scopeNote = property(__scopeNote.value, __scopeNote.set, None, None) - # Element {urn:vpro:gtaa:2017}redirectedFrom uses Python identifier redirectedFrom - __redirectedFrom = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'redirectedFrom'), 'redirectedFrom', '__urnvprogtaa2017_geographicNameType_urnvprogtaa2017redirectedFrom', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 44, 6), ) + __redirectedFrom = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "redirectedFrom"), + "redirectedFrom", + "__urnvprogtaa2017_geographicNameType_urnvprogtaa2017redirectedFrom", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 44, 6), + ) - redirectedFrom = property(__redirectedFrom.value, __redirectedFrom.set, None, None) - # Attribute {urn:vpro:gtaa:2017}id uses Python identifier id - __id = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(Namespace, 'id'), 'id', '__urnvprogtaa2017_geographicNameType_urnvprogtaa2017id', pyxb.binding.datatypes.string) - __id._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 129, 2) - __id._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 46, 4) - + __id = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(Namespace, "id"), + "id", + "__urnvprogtaa2017_geographicNameType_urnvprogtaa2017id", + pyxb.binding.datatypes.string, + ) + __id._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 129, 2 + ) + __id._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 46, 4 + ) + id = property(__id.value, __id.set, None, None) - # Attribute {urn:vpro:gtaa:2017}lastModified uses Python identifier lastModified - __lastModified = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(Namespace, 'lastModified'), 'lastModified', '__urnvprogtaa2017_geographicNameType_urnvprogtaa2017lastModified', pyxb.binding.datatypes.string) - __lastModified._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 131, 2) - __lastModified._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 48, 4) - + __lastModified = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(Namespace, "lastModified"), + "lastModified", + "__urnvprogtaa2017_geographicNameType_urnvprogtaa2017lastModified", + pyxb.binding.datatypes.string, + ) + __lastModified._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 131, 2 + ) + __lastModified._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 48, 4 + ) + lastModified = property(__lastModified.value, __lastModified.set, None, None) - # Attribute {urn:vpro:gtaa:2017}status uses Python identifier status - __status = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(Namespace, 'status'), 'status', '__urnvprogtaa2017_geographicNameType_urnvprogtaa2017status', pyxb.binding.datatypes.string) - __status._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 133, 2) - __status._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 47, 4) - + __status = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(Namespace, "status"), + "status", + "__urnvprogtaa2017_geographicNameType_urnvprogtaa2017status", + pyxb.binding.datatypes.string, + ) + __status._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 133, 2 + ) + __status._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 47, 4 + ) + status = property(__status.value, __status.set, None, None) - _ElementMap.update({ - __name.name() : __name, - __scopeNote.name() : __scopeNote, - __redirectedFrom.name() : __redirectedFrom - }) - _AttributeMap.update({ - __id.name() : __id, - __lastModified.name() : __lastModified, - __status.name() : __status - }) + _ElementMap.update( + {__name.name(): __name, __scopeNote.name(): __scopeNote, __redirectedFrom.name(): __redirectedFrom} + ) + _AttributeMap.update({__id.name(): __id, __lastModified.name(): __lastModified, __status.name(): __status}) + + _module_typeBindings.geographicNameType = geographicNameType -Namespace.addCategoryObject('typeBinding', 'geographicNameType', geographicNameType) +Namespace.addCategoryObject("typeBinding", "geographicNameType", geographicNameType) # Complex type {urn:vpro:gtaa:2017}topicType with content type ELEMENT_ONLY -class topicType (pyxb.binding.basis.complexTypeDefinition): +class topicType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:gtaa:2017}topicType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'topicType') - _XSDLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 51, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "topicType") + _XSDLocation = pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 51, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:gtaa:2017}name uses Python identifier name - __name = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'name'), 'name', '__urnvprogtaa2017_topicType_urnvprogtaa2017name', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 53, 6), ) + __name = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "name"), + "name", + "__urnvprogtaa2017_topicType_urnvprogtaa2017name", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 53, 6), + ) - name = property(__name.value, __name.set, None, None) - # Element {urn:vpro:gtaa:2017}scopeNote uses Python identifier scopeNote - __scopeNote = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'scopeNote'), 'scopeNote', '__urnvprogtaa2017_topicType_urnvprogtaa2017scopeNote', True, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 54, 6), ) + __scopeNote = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "scopeNote"), + "scopeNote", + "__urnvprogtaa2017_topicType_urnvprogtaa2017scopeNote", + True, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 54, 6), + ) - scopeNote = property(__scopeNote.value, __scopeNote.set, None, None) - # Element {urn:vpro:gtaa:2017}redirectedFrom uses Python identifier redirectedFrom - __redirectedFrom = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'redirectedFrom'), 'redirectedFrom', '__urnvprogtaa2017_topicType_urnvprogtaa2017redirectedFrom', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 55, 6), ) + __redirectedFrom = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "redirectedFrom"), + "redirectedFrom", + "__urnvprogtaa2017_topicType_urnvprogtaa2017redirectedFrom", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 55, 6), + ) - redirectedFrom = property(__redirectedFrom.value, __redirectedFrom.set, None, None) - # Attribute {urn:vpro:gtaa:2017}id uses Python identifier id - __id = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(Namespace, 'id'), 'id', '__urnvprogtaa2017_topicType_urnvprogtaa2017id', pyxb.binding.datatypes.string) - __id._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 129, 2) - __id._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 57, 4) - + __id = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(Namespace, "id"), + "id", + "__urnvprogtaa2017_topicType_urnvprogtaa2017id", + pyxb.binding.datatypes.string, + ) + __id._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 129, 2 + ) + __id._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 57, 4 + ) + id = property(__id.value, __id.set, None, None) - # Attribute {urn:vpro:gtaa:2017}lastModified uses Python identifier lastModified - __lastModified = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(Namespace, 'lastModified'), 'lastModified', '__urnvprogtaa2017_topicType_urnvprogtaa2017lastModified', pyxb.binding.datatypes.string) - __lastModified._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 131, 2) - __lastModified._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 59, 4) - + __lastModified = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(Namespace, "lastModified"), + "lastModified", + "__urnvprogtaa2017_topicType_urnvprogtaa2017lastModified", + pyxb.binding.datatypes.string, + ) + __lastModified._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 131, 2 + ) + __lastModified._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 59, 4 + ) + lastModified = property(__lastModified.value, __lastModified.set, None, None) - # Attribute {urn:vpro:gtaa:2017}status uses Python identifier status - __status = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(Namespace, 'status'), 'status', '__urnvprogtaa2017_topicType_urnvprogtaa2017status', pyxb.binding.datatypes.string) - __status._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 133, 2) - __status._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 58, 4) - + __status = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(Namespace, "status"), + "status", + "__urnvprogtaa2017_topicType_urnvprogtaa2017status", + pyxb.binding.datatypes.string, + ) + __status._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 133, 2 + ) + __status._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 58, 4 + ) + status = property(__status.value, __status.set, None, None) - _ElementMap.update({ - __name.name() : __name, - __scopeNote.name() : __scopeNote, - __redirectedFrom.name() : __redirectedFrom - }) - _AttributeMap.update({ - __id.name() : __id, - __lastModified.name() : __lastModified, - __status.name() : __status - }) + _ElementMap.update( + {__name.name(): __name, __scopeNote.name(): __scopeNote, __redirectedFrom.name(): __redirectedFrom} + ) + _AttributeMap.update({__id.name(): __id, __lastModified.name(): __lastModified, __status.name(): __status}) + + _module_typeBindings.topicType = topicType -Namespace.addCategoryObject('typeBinding', 'topicType', topicType) +Namespace.addCategoryObject("typeBinding", "topicType", topicType) # Complex type {urn:vpro:gtaa:2017}topicbandgType with content type ELEMENT_ONLY -class topicbandgType (pyxb.binding.basis.complexTypeDefinition): +class topicbandgType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:gtaa:2017}topicbandgType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'topicbandgType') - _XSDLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 62, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "topicbandgType") + _XSDLocation = pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 62, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:gtaa:2017}name uses Python identifier name - __name = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'name'), 'name', '__urnvprogtaa2017_topicbandgType_urnvprogtaa2017name', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 64, 6), ) + __name = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "name"), + "name", + "__urnvprogtaa2017_topicbandgType_urnvprogtaa2017name", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 64, 6), + ) - name = property(__name.value, __name.set, None, None) - # Element {urn:vpro:gtaa:2017}scopeNote uses Python identifier scopeNote - __scopeNote = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'scopeNote'), 'scopeNote', '__urnvprogtaa2017_topicbandgType_urnvprogtaa2017scopeNote', True, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 65, 6), ) + __scopeNote = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "scopeNote"), + "scopeNote", + "__urnvprogtaa2017_topicbandgType_urnvprogtaa2017scopeNote", + True, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 65, 6), + ) - scopeNote = property(__scopeNote.value, __scopeNote.set, None, None) - # Element {urn:vpro:gtaa:2017}redirectedFrom uses Python identifier redirectedFrom - __redirectedFrom = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'redirectedFrom'), 'redirectedFrom', '__urnvprogtaa2017_topicbandgType_urnvprogtaa2017redirectedFrom', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 66, 6), ) + __redirectedFrom = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "redirectedFrom"), + "redirectedFrom", + "__urnvprogtaa2017_topicbandgType_urnvprogtaa2017redirectedFrom", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 66, 6), + ) - redirectedFrom = property(__redirectedFrom.value, __redirectedFrom.set, None, None) - # Attribute {urn:vpro:gtaa:2017}id uses Python identifier id - __id = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(Namespace, 'id'), 'id', '__urnvprogtaa2017_topicbandgType_urnvprogtaa2017id', pyxb.binding.datatypes.string) - __id._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 129, 2) - __id._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 68, 4) - + __id = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(Namespace, "id"), + "id", + "__urnvprogtaa2017_topicbandgType_urnvprogtaa2017id", + pyxb.binding.datatypes.string, + ) + __id._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 129, 2 + ) + __id._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 68, 4 + ) + id = property(__id.value, __id.set, None, None) - # Attribute {urn:vpro:gtaa:2017}lastModified uses Python identifier lastModified - __lastModified = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(Namespace, 'lastModified'), 'lastModified', '__urnvprogtaa2017_topicbandgType_urnvprogtaa2017lastModified', pyxb.binding.datatypes.string) - __lastModified._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 131, 2) - __lastModified._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 70, 4) - + __lastModified = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(Namespace, "lastModified"), + "lastModified", + "__urnvprogtaa2017_topicbandgType_urnvprogtaa2017lastModified", + pyxb.binding.datatypes.string, + ) + __lastModified._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 131, 2 + ) + __lastModified._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 70, 4 + ) + lastModified = property(__lastModified.value, __lastModified.set, None, None) - # Attribute {urn:vpro:gtaa:2017}status uses Python identifier status - __status = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(Namespace, 'status'), 'status', '__urnvprogtaa2017_topicbandgType_urnvprogtaa2017status', pyxb.binding.datatypes.string) - __status._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 133, 2) - __status._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 69, 4) - + __status = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(Namespace, "status"), + "status", + "__urnvprogtaa2017_topicbandgType_urnvprogtaa2017status", + pyxb.binding.datatypes.string, + ) + __status._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 133, 2 + ) + __status._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 69, 4 + ) + status = property(__status.value, __status.set, None, None) - _ElementMap.update({ - __name.name() : __name, - __scopeNote.name() : __scopeNote, - __redirectedFrom.name() : __redirectedFrom - }) - _AttributeMap.update({ - __id.name() : __id, - __lastModified.name() : __lastModified, - __status.name() : __status - }) + _ElementMap.update( + {__name.name(): __name, __scopeNote.name(): __scopeNote, __redirectedFrom.name(): __redirectedFrom} + ) + _AttributeMap.update({__id.name(): __id, __lastModified.name(): __lastModified, __status.name(): __status}) + + _module_typeBindings.topicbandgType = topicbandgType -Namespace.addCategoryObject('typeBinding', 'topicbandgType', topicbandgType) +Namespace.addCategoryObject("typeBinding", "topicbandgType", topicbandgType) # Complex type {urn:vpro:gtaa:2017}classificationType with content type ELEMENT_ONLY -class classificationType (pyxb.binding.basis.complexTypeDefinition): +class classificationType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:gtaa:2017}classificationType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'classificationType') - _XSDLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 73, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "classificationType") + _XSDLocation = pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 73, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:gtaa:2017}name uses Python identifier name - __name = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'name'), 'name', '__urnvprogtaa2017_classificationType_urnvprogtaa2017name', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 75, 6), ) + __name = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "name"), + "name", + "__urnvprogtaa2017_classificationType_urnvprogtaa2017name", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 75, 6), + ) - name = property(__name.value, __name.set, None, None) - # Element {urn:vpro:gtaa:2017}scopeNote uses Python identifier scopeNote - __scopeNote = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'scopeNote'), 'scopeNote', '__urnvprogtaa2017_classificationType_urnvprogtaa2017scopeNote', True, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 76, 6), ) + __scopeNote = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "scopeNote"), + "scopeNote", + "__urnvprogtaa2017_classificationType_urnvprogtaa2017scopeNote", + True, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 76, 6), + ) - scopeNote = property(__scopeNote.value, __scopeNote.set, None, None) - # Element {urn:vpro:gtaa:2017}redirectedFrom uses Python identifier redirectedFrom - __redirectedFrom = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'redirectedFrom'), 'redirectedFrom', '__urnvprogtaa2017_classificationType_urnvprogtaa2017redirectedFrom', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 77, 6), ) + __redirectedFrom = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "redirectedFrom"), + "redirectedFrom", + "__urnvprogtaa2017_classificationType_urnvprogtaa2017redirectedFrom", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 77, 6), + ) - redirectedFrom = property(__redirectedFrom.value, __redirectedFrom.set, None, None) - # Attribute {urn:vpro:gtaa:2017}id uses Python identifier id - __id = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(Namespace, 'id'), 'id', '__urnvprogtaa2017_classificationType_urnvprogtaa2017id', pyxb.binding.datatypes.string) - __id._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 129, 2) - __id._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 79, 4) - + __id = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(Namespace, "id"), + "id", + "__urnvprogtaa2017_classificationType_urnvprogtaa2017id", + pyxb.binding.datatypes.string, + ) + __id._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 129, 2 + ) + __id._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 79, 4 + ) + id = property(__id.value, __id.set, None, None) - # Attribute {urn:vpro:gtaa:2017}lastModified uses Python identifier lastModified - __lastModified = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(Namespace, 'lastModified'), 'lastModified', '__urnvprogtaa2017_classificationType_urnvprogtaa2017lastModified', pyxb.binding.datatypes.string) - __lastModified._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 131, 2) - __lastModified._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 81, 4) - + __lastModified = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(Namespace, "lastModified"), + "lastModified", + "__urnvprogtaa2017_classificationType_urnvprogtaa2017lastModified", + pyxb.binding.datatypes.string, + ) + __lastModified._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 131, 2 + ) + __lastModified._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 81, 4 + ) + lastModified = property(__lastModified.value, __lastModified.set, None, None) - # Attribute {urn:vpro:gtaa:2017}status uses Python identifier status - __status = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(Namespace, 'status'), 'status', '__urnvprogtaa2017_classificationType_urnvprogtaa2017status', pyxb.binding.datatypes.string) - __status._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 133, 2) - __status._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 80, 4) - + __status = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(Namespace, "status"), + "status", + "__urnvprogtaa2017_classificationType_urnvprogtaa2017status", + pyxb.binding.datatypes.string, + ) + __status._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 133, 2 + ) + __status._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 80, 4 + ) + status = property(__status.value, __status.set, None, None) - _ElementMap.update({ - __name.name() : __name, - __scopeNote.name() : __scopeNote, - __redirectedFrom.name() : __redirectedFrom - }) - _AttributeMap.update({ - __id.name() : __id, - __lastModified.name() : __lastModified, - __status.name() : __status - }) + _ElementMap.update( + {__name.name(): __name, __scopeNote.name(): __scopeNote, __redirectedFrom.name(): __redirectedFrom} + ) + _AttributeMap.update({__id.name(): __id, __lastModified.name(): __lastModified, __status.name(): __status}) + + _module_typeBindings.classificationType = classificationType -Namespace.addCategoryObject('typeBinding', 'classificationType', classificationType) +Namespace.addCategoryObject("typeBinding", "classificationType", classificationType) # Complex type {urn:vpro:gtaa:2017}makerType with content type ELEMENT_ONLY -class makerType (pyxb.binding.basis.complexTypeDefinition): +class makerType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:gtaa:2017}makerType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'makerType') - _XSDLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 84, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "makerType") + _XSDLocation = pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 84, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:gtaa:2017}name uses Python identifier name - __name = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'name'), 'name', '__urnvprogtaa2017_makerType_urnvprogtaa2017name', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 86, 6), ) + __name = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "name"), + "name", + "__urnvprogtaa2017_makerType_urnvprogtaa2017name", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 86, 6), + ) - name = property(__name.value, __name.set, None, None) - # Element {urn:vpro:gtaa:2017}scopeNote uses Python identifier scopeNote - __scopeNote = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'scopeNote'), 'scopeNote', '__urnvprogtaa2017_makerType_urnvprogtaa2017scopeNote', True, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 87, 6), ) + __scopeNote = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "scopeNote"), + "scopeNote", + "__urnvprogtaa2017_makerType_urnvprogtaa2017scopeNote", + True, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 87, 6), + ) - scopeNote = property(__scopeNote.value, __scopeNote.set, None, None) - # Element {urn:vpro:gtaa:2017}redirectedFrom uses Python identifier redirectedFrom - __redirectedFrom = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'redirectedFrom'), 'redirectedFrom', '__urnvprogtaa2017_makerType_urnvprogtaa2017redirectedFrom', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 88, 6), ) + __redirectedFrom = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "redirectedFrom"), + "redirectedFrom", + "__urnvprogtaa2017_makerType_urnvprogtaa2017redirectedFrom", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 88, 6), + ) - redirectedFrom = property(__redirectedFrom.value, __redirectedFrom.set, None, None) - # Attribute {urn:vpro:gtaa:2017}id uses Python identifier id - __id = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(Namespace, 'id'), 'id', '__urnvprogtaa2017_makerType_urnvprogtaa2017id', pyxb.binding.datatypes.string) - __id._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 129, 2) - __id._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 90, 4) - + __id = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(Namespace, "id"), + "id", + "__urnvprogtaa2017_makerType_urnvprogtaa2017id", + pyxb.binding.datatypes.string, + ) + __id._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 129, 2 + ) + __id._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 90, 4 + ) + id = property(__id.value, __id.set, None, None) - # Attribute {urn:vpro:gtaa:2017}lastModified uses Python identifier lastModified - __lastModified = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(Namespace, 'lastModified'), 'lastModified', '__urnvprogtaa2017_makerType_urnvprogtaa2017lastModified', pyxb.binding.datatypes.string) - __lastModified._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 131, 2) - __lastModified._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 92, 4) - + __lastModified = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(Namespace, "lastModified"), + "lastModified", + "__urnvprogtaa2017_makerType_urnvprogtaa2017lastModified", + pyxb.binding.datatypes.string, + ) + __lastModified._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 131, 2 + ) + __lastModified._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 92, 4 + ) + lastModified = property(__lastModified.value, __lastModified.set, None, None) - # Attribute {urn:vpro:gtaa:2017}status uses Python identifier status - __status = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(Namespace, 'status'), 'status', '__urnvprogtaa2017_makerType_urnvprogtaa2017status', pyxb.binding.datatypes.string) - __status._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 133, 2) - __status._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 91, 4) - + __status = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(Namespace, "status"), + "status", + "__urnvprogtaa2017_makerType_urnvprogtaa2017status", + pyxb.binding.datatypes.string, + ) + __status._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 133, 2 + ) + __status._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 91, 4 + ) + status = property(__status.value, __status.set, None, None) - _ElementMap.update({ - __name.name() : __name, - __scopeNote.name() : __scopeNote, - __redirectedFrom.name() : __redirectedFrom - }) - _AttributeMap.update({ - __id.name() : __id, - __lastModified.name() : __lastModified, - __status.name() : __status - }) + _ElementMap.update( + {__name.name(): __name, __scopeNote.name(): __scopeNote, __redirectedFrom.name(): __redirectedFrom} + ) + _AttributeMap.update({__id.name(): __id, __lastModified.name(): __lastModified, __status.name(): __status}) + + _module_typeBindings.makerType = makerType -Namespace.addCategoryObject('typeBinding', 'makerType', makerType) +Namespace.addCategoryObject("typeBinding", "makerType", makerType) # Complex type {urn:vpro:gtaa:2017}genreType with content type ELEMENT_ONLY -class genreType (pyxb.binding.basis.complexTypeDefinition): +class genreType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:gtaa:2017}genreType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'genreType') - _XSDLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 95, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "genreType") + _XSDLocation = pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 95, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:gtaa:2017}name uses Python identifier name - __name = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'name'), 'name', '__urnvprogtaa2017_genreType_urnvprogtaa2017name', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 97, 6), ) + __name = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "name"), + "name", + "__urnvprogtaa2017_genreType_urnvprogtaa2017name", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 97, 6), + ) - name = property(__name.value, __name.set, None, None) - # Element {urn:vpro:gtaa:2017}scopeNote uses Python identifier scopeNote - __scopeNote = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'scopeNote'), 'scopeNote', '__urnvprogtaa2017_genreType_urnvprogtaa2017scopeNote', True, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 98, 6), ) + __scopeNote = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "scopeNote"), + "scopeNote", + "__urnvprogtaa2017_genreType_urnvprogtaa2017scopeNote", + True, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 98, 6), + ) - scopeNote = property(__scopeNote.value, __scopeNote.set, None, None) - # Element {urn:vpro:gtaa:2017}redirectedFrom uses Python identifier redirectedFrom - __redirectedFrom = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'redirectedFrom'), 'redirectedFrom', '__urnvprogtaa2017_genreType_urnvprogtaa2017redirectedFrom', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 99, 6), ) + __redirectedFrom = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "redirectedFrom"), + "redirectedFrom", + "__urnvprogtaa2017_genreType_urnvprogtaa2017redirectedFrom", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 99, 6), + ) - redirectedFrom = property(__redirectedFrom.value, __redirectedFrom.set, None, None) - # Attribute {urn:vpro:gtaa:2017}id uses Python identifier id - __id = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(Namespace, 'id'), 'id', '__urnvprogtaa2017_genreType_urnvprogtaa2017id', pyxb.binding.datatypes.string) - __id._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 129, 2) - __id._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 101, 4) - + __id = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(Namespace, "id"), + "id", + "__urnvprogtaa2017_genreType_urnvprogtaa2017id", + pyxb.binding.datatypes.string, + ) + __id._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 129, 2 + ) + __id._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 101, 4 + ) + id = property(__id.value, __id.set, None, None) - # Attribute {urn:vpro:gtaa:2017}lastModified uses Python identifier lastModified - __lastModified = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(Namespace, 'lastModified'), 'lastModified', '__urnvprogtaa2017_genreType_urnvprogtaa2017lastModified', pyxb.binding.datatypes.string) - __lastModified._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 131, 2) - __lastModified._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 103, 4) - + __lastModified = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(Namespace, "lastModified"), + "lastModified", + "__urnvprogtaa2017_genreType_urnvprogtaa2017lastModified", + pyxb.binding.datatypes.string, + ) + __lastModified._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 131, 2 + ) + __lastModified._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 103, 4 + ) + lastModified = property(__lastModified.value, __lastModified.set, None, None) - # Attribute {urn:vpro:gtaa:2017}status uses Python identifier status - __status = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(Namespace, 'status'), 'status', '__urnvprogtaa2017_genreType_urnvprogtaa2017status', pyxb.binding.datatypes.string) - __status._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 133, 2) - __status._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 102, 4) - + __status = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(Namespace, "status"), + "status", + "__urnvprogtaa2017_genreType_urnvprogtaa2017status", + pyxb.binding.datatypes.string, + ) + __status._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 133, 2 + ) + __status._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 102, 4 + ) + status = property(__status.value, __status.set, None, None) - _ElementMap.update({ - __name.name() : __name, - __scopeNote.name() : __scopeNote, - __redirectedFrom.name() : __redirectedFrom - }) - _AttributeMap.update({ - __id.name() : __id, - __lastModified.name() : __lastModified, - __status.name() : __status - }) + _ElementMap.update( + {__name.name(): __name, __scopeNote.name(): __scopeNote, __redirectedFrom.name(): __redirectedFrom} + ) + _AttributeMap.update({__id.name(): __id, __lastModified.name(): __lastModified, __status.name(): __status}) + + _module_typeBindings.genreType = genreType -Namespace.addCategoryObject('typeBinding', 'genreType', genreType) +Namespace.addCategoryObject("typeBinding", "genreType", genreType) # Complex type {urn:vpro:gtaa:2017}nameType with content type ELEMENT_ONLY -class nameType (pyxb.binding.basis.complexTypeDefinition): +class nameType(pyxb.binding.basis.complexTypeDefinition): """Complex type {urn:vpro:gtaa:2017}nameType with content type ELEMENT_ONLY""" + _TypeDefinition = None _ContentTypeTag = pyxb.binding.basis.complexTypeDefinition._CT_ELEMENT_ONLY _Abstract = False - _ExpandedName = pyxb.namespace.ExpandedName(Namespace, 'nameType') - _XSDLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 106, 2) + _ExpandedName = pyxb.namespace.ExpandedName(Namespace, "nameType") + _XSDLocation = pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 106, 2) _ElementMap = {} _AttributeMap = {} # Base type is pyxb.binding.datatypes.anyType - + # Element {urn:vpro:gtaa:2017}name uses Python identifier name - __name = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'name'), 'name', '__urnvprogtaa2017_nameType_urnvprogtaa2017name', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 108, 6), ) + __name = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "name"), + "name", + "__urnvprogtaa2017_nameType_urnvprogtaa2017name", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 108, 6), + ) - name = property(__name.value, __name.set, None, None) - # Element {urn:vpro:gtaa:2017}scopeNote uses Python identifier scopeNote - __scopeNote = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'scopeNote'), 'scopeNote', '__urnvprogtaa2017_nameType_urnvprogtaa2017scopeNote', True, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 109, 6), ) + __scopeNote = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "scopeNote"), + "scopeNote", + "__urnvprogtaa2017_nameType_urnvprogtaa2017scopeNote", + True, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 109, 6), + ) - scopeNote = property(__scopeNote.value, __scopeNote.set, None, None) - # Element {urn:vpro:gtaa:2017}redirectedFrom uses Python identifier redirectedFrom - __redirectedFrom = pyxb.binding.content.ElementDeclaration(pyxb.namespace.ExpandedName(Namespace, 'redirectedFrom'), 'redirectedFrom', '__urnvprogtaa2017_nameType_urnvprogtaa2017redirectedFrom', False, pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 110, 6), ) + __redirectedFrom = pyxb.binding.content.ElementDeclaration( + pyxb.namespace.ExpandedName(Namespace, "redirectedFrom"), + "redirectedFrom", + "__urnvprogtaa2017_nameType_urnvprogtaa2017redirectedFrom", + False, + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 110, 6), + ) - redirectedFrom = property(__redirectedFrom.value, __redirectedFrom.set, None, None) - # Attribute {urn:vpro:gtaa:2017}id uses Python identifier id - __id = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(Namespace, 'id'), 'id', '__urnvprogtaa2017_nameType_urnvprogtaa2017id', pyxb.binding.datatypes.string) - __id._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 129, 2) - __id._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 112, 4) - + __id = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(Namespace, "id"), + "id", + "__urnvprogtaa2017_nameType_urnvprogtaa2017id", + pyxb.binding.datatypes.string, + ) + __id._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 129, 2 + ) + __id._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 112, 4 + ) + id = property(__id.value, __id.set, None, None) - # Attribute {urn:vpro:gtaa:2017}lastModified uses Python identifier lastModified - __lastModified = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(Namespace, 'lastModified'), 'lastModified', '__urnvprogtaa2017_nameType_urnvprogtaa2017lastModified', pyxb.binding.datatypes.string) - __lastModified._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 131, 2) - __lastModified._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 114, 4) - + __lastModified = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(Namespace, "lastModified"), + "lastModified", + "__urnvprogtaa2017_nameType_urnvprogtaa2017lastModified", + pyxb.binding.datatypes.string, + ) + __lastModified._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 131, 2 + ) + __lastModified._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 114, 4 + ) + lastModified = property(__lastModified.value, __lastModified.set, None, None) - # Attribute {urn:vpro:gtaa:2017}status uses Python identifier status - __status = pyxb.binding.content.AttributeUse(pyxb.namespace.ExpandedName(Namespace, 'status'), 'status', '__urnvprogtaa2017_nameType_urnvprogtaa2017status', pyxb.binding.datatypes.string) - __status._DeclarationLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 133, 2) - __status._UseLocation = pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 113, 4) - - status = property(__status.value, __status.set, None, None) - - _ElementMap.update({ - __name.name() : __name, - __scopeNote.name() : __scopeNote, - __redirectedFrom.name() : __redirectedFrom - }) - _AttributeMap.update({ - __id.name() : __id, - __lastModified.name() : __lastModified, - __status.name() : __status - }) -_module_typeBindings.nameType = nameType -Namespace.addCategoryObject('typeBinding', 'nameType', nameType) - - -classification = pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'classification'), classificationType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 3, 2)) -Namespace.addCategoryObject('elementBinding', classification.name().localName(), classification) - -genre = pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'genre'), genreType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 5, 2)) -Namespace.addCategoryObject('elementBinding', genre.name().localName(), genre) - -geographicName = pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'geographicName'), geographicNameType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 7, 2)) -Namespace.addCategoryObject('elementBinding', geographicName.name().localName(), geographicName) - -maker = pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'maker'), makerType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 9, 2)) -Namespace.addCategoryObject('elementBinding', maker.name().localName(), maker) - -name = pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'name'), nameType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 11, 2)) -Namespace.addCategoryObject('elementBinding', name.name().localName(), name) - -person = pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'person'), personType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 13, 2)) -Namespace.addCategoryObject('elementBinding', person.name().localName(), person) - -topic = pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'topic'), topicType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 15, 2)) -Namespace.addCategoryObject('elementBinding', topic.name().localName(), topic) + __status = pyxb.binding.content.AttributeUse( + pyxb.namespace.ExpandedName(Namespace, "status"), + "status", + "__urnvprogtaa2017_nameType_urnvprogtaa2017status", + pyxb.binding.datatypes.string, + ) + __status._DeclarationLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 133, 2 + ) + __status._UseLocation = pyxb.utils.utility.Location( + "https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 113, 4 + ) -topicbandg = pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'topicbandg'), topicbandgType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 17, 2)) -Namespace.addCategoryObject('elementBinding', topicbandg.name().localName(), topicbandg) - - - -personType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'name'), pyxb.binding.datatypes.string, scope=personType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 21, 6))) - -personType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'givenName'), pyxb.binding.datatypes.string, scope=personType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 22, 6))) - -personType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'familyName'), pyxb.binding.datatypes.string, scope=personType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 23, 6))) - -personType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'scopeNote'), pyxb.binding.datatypes.string, scope=personType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 24, 6))) + status = property(__status.value, __status.set, None, None) -personType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'knownAs'), names, scope=personType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 25, 6))) + _ElementMap.update( + {__name.name(): __name, __scopeNote.name(): __scopeNote, __redirectedFrom.name(): __redirectedFrom} + ) + _AttributeMap.update({__id.name(): __id, __lastModified.name(): __lastModified, __status.name(): __status}) -personType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'redirectedFrom'), pyxb.binding.datatypes.string, scope=personType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 26, 6))) -def _BuildAutomaton (): +_module_typeBindings.nameType = nameType +Namespace.addCategoryObject("typeBinding", "nameType", nameType) + + +classification = pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "classification"), + classificationType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 3, 2), +) +Namespace.addCategoryObject("elementBinding", classification.name().localName(), classification) + +genre = pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "genre"), + genreType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 5, 2), +) +Namespace.addCategoryObject("elementBinding", genre.name().localName(), genre) + +geographicName = pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "geographicName"), + geographicNameType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 7, 2), +) +Namespace.addCategoryObject("elementBinding", geographicName.name().localName(), geographicName) + +maker = pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "maker"), + makerType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 9, 2), +) +Namespace.addCategoryObject("elementBinding", maker.name().localName(), maker) + +name = pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "name"), + nameType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 11, 2), +) +Namespace.addCategoryObject("elementBinding", name.name().localName(), name) + +person = pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "person"), + personType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 13, 2), +) +Namespace.addCategoryObject("elementBinding", person.name().localName(), person) + +topic = pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "topic"), + topicType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 15, 2), +) +Namespace.addCategoryObject("elementBinding", topic.name().localName(), topic) + +topicbandg = pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "topicbandg"), + topicbandgType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 17, 2), +) +Namespace.addCategoryObject("elementBinding", topicbandg.name().localName(), topicbandg) + + +personType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "name"), + pyxb.binding.datatypes.string, + scope=personType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 21, 6), + ) +) + +personType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "givenName"), + pyxb.binding.datatypes.string, + scope=personType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 22, 6), + ) +) + +personType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "familyName"), + pyxb.binding.datatypes.string, + scope=personType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 23, 6), + ) +) + +personType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "scopeNote"), + pyxb.binding.datatypes.string, + scope=personType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 24, 6), + ) +) + +personType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "knownAs"), + names, + scope=personType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 25, 6), + ) +) + +personType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "redirectedFrom"), + pyxb.binding.datatypes.string, + scope=personType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 26, 6), + ) +) + + +def _BuildAutomaton(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton del _BuildAutomaton import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 21, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 21, 6), + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 22, 6)) + cc_1 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 22, 6), + ) counters.add(cc_1) - cc_2 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 23, 6)) + cc_2 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 23, 6), + ) counters.add(cc_2) - cc_3 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 24, 6)) + cc_3 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 24, 6), + ) counters.add(cc_3) - cc_4 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 25, 6)) + cc_4 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 25, 6), + ) counters.add(cc_4) - cc_5 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 26, 6)) + cc_5 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 26, 6), + ) counters.add(cc_5) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(personType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'name')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 21, 6)) + symbol = pyxb.binding.content.ElementUse( + personType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "name")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 21, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() final_update.add(fac.UpdateInstruction(cc_1, False)) - symbol = pyxb.binding.content.ElementUse(personType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'givenName')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 22, 6)) + symbol = pyxb.binding.content.ElementUse( + personType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "givenName")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 22, 6), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) final_update = set() final_update.add(fac.UpdateInstruction(cc_2, False)) - symbol = pyxb.binding.content.ElementUse(personType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'familyName')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 23, 6)) + symbol = pyxb.binding.content.ElementUse( + personType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "familyName")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 23, 6), + ) st_2 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_2) final_update = set() final_update.add(fac.UpdateInstruction(cc_3, False)) - symbol = pyxb.binding.content.ElementUse(personType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'scopeNote')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 24, 6)) + symbol = pyxb.binding.content.ElementUse( + personType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "scopeNote")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 24, 6), + ) st_3 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_3) final_update = set() final_update.add(fac.UpdateInstruction(cc_4, False)) - symbol = pyxb.binding.content.ElementUse(personType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'knownAs')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 25, 6)) + symbol = pyxb.binding.content.ElementUse( + personType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "knownAs")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 25, 6), + ) st_4 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_4) final_update = set() final_update.add(fac.UpdateInstruction(cc_5, False)) - symbol = pyxb.binding.content.ElementUse(personType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'redirectedFrom')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 26, 6)) + symbol = pyxb.binding.content.ElementUse( + personType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "redirectedFrom")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 26, 6), + ) st_5 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_5) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_0, False)])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_1, True) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_1, False) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_1, False) ])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_1, True)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_1, False)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_1, False)])) st_1._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_2, True) ])) - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_2, False) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_2, False) ])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_2, True)])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_2, False)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_2, False)])) st_2._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_3, [ - fac.UpdateInstruction(cc_3, True) ])) - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_3, False) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_3, False) ])) + transitions.append(fac.Transition(st_3, [fac.UpdateInstruction(cc_3, True)])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_3, False)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_3, False)])) st_3._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_4, [ - fac.UpdateInstruction(cc_4, True) ])) - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_4, False) ])) + transitions.append(fac.Transition(st_4, [fac.UpdateInstruction(cc_4, True)])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_4, False)])) st_4._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_5, [ - fac.UpdateInstruction(cc_5, True) ])) + transitions.append(fac.Transition(st_5, [fac.UpdateInstruction(cc_5, True)])) st_5._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -personType._Automaton = _BuildAutomaton() +personType._Automaton = _BuildAutomaton() + +names._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "familyName"), + pyxb.binding.datatypes.string, + scope=names, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 35, 6), + ) +) -names._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'familyName'), pyxb.binding.datatypes.string, scope=names, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 35, 6))) +names._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "givenName"), + pyxb.binding.datatypes.string, + scope=names, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 36, 6), + ) +) -names._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'givenName'), pyxb.binding.datatypes.string, scope=names, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 36, 6))) -def _BuildAutomaton_ (): +def _BuildAutomaton_(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_ del _BuildAutomaton_ import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 35, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 35, 6), + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 36, 6)) + cc_1 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 36, 6), + ) counters.add(cc_1) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(names._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'familyName')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 35, 6)) + symbol = pyxb.binding.content.ElementUse( + names._UseForTag(pyxb.namespace.ExpandedName(Namespace, "familyName")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 35, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() final_update.add(fac.UpdateInstruction(cc_1, False)) - symbol = pyxb.binding.content.ElementUse(names._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'givenName')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 36, 6)) + symbol = pyxb.binding.content.ElementUse( + names._UseForTag(pyxb.namespace.ExpandedName(Namespace, "givenName")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 36, 6), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, False)])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_1, True) ])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_1, True)])) st_1._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -names._Automaton = _BuildAutomaton_() +names._Automaton = _BuildAutomaton_() -geographicNameType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'name'), pyxb.binding.datatypes.string, scope=geographicNameType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 42, 6))) - -geographicNameType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'scopeNote'), pyxb.binding.datatypes.string, scope=geographicNameType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 43, 6))) - -geographicNameType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'redirectedFrom'), pyxb.binding.datatypes.string, scope=geographicNameType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 44, 6))) - -def _BuildAutomaton_2 (): +geographicNameType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "name"), + pyxb.binding.datatypes.string, + scope=geographicNameType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 42, 6), + ) +) + +geographicNameType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "scopeNote"), + pyxb.binding.datatypes.string, + scope=geographicNameType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 43, 6), + ) +) + +geographicNameType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "redirectedFrom"), + pyxb.binding.datatypes.string, + scope=geographicNameType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 44, 6), + ) +) + + +def _BuildAutomaton_2(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_2 del _BuildAutomaton_2 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 42, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 42, 6), + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 43, 6)) + cc_1 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 43, 6), + ) counters.add(cc_1) - cc_2 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 44, 6)) + cc_2 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 44, 6), + ) counters.add(cc_2) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(geographicNameType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'name')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 42, 6)) + symbol = pyxb.binding.content.ElementUse( + geographicNameType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "name")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 42, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() final_update.add(fac.UpdateInstruction(cc_1, False)) - symbol = pyxb.binding.content.ElementUse(geographicNameType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'scopeNote')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 43, 6)) + symbol = pyxb.binding.content.ElementUse( + geographicNameType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "scopeNote")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 43, 6), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) final_update = set() final_update.add(fac.UpdateInstruction(cc_2, False)) - symbol = pyxb.binding.content.ElementUse(geographicNameType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'redirectedFrom')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 44, 6)) + symbol = pyxb.binding.content.ElementUse( + geographicNameType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "redirectedFrom")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 44, 6), + ) st_2 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_2) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_0, False)])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_1, True) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_1, False) ])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_1, True)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_1, False)])) st_1._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_2, True) ])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_2, True)])) st_2._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -geographicNameType._Automaton = _BuildAutomaton_2() - - -topicType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'name'), pyxb.binding.datatypes.string, scope=topicType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 53, 6))) - -topicType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'scopeNote'), pyxb.binding.datatypes.string, scope=topicType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 54, 6))) +geographicNameType._Automaton = _BuildAutomaton_2() -topicType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'redirectedFrom'), pyxb.binding.datatypes.string, scope=topicType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 55, 6))) -def _BuildAutomaton_3 (): +topicType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "name"), + pyxb.binding.datatypes.string, + scope=topicType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 53, 6), + ) +) + +topicType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "scopeNote"), + pyxb.binding.datatypes.string, + scope=topicType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 54, 6), + ) +) + +topicType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "redirectedFrom"), + pyxb.binding.datatypes.string, + scope=topicType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 55, 6), + ) +) + + +def _BuildAutomaton_3(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_3 del _BuildAutomaton_3 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 53, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 53, 6), + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 54, 6)) + cc_1 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 54, 6), + ) counters.add(cc_1) - cc_2 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 55, 6)) + cc_2 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 55, 6), + ) counters.add(cc_2) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(topicType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'name')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 53, 6)) + symbol = pyxb.binding.content.ElementUse( + topicType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "name")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 53, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() final_update.add(fac.UpdateInstruction(cc_1, False)) - symbol = pyxb.binding.content.ElementUse(topicType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'scopeNote')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 54, 6)) + symbol = pyxb.binding.content.ElementUse( + topicType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "scopeNote")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 54, 6), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) final_update = set() final_update.add(fac.UpdateInstruction(cc_2, False)) - symbol = pyxb.binding.content.ElementUse(topicType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'redirectedFrom')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 55, 6)) + symbol = pyxb.binding.content.ElementUse( + topicType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "redirectedFrom")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 55, 6), + ) st_2 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_2) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_0, False)])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_1, True) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_1, False) ])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_1, True)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_1, False)])) st_1._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_2, True) ])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_2, True)])) st_2._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -topicType._Automaton = _BuildAutomaton_3() - - - -topicbandgType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'name'), pyxb.binding.datatypes.string, scope=topicbandgType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 64, 6))) -topicbandgType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'scopeNote'), pyxb.binding.datatypes.string, scope=topicbandgType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 65, 6))) +topicType._Automaton = _BuildAutomaton_3() -topicbandgType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'redirectedFrom'), pyxb.binding.datatypes.string, scope=topicbandgType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 66, 6))) -def _BuildAutomaton_4 (): +topicbandgType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "name"), + pyxb.binding.datatypes.string, + scope=topicbandgType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 64, 6), + ) +) + +topicbandgType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "scopeNote"), + pyxb.binding.datatypes.string, + scope=topicbandgType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 65, 6), + ) +) + +topicbandgType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "redirectedFrom"), + pyxb.binding.datatypes.string, + scope=topicbandgType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 66, 6), + ) +) + + +def _BuildAutomaton_4(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_4 del _BuildAutomaton_4 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 64, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 64, 6), + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 65, 6)) + cc_1 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 65, 6), + ) counters.add(cc_1) - cc_2 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 66, 6)) + cc_2 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 66, 6), + ) counters.add(cc_2) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(topicbandgType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'name')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 64, 6)) + symbol = pyxb.binding.content.ElementUse( + topicbandgType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "name")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 64, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() final_update.add(fac.UpdateInstruction(cc_1, False)) - symbol = pyxb.binding.content.ElementUse(topicbandgType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'scopeNote')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 65, 6)) + symbol = pyxb.binding.content.ElementUse( + topicbandgType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "scopeNote")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 65, 6), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) final_update = set() final_update.add(fac.UpdateInstruction(cc_2, False)) - symbol = pyxb.binding.content.ElementUse(topicbandgType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'redirectedFrom')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 66, 6)) + symbol = pyxb.binding.content.ElementUse( + topicbandgType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "redirectedFrom")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 66, 6), + ) st_2 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_2) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_0, False)])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_1, True) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_1, False) ])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_1, True)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_1, False)])) st_1._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_2, True) ])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_2, True)])) st_2._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -topicbandgType._Automaton = _BuildAutomaton_4() - - -classificationType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'name'), pyxb.binding.datatypes.string, scope=classificationType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 75, 6))) - -classificationType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'scopeNote'), pyxb.binding.datatypes.string, scope=classificationType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 76, 6))) +topicbandgType._Automaton = _BuildAutomaton_4() -classificationType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'redirectedFrom'), pyxb.binding.datatypes.string, scope=classificationType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 77, 6))) -def _BuildAutomaton_5 (): +classificationType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "name"), + pyxb.binding.datatypes.string, + scope=classificationType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 75, 6), + ) +) + +classificationType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "scopeNote"), + pyxb.binding.datatypes.string, + scope=classificationType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 76, 6), + ) +) + +classificationType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "redirectedFrom"), + pyxb.binding.datatypes.string, + scope=classificationType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 77, 6), + ) +) + + +def _BuildAutomaton_5(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_5 del _BuildAutomaton_5 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 75, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 75, 6), + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 76, 6)) + cc_1 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 76, 6), + ) counters.add(cc_1) - cc_2 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 77, 6)) + cc_2 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 77, 6), + ) counters.add(cc_2) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(classificationType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'name')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 75, 6)) + symbol = pyxb.binding.content.ElementUse( + classificationType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "name")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 75, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() final_update.add(fac.UpdateInstruction(cc_1, False)) - symbol = pyxb.binding.content.ElementUse(classificationType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'scopeNote')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 76, 6)) + symbol = pyxb.binding.content.ElementUse( + classificationType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "scopeNote")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 76, 6), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) final_update = set() final_update.add(fac.UpdateInstruction(cc_2, False)) - symbol = pyxb.binding.content.ElementUse(classificationType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'redirectedFrom')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 77, 6)) + symbol = pyxb.binding.content.ElementUse( + classificationType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "redirectedFrom")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 77, 6), + ) st_2 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_2) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_0, False)])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_1, True) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_1, False) ])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_1, True)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_1, False)])) st_1._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_2, True) ])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_2, True)])) st_2._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -classificationType._Automaton = _BuildAutomaton_5() - +classificationType._Automaton = _BuildAutomaton_5() -makerType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'name'), pyxb.binding.datatypes.string, scope=makerType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 86, 6))) - -makerType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'scopeNote'), pyxb.binding.datatypes.string, scope=makerType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 87, 6))) - -makerType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'redirectedFrom'), pyxb.binding.datatypes.string, scope=makerType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 88, 6))) -def _BuildAutomaton_6 (): +makerType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "name"), + pyxb.binding.datatypes.string, + scope=makerType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 86, 6), + ) +) + +makerType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "scopeNote"), + pyxb.binding.datatypes.string, + scope=makerType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 87, 6), + ) +) + +makerType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "redirectedFrom"), + pyxb.binding.datatypes.string, + scope=makerType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 88, 6), + ) +) + + +def _BuildAutomaton_6(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_6 del _BuildAutomaton_6 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 86, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 86, 6), + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 87, 6)) + cc_1 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 87, 6), + ) counters.add(cc_1) - cc_2 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 88, 6)) + cc_2 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 88, 6), + ) counters.add(cc_2) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(makerType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'name')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 86, 6)) + symbol = pyxb.binding.content.ElementUse( + makerType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "name")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 86, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() final_update.add(fac.UpdateInstruction(cc_1, False)) - symbol = pyxb.binding.content.ElementUse(makerType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'scopeNote')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 87, 6)) + symbol = pyxb.binding.content.ElementUse( + makerType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "scopeNote")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 87, 6), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) final_update = set() final_update.add(fac.UpdateInstruction(cc_2, False)) - symbol = pyxb.binding.content.ElementUse(makerType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'redirectedFrom')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 88, 6)) + symbol = pyxb.binding.content.ElementUse( + makerType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "redirectedFrom")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 88, 6), + ) st_2 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_2) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_0, False)])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_1, True) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_1, False) ])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_1, True)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_1, False)])) st_1._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_2, True) ])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_2, True)])) st_2._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -makerType._Automaton = _BuildAutomaton_6() +makerType._Automaton = _BuildAutomaton_6() -genreType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'name'), pyxb.binding.datatypes.string, scope=genreType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 97, 6))) - -genreType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'scopeNote'), pyxb.binding.datatypes.string, scope=genreType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 98, 6))) - -genreType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'redirectedFrom'), pyxb.binding.datatypes.string, scope=genreType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 99, 6))) - -def _BuildAutomaton_7 (): +genreType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "name"), + pyxb.binding.datatypes.string, + scope=genreType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 97, 6), + ) +) + +genreType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "scopeNote"), + pyxb.binding.datatypes.string, + scope=genreType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 98, 6), + ) +) + +genreType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "redirectedFrom"), + pyxb.binding.datatypes.string, + scope=genreType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 99, 6), + ) +) + + +def _BuildAutomaton_7(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_7 del _BuildAutomaton_7 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 97, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 97, 6), + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 98, 6)) + cc_1 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 98, 6), + ) counters.add(cc_1) - cc_2 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 99, 6)) + cc_2 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 99, 6), + ) counters.add(cc_2) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(genreType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'name')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 97, 6)) + symbol = pyxb.binding.content.ElementUse( + genreType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "name")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 97, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() final_update.add(fac.UpdateInstruction(cc_1, False)) - symbol = pyxb.binding.content.ElementUse(genreType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'scopeNote')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 98, 6)) + symbol = pyxb.binding.content.ElementUse( + genreType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "scopeNote")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 98, 6), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) final_update = set() final_update.add(fac.UpdateInstruction(cc_2, False)) - symbol = pyxb.binding.content.ElementUse(genreType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'redirectedFrom')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 99, 6)) + symbol = pyxb.binding.content.ElementUse( + genreType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "redirectedFrom")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 99, 6), + ) st_2 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_2) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_0, False)])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_1, True) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_1, False) ])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_1, True)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_1, False)])) st_1._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_2, True) ])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_2, True)])) st_2._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -genreType._Automaton = _BuildAutomaton_7() - - - -nameType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'name'), pyxb.binding.datatypes.string, scope=nameType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 108, 6))) -nameType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'scopeNote'), pyxb.binding.datatypes.string, scope=nameType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 109, 6))) +genreType._Automaton = _BuildAutomaton_7() -nameType._AddElement(pyxb.binding.basis.element(pyxb.namespace.ExpandedName(Namespace, 'redirectedFrom'), pyxb.binding.datatypes.string, scope=nameType, location=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 110, 6))) -def _BuildAutomaton_8 (): +nameType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "name"), + pyxb.binding.datatypes.string, + scope=nameType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 108, 6), + ) +) + +nameType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "scopeNote"), + pyxb.binding.datatypes.string, + scope=nameType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 109, 6), + ) +) + +nameType._AddElement( + pyxb.binding.basis.element( + pyxb.namespace.ExpandedName(Namespace, "redirectedFrom"), + pyxb.binding.datatypes.string, + scope=nameType, + location=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 110, 6), + ) +) + + +def _BuildAutomaton_8(): # Remove this helper function from the namespace after it is invoked global _BuildAutomaton_8 del _BuildAutomaton_8 import pyxb.utils.fac as fac counters = set() - cc_0 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 108, 6)) + cc_0 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 108, 6), + ) counters.add(cc_0) - cc_1 = fac.CounterCondition(min=0, max=None, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 109, 6)) + cc_1 = fac.CounterCondition( + min=0, + max=None, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 109, 6), + ) counters.add(cc_1) - cc_2 = fac.CounterCondition(min=0, max=1, metadata=pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 110, 6)) + cc_2 = fac.CounterCondition( + min=0, + max=1, + metadata=pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 110, 6), + ) counters.add(cc_2) states = [] final_update = set() final_update.add(fac.UpdateInstruction(cc_0, False)) - symbol = pyxb.binding.content.ElementUse(nameType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'name')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 108, 6)) + symbol = pyxb.binding.content.ElementUse( + nameType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "name")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 108, 6), + ) st_0 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_0) final_update = set() final_update.add(fac.UpdateInstruction(cc_1, False)) - symbol = pyxb.binding.content.ElementUse(nameType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'scopeNote')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 109, 6)) + symbol = pyxb.binding.content.ElementUse( + nameType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "scopeNote")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 109, 6), + ) st_1 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_1) final_update = set() final_update.add(fac.UpdateInstruction(cc_2, False)) - symbol = pyxb.binding.content.ElementUse(nameType._UseForTag(pyxb.namespace.ExpandedName(Namespace, 'redirectedFrom')), pyxb.utils.utility.Location('https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017', 110, 6)) + symbol = pyxb.binding.content.ElementUse( + nameType._UseForTag(pyxb.namespace.ExpandedName(Namespace, "redirectedFrom")), + pyxb.utils.utility.Location("https://rs-test.poms.omroep.nl/v1/schema/urn:vpro:gtaa:2017", 110, 6), + ) st_2 = fac.State(symbol, is_initial=True, final_update=final_update, is_unordered_catenation=False) states.append(st_2) transitions = [] - transitions.append(fac.Transition(st_0, [ - fac.UpdateInstruction(cc_0, True) ])) - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_0, False) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_0, False) ])) + transitions.append(fac.Transition(st_0, [fac.UpdateInstruction(cc_0, True)])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_0, False)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_0, False)])) st_0._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_1, [ - fac.UpdateInstruction(cc_1, True) ])) - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_1, False) ])) + transitions.append(fac.Transition(st_1, [fac.UpdateInstruction(cc_1, True)])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_1, False)])) st_1._set_transitionSet(transitions) transitions = [] - transitions.append(fac.Transition(st_2, [ - fac.UpdateInstruction(cc_2, True) ])) + transitions.append(fac.Transition(st_2, [fac.UpdateInstruction(cc_2, True)])) st_2._set_transitionSet(transitions) return fac.Automaton(states, counters, True, containing_state=None) -nameType._Automaton = _BuildAutomaton_8() + +nameType._Automaton = _BuildAutomaton_8()