file_path
stringlengths
32
153
content
stringlengths
0
3.14M
omniverse-code/kit/exts/omni.graph/omni/graph/core/_impl/autonode/event.py
import codecs import pickle from abc import ABC, abstractmethod from enum import Enum from typing import Callable, Iterable, Optional, Tuple import carb.events # import omni.graph.core as og import omni.kit.app from .type_definitions import AutoNodeDefinitionGenerator, AutoNodeDefinitionWrapper, TypeRegistry from .util import is_private, python_name_to_ui_name, sanitize_qualname payload_path = "!path" # ================================================================================ class IEventStream(ABC): _event_type = None def __init__(self): raise RuntimeError("IEventStream: interfaces can't be instantiated.") # -------------------------------------------------------------------------------- @abstractmethod def create_subscription_to_pop(self, callback: Callable, name: Optional[str]): pass # -------------------------------------------------------------------------------- @abstractmethod def create_subscription_to_self(self, callback: Callable, name: Optional[str]): pass # -------------------------------------------------------------------------------- @abstractmethod def create_subscription_to_pop_by_type(self, callback: Callable, event_type: Enum, name: Optional[str]): pass # -------------------------------------------------------------------------------- @abstractmethod def create_subscription_to_push_by_type(self, callback: Callable, event_type: Enum, name: Optional[str]): pass # -------------------------------------------------------------------------------- @classmethod def get_event_type(cls): return cls._event_type # -------------------------------------------------------------------------------- @classmethod def __class_getitem__(cls, key: Enum): sanitized = sanitize_qualname(key.__name__) def create_subscription_to_pop_by_type(self, callback: Callable, event_type: key, name: Optional[str]): pass def create_subscription_to_push_by_type(self, callback: Callable, event_type: key, name: Optional[str]): pass ret = type( f"IEventStream_{sanitized}", (cls,), { "_event_type": key, "create_subscription_to_pop_by_type": create_subscription_to_pop_by_type, "create_subscription_to_push_by_type": create_subscription_to_push_by_type, }, ) return ret # ================================================================================ class EventSubscriptionType(Enum): NONE = 0 POP = 1 PUSH = 2 ALL = 3 # ================================================================================ class OgnOnEventInternalState: """Convenience class for maintaining per-node state information""" def __init__(self, event_stream): """Instantiate the per-node state information.""" # This subscription object controls the lifetime of our callback, it will be # cleaned up automatically when our node is destroyed self.sub = None # Set when the callback has triggered self.is_set = False # The last payload received self.payload = None # the event emitted # FIXME (OS): Handle push too self.subscription = event_stream.create_subscription_to_pop(self.on_event) # -------------------------------------------------------------------------------- def on_event(self, custom_event): """The event callback""" if custom_event is None: return self.is_set = True self.payload = custom_event.payload # -------------------------------------------------------------------------------- def try_pop_event(self): """Pop the payload of the last event received, or None if there is no event to pop""" if self.is_set: self.is_set = False payload = self.payload self.payload = None return payload return None # ================================================================================ class OgnOnEvent: """ This node triggers when the specified message bus event is received """ def __init_subclass__(cls, event_name: str, event_stream: Callable, **kwargs): cls.event_name = event_name cls.event_stream = event_stream cls.event_type = kwargs.get("event_type", None) cls.subscription_type = kwargs.get("subscription_type", EventSubscriptionType.POP) # -------------------------------------------------------------------------------- @classmethod def internal_state(*args): # noqa: PLE0211 """Returns an object that will contain per-node state information""" cls = args[0] internal_state = OgnOnEventInternalState(cls.event_stream) return internal_state # -------------------------------------------------------------------------------- @classmethod def initialize(*args): # noqa: PLE0211 # cls = args[0] # graph_context = args[1] # node = args[2] pass # -------------------------------------------------------------------------------- @classmethod def release(*args): # noqa: PLE0211 # node = args[1] pass # -------------------------------------------------------------------------------- @classmethod def compute(*args) -> bool: # noqa: PLE0211 """Compute the outputs from the current input""" # cls = args[0] db = args[1] state = db.internal_state payload = state.try_pop_event() if payload is None: return True # Copy the event dict contents into the output bundle db.outputs.bundle.clear() for name in payload.get_keys(): # Special 'path' entry gets copied to output attrib if name == payload_path: db.outputs.path = payload[name] continue as_str = payload[name] arg_obj = pickle.loads(codecs.decode(as_str.encode(), "base64")) attr_type, attr_value = arg_obj new_attr = db.outputs.bundle.insert((attr_type, name)) new_attr.value = attr_value db.outputs.execOut = True return True # ================================================================================ class AutoNodeEventStreamWrapper(AutoNodeDefinitionWrapper): def __init__(self, event_stream: IEventStream, event_name: str, module_name: str, **kwargs): super().__init__() self.event_name = event_name self.event_stream = event_stream self.event_type = event_stream.get_event_type() self.module_name = module_name self.subscription_type = kwargs.get("subscription_type", EventSubscriptionType.POP) # -------------------------------------------------------------------------------- def get_ogn(self): event_ogn = { f"On{self.event_name}": { "description": [ "Event node which fires when the specified custom event is sent.", "This node is used in combination with SendCustomEvent", ], "version": 1, "uiName": f"On {python_name_to_ui_name(self.event_name)}", "language": "Python", "state": {}, "inputs": {}, "outputs": { "path": { "type": "token", "description": "The path associated with the received custom event", "uiName": "Path", }, "bundle": {"type": "bundle", "description": "Bundle received with the event", "uiName": "Bundle"}, "execOut": { "type": "execution", "description": "Executes when the event is received", "uiName": "Received", }, }, } } return event_ogn # -------------------------------------------------------------------------------- def get_node_impl(self): class OgnOnEventWrapper( OgnOnEvent, event_name=self.event_name, event_stream=self.event_stream, event_type=self.event_type ): pass return OgnOnEventWrapper # -------------------------------------------------------------------------------- def get_unique_name(self): return self.event_name # -------------------------------------------------------------------------------- def get_module_name(self): return self.module_name # ================================================================================ class OgnForwardEventInternalState: """Convenience class for maintaining per-node state information""" # -------------------------------------------------------------------------------- def __init__(self, event_stream): """Instantiate the per-node state information.""" # This subscription object controls the lifetime of our callback, it will be # cleaned up automatically when our node is destroyed self.event_stream: IEventStream = event_stream self.event_name: str = "" self.subscription = None # -------------------------------------------------------------------------------- def start_forwarding(self): # FIXME (OS): Handle push too self.subscription = self.event_stream.create_subscription_to_pop(self.on_event) # -------------------------------------------------------------------------------- def stop_forwarding(self): self.subscription = None # -------------------------------------------------------------------------------- def on_event(self, custom_event): """The event callback""" if custom_event is None: return # Returns the internal name used for the given custom event name n = "omni.graph.action." + self.event_name name = carb.events.type_from_string(n) message_bus = omni.kit.app.get_app().get_message_bus_event_stream() message_bus.push(name, custom_event) # ================================================================================ class OgnForwardEvent: """ This node triggers when the specified message bus event is received """ # -------------------------------------------------------------------------------- def __init_subclass__(cls, event_name: str, event_stream: Callable, **kwargs): cls.event_name = event_name cls.event_stream = event_stream cls.event_type = kwargs.get("event_type", None) cls.subscription_type = kwargs.get("subscription_type", EventSubscriptionType.POP) # -------------------------------------------------------------------------------- @classmethod def internal_state(*args): # noqa: PLE0211 """Returns an object that will contain per-node state information""" cls = args[0] internal_state = OgnForwardEventInternalState(cls.event_stream) return internal_state # -------------------------------------------------------------------------------- @classmethod def compute(*args) -> bool: # noqa: PLE0211 """Compute the outputs from the current input""" # cls = args[0] db = args[1] state = db.internal_state if db.inputs.start_forwarding: evstream_id = db.inputs.event_stream state.event_stream = TypeRegistry.remove_from_graph(evstream_id).value state.event_name = db.inputs.event_name state.start_forwarding() if db.inputs.stop_forwarding: state.stop_forwarding() db.outputs.execOut = True return True # ================================================================================ class AutoNodeEventStreamForwardWrapper(AutoNodeDefinitionWrapper): def __init__(self, event_stream: IEventStream, event_name: str, module_name: str, **kwargs): super().__init__() self.event_name = event_name self.event_stream = event_stream self.event_type = event_stream.get_event_type() self.module_name = module_name self.subscription_type = kwargs.get("subscription_type", EventSubscriptionType.POP) # -------------------------------------------------------------------------------- def get_ogn(self): event_ogn = { f"Forward{self.event_name}": { "description": [ "This event forwards the output of this event stream to another named event stream", "It can be used in combination with OnCustomEvent.", ], "version": 1, "uiName": f"Forward {python_name_to_ui_name(self.event_name)}", "language": "Python", "state": {}, "inputs": { "start_forwarding": { "description": "Trigger this to begin forwarding events from the wrapped event stream" " to the main event stream", "type": "execution", "uiName": "Start forwarding events", }, "stop_forwarding": { "description": "Trigger this to stop any event forwarding to the main event stream.", "type": "execution", "uiName": "Stop forwarding", }, "event_stream": { "description": "Event stream to forward from", "type": "objectId", "uiName": "Event stream", "metadata": {"python_type_desc": "IEventStream"}, }, "event_name": { "description": "Name for outgoing events, to be used in 'On Custom Event' nodes.", "type": "string", "uiName": "Event Name", }, }, "outputs": { "execOut": { "type": "execution", "description": "Executes when the event is received", "uiName": "Received", } }, } } return event_ogn # -------------------------------------------------------------------------------- def get_node_impl(self): class OgnForwardEventWrapper( OgnForwardEvent, event_name=self.event_name, event_stream=self.event_stream, event_type=self.event_type ): pass return OgnForwardEventWrapper # -------------------------------------------------------------------------------- def get_unique_name(self): return self.event_name # -------------------------------------------------------------------------------- def get_module_name(self): return self.module_name # ================================================================================ class EventAutoNodeDefinitionGenerator(AutoNodeDefinitionGenerator): _name = "IEventStream" # -------------------------------------------------------------------------------- @classmethod def generate_from_definitions( # noqa: PLW0221 cls, target_type: type, type_name_sanitized: str, type_name_short: str, module_name: str ) -> Tuple[Iterable[AutoNodeDefinitionWrapper], Iterable[str]]: members_covered = set() generators = set() if issubclass(target_type, IEventStream): generators.add( AutoNodeEventStreamWrapper( event_stream=target_type, event_name=type_name_short, module_name=module_name ) ) generators.add( AutoNodeEventStreamForwardWrapper( event_stream=target_type, event_name=type_name_short, module_name=module_name ) ) members_covered.update(key for key in IEventStream.__dict__ if not is_private(key)) return generators, members_covered
omniverse-code/kit/exts/omni.graph/omni/graph/core/_impl/autonode/type_definitions.py
import enum from abc import ABC, abstractmethod from collections import namedtuple from typing import Callable, Dict, Iterable, NewType, Optional, Tuple import numpy as np Vector3d = NewType("Vector3d", np.ndarray) Vector3f = NewType("Vector3f", np.ndarray) Vector3h = NewType("Vector3h", np.ndarray) Float = NewType("Float", np.float) Float2 = NewType("Float2", np.ndarray) Float3 = NewType("Float3", np.ndarray) Float4 = NewType("Float4", np.ndarray) Half = NewType("Half", np.half) Half2 = NewType("Half2", np.ndarray) Half3 = NewType("Half3", np.ndarray) Half4 = NewType("Half4", np.ndarray) Double = NewType("Double", np.double) Double2 = NewType("Double2", np.ndarray) Double3 = NewType("Double3", np.ndarray) Double4 = NewType("Double4", np.ndarray) Int = NewType("Int", int) Int2 = NewType("Int2", np.ndarray) Int3 = NewType("Int3", np.ndarray) Int4 = NewType("Int4", np.ndarray) def int_to_int32(input: int) -> Int: return input & 0xFFFFFFFF Timecode = NewType("Timecode", float) Token = NewType("Token", str) UInt = NewType("UInt", np.uint) UChar = NewType("UChar", np.ubyte) def int_to_uchar(input: int) -> UChar: return input & 0xFF Matrix2d = NewType("Matrix2d", np.ndarray) Matrix3d = NewType("Matrix3d", np.ndarray) Matrix4d = NewType("Matrix4d", np.ndarray) Normal3f = NewType("Normal3f", np.ndarray) Normal3d = NewType("Normal3d", np.ndarray) Normal3h = NewType("Normal3h", np.ndarray) Point3f = NewType("Point3f", np.ndarray) Point3d = NewType("Point3d", np.ndarray) Point3h = NewType("Point3h", np.ndarray) Quatd = NewType("Quatd", np.ndarray) Quatf = NewType("Quatf", np.ndarray) Quath = NewType("Point3h", np.ndarray) TexCoord2d = NewType("TexCoord2d", np.ndarray) TexCoord2f = NewType("TexCoord2f", np.ndarray) TexCoord2h = NewType("TexCoord2h", np.ndarray) TexCoord3d = NewType("TexCoord3d", np.ndarray) TexCoord3f = NewType("TexCoord3f", np.ndarray) TexCoord3h = NewType("TexCoord3h", np.ndarray) Color3f = NewType("Color3f", np.ndarray) Color4f = NewType("Color4f", np.ndarray) Color3d = NewType("Color3d", np.ndarray) Color4d = NewType("Color4d", np.ndarray) Color3h = NewType("Color3h", np.ndarray) Color4h = NewType("Color4h", np.ndarray) all_types = [ Vector3d, Vector3f, Vector3h, Float, Float2, Float3, Float4, Half, Half2, Half3, Half4, Double, Double2, Double3, Double4, Int, Int2, Int3, Int4, Timecode, Token, UInt, UChar, Matrix2d, Matrix3d, Matrix4d, Normal3f, Normal3d, Normal3h, Point3f, Point3d, Point3h, Quatd, Quatf, Quath, TexCoord2d, TexCoord2f, TexCoord2h, TexCoord3d, TexCoord3f, TexCoord3h, Color3f, Color4f, Color3d, Color4d, Color3h, Color4h, ] TypeDesc = namedtuple( "TypeDesc", [ "type", "og_type", "type_to_og", "type_to_og_conversion_method", "og_to_type", "og_to_type_conversion_method", "default", ], ) # ================================================================================ class AutoNodeTypeConversion: """Static class for storing conversion methods between python types and Omnigraph types""" class Method(enum.Enum): ASSIGN = (0,) MODIFY = 1 # flake8: noqa: E241 types = [ TypeDesc(bool, "bool", bool, Method.ASSIGN, None, Method.ASSIGN, False), TypeDesc(Color3d, "colord[3]", None, Method.ASSIGN, None, Method.ASSIGN, (0, 0, 0)), TypeDesc(Color3f, "colorf[3]", None, Method.ASSIGN, None, Method.ASSIGN, (0, 0, 0)), TypeDesc(Color3h, "colorh[3]", None, Method.ASSIGN, None, Method.ASSIGN, (0, 0, 0)), TypeDesc(Color4d, "colord[4]", None, Method.ASSIGN, None, Method.ASSIGN, (0, 0, 0, 0)), TypeDesc(Color4f, "colorf[4]", None, Method.ASSIGN, None, Method.ASSIGN, (0, 0, 0, 0)), TypeDesc(Color4h, "colorh[4]", None, Method.ASSIGN, None, Method.ASSIGN, (0, 0, 0, 0)), TypeDesc(Double, "double", None, Method.ASSIGN, None, Method.ASSIGN, 0), TypeDesc(Double2, "double[2]", None, Method.ASSIGN, None, Method.ASSIGN, (0, 0)), TypeDesc(Double3, "double[3]", None, Method.ASSIGN, None, Method.ASSIGN, (0, 0, 0)), TypeDesc(Double4, "double[4]", None, Method.ASSIGN, None, Method.ASSIGN, (0, 0, 0, 0)), TypeDesc(float, "double", None, Method.ASSIGN, None, Method.ASSIGN, 0), TypeDesc(Float, "float", np.float, Method.ASSIGN, None, Method.ASSIGN, 0), TypeDesc(Float2, "float[2]", None, Method.ASSIGN, None, Method.ASSIGN, (0, 0)), TypeDesc(Float3, "float[3]", None, Method.ASSIGN, None, Method.ASSIGN, (0, 0, 0)), TypeDesc(Float4, "float[4]", None, Method.ASSIGN, None, Method.ASSIGN, (0, 0, 0, 0)), TypeDesc(Half, "half", np.half, Method.ASSIGN, None, Method.ASSIGN, 0), TypeDesc(Half2, "half[2]", None, Method.ASSIGN, None, Method.ASSIGN, (0, 0)), TypeDesc(Half3, "half[3]", None, Method.ASSIGN, None, Method.ASSIGN, (0, 0, 0)), TypeDesc(Half4, "half[4]", None, Method.ASSIGN, None, Method.ASSIGN, (0, 0, 0, 0)), TypeDesc(int, "int64", None, Method.ASSIGN, None, Method.ASSIGN, 0), TypeDesc(Int, "int", int_to_int32, Method.ASSIGN, None, Method.ASSIGN, 0), TypeDesc(Int2, "int[2]", None, Method.ASSIGN, None, Method.ASSIGN, (0, 0)), TypeDesc(Int3, "int[3]", None, Method.ASSIGN, None, Method.ASSIGN, (0, 0, 0)), TypeDesc(Int4, "int[4]", None, Method.ASSIGN, None, Method.ASSIGN, (0, 0, 0, 0)), TypeDesc(Matrix2d, "matrixd[2]", None, Method.ASSIGN, None, Method.ASSIGN, ((1, 0), (0, 1))), TypeDesc(Matrix3d, "matrixd[3]", None, Method.ASSIGN, None, Method.ASSIGN, ((1, 0, 0), (0, 1, 0), (0, 0, 1))), TypeDesc( Matrix4d, "matrixd[4]", None, Method.ASSIGN, None, Method.ASSIGN, ((1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (0, 0, 0, 1)), ), TypeDesc(Normal3d, "normald[3]", None, Method.ASSIGN, None, Method.ASSIGN, (0, 0, 0)), TypeDesc(Normal3f, "normalf[3]", None, Method.ASSIGN, None, Method.ASSIGN, (0, 0, 0)), TypeDesc(Normal3h, "normalh[3]", None, Method.ASSIGN, None, Method.ASSIGN, (0, 0, 0)), TypeDesc(Point3d, "pointd[3]", None, Method.ASSIGN, None, Method.ASSIGN, (0, 0, 0)), TypeDesc(Point3f, "pointf[3]", None, Method.ASSIGN, None, Method.ASSIGN, (0, 0, 0)), TypeDesc(Point3h, "pointh[3]", None, Method.ASSIGN, None, Method.ASSIGN, (0, 0, 0)), TypeDesc(Quatd, "quatd[4]", None, Method.ASSIGN, None, Method.ASSIGN, (0, 0, 0, 0)), TypeDesc(Quatf, "quatf[4]", None, Method.ASSIGN, None, Method.ASSIGN, (0, 0, 0, 0)), TypeDesc(Quath, "quath[4]", None, Method.ASSIGN, None, Method.ASSIGN, (0, 0, 0, 0)), TypeDesc(str, "string", None, Method.ASSIGN, None, Method.ASSIGN, ""), TypeDesc(TexCoord2d, "texcoordd[2]", None, Method.ASSIGN, None, Method.ASSIGN, (0, 0)), TypeDesc(TexCoord2f, "texcoordf[2]", None, Method.ASSIGN, None, Method.ASSIGN, (0, 0)), TypeDesc(TexCoord2h, "texcoordh[2]", None, Method.ASSIGN, None, Method.ASSIGN, (0, 0)), TypeDesc(TexCoord3d, "texcoordd[3]", None, Method.ASSIGN, None, Method.ASSIGN, (0, 0, 0)), TypeDesc(TexCoord3f, "texcoordf[3]", None, Method.ASSIGN, None, Method.ASSIGN, (0, 0, 0)), TypeDesc(TexCoord3h, "texcoordh[3]", None, Method.ASSIGN, None, Method.ASSIGN, (0, 0, 0)), TypeDesc(Timecode, "timecode", None, Method.ASSIGN, None, Method.ASSIGN, 0), TypeDesc(Token, "token", None, Method.ASSIGN, None, Method.ASSIGN, 0), TypeDesc(UInt, "uint", int_to_uchar, Method.ASSIGN, None, Method.ASSIGN, 0), TypeDesc(UChar, "uchar", int_to_uchar, Method.ASSIGN, None, Method.ASSIGN, 0), TypeDesc(Vector3d, "vectord[3]", None, Method.ASSIGN, None, Method.ASSIGN, (0, 0, 0)), TypeDesc(Vector3f, "vectorf[3]", None, Method.ASSIGN, None, Method.ASSIGN, (0, 0, 0)), TypeDesc(Vector3h, "vectorh[3]", None, Method.ASSIGN, None, Method.ASSIGN, (0, 0, 0)), ] user_types = [] # -------------------------------------------------------------------------------- def __init__(self): raise RuntimeError("AutoNodeTypeConversion is a static class, do not instantiate") # -------------------------------------------------------------------------------- @classmethod def from_type(cls, type_desc: type) -> Optional[TypeDesc]: """Searches the conversion registry using a python type. Args: type_desc: python type to convert Returns: TypeDesc for the found python type if it's found, None otherwise """ for tb in cls.user_types: if tb.type == type_desc: return tb for tb in cls.types: if tb.type == type_desc: return tb return None # -------------------------------------------------------------------------------- @classmethod def from_ogn_type(cls, og_type: str) -> Optional[TypeDesc]: """Searches the conversion registry using an Omnigraph type. Searches the user types first, defaults to the system types. Args: og_type: string representing the incoming ogn type Returns: TypeDesc for the found python type if it's found, None otherwise """ # TODO (OS): Solve for arrays for tb in cls.user_types: og_coded_type = tb.og_type if og_coded_type == og_type: return tb for tb in cls.types: og_coded_type = tb.og_type if og_coded_type == og_type: return tb return None # -------------------------------------------------------------------------------- @classmethod def register_type_conversion( cls, python_type: type, ogn_typename: str, python_to_ogn: Optional[Callable] = None, python_to_ogn_method: Method = Method.ASSIGN, ogn_to_python: Optional[Callable] = None, ogn_to_python_method: Method = Method.ASSIGN, default=None, ): """Registers a type conversion between a python type and an ogn type. Masks any existing system setting. If a previous user-submitted type conversion is registered, it will be overridden. Args: python_type: the type representation in python. ogn_typename: string representation of the ogn type. Node generation will fail if the type isn't recognized by ogn. python_to_ogn: [optional] function to convert a python return value to an OGN struct. Signature is Callable[[[python_type], object]. Defaults to None ogn_to_python: [optional] function to convert an OGN struct to a python return value. Signature is Callable[[[object], python_type]. Defaults to None """ desc = TypeDesc( python_type, ogn_typename, python_to_ogn, python_to_ogn_method, ogn_to_python, ogn_to_python_method, default ) unregistered = cls.unregister_type_conversion(python_type) if unregistered: carb.log_warn( "Registering an autograph type conversion for {type}->{ogn_typename} replaces anohter conversion for: {desc.type}->{og_type}" ) cls.user_types.append(desc) # -------------------------------------------------------------------------------- @classmethod def unregister_type_conversion(cls, python_type: type = None, ogn_type_name: str = None) -> Optional[TypeDesc]: """Unregisters a type conversion from python to ogn. Doesn't unregister system types. Args: python_type: the python type to be removed from support ogn_type_name: the ogn type name type to be removed from support Returns: The TypeDesc tuple just unregistered, or none. """ if python_type is not None: for desc in cls.user_types: if desc.type == python_type: cls.user_types.remove(desc) return desc if ogn_type_name is not None: for desc in cls.user_types: if desc.og_type == ogn_type_name: cls.user_types.remove(desc) return desc return None # ================================================================================ class AutoNodeDefinitionWrapper(ABC): """Container for a single node representation consumed by the Ogn code generator. Class is abstract and meant to be overridden. A sufficient implementation overrides these methods: * get_ogn(self) -> Dict * get_node_impl(self) * get_unique_name(self) -> str * get_module_name(self) -> str """ def __init__(self): super().__init__() # -------------------------------------------------------------------------------- @abstractmethod def get_ogn(self) -> Dict: """Get the Ogn dictionary representation of the node interface.""" return {} # -------------------------------------------------------------------------------- @abstractmethod def get_node_impl(self): """Returns the Ogn class implementing the node behavior. See omnigraph docuemntation on how to implement. A sufficient implementation contains a staticmethod with the function: compute(db) """ return None # -------------------------------------------------------------------------------- @abstractmethod def get_unique_name(self) -> str: """Get nodes unique name, to be saved as an accessor in the node database. Returns: the non-manlged unique name """ return "" # -------------------------------------------------------------------------------- @abstractmethod def get_module_name(self) -> str: """Get the module this autograph method was defined in. Returns: the module name """ return "" # ================================================================================ class AutoNodeDefinitionGenerator(ABC): """Defines an interface for generating a node definition""" _name = "" # -------------------------------------------------------------------------------- @classmethod def name(cls): return cls._name # -------------------------------------------------------------------------------- @classmethod @abstractmethod def generate_from_definitions(cls, new_type: type) -> Tuple[Iterable[AutoNodeDefinitionWrapper], Iterable[str]]: """This method scans the type new_type and outputs an AutoNodeDefinitionWrapper from it, representing the type, as well as a list of members it wishes to hide from the rest of the node extraction process. Args: new_type: the type to analyze by attribute Returns: a tuple of: Iterable[AutoNodeDefinitionWrapper] - an iterable of AutoNodeDefinitionWrapper - every node wrapper that is generated from this type. Iterable[str] - an iterable of all members covered by this handler that other handlers should ignore. """ pass class AutographDataWrapper: """Class to wrap around data being passed in the graph, to ensure a standard interface for passing data in the graph. Accepts both reference and value types. """ # -------------------------------------------------------------------------------- def __init__(self, value) -> None: self._value = value self._type = type(value) if isinstance(self._type, AutographDataWrapper): raise KeyError("Attempted to wrap a datawrapper") # -------------------------------------------------------------------------------- @property def value(self): """Returns the stored value without side effects""" return self._value # -------------------------------------------------------------------------------- @property def type(self) -> type: """Returns the value type stored at initialization time without side effects""" return self._type class AutographObjectStore: """Obejct store with simple put-pop interface.""" # -------------------------------------------------------------------------------- def __init__(self): self._store = {} # -------------------------------------------------------------------------------- def pop(self, obj_id: int) -> AutographDataWrapper: """Attempts to return a value from the object store, and deletes it from the store. Args: obj_id: the object ID to be retrieved Returns: an AutographDataWrapper if successful Raises: KeyError if the object isn't there. """ return self._store.pop(obj_id) # -------------------------------------------------------------------------------- def put(self, obj_id: int, value: AutographDataWrapper) -> Optional[AutographDataWrapper]: """Places an object in the object store according to an object ID. If an object already exists in the data store with the same ID, it is popped. Args: obj_id: integer object ID for input object value: the actual object ID. Does not check for types. Returns: The previous object with the same ID stored in the object store, None otherwise. """ swapped = self._store.get(obj_id, None) self._store[obj_id] = value return swapped # ================================================================================ class TypeRegistry: """Main singleton for storing graph objects and generating and registering functions.""" def __init__(self): raise RuntimeError("Singleton class, use instance() instead") # -------------------------------------------------------------------------------- def _initialize(self): self.class_to_methods: Dict[type, Dict[str, str]] = {} # Meant to make accessing functions easier self.func_name_to_func = {} # Meant to keep a pointer to an object, so it doesn't get garbage collected self.refs = AutographObjectStore() # Meant to handle types whene generating nodes self.type_handlers = set() # Stores omnigraph implementations self._impl_modules = {} # -------------------------------------------------------------------------------- @classmethod def _reset(cls): """Resets all internal data strucutres. Does not unregister nodes.""" cls.instance()._initialize() # -------------------------------------------------------------------------------- @classmethod def instance(cls): """Retrieves the class instance for this singleton. Returns: Class instance """ if not hasattr(cls, "_instance"): cls._instance = cls.__new__(cls) cls._instance._initialize() return cls._instance # -------------------------------------------------------------------------------- @classmethod def get_func(cls, unique_name: str) -> Optional[AutoNodeDefinitionWrapper]: """Retrieves a function from the object store Attributes unique_name: function's qualified name. Name mangling is handled by this class Returns: Function Wrapper. """ return cls.instance().func_name_to_func.get(unique_name, None) # -------------------------------------------------------------------------------- @classmethod def add_to_graph(cls, obj) -> int: """Adds an object `obj` to the data store without checking for uniqueness of held object. Does check uniqueness of reference object. Attributes obj: Object to add to the data store. Returns: the object id. """ wrapper = AutographDataWrapper(obj) obj_id = id(wrapper) cls.instance().refs.put(obj_id, wrapper) return obj_id # -------------------------------------------------------------------------------- @classmethod def remove_from_graph(cls, obj_id: int) -> AutographDataWrapper: """Attempts to remove an object ID from the object store. Attributes obj_id: the object ID to be removed from the data store. Returns: the object stored if it was found, None otherwise. """ return cls.instance().refs.pop(obj_id)
omniverse-code/kit/exts/omni.graph/omni/graph/core/_impl/autonode/__init__.py
omniverse-code/kit/exts/omni.graph/omni/graph/core/_impl/autonode/core.py
import importlib from typing import Callable import omni.graph.tools.ogn as ogn from ..settings import Settings from .type_definitions import AutoNodeDefinitionWrapper, TypeRegistry # ============================================================================================================== class AutoNode: @staticmethod def registry(): return TypeRegistry.instance() # -------------------------------------------------------------------------------- @staticmethod def generate_code_and_store( wrapper: AutoNodeDefinitionWrapper, unique_name: str, *, module_name: str = None ) -> None: """Generates the implementation for the Ogn class and stores it in the registry. Attributes func_wrapper: Positional. The function wrapper object for which code should be generated. func_name: name of function getting stored. Name is assumed to be sanitized module_name: [optional] override the name of the module as detected by the reflection system. """ if not unique_name.find(".") == -1: raise NameError(f"{unique_name} is not a valid name for a class, since it contains a '.'") AutoNode.registry().func_name_to_func[unique_name] = wrapper name_prefixed = f"Ogn_{unique_name}" module_name = module_name or wrapper.get_module_name() code = ogn.code_generation( wrapper.get_ogn(), name_prefixed, module_name, "omni.graph.tools", Settings.generator_settings(), ) ################## # Code Injection # ################## # create a virtual module v_module = importlib.util.module_from_spec(globals()["__spec__"]) AutoNode.registry()._impl_modules[name_prefixed] = v_module # noqa: PLW0212 # inject dependencies into the generated module v_module.__dict__["AutoNode"] = AutoNode # v_module.__dict__.update([(a.__name__, a) for a in all_types]) # DANGER ZONE: execute the python node database definition in the target node exec(code["python"], vars(v_module)) # noqa: PLW0122 # inject the generated implementation into the module setattr(v_module, name_prefixed, wrapper.get_node_impl()) node_class = getattr(v_module, name_prefixed) # retrieve the registration action from the node db and register the node db_class = getattr(v_module, name_prefixed + "Database") do_register = db_class.register do_register(node_class) # -------------------------------------------------------------------------------- @staticmethod def generate_custom_node(wrapper: AutoNodeDefinitionWrapper): AutoNode.generate_code_and_store( wrapper, unique_name=wrapper.get_unique_name(), module_name=wrapper.get_module_name() ) # ============================================================================================================== class AutoNodeEvaluationDelayedExecutionQueue: _queue = [] def __init__(self): raise RuntimeError("AutoNodeEvaluationDelayedExecutionQueue is a singleton") # -------------------------------------------------------------------------------- @classmethod def instance(cls): if not hasattr(cls, "_instance"): cls._instance = cls.__new__(cls) # -------------------------------------------------------------------------------- @classmethod def add_to_queue(cls, callable_fn: Callable): cls.instance()._queue.append(callable_fn) # noqa: PLW0212 # -------------------------------------------------------------------------------- @classmethod def execute_queue(cls): while len(cls.instance()._queue) > 0: # noqa: PLW0212 callable_fn = cls.instance()._queue.pop() # noqa: PLW0212 callable_fn()
omniverse-code/kit/exts/omni.graph/omni/graph/core/_impl/autonode/autonode.py
""" AutoNode - module for decorating code to populate it into OmniGraph nodes. Allows generating nodes by decorating free functions, classes and modules by adding `@AutoFunc()` or `@AutoClass()` to the declaration of the class. Generating code relies on function signatures provided by python's type annotations, therefore the module only supports native python types with `__annotations__`. CPython classes need need to be wrapped for now. Exports: `AutoClass`, `AutoFunc` How an AutoNode decorator works: # TODO How an AutoNode function execution works: 1. Attribute discovery Attributes are scanned from the db at runtime 2. Attribute type resolution types.py contains type conversion facilities to decide on the outgoing type of afunction 3. Attribute value resolution If needed, values are retrieved from the object store 4. Function execution function is called. 5. Return value resolution if the return value needs to be stored outside node, it happens now. 6. Dispatch to other nodes propagation of values and execution statnode""" # standard lib imports import inspect # meta imports from typing import Callable, Dict, List # framework imports import carb from .core import AutoNode from .enum_wrappers import EnumAutoNodeDefinitionGenerator from .event import EventAutoNodeDefinitionGenerator from .function import AutoFunctionWrapper from .property import AutoPropertyWrapper # module imports from .type_definitions import AutoNodeDefinitionGenerator from .util import FUNC_INFIX, GET_SUFFIX, PROP_INFIX, SET_SUFFIX, is_private, python_name_to_ui_name, sanitize_qualname # ================================================================================ def GenerateAutoFunc( # noqa: N802 func: Callable, *, qualname: str = None, ui_name: str = None, pure: bool = False, module_name: str = None, tags: List[str] = None, annotation: Dict = None, ): """Decorator for methods and function objects. Attributes func: the function object being wrapped. Should be a pure python function object or any other callable which has an `__annotations__` property. qualname: [optional] override the inferred qualified name ui_name: [optional] name that appears in the funcion's menu and node display. pure: [optional] override this function to be a pure function - a function independent of object state and without side effects, which doesn't enforce a specific execution order. module_name:[optional] override the inferred module name tags: [optional] annotation: [optional] override annotations """ qualname = qualname or func.__qualname__ unique_name = sanitize_qualname(qualname) module_name = module_name or func.__module__ ui_name = ui_name or python_name_to_ui_name(qualname) func_wrapper = AutoFunctionWrapper( func, unique_name=unique_name, ui_name=ui_name, pure=pure, tags=tags, annotation=annotation ) AutoNode.generate_code_and_store(func_wrapper, unique_name=unique_name, module_name=module_name) return func # ================================================================================ def GenerateAutoClass(target_class, *, module_name: str, annotation: Dict = None): # noqa: N802 """Decorator for classes. Registers the class in the type registry, and returns the wrapped class. Attributes target_class: class being wrapped. module_name: [optional] override the inferred module name annotation: a dict containing annotations for all members in the class. Used if passed a type with no annotations. """ class_directory = {} module_name = module_name or target_class.__module__ class_shortname = target_class.__name__ class_unique_name = f"{target_class.__qualname__}" class_sanitized_name = sanitize_qualname(target_class.__qualname__) # first, extract special type functionality and ignore special type helpers members_to_ignore = set() for type_handler in AutoNode.registry().type_handlers: definitions, members = type_handler.generate_from_definitions( target_type=target_class, type_name_sanitized=class_sanitized_name, type_name_short=class_shortname, module_name=module_name, ) for definition in definitions: AutoNode.generate_custom_node(definition) members_to_ignore.update(members) def _member_filter(name): ret = True ret &= not is_private(name) ret &= name not in members_to_ignore return ret members_to_scan = [key for key in target_class.__dict__ if _member_filter(key)] # scan remaining, ordinary members for key in members_to_scan: key_unique_name = f"{class_unique_name} : {python_name_to_ui_name(key)}" value = target_class.__dict__[key] if inspect.ismethoddescriptor(value): # this method came from C++, but isn't a function if annotation is None or key not in annotation: # can't handle instance methods for now carb.log_warn( f"Can't wrap {key_unique_name}: C functions require an annotation shim and none was provided" ) continue func_sanitized_name = f"{class_sanitized_name}{FUNC_INFIX}{key}" func_ui_name = f"{class_unique_name} : {python_name_to_ui_name(key)}" GenerateAutoFunc( value, qualname=func_sanitized_name, ui_name=func_ui_name, module_name=module_name, pure=False, annotation=annotation[key], ) class_directory[key] = func_sanitized_name elif inspect.isfunction(value): # python function object func_sanitized_name = f"{class_sanitized_name}{FUNC_INFIX}{key}" func_ui_name = f"{class_unique_name} : {python_name_to_ui_name(key)}" shim = annotation.get(key, None) if annotation else None GenerateAutoFunc( value, qualname=func_sanitized_name, ui_name=func_ui_name, module_name=module_name, pure=False, annotation=shim, ) class_directory[key] = func_sanitized_name elif inspect.isdatadescriptor(value): # has a getter, a setter and a deleter prop_sanitized_name = f"{class_sanitized_name}{PROP_INFIX}{key}" getter_sanitized_name = f"{prop_sanitized_name}{GET_SUFFIX}" getter_ui_name = f"{class_unique_name} : Get {key}" setter_sanitized_name = f"{prop_sanitized_name}{SET_SUFFIX}" setter_ui_name = f"{class_unique_name} : Set {key}" type_override = annotation.get(key, None) if annotation else None if not type_override: carb.log_warn(f"{class_unique_name}.{key} has no annotation, and will be skipped") continue getter_shim = {"return": type_override} setter_shim = {"value": type_override, "return": None} GenerateAutoFunc( value.getter, qualname=getter_sanitized_name, ui_name=getter_ui_name, module_name=module_name, annotation=getter_shim, ) GenerateAutoFunc( value.setter, qualname=setter_sanitized_name, ui_name=setter_ui_name, module_name=module_name, annotation=setter_shim, ) class_directory[key] = {"get": getter_sanitized_name, "set": setter_sanitized_name} else: # it's a value and should be wrapped in a property prop_sanitized_name = f"{class_sanitized_name}{PROP_INFIX}{key}" getter_sanitized_name = f"{prop_sanitized_name}{GET_SUFFIX}" getter_ui_name = f"{class_unique_name} : Get {key}" setter_sanitized_name = f"{prop_sanitized_name}{SET_SUFFIX}" setter_ui_name = f"{class_unique_name} : Set {key}" shim = annotation.get(key, None) if annotation else None wrapper = AutoPropertyWrapper(target_class, name=key, type_override=shim) GenerateAutoFunc( wrapper.get, qualname=getter_sanitized_name, ui_name=getter_ui_name, module_name=module_name, pure=False ) GenerateAutoFunc( wrapper.set, qualname=setter_sanitized_name, ui_name=setter_ui_name, module_name=module_name, pure=False ) class_directory[key] = {"get": getter_sanitized_name, "set": setter_sanitized_name} AutoNode.registry().func_name_to_func[prop_sanitized_name] = wrapper AutoNode.registry().class_to_methods[target_class] = class_directory return target_class ################################################################################## # # # public interface # # # ################################################################################## # ================================================================================ def AutoClass(**kwargs): # noqa: N802 # inject locals for linking if "module_name" not in kwargs: try: kwargs["module_name"] = inspect.currentframe().f_back.f_locals["__package__"] except (AttributeError, KeyError): kwargs["module_name"] = "default_module" carb.log_warn("No module name found in package. Assigning default name 'default_module'") def ret(cls): return GenerateAutoClass(cls, **kwargs) # noqa: PLE1125 ret.__doc__ = GenerateAutoClass.__doc__ return ret # ================================================================================ def AutoFunc(**kwargs): # noqa: N802 # inject locals for linking if "module_name" not in kwargs: try: kwargs["module_name"] = inspect.currentframe().f_back.f_locals["__package__"] except (AttributeError, KeyError): kwargs["module_name"] = "default_module" carb.log_warn("No module name found in package. Assigning default name 'default_module'") def ret(func): return GenerateAutoFunc(func, **kwargs) ret.__doc__ = GenerateAutoFunc.__doc__ return ret # ================================================================================ def register_autonode_type_extension(handler: AutoNodeDefinitionGenerator, **kwargs): # if "module_name" not in kwargs: # kwargs['module_name'] = inspect.currentframe().f_back.f_locals["__package__"] AutoNode.registry().type_handlers.add(handler) # ================================================================================ def unregister_autonode_type_extension(handler: AutoNodeDefinitionGenerator, **kwargs): # if "module_name" not in kwargs: # kwargs['module_name'] = inspect.currentframe().f_back.f_locals["__package__"] AutoNode.registry().type_handlers.remove(handler) # should help clean in hot reloads AutoNode.registry()._reset() # noqa: PLW0212 # Add Enums register_autonode_type_extension(EnumAutoNodeDefinitionGenerator) # Add Events register_autonode_type_extension(EventAutoNodeDefinitionGenerator)
omniverse-code/kit/exts/omni.graph/omni/graph/core/_impl/autonode/property.py
# ================================================================================ class AutoPropertyWrapper: """Wrapper to generate a getter and setter from a property in a class""" def __init__(self, target_class, name: str, *, type_override: type = None) -> None: try: self._type = type_override or target_class.__annotations__[name] except KeyError: self._type = type(target_class.__dict__[name]) self._name = name self.get.__annotations__["target"] = type(target_class) self.get.__annotations__["return"] = self._type self.set.__annotations__["target"] = type(target_class) self.set.__annotations__["value"] = self._type def get(self, target): return getattr(target, self._name) def set(self, target, value): # noqa: A003 setattr(target, self._name, value) return target
omniverse-code/kit/exts/omni.graph/omni/graph/core/_impl/autonode/enum_wrappers.py
from typing import Dict, Iterable, OrderedDict, Tuple import carb from .type_definitions import AutoNodeDefinitionGenerator, AutoNodeDefinitionWrapper from .util import GeneratedCode # ================================================================================ class OgnEnumExecutionWrapper: def __init_subclass__(cls, target_class: type) -> None: cls.target_class = target_class cls.member_names = list(target_class.__members__) cls.generate_compute() @classmethod def generate_compute(cls): code = GeneratedCode() code.line("from .type_definitions import TypeRegistry") code.line("@classmethod") with code.indent("def compute(*args):"): code.line("cls = args[0]") code.line("db = args[1]") with code.indent("if not db.inputs.exec:"): code.line("return True") code.line("input = db.inputs.enum") code.line("value = TypeRegistry.remove_from_graph(input).value") for name in cls.member_names: code.line(f"db.outputs.{name} = bool(value == cls.target_class.{name})") code.line("return True") carb.log_verbose(f"Generated code for {cls.target_class}:\n{str(code)}") exec(str(code), globals()) # noqa: PLW0122 cls.compute = compute # noqa: Defined in exec() code # ================================================================================ class OgnEnumWrapper(AutoNodeDefinitionWrapper): """Wrapper around Enums""" def __init__(self, target_class, unique_name: str, module_name: str, *, ui_name: str = None): super().__init__() self.target_class = target_class self.unique_name = unique_name self.ui_name = ui_name or target_class.__name__ self.module_name = module_name self.descriptor: Dict = {} self.descriptor["uiName"] = ui_name self.descriptor["version"] = 1 self.descriptor["language"] = "Python" self.descriptor["description"] = f"Enum Wrapper for {self.ui_name}" self.descriptor["inputs"] = OrderedDict( { "enum": { "uiName": "Input", "description": "Enum input", "type": "objectId", "default": 0, "metadata": {"python_type_desc": self.unique_name}, }, "exec": {"uiName": "Exec", "description": "Execution input", "type": "execution", "default": 0}, } ) def signature(name): return {"uiName": name, "description": f"Execute on {name}", "type": "execution", "default": 0} self.descriptor["outputs"] = OrderedDict({name: signature(name) for name in self.target_class.__members__}) # -------------------------------------------------------------------------------- def get_unique_name(self) -> str: return self.unique_name # -------------------------------------------------------------------------------- def get_module_name(self) -> str: return self.module_name # -------------------------------------------------------------------------------- def get_node_impl(self): class OgnEnumReturnType(OgnEnumExecutionWrapper, target_class=self.target_class): pass return OgnEnumReturnType # -------------------------------------------------------------------------------- def get_ogn(self) -> Dict: d = {self.unique_name: self.descriptor} return d # ================================================================================ class EnumAutoNodeDefinitionGenerator(AutoNodeDefinitionGenerator): _name = "Enum" # -------------------------------------------------------------------------------- @classmethod def generate_from_definitions( # noqa: PLW0221 cls, target_type: type, type_name_sanitized: str, type_name_short: str, module_name: str ) -> Tuple[Iterable[AutoNodeDefinitionWrapper], Iterable[str]]: members_covered = set() returned_generators = set() if hasattr(target_type, "__members__"): ret = OgnEnumWrapper( target_type, unique_name=type_name_sanitized, module_name=module_name, ui_name=f"Switch on {type_name_short}", ) members_covered.update(target_type.__members__) returned_generators.add(ret) return returned_generators, members_covered
omniverse-code/kit/exts/omni.graph/omni/graph/core/_impl/v1_5_0/update_file_format.py
"""File format upgrade utilities""" from typing import Any, Dict, List, Optional, Tuple import carb import omni.graph.core as og import omni.usd from omni.kit.commands import execute from pxr import Gf, OmniGraphSchema, Usd from .utils import ALLOW_IMPLICIT_GRAPH_SETTING, USE_SCHEMA_PRIMS_SETTING EXTENDED_ATTRIBUTE_SCOPED_CUSTOM_DATA_VERSION = og.FileFormatVersion(1, 5) LAST_FILE_FORMAT_VERSION_WITHOUT_SCHEMA = og.FileFormatVersion(1, 10) """TODO: This is the last file format version where it is possible to have OmniGraph prims that do not use the schema It should be updated when the final deprecation is made. """ # ============================================================================================================== def remove_global_compute_graph(old_format_version, new_format_version, graph): """If the setting to allow a global implicit graph is not on then remove it if found and replace it with a regular graph""" settings = carb.settings.get_settings() allow_implicit_graph = settings.get(ALLOW_IMPLICIT_GRAPH_SETTING) # If the schema is enabled it will fix the global compute graphs too use_schema_prims = settings.get(og.USE_SCHEMA_PRIMS_SETTING) if not allow_implicit_graph and not use_schema_prims: stage = omni.usd.get_context().get_stage() if stage is not None: iterator = iter(stage.TraverseAll()) for prim in iterator: if prim.GetTypeName() == "GlobalComputeGraph": carb.log_info( "Converting " + prim.GetPrimPath().pathString + "from GlobalComputeGraph to ComputeGraph" ) prim.SetTypeName("ComputeGraph") iterator.PruneChildren() # ============================================================================================================== def check_for_bare_connections(stage: Usd.Stage) -> List[str]: """Check for any of the old unsupported connections from nodes to prims that cannot exist in schema-based world Return: List of strings describing the forbidden connections found """ iterator = iter(stage.TraverseAll()) bad_connections = [] for prim in iterator: if prim.GetTypeName() in ["ComputeNode", "OmniGraphNode"]: for attribute in prim.GetAttributes(): for connected_path in attribute.GetConnections(): connected_prim = stage.GetPrimAtPath(connected_path.GetPrimPath()) if not connected_prim.IsValid(): carb.log_warn( f"Invalid connection found at {attribute.GetPath()}:" f" {connected_path.GetPrimPath()} while migrating to new schema" ) elif connected_prim.GetTypeName() not in ["ComputeNode", "OmniGraphNode"]: bad_connections.append(f"{prim.GetPrimPath()} - {connected_path}") return bad_connections # ============================================================================================================== def migrate_attribute_custom_data( old_format_version: og.FileFormatVersion, new_format_version: og.FileFormatVersion, _ ): """Add scoped customData to attributes which have the old format""" if old_format_version < EXTENDED_ATTRIBUTE_SCOPED_CUSTOM_DATA_VERSION: stage = omni.usd.get_context().get_stage() if stage is None: return iterator = iter(stage.TraverseAll()) for prim in iterator: if prim.GetTypeName() in ["OmniGraphNode", "ComputeNode"]: for attribute in prim.GetAttributes(): custom_data = attribute.GetCustomData() extended_type = custom_data.get("ExtendedAttributeType", None) if extended_type: attribute.SetCustomDataByKey("omni:graph:attrType", extended_type) iterator.PruneChildren() # ============================================================================================================== class OmniGraphSchemaMigrator: """Collection of methods to manage all of the steps involved in migrating an arbitrary graph to use schema prims""" def __init__(self): """Set up initial values""" self.__command_count = 0 # -------------------------------------------------------------------------------------------------------------- @property def stage(self) -> Usd.Stage: """Returns the stage in use - set as a property so that the latest version is always used as it changes""" return omni.usd.get_context().get_stage() # -------------------------------------------------------------------------------------------------------------- def __check_for_old_prim_nodes(self) -> List[str]: """Check for any of the old unsupported prim nodes that cannot exist in schema-based world Return: List of prim paths for any unsupported prim node types """ iterator = iter(self.stage.TraverseAll()) prim_nodes = [] for prim in iterator: if prim.GetTypeName() == "ComputeNode": node_type_attr = prim.GetAttribute("node:type") if node_type_attr.IsValid() and node_type_attr.Get() == "omni.graph.core.Prim": prim_nodes.append(prim.GetPrimPath()) return prim_nodes # -------------------------------------------------------------------------------------------------------------- def __change_prim_types_to_match_schema(self) -> List[Tuple[str, str, str]]: """Modify any old prim names to match the ones used by the schema Return: List of (path, old_type, new_type) for prims whose type was changed """ iterator = iter(self.stage.TraverseAll()) retyped = [] for prim in iterator: if prim.GetTypeName() in ["GlobalComputeGraph", "ComputeGraph"]: carb.log_info(f"Converting graph {prim.GetPrimPath()} from {prim.GetTypeName()} to OmniGraph") retyped.append((str(prim.GetPrimPath()), prim.GetTypeName(), "OmniGraph")) prim.SetTypeName("OmniGraph") elif prim.GetTypeName() == "ComputeNode": carb.log_info(f"Converting node {prim.GetPrimPath()} from ComputeNode to OmniGraphNode") retyped.append((str(prim.GetPrimPath()), prim.GetTypeName(), "OmniGraphNode")) prim.SetTypeName("OmniGraphNode") # Ensure that the schema-defined attributes on the node are no longer custom node_prim = OmniGraphSchema.OmniGraphNode(prim) if node_prim: node_type_attr = node_prim.GetNodeTypeAttr() if node_type_attr.IsValid(): if not node_type_attr.SetCustom(False): carb.log_warn(f"Failed to set node:type attribute to non-custom on {prim.GetPrimPath()}") else: carb.log_warn(f"OmniGraph prim node {prim.GetPrimPath()} has no node:type attribute") node_type_version_attr = node_prim.GetNodeTypeVersionAttr() if node_type_version_attr.IsValid(): if not node_type_version_attr.SetCustom(False): carb.log_warn( f"Failed to set node:typeVersion attribute to non-custom on {prim.GetPrimPath()}" ) else: carb.log_warn(f"OmniGraph prim node {prim.GetPrimPath()} has no node:type attribute") else: # This might be an error or it might just be the fact that the USD notification to change the type # hasn't been processed yet. As this is only temporary compatibility code and we know that when # reading a file the prims are immediately valid there is no need to add the complexity here to # tie into an event loop and await the USD notification propagation. pass return retyped # -------------------------------------------------------------------------------------------------------------- def __create_top_level_graph(self) -> List[Tuple[str, str]]: """If there are any nodes or settings not in a graph then create a graph for them and move them into it. Assumes that before calling this all of the old prim type names have been replaced with the schema prim type names. Args: stage: USD stage on which to replace settings Return: List of (old_path, new_path) for prims that were moved from the root level to a new graph Raises: og.OmniGraphError if the required prim changes failed """ iterator = iter(self.stage.TraverseAll()) # Collect this map of settings prim path onto the path at which the parent graph must be created prims_to_move = [] for prim in iterator: if prim.GetTypeName() in ["ComputeGraphSettings", "OmniGraphNode"]: parent = prim.GetParent() if not parent.IsValid() or parent.GetTypeName() != "OmniGraph": prims_to_move.append(prim) elif prim.GetTypeName() in ["ComputeGraph", "OmniGraph"]: iterator.PruneChildren() prim_paths_moved = [] if prims_to_move: carb.log_info(f"Creating top level graph for global nodes {[prim.GetPrimPath() for prim in prims_to_move]}") for prim in prims_to_move: parent_path = str(prim.GetParent().GetPrimPath()) if parent_path[-1] != "/": parent_path += "/" default_global_graph_path = f"{parent_path}__graphUsingSchemas" global_graph_prim = self.stage.GetPrimAtPath(default_global_graph_path) if not global_graph_prim: (status, result) = execute("CreatePrim", prim_path=default_global_graph_path, prim_type="OmniGraph") if not status: raise og.OmniGraphError( f"Error creating OmniGraph prim at {default_global_graph_path} - {result}" ) new_prim_path = f"{default_global_graph_path}/{prim.GetName()}" prim_paths_moved.append((str(prim.GetPrimPath()), new_prim_path)) carb.log_info(f"Move {prim.GetPrimPath()} -> {new_prim_path}") (status, result) = execute("MovePrim", path_from=prim.GetPrimPath(), path_to=new_prim_path) if not status: raise og.OmniGraphError( f"Error moving OmniGraph prim from {prim.GetPrimPath()} to {new_prim_path} - {result}" ) return prim_paths_moved # -------------------------------------------------------------------------------------------------------------- def __replace_settings_with_properties(self, new_file_format_version: Tuple[int, int]) -> List[str]: """If there are any of the old settings prims move their property values into their containing graph. Args: new_file_format_version: The file format version that should be used for the graph setting Return: List of prim paths with settings that were transferred to the containing graph and then deleted """ iterator = iter(self.stage.TraverseAll()) prims_to_remove = [] for prim in iterator: # noqa: PLR1702 if prim.GetTypeName() == "ComputeGraphSettings": carb.log_info(f"Moving settings from {prim.GetPrimPath()} into the parent graph") graph_prim = prim.GetParent() # Need to check against the old types as well as the USD change notices may not have percolated if graph_prim.IsValid() and graph_prim.GetTypeName() in [ "GlobalComputeGraph", "ComputeGraph", "OmniGraph", ]: for attr in prim.GetAttributes(): setting_name = attr.GetName() setting_value = attr.Get() if setting_name == "flatCacheBacking": setting_name = "fabricCacheBacking" if setting_value == "StagedWithHistory": setting_value = "StageWithHistory" graph_attr = graph_prim.GetAttribute(setting_name) if not graph_attr.IsValid(): graph_attr = graph_prim.CreateAttribute( setting_name, attr.GetTypeName(), custom=False, variability=attr.GetVariability() ) if graph_attr.IsValid(): graph_attr.Set(setting_value) else: carb.log_warn( f"Could not create settings attribute {attr.GetName()}" f" on graph {graph_prim.GetPrimPath()}" ) prims_to_remove.append(str(prim.GetPrimPath())) schema_prim = OmniGraphSchema.OmniGraph(graph_prim) if bool(schema_prim): file_format_version_attr = schema_prim.GetFileFormatVersionAttr() file_format_version_attr.Set(Gf.Vec2i(new_file_format_version)) else: carb.log_warn(f"Could not cast graph prim {graph_prim.GetPrimPath()} to OmniGraph schema") else: carb.log_warn(f"Could not find graph above {prim.GetPrimPath()} to receive settings") elif prim.GetTypeName() == "ComputeNodeMetadata": # Take advantage of the loop to also get rid of the obsolete metadata children prims_to_remove.append(str(prim.GetPrimPath())) if prims_to_remove: (status, result) = execute("DeletePrims", paths=prims_to_remove) if not status: raise og.OmniGraphError(f"Error deleting prims {prims_to_remove} - {result}") return prims_to_remove # -------------------------------------------------------------------------------------------------------------- # Handling for old files that did not use the OmniGraph schema (earlier than 1.3) def update(self, new_file_format_version: Optional[Tuple[int, int]] = None) -> Dict[str, Any]: """Update the current file to use the new schema. This can run either before OmniGraph has attached to the stage (e.g. when reading in an old file) or when an explicit migration has been requested (e.g. when an old file exists and the user wants to migrate it). In both cases if any prim types have been migrated the useSchemaPrims setting will be forced to True so that subsequent OmniGraph additions use the schema types. (Mostly because this is easier than trying to track the state of whether a graph contains such prims already.) Conversion of old scenes entails: - Changing any ComputeGraph or GlobalComputeGraph prims to be OmniGraph types - If a ComputeGraphSettings prim exists, migrating its attribute values to the OmniGraph prim - Changing any ComputeNode prims to be OmniGraphNode types - If any ComputeNode prims appear without a parent ComputeGraph then create a default graph and move them into it Args: new_file_format_version: The file format version that should be used for the graph setting. If None then it will force the version immediately following the schema conversion (1, 4) Return: A dictionary of operations that were performed as part of the migration (key describes the operation, value is the objects to which it was applied) """ stage = omni.usd.get_context().get_stage() if stage is None: return {"message": "No stage to convert"} try: self.__command_count = 0 return_values = {} # Verify that the old prim nodes don't exist old_prim_nodes = self.__check_for_old_prim_nodes() if old_prim_nodes: raise og.OmniGraphError( f"Deprecated omni.graph.core.Prim nodes not allowed with schema - {old_prim_nodes}" ) # Verify that bare connections from OmniGraph nodes to non-OmniGraph prims do not exist bare_connections = check_for_bare_connections(self.stage) if bare_connections: raise og.OmniGraphError( "Deprecated connections from an OmniGraph node to a USD Prim not allowed with schema" f" - {bare_connections}" ) # First pass - change ComputeGraph/GlobalComputeGraph -> OmniGraph and ComputeNode -> OmniGraphNode return_values["Prim Types Changed"] = self.__change_prim_types_to_match_schema() # Second pass - if there are any OmniGraphNode or ComputeGraphSettings prims not in a graph, # create one and move them into it return_values["Root Prims Moved To Graph"] = self.__create_top_level_graph() # Third pass - move settings from their own prim to the parent graph prim if new_file_format_version is None: new_file_format_version = (1, 4) return_values["Settings Removed"] = self.__replace_settings_with_properties(new_file_format_version) # Now that the scene has been migrated the schema setting has to be enabled or bad things will happen. # Don't bother doing it if nothing changed though. if any(return_values.values()): carb.settings.get_settings().set(USE_SCHEMA_PRIMS_SETTING, True) return return_values except og.OmniGraphError as error: # If anything failed it would leave the graph in a hybrid state so try to restore it back to its original # state so that it remains stable. carb.log_error(str(error)) for _i in range(self.__command_count): omni.kit.undo() return_values = {} return return_values # ============================================================================================================== # Handling for old files that did not use the OmniGraph schema (earlier than 1.3) def update_to_include_schema(new_file_format_version: Optional[Tuple[int, int]] = None) -> Dict[str, Any]: """Update the current file to use the new schema. See OmniGraphSchemaMigrator.update() for details This can run either before OmniGraph has attached to the stage (e.g. when reading in an old file) or when an explicit migration has been requested (e.g. when an old file exists and the user wants to migrate it). In both cases if any prim types have been migrated the useSchemaPrims setting will be forced to True so that subsequent OmniGraph additions use the schema types. (Mostly because this is easier than trying to track the state of whether a graph contains such prims already.) Conversion of old scenes entails: - Changing any ComputeGraph or GlobalComputeGraph prims to be OmniGraph types - If a ComputeGraphSettings prim exists, migrating its attribute values to the OmniGraph prim - Changing any ComputeNode prims to be OmniGraphNode types - If any ComputeNode prims appear without a parent ComputeGraph create a default graph and move them into it Args: new_file_format_version: The file format version that should be used for the graph setting. If None then it will force the version immediately following the schema conversion (1, 4) Return: A dictionary of operations that were performed as part of the migration (key describes the operation, value is the objects to which it was applied) Raises: og.OmniGraphError if any of the attempted changes failed - will attempt to restore graph to original state """ return OmniGraphSchemaMigrator().update() # ============================================================================================================== # Handling for old files that did not use the OmniGraph schema (earlier than 1.3) def cb_update_to_include_schema( old_version: Optional[og.FileFormatVersion], new_version: Optional[og.FileFormatVersion], graph: Optional[og.Graph] ) -> Dict[str, Any]: """Callback invoked when a file is loaded to update old files to use the new schema. This will be called anytime a file is loaded with a non-current version. The old version and new version are checked to confirm that the values cross over the boundary when schemas were created, and if so then the schema information is applied to the file. Args: old_version: Version the file to upgrade uses new_version: Current file version expected graph: Graph to convert (only present for historical reasons - the entire stage is updated) Return: A dictionary of operations that were performed as part of the migration (key describes the operation, value is the objects to which it was applied) """ # If the setting to automatically migrate is not on then there is nothing to do here if not carb.settings.get_settings().get(USE_SCHEMA_PRIMS_SETTING): return {} # If the file format version is one of the ones that must contain schema prims no migration is needed if old_version is not None and ( old_version.majorVersion > LAST_FILE_FORMAT_VERSION_WITHOUT_SCHEMA.majorVersion or ( old_version.majorVersion == LAST_FILE_FORMAT_VERSION_WITHOUT_SCHEMA.majorVersion and old_version.minorVersion > LAST_FILE_FORMAT_VERSION_WITHOUT_SCHEMA.minorVersion ) ): return {"message": f"File format version {old_version} already uses the schema"} return update_to_include_schema((new_version.majorVersion, new_version.minorVersion)) # -------------------------------------------------------------------------------------------------------------- RESETTING_USE_SCHEMA_PRIMS = False """Global variable to avoid potential infinite recursion when restoring the useSchemaPrims setting""" RESETTING_IMPLICIT_GRAPH = False """Global variable to avoid potential infinite recursion when restoring the allowGlobalImplicitGraph setting""" # -------------------------------------------------------------------------------------------------------------- def can_set_use_schema_prims_setting(new_value: bool) -> str: """Check to see if a new value for the schema prims setting is valid - returns warning text, empty if okay""" def __prim_types_in_scene(prim_types: List[str]) -> bool: """Returns true if the scene contains prims whose types are any in the list""" found_prims = [] stage = omni.usd.get_context().get_stage() if stage is not None: iterator = iter(stage.TraverseAll()) for prim in iterator: if prim.GetTypeName() in prim_types: found_prims.append(f"{prim.GetPrimPath()} : {prim.GetTypeName()}") return found_prims if new_value: forbidden_prims = __prim_types_in_scene( ["ComputeGraphSettings", "ComputeNode", "ComputeGraph", "GlobalComputeGraph"] ) if forbidden_prims: return f"Cannot enable {USE_SCHEMA_PRIMS_SETTING} when the scene contains old style prims {forbidden_prims}" bare_connections = check_for_bare_connections(check_for_bare_connections(omni.usd.get_context().get_stage())) if bare_connections: return ( f"Cannot enable {USE_SCHEMA_PRIMS_SETTING} when the scene contains" f" direct prim connections {bare_connections}" ) else: forbidden_prims = __prim_types_in_scene(["OmniGraph", "OmniGraphNode"]) if forbidden_prims: return f"Cannot disable {USE_SCHEMA_PRIMS_SETTING} when the scene contains schema prims {forbidden_prims}" return ""
omniverse-code/kit/exts/omni.graph/omni/graph/core/_impl/v1_5_0/omnigraph_helper.py
# noqa: PLC0302 r"""Deprecated class that handles interactions with the OmniGraphs - use og.Controller instead _____ ______ _____ _____ ______ _____ _______ ______ _____ | __ \ | ____|| __ \ | __ \ | ____|/ ____| /\ |__ __|| ____|| __ \ | | | || |__ | |__) || |__) || |__ | | / \ | | | |__ | | | | | | | || __| | ___/ | _ / | __| | | / /\ \ | | | __| | | | | | |__| || |____ | | | | \ \ | |____| |____ / ____ \ | | | |____ | |__| | |_____/ |______||_| |_| \_\|______|\_____|/_/ \_\|_| |______||_____/ """ import os from contextlib import suppress from typing import Any, Dict, List, Optional, Tuple, Union import omni.graph.core as og import omni.graph.tools as ogt import omni.kit.commands from carb import log_info, log_warn from pxr import Sdf, Tf, Usd from ..errors import OmniGraphError from ..object_lookup import ObjectLookup from ..typing import Attribute_t, Node_t from ..utils import DBG_EVAL, dbg_eval from .context_helper import ContextHelper from .utils import ( ATTRIBUTE_TYPE_HINTS, ATTRIBUTE_TYPE_OR_LIST, ATTRIBUTE_TYPE_TYPE_HINTS, ATTRIBUTE_VALUE_PAIR, ATTRIBUTE_VALUE_PAIRS, EXTENDED_ATTRIBUTE_TYPE_HINTS, NODE_TYPE_HINTS, NODE_TYPE_OR_LIST, ) # Function argument types passed to the various graph interface operations ConnectData_t = Tuple[Node_t, Attribute_t, Node_t, Attribute_t] ConnectDatas_t = Union[ConnectData_t, List[ConnectData_t]] CreateNodeData_t = Tuple[str, Node_t] CreateNodeDatas_t = Union[CreateNodeData_t, List[CreateNodeData_t]] CreatePrimData_t = Tuple[str, Dict[str, Tuple[str, Any]]] CreatePrimDatas_t = Union[CreatePrimData_t, List[CreatePrimData_t]] DeleteNodeData_t = str DeleteNodeDatas_t = Union[DeleteNodeData_t, List[DeleteNodeData_t]] DisconnectData_t = Tuple[Node_t, Attribute_t, Node_t, Attribute_t] DisconnectDatas_t = Union[DisconnectData_t, List[DisconnectData_t]] SetValueData_t = Tuple[Attribute_t, Any] SetValueDatas_t = Union[SetValueData_t, List[SetValueData_t]] # Decoded attribute bundle possibilities BundledAttribute_t = Optional[Union[Usd.Prim, Usd.Property]] # ===================================================================== @ogt.DeprecatedClass("og.OmniGraphHelper is deprecated after version 1.5.0. Use og.Controller instead.") class OmniGraphHelper: """Class to provide a simple interface to OmniGraph manipulation functions Provides functions for creating nodes, making and breaking connections, and setting values. Graph manipulation functions are undoable, value changes are not. The main benefit this class provides over direct manipulation of the graph is that it accepts a variety of types for its operations. e.g. a connection could take an OmniGraph Node, a USD Prim, or a string indicating the path to the node. Attributes: graph: The OmniGraph on which operations will be performed. Raises: OmniGraphError: If there is not enough information to perform the requested operation """ # Type of connection point PRIM_TYPE = 0 BUNDLE_TYPE = 1 REGULAR_TYPE = 2 UNKNOWN = -1 # ---------------------------------------------------------------------- def __init__(self, omnigraph: Optional[og.Graph] = None): """Initialize the graph""" if omnigraph is None: self.graph = og.get_current_graph() else: self.graph = omnigraph # ---------------------------------------------------------------------- def context(self): """Returns the evaluation context for the graph to which this helper is attached""" return self.graph.get_default_graph_context() # ---------------------------------------------------------------------- async def evaluate(self): """Wait for the next Graph evaluation cycle - await this function to ensure it is finished before returning. If the graph evaluation time is not incremented after 10 application updates, RuntimeError is raised. """ start_t = self.context().get_time_since_start() # Ensure that a graph evaluation has happened before returning for _ in range(10): await omni.kit.app.get_app().next_update_async() now_t = self.context().get_time_since_start() if now_t > start_t: return raise RuntimeError(f"Graph evaluation time {now_t} was not incremented from start time {start_t}") # ---------------------------------------------------------------------- @staticmethod def safe_node_name(node_type_name: str, abbreviated: bool = False) -> str: """Returns a USD-safe node name derived from the node_type_name (stripping namespace) Args: node_type_name: Fully namespaced name of the node type abbreviated: If True then remove the namespace, else just make the separators into underscores Returns: A safe node name that roughly corresponds to the given node type name """ if abbreviated: last_namespace = node_type_name.rfind(".") if last_namespace < 0: return node_type_name return node_type_name[last_namespace + 1 :] return node_type_name.replace(".", "_") # ---------------------------------------------------------------------- def omnigraph_node(self, node_info: NODE_TYPE_OR_LIST) -> Union[og.Node, List[og.Node]]: """Returns the OmniGraph node(s) corresponding to the variable type parameter Args: node_info: Information for the node to find. If a list then iterate over the list Returns: Node(s) corresponding to the description(s) in the current graph, None where there is no match Raises: OmniGraphError if the node description wasn't one of the recognized types """ return ObjectLookup.node(node_info) # ---------------------------------------------------------------------- def omnigraph_attribute( self, node: NODE_TYPE_HINTS, attribute_info: ATTRIBUTE_TYPE_OR_LIST ) -> Union[og.Attribute, List[og.Attribute]]: """Returns the OmniGraph attribute(s) corresponding to the variable type parameter Args: node: Node to which the attribute belongs. Ignored if attribute_info is an og.Attribute attribute_info: Information on which attribute to look for. If a list then get all of them Returns: Attribute(s) matching the description(s) - None where there is no match Raises: OmniGraphError if the attribute description wasn't one of the recognized types, or if any of the attributes could not be found """ return ObjectLookup.attribute(attribute_info, node) # ---------------------------------------------------------------------- def node_as_prim(self, node: NODE_TYPE_HINTS) -> Usd.Prim: """Returns the prim corresponding to the variable type parameter""" if isinstance(node, Sdf.Path): return omni.usd.get_context().get_stage().GetPrimAtPath(node.GetPrimPath()) if isinstance(node, og.Node): return omni.usd.get_context().get_stage().GetPrimAtPath(node.get_prim_path()) if isinstance(node, Usd.Prim): return node with suppress(Exception): if isinstance(node, str): return omni.usd.get_context().get_stage().GetPrimAtPath(self.graph.get_node(node).get_prim_path()) raise OmniGraphError(f"Failed to get prim on {node}") # ---------------------------------------------------------------------- def get_prim_path(self, node: NODE_TYPE_HINTS): """Returns the prim path corresponding to the variable type parameter""" if isinstance(node, Sdf.Path): return node.GetPrimPath() if isinstance(node, og.Node): return node.get_prim_path() if isinstance(node, Usd.Prim): return node.GetPath() with suppress(Exception): if isinstance(node, str): return self.graph.get_node(node).get_prim_path() raise OmniGraphError(f"Failed to get prim path on {node}") # ---------------------------------------------------------------------- # begin-create-attribute-function def create_attribute( self, node: NODE_TYPE_HINTS, attr_name: str, attr_type: ATTRIBUTE_TYPE_TYPE_HINTS, attr_port: Optional[og.AttributePortType] = og.AttributePortType.ATTRIBUTE_PORT_TYPE_INPUT, attr_default: Optional[Any] = None, attr_extended_type: Optional[ EXTENDED_ATTRIBUTE_TYPE_HINTS ] = og.ExtendedAttributeType.EXTENDED_ATTR_TYPE_REGULAR, ) -> Optional[og.Attribute]: """Create a new dynamic attribute on the node Args: node: Node on which to create the attribute (path or og.Node) attr_name: Name of the new attribute, either with or without the port namespace attr_type: Type of the new attribute, as an OGN type string or og.Type attr_port: Port type of the new attribute, default is og.AttributePortType.ATTRIBUTE_PORT_TYPE_INPUT attr_default: The initial value to set on the attribute, default is None attr_extended_type: The extended type of the attribute, default is og.ExtendedAttributeType.EXTENDED_ATTR_TYPE_REGULAR. If the extended type is og.ExtendedAttributeType.EXTENDED_ATTR_TYPE_UNION then this parameter will be a 2-tuple with the second element being a list or comma-separated string of union types Returns: The newly created attribute, None if there was a problem creating it """ # end-create-attribute-function ogt.dbg(f"Create attribute '{attr_name}' on node {node} of type {attr_type}") omg_node = self.omnigraph_node(node) omg_attr_type = ObjectLookup.attribute_type(attr_type) (success, result) = og.cmds.CreateAttr( node=omg_node, attr_name=attr_name, attr_type=omg_attr_type, attr_port=attr_port, attr_default=attr_default, attr_extended_type=attr_extended_type, ) if not result or not success: return None namespace = og.get_port_type_namespace(attr_port) if not attr_name.startswith(namespace): if ( omg_attr_type.get_type_name() == "bundle" and attr_port != og.AttributePortType.ATTRIBUTE_PORT_TYPE_INPUT ): separator = "_" else: separator = ":" attr_name = f"{namespace}{separator}{attr_name}" return omg_node.get_attribute(attr_name) # ---------------------------------------------------------------------- # begin-remove-attribute-function def remove_attribute(self, attribute: ATTRIBUTE_TYPE_HINTS, node: Optional[NODE_TYPE_HINTS] = None) -> bool: """Removes an existing dynamic attribute from a node. Args: attribute: Name of the attribute to be removed node: If not None and the attribute is specified as a string then this is the node on which it lives Returns: True if the attribute was successfully removed, else False """ # end-remove-attribute-function ogt.dbg(f"Remove attribute {attribute} using node {node}") omg_attribute = self.omnigraph_attribute(node, attribute) (success, result) = og.cmds.RemoveAttr(attribute=omg_attribute) return success and result # ---------------------------------------------------------------------- def create_node( self, node_path: str, node_type: str, allow_exists: bool = False, version: Optional[int] = None ) -> og.Node: """Create an OmniGraph node of the given type and version at the given path. Args: node_path: SdfPath to the node in the stage node_type: Type of node to create check_exists: If true then succeed if a node with matching path, type, and version already exists version: Version of the node type to create. By default it creates the most recent. Raises: OmniGraphError: If the node already existed Returns: OmniGraph node added to the scene, or None if it could not be created """ ogt.dbg(f"Create '{node_path}' of type '{node_type}', allow={allow_exists}, version={version}") if version is not None: raise OmniGraphError("Creating nodes with specific versions not supported") node = self.graph.get_node(node_path) if node is not None and node.is_valid(): if allow_exists: current_node_type = node.get_type_name() if node_type == current_node_type: return node error = f"already exists as type {current_node_type}" else: error = "already exists" raise OmniGraphError(f"Creation of {node_path} as type {node_type} failed - {error}") og.cmds.CreateNode(graph=self.graph, node_path=node_path, node_type=node_type, create_usd=True) return self.graph.get_node(node_path) # ---------------------------------------------------------------------- def create_prim(self, prim_path: str, attribute_info: Dict[str, Tuple[Union[str, og.Type], Any]]): """Create a prim node containing a predefined set of attribute values and a ReadPrim OmniGraph node for it Args: prim_path: Location of the prim attribute_info: Dictionary of {NAME: (TYPE, VALUE)} for all prim attributes The TYPE is in OGN format, so "float[3][]", "bundle", etc. The VALUE should be in a format suitable for passing to pxr::UsdAttribute.Set() Returns: og.Node of the created node """ stage = omni.usd.get_context().get_stage() omni.kit.commands.execute("CreatePrim", prim_path=prim_path, prim_type="BundleSource") prim = stage.GetPrimAtPath(prim_path) # Walk the list of attribute descriptions, creating them on the prim as they go for attribute_name, (attribute_type_name, attribute_value) in attribute_info.items(): if isinstance(attribute_type_name, og.Type): attribute_type = attribute_type_name attribute_type_name = attribute_type.get_ogn_type_name() else: attribute_type = og.AttributeType.type_from_ogn_type_name(attribute_type_name) manager = ogt.get_attribute_manager_type(attribute_type_name) sdf_type_name = manager.sdf_type_name() if sdf_type_name is not None: sdf_type = getattr(Sdf.ValueTypeNames, sdf_type_name) usd_value = og.attribute_value_as_usd(attribute_type, attribute_value) prim.CreateAttribute(attribute_name, sdf_type).Set(usd_value) # Add the new Prim to OmniGraph return og.cmds.CreateNode( graph=self.graph, node_path=prim_path, node_type="omni.graph.core.Prim", create_usd=False )[1] # ---------------------------------------------------------------------- def delete_node(self, node: NODE_TYPE_HINTS, allow_noexists: bool = False) -> bool: """Deletes an OmniGraph node at the given path. Args: node: node to be deleted allow_noexists: If true then succeed if no node with matching path exists Raises: OmniGraphError: If the node does not exist Returns: True if the node is gone """ ogt.dbg(f"Delete '{node}', allow_noexists={allow_noexists}") try: omnigraph_node = self.omnigraph_node(node) except Exception: if allow_noexists: return True raise return og.cmds.DeleteNode(graph=self.graph, node_path=omnigraph_node.get_prim_path(), modify_usd=True)[0] # ---------------------------------------------------------------------- def attach_to_prim(self, prim: Union[Usd.Prim, str]) -> og.Node: """Create a new compute node attached to an ordinary USD prim. Args: prim: Prim node or name of prim node to which the OmniGraph node should attach Returns: OmniGraph Prim type node associated with the passed in Prim """ ogt.dbg(f"Attach to prim {prim}") if isinstance(prim, str): prim_path = prim else: prim_path = str(prim.GetPath()) return self.create_node(prim_path, "omni.graph.core.Prim", allow_exists=True) # ---------------------------------------------------------------------- @staticmethod def get_attr_type_name(attr): """ Get the type name for the given attribute, taking in to account extended type Args: attr: Attribute whose type is to be determined Returns: The type name of the attribute """ type_name = None with suppress(AttributeError): if attr.get_extended_type() in [ og.ExtendedAttributeType.EXTENDED_ATTR_TYPE_ANY, og.ExtendedAttributeType.EXTENDED_ATTR_TYPE_UNION, ]: type_name = attr.get_resolved_type().get_type_name() if type_name is None: try: type_name = attr.get_type_name() except AttributeError: type_name = attr.get_type().get_type_name() return type_name # ---------------------------------------------------------------------- @staticmethod def get_attr_type(attr: Union[og.Attribute, og.AttributeData]): """ Get the type for the given attribute, taking in to account extended type Args: attr: Attribute whose type is to be determined Returns: The type of the attribute """ return attr.get_resolved_type() if isinstance(attr, og.Attribute) else attr.get_type() # ---------------------------------------------------------------------- def _decode_connection_point( self, node_info: NODE_TYPE_HINTS, attr_info: ATTRIBUTE_TYPE_HINTS ) -> Tuple[int, Optional[Usd.Prim], og.Node, Optional[og.Attribute]]: """Decode a connection point into identifying pieces Args: node_info: Identifying information for an OmniGraph node attr_info: Identifying information for an OmniGraph node's attribute Returns: (location_type, prim, node, attribute) location_type: what type of connection point this is - bundle, regular, or prim prim: Prim of the connection point, or None if it is not a prim type node: og.Node of the connection point, or None if it is a prim attribute: og.Attribute of the connection point, or None if it is a prim Raises: OmniGraphError if the configuration of the connection point is not consistent """ attr_type = self.UNKNOWN prim = None node = node_info attr = None if attr_info is None: prim = self.node_as_prim(node_info) if not prim.IsValid(): raise OmniGraphError("When attribute is None, node must be a valid Prim") attr_type = self.PRIM_TYPE else: node = self.omnigraph_node(node_info) if not node.is_valid(): raise OmniGraphError("When attribute is specified, node must be a valid OmniGraph node") attr = self.omnigraph_attribute(node, attr_info) if not attr.is_valid(): raise OmniGraphError("Attribute is not valid") if attr.get_type_name() == "bundle": attr_type = self.BUNDLE_TYPE else: attr_type = self.REGULAR_TYPE assert attr_type != self.UNKNOWN return (attr_type, prim, node, attr) # ---------------------------------------------------------------------- def _decode_connection_type( self, src_node_info: NODE_TYPE_HINTS, src_attr_info: ATTRIBUTE_TYPE_HINTS, dst_node_info: NODE_TYPE_HINTS, dst_attr_info: ATTRIBUTE_TYPE_HINTS, ) -> Tuple[Union[Usd.Prim, og.Attribute], og.Attribute]: """ Decode the node and source information into an Attribute->Attribute connection or a Prim->Bundle connection. Everything is set up to be fairly generic so that if we have more general connections in the future it can still be handled using the same framework. The source and destination comes from _decode_connection_point() with these legal cases: Prim -> bundleAttribute src_attr_info is None, src_node_info is Prim, dst_attr_info.type == bundle bundleAttribute -> bundleAttribute src_attr_info.type == dst_attr_info.type == bundle attribute -> attribute src_attr_info.type != bundle, dst_attr_info.type != bundle Args: src_node_info: Node on the source (input) end of the connection. src_attr_info: Attribute on the source (input) end of the connection - None means connect from a Prim. dst_node_info: Node on the destination (output) end of the connection. dst_attr_info: Attribute on the destination (output) end of the connection. Returns: (src_location, dst_location): If a Prim->Bundle connection: src_location: Usd.Prim where the connection originates dst_location: og.Attribute where the connection terminates If an Attribute->Attribute connection src_location: og.Attribute where the connection originates dst_location: og.Attribute where the connection terminates Raises: OmniGraphError: If the connection request doesn't fall into one of the allowed cases """ src_location = None dst_location = None src_path = f"{self.get_prim_path(src_node_info)}.{src_attr_info}" dst_path = f"{self.get_prim_path(dst_node_info)}.{dst_attr_info}" try: (src_type, src_prim, src_node, src_attr) = self._decode_connection_point(src_node_info, src_attr_info) (dst_type, _, dst_node, dst_attr) = self._decode_connection_point(dst_node_info, dst_attr_info) if src_type == self.PRIM_TYPE: if dst_type == self.PRIM_TYPE: raise OmniGraphError("Prim -> Prim connection not valid, use AddRelationship/RemoveRelationship") if dst_type == self.REGULAR_TYPE: raise OmniGraphError("Prim -> Attribute connection not allowed") if not dst_node or not dst_node.is_valid() or not dst_attr: raise OmniGraphError("Destination is invalid") # Prim -> Bundle connection if dst_type == self.BUNDLE_TYPE: src_location = src_prim dst_location = dst_attr ogt.dbg(f"Prim -> Bundle {src_path} -> {dst_path}") elif src_type == self.BUNDLE_TYPE: if dst_type == self.REGULAR_TYPE: raise OmniGraphError("Bundle -> Attribute connection not allowed") if not src_node or not src_node.is_valid() or not src_attr: raise OmniGraphError("Source is invalid") if not dst_node or not dst_node.is_valid() or not dst_attr: raise OmniGraphError("Destination is invalid") # Bundle -> Bundle connection if dst_type == self.BUNDLE_TYPE: src_location = src_attr dst_location = dst_attr ogt.dbg(f"Bundle -> Bundle {src_path} -> {dst_path}") # Bundle -> Prim connection if dst_type == self.PRIM_TYPE: raise OmniGraphError("Bundle -> Prim connection not allowed") else: if dst_type == self.PRIM_TYPE: raise OmniGraphError("Attribute -> Prim connection not allowed") if dst_type == self.BUNDLE_TYPE: raise OmniGraphError("Attribute -> Bundle connection not allowed") if not src_node or not src_node.is_valid() or not src_attr: raise OmniGraphError("Source is invalid") if not dst_node or not dst_node.is_valid() or not dst_attr: raise OmniGraphError("Destination is invalid") # Attribute -> Attribute connection src_location = src_attr dst_location = dst_attr ogt.dbg(f"Attribute -> Attribute {src_path} -> {dst_path}") except OmniGraphError as error: raise OmniGraphError(f"{src_path} -> {dst_path}") from error return (src_location, dst_location) # ---------------------------------------------------------------------- def connect( self, src_node: NODE_TYPE_HINTS, src_attr: ATTRIBUTE_TYPE_HINTS, dst_node: NODE_TYPE_HINTS, dst_attr: ATTRIBUTE_TYPE_HINTS, ): """Create a connection between two attributes Args: src_node: Node on the source (input) end of the connection. Ignored if src_attr is an og.Attribute src_attr: Attribute on the source (input) end of the connection. (If None then it's a prim connection) dst_node: Node on the destination (output) end of the connection. Ignored if dst_attr is an og.Attribute dst_attr: Attribute on the destination (output) end of the connection. Raises: OmniGraphError: If nodes or attributes could not be found, or connection fails """ ogt.dbg(f"Connect {src_node},{src_attr} -> {dst_node},{dst_attr}") (src_location, dst_location) = self._decode_connection_type(src_node, src_attr, dst_node, dst_attr) if src_location is None or dst_location is None: success = False error = "Connection locations not recognized" elif isinstance(src_location, Usd.Prim): ogt.dbg(" Connect Prim -> Bundle") (success, error) = og.cmds.ConnectPrim( attr=dst_location, prim_path=src_location.GetPath().pathString, is_bundle_connection=src_attr is not None, ) else: ogt.dbg(f" Connect Attr {src_location.get_name()} to {dst_location.get_name()}") (success, error) = og.cmds.ConnectAttrs(src_attr=src_location, dest_attr=dst_location, modify_usd=True) if not success: raise OmniGraphError( f"Failed to connect {self.get_prim_path(src_node)}.{src_attr}" f" -> {self.get_prim_path(dst_node)}.{dst_attr} ({error})" ) # ---------------------------------------------------------------------- def disconnect( self, src_node: NODE_TYPE_HINTS, src_attr: ATTRIBUTE_TYPE_HINTS, dst_node: NODE_TYPE_HINTS, dst_attr: ATTRIBUTE_TYPE_HINTS, ): """Break a connection between two attributes Args: src_node: Node on the source (input) end of the connection. Ignored if src_attr is an og.Attribute src_attr: Attribute on the source (input) end of the connection. If None then it is a prim connection. dst_node: Node on the destination (output) end of the connection. Ignored if dst_attr is an og.Attribute dst_attr: Attribute on the destination (output) end of the connection. Raises: OmniGraphError: If nodes or attributes could not be found, connection didn't exist, or disconnection fails """ ogt.dbg(f"Disconnect {src_node},{src_attr} -> {dst_node},{dst_attr}") (src_location, dst_location) = self._decode_connection_type(src_node, src_attr, dst_node, dst_attr) if src_location is None or dst_location is None: success = False error = "Connection locations not recognized" elif isinstance(src_location, Usd.Prim): (success, error) = og.cmds.DisconnectPrim( attr=dst_location, prim_path=src_location.GetPath().pathString, is_bundle_connection=src_attr is not None, ) else: ogt.dbg(f" Disconnect Attr {src_location.get_name()} from {dst_location.get_name()}") (success, error) = og.cmds.DisconnectAttrs(src_attr=src_location, dest_attr=dst_location, modify_usd=True) if not success: raise OmniGraphError( f"Failed to disconnect {self.get_prim_path(src_node)}.{src_attr}" f" -> {self.get_prim_path(dst_node)}.{dst_attr} ({error})" ) # ---------------------------------------------------------------------- def disconnect_all( self, attr: ATTRIBUTE_TYPE_HINTS, node: Optional[NODE_TYPE_HINTS] = None, ): """Break all connections to and from an attribute Args: attr: Attribute on the source (input) end of the connection. If None then it is a prim connection. node: Node on the source (input) end of the connection. Ignored if attr is an og.Attribute Raises: OmniGraphError: If nodes or attributes could not be found, connection didn't exist, or disconnection fails """ ogt.dbg(f"Disconnect all on {node},{attr}") attribute = self.omnigraph_attribute(node, attr) if attribute is None: success = False error = "Disconnection attribute not recognized" else: ogt.dbg(f" Disconnect All from {attribute.get_name()}") (success, error) = og.cmds.DisconnectAllAttrs(attr=attribute, modify_usd=True) if not success: raise OmniGraphError(f"Failed to break connections on {self.get_prim_path(node)}.{attr} ({error})") # ---------------------------------------------------------------------- def set_attribute_data_values( self, values_to_set: List[Tuple[og.AttributeData, Any]], graph: Optional[og.Graph] = None ): """Set a bunch of attribute data values Args: values_to_set: List of (AttributeData, Value) pairs which are the values to be set Raises: OmniGraphError: If values could not be set """ if not values_to_set: return for (attribute_data, value) in values_to_set: try: (success, error) = og.cmds.SetAttrData(attribute_data=attribute_data, value=value, graph=graph) if not success: raise TypeError(error) except TypeError as error: raise OmniGraphError(f"Could not set value on attribute data '{attribute_data.get_name()}'") from error # ---------------------------------------------------------------------- def set_attribute_values(self, values_to_set: List[Tuple[og.Attribute, Any]], ignore_usd: bool = False): """Set a bunch of attribute values Dict values can be used to specify a type in additional to a value. If the attribute is unresolved, it will be resolved to that type before setting the value. For example: set_attribute_values([(attrib, {"type": "float2", "value": (1.0, 2.0)})]) Args: values_to_set: List of (Attribute, Value) pairs which are the values to be set. ignore_usd: If False then report any problems updating the USD attributes Raises: OmniGraphError: If values could not be set """ if not values_to_set: return for (attribute, value) in values_to_set: set_type = None if isinstance(value, dict): # special case - we may need to resolve the attribute to this particular type before setting set_type = value["type"] value = value["value"] try: (success, error) = og.cmds.SetAttr(attr=attribute, value=value, set_type=set_type) if not success: raise TypeError(error) except TypeError as error: raise OmniGraphError(f"Could not set value on attribute '{attribute.get_name()}'") from error # ---------------------------------------------------------------------------------------------------- # TODO: This is necessary to update USD at the moment. Updating flatcache and USD should be handled # directly in SetAttrCommand. Once that has been done this can be deleted. # { stage = omni.usd.get_context().get_stage() prim = stage.GetPrimAtPath(attribute.get_node().get_prim_path()) if prim.IsValid() and attribute.get_extended_type() == og.ExtendedAttributeType.EXTENDED_ATTR_TYPE_REGULAR: try: # The Set method wants USD types for some attribute types so do the translation first value = og.attribute_value_as_usd(OmniGraphHelper.get_attr_type(attribute), value) prim.GetAttribute(attribute.get_name()).Set(value) except Tf.ErrorException as error: if not ignore_usd: log_warn(f"Could not sync USD on attribute {attribute.get_name()} - {error}") except TypeError as error: # TODO: This occurs when the parameters to Set() don't match what USD expects. It could be fixed # by special-casing every known mismatch but this section should be going away so it won't # be done at this time. The current known failures are the quaternion types and arrays of the # tuple-arrays (e.g. "quatd[4]", "double[3][]", "float[2][]", ...) if not ignore_usd: log_info(f"Could not set value on attribute {attribute.get_name()} - {error}") except Exception as error: # noqa: PLW0703 log_warn(f"Unknown problem setting values - {error}") # } # ---------------------------------------------------------------------------------------------------- # ---------------------------------------------------------------------- def set_values(self, node: NODE_TYPE_HINTS, values_to_set: ATTRIBUTE_VALUE_PAIRS, ignore_usd: bool = False): """Set a bunch of attribute values on a single node This is general purpose for handling all types of node and attribute descriptions. If you already have the og.Attributes whose values you wish to set then call set_attribute_values() instead. Args: node: Node on which the values are to be set values_to_set: List or single element of (Attribute, Value) pairs which are the values to be set ignore_usd: If False then report any problems updating the USD attributes Raises: OmniGraphError: If nodes or attributes could not be found, or values could not be set """ if not values_to_set: log_warn("Tried to set values from an empty list") return omnigraph_node = self.omnigraph_node(node) def set_a_value(attribute_and_value: ATTRIBUTE_VALUE_PAIR): """Try to set a single value, raising an OmniGraphError exception if anything went wrong""" if len(attribute_and_value) != 2: raise OmniGraphError(f"Values to set should be (attribute, value) pairs, not '{attribute_and_value}'") attribute = self.omnigraph_attribute(omnigraph_node, attribute_and_value[0]) self.set_attribute_values([(attribute, attribute_and_value[1])], ignore_usd=ignore_usd) if isinstance(values_to_set, list): if values_to_set and not isinstance(values_to_set[0], tuple) and not isinstance(values_to_set[0], list): log_warn(f"Call set_values() with a tuple or array of tuples as attribute values, not {values_to_set}") set_a_value(values_to_set) else: for attribute_and_value in values_to_set: set_a_value(attribute_and_value) else: set_a_value(values_to_set) # ---------------------------------------------------------------------- def get_attribute_values(self, attributes_to_get: List[og.Attribute]) -> List[Any]: """Get the values from a list of defined attributes Args: attributes_to_get: List of attributes whose values are to be retrieved Returns: List of values corresponding to the list of attributes passed in """ results = [] context_helper = ContextHelper() for attribute in attributes_to_get: try: results.append(context_helper.get_attr_value(attribute)) except TypeError as error: raise OmniGraphError(f"Could not get value on attribute '{attribute.get_name()}'") from error return results # ---------------------------------------------------------------------- def get_values(self, node: NODE_TYPE_HINTS, attributes_to_get: ATTRIBUTE_TYPE_OR_LIST) -> List[Any]: """Get the values from attributes on a node This is general purpose for handling all types of node and attribute descriptions. If you already have the og.Attributes whose values you wish to retrieve then call get_attribute_values() instead. Args: node: Description of node whose values are to be read attributes_to_get: One or a list of descriptions of attributes whose values are to be retrieved Raises: OmniGraphError: If nodes or attributes could not be found, or values could not be read Returns: One or a list of values corresponding to the attributes passed in """ omnigraph_node = self.omnigraph_node(node) if not isinstance(attributes_to_get, List): return self.get_attribute_values([self.omnigraph_attribute(omnigraph_node, attributes_to_get)])[0] return self.get_attribute_values( [self.omnigraph_attribute(omnigraph_node, attribute) for attribute in attributes_to_get] ) # ---------------------------------------------------------------------- def _edit_delete_nodes(self, root_prim: str, nodes_to_delete: DeleteNodeData_t): """Delete the set of nodes passed, using the format required by edit_graph""" delete_list = nodes_to_delete if isinstance(nodes_to_delete, list) else [nodes_to_delete] for node_name in delete_list: dbg_eval(f"Deleting node {node_name}") node_path = os.path.join(root_prim, node_name).replace("\\", "/") self.delete_node(node_path, False) dbg_eval(f"... deleted {node_path}") # ---------------------------------------------------------------------- def _edit_create_nodes(self, root_prim: str, nodes_to_create: CreateNodeData_t): """Create the set of nodes passed, using the format required by edit_graph Returns a tuple of the map from node path to the created node, and the list of constructed nodes""" node_path_map = {} nodes_constructed = [] create_list = nodes_to_create if isinstance(nodes_to_create, list) else [nodes_to_create] for node_type, node_name in create_list: dbg_eval(f"Creating node {node_name} of type {node_type}") node_path = os.path.join(root_prim, node_name).replace("\\", "/") node_path_map[node_name] = self.create_node(node_path, node_type, False) nodes_constructed.append(node_path_map[node_name]) dbg_eval(f"... created {node_path_map[node_name]}") return (node_path_map, nodes_constructed) # ---------------------------------------------------------------------- def _edit_create_prims( self, root_prim: str, node_path_map: Dict[str, og.Node], nodes_constructed: List[og.Node], prims_to_create: CreatePrimData_t, ): """Create the set of prims passed, using the format required by edit_graph""" create_list = prims_to_create if isinstance(prims_to_create, list) else [prims_to_create] for prim_path, attribute_info in create_list: dbg_eval(f"Creating prim at {prim_path}") node_path = os.path.join(root_prim, prim_path).replace("\\", "/") node_path_map[prim_path] = self.create_prim(node_path, attribute_info) nodes_constructed.append(node_path_map[prim_path]) dbg_eval(f"... created {node_path_map[prim_path]}") return (node_path_map, nodes_constructed) # ---------------------------------------------------------------------- def _edit_connect(self, node_path_map: Dict[str, og.Node], connections_to_make: ConnectData_t): """Make a set of attribute connections, using the format required by edit_graph""" connection_list = connections_to_make if isinstance(connections_to_make, list) else [connections_to_make] try: for (src_node_name, src_attr_name, dst_node_name, dst_attr_name) in connection_list: dbg_eval(f"Connecting {src_node_name}.{src_attr_name} -> {dst_node_name}.{dst_attr_name}") try: src_node = node_path_map[src_node_name] except KeyError: src_node = src_node_name try: dst_node = node_path_map[dst_node_name] except KeyError: dst_node = dst_node_name dbg_eval(f"...nodes resolved to {src_node} and {dst_node}") self.connect(src_node, src_attr_name, dst_node, dst_attr_name) dbg_eval("...connection succeeded") except ValueError as error: raise OmniGraphError( f"Connect requires src_node, src_attr, dst_node, dst_attr - got {connection_list}" ) from error # ---------------------------------------------------------------------- def _edit_disconnect(self, node_path_map: Dict[str, og.Node], connections_to_break: DisconnectData_t): """Make a set of attribute disconnections, using the format required by edit_graph""" connection_list = connections_to_break if isinstance(connections_to_break, list) else [connections_to_break] try: for (src_node_name, src_attr_name, dst_node_name, dst_attr_name) in connection_list: dbg_eval(f"Disconnecting {src_node_name}.{src_attr_name} -> {dst_node_name}.{dst_attr_name}") try: src_node = node_path_map[src_node_name] except KeyError: src_node = src_node_name try: dst_node = node_path_map[dst_node_name] except KeyError: dst_node = dst_node_name dbg_eval(f"...nodes resolved to {src_node} and {dst_node}") self.disconnect(src_node, src_attr_name, dst_node, dst_attr_name) dbg_eval("...disconnection succeeded") except ValueError as error: raise OmniGraphError( f"Connect requires src_node, src_attr, dst_node, dst_attr - got {connection_list}" ) from error # ---------------------------------------------------------------------- def _edit_set_values(self, node_path_map: Dict[str, og.Node], values_to_set: SetValueData_t): """Set a bunch of attribute values, using the format required by edit_graph""" value_descriptions = values_to_set if isinstance(values_to_set, list) else [values_to_set] # value_list data can either include a node or not. If the node is not included then # the list members must be og.Attributes, not just names. try: for value_list in value_descriptions: if not isinstance(value_list, tuple) and not isinstance(value_list, list): raise ValueError if len(value_list) == 3: node_name, attr_name, value = value_list _ = DBG_EVAL and dbg_eval(f"Setting value '{value} on {node_name}.{attr_name}") try: node = node_path_map[node_name] except KeyError: node = node_name self.set_values(node, [(attr_name, value)]) else: attr_name, value = value_list if not isinstance(attr_name, og.Attribute): raise OmniGraphError(f"Must set values with og.Attribute, got '{attr_name}'") _ = DBG_EVAL and dbg_eval(f"Setting value '{value} on {attr_name}") self.set_attribute_values([(attr_name, value)]) _ = DBG_EVAL and dbg_eval("...setting value succeeded") except ValueError as ex: raise OmniGraphError(f"Setting value requires ({{node_name, }}attr_name, value) - got {value_list}") from ex # ---------------------------------------------------------------------- def edit(self, graph_description: Dict[str, Any]) -> List[og.Node]: """Modify an OmniGraph relative to the top level of the scene ("/") Convenience function for accessing edit_graph without a root prim when it's not relevant """ return self.edit_graph("/", graph_description) # ---------------------------------------------------------------------- def edit_graph(self, root_prim: str, graph_description: Dict[str, Any]) -> List[og.Node]: """Create an OmniGraph node graph from a dictionary description of the contents. Here's a simple call that first deletes an existing node "oldnode", then creates two nodes of type "omni.graph.tutorials.SimpleData", connects their "a_int" attributes, disconnects their "a_float" attributes and sets the input "a_int" of the source node to the value 5. It also creates two unused USD Prim nodes, one with a float attribute named "attrFloat" with value 2.0, and the other with a boolean attribute named "attrBool" with the value true. .. code-block:: python helper = OmniGraphHelper() (src_node, dst_node) = helper.edit_graph("/", { "deletions" [ "oldnode" ], "nodes": [ ("omni.graph.tutorials.SimpleData", "src"), ("omni.graph.tutorials.SimpleData", "dst") ], "prims": [ ("Prim1", {"attrFloat": ("float", 2.0)), ("Prim2", {"attrBool": ("bool", true)), ], "connections": [ ("src", "outputs:a_int", "dst", "inputs:a_int") ], "disconnections": [ ("src", "outputs:a_float", "dst", "inputs:a_float") ], "values": [ ("src", "inputs:a_int", 5) ] } ) Args: root_prim: Top level prim for the graph nodes (e.g. "/") graph_description: Dictionary of graph construction definitions. A strict set of keys is accepted. Each of the values in the dictionary can be either a single value or a list of values of the proscribed type. - "deletions": [NODE_NAME] Deletes a node at the given path - "nodes": [(NODE_TYPE, NODE_NAME)] Constructs a node of type "NODE_TYPE" and name "NODE_NAME". - "prims": [(PRIM_PATH, {ATTR_NAME: (ATTR_TYPE, ATTR_VALUE)})] Constructs a prim with path "PRIM_PATH containing a set of attributes with specified types and values. - "connections": [(SRC_NODE_NAME, SRC_ATTR_NAME, DST_NODE_NAME, DST_ATTR_NAME)] Makes a connection between the given source and destination attributes - "disconnections": [(SRC_NODE_NAME, SRC_ATTR_NAME, DST_NODE_NAME, DST_ATTR_NAME)] Breaks a connection between the given source and destination attributes - "values": [(NODE_NAME, ATTR_NAME, VALUE)] Sets the value of the given list of attributes. Note that when constructing nodes the "NODE_NAME" may be in use, so a map is constructed when the nodes are created between the requested node name and the actual node created, which will contain the prim path reference. Operations happen in that order (all deletions, all nodes, all connections, all values) to minimize the possibility of errors. As a shortform any of the keys can accept a single tuple as well as a list of tuples. Returns: The list of og.Nodes created for all constructed nodes Raises: OmniGraphError if any of the graph creation instructions could not be fulfilled The graph will be left in the partially constructed state it reached at the time of the error """ # The graph could be in an illegal state when halfway through editing operations. This will disable it # until all operations are completed. It's up to the caller to ensure that the state is legal after all # operations are completed. graph_was_disabled = self.graph.is_disabled() self.graph.set_disabled(True) try: # Syntax check first for instruction, data in graph_description.items(): if instruction not in ["nodes", "connections", "disconnections", "values", "deletions", "prims"]: raise OmniGraphError(f"Unknown graph construction operation - {instruction}: {data}") # Delete first because we may be creating nodes with the same names with suppress(KeyError): self._edit_delete_nodes(root_prim, graph_description["deletions"]) # Create nodes next since connect and set may need them node_path_map = {} nodes_constructed = [] with suppress(KeyError): (node_path_map, nodes_constructed) = self._edit_create_nodes(root_prim, graph_description["nodes"]) # Prims next as they may be used in connections with suppress(KeyError): self._edit_create_prims(root_prim, node_path_map, nodes_constructed, graph_description["prims"]) # Connections next as setting values may override their data with suppress(KeyError): self._edit_connect(node_path_map, graph_description["connections"]) # Disconnections may have been created by the connections list so they're next, though that's unlikely with suppress(KeyError): self._edit_disconnect(node_path_map, graph_description["disconnections"]) # Now set the values with suppress(KeyError): self._edit_set_values(node_path_map, graph_description["values"]) finally: # Really important that this always gets reset self.graph.set_disabled(graph_was_disabled) return nodes_constructed
omniverse-code/kit/exts/omni.graph/omni/graph/core/_impl/v1_5_0/__init__.py
omniverse-code/kit/exts/omni.graph/omni/graph/core/_impl/v1_5_0/context_helper.py
r"""Deprecated accessor of attribute values within a graph context. Use og.DataView or og.Controller instead. _____ ______ _____ _____ ______ _____ _______ ______ _____ | __ \ | ____|| __ \ | __ \ | ____|/ ____| /\ |__ __|| ____|| __ \ | | | || |__ | |__) || |__) || |__ | | / \ | | | |__ | | | | | | | || __| | ___/ | _ / | __| | | / /\ \ | | | __| | | | | | |__| || |____ | | | | \ \ | |____| |____ / ____ \ | | | |____ | |__| | |_____/ |______||_| |_| \_\|______|\_____|/_/ \_\|_| |______||_____/ """ from contextlib import suppress from typing import Any, Optional, Union import omni.graph.core as og import omni.graph.tools as ogt from ..attribute_values import AttributeDataValueHelper, AttributeValueHelper, WrappedArrayType from ..lookup_tables import ( IDX_ARRAY_GET, IDX_ARRAY_GET_TENSOR, IDX_ARRAY_SET, IDX_GET, IDX_GET_TENSOR, IDX_SET, UNSUPPORTED_METHODS, type_access_methods, ) from ..utils import DBG_EVAL, dbg_eval, list_dimensions # ============================================================================================================== # Try to import torch for tensor APIs. If not available the non-tensor APIs will still work. try: import torch_wrap except ImportError: torch_wrap = None # ================================================================================ @ogt.DeprecatedClass("og.ContextHelper is deprecated after version 1.5.0. Use og.Controller instead.") class ContextHelper: """Helper class for managing compute graph contexts Attributes: _py_context: Context on which to apply the operations """ def __init__(self, py_context=None): """Remember the context for future operations. Args: py_context: Context for the operations - if None then get the current one """ if py_context is None: for context in og.get_compute_graph_contexts(): self._py_context = context else: self._py_context = py_context # ---------------------------------------------------------------------- @property def context(self): """Returns the context being used for evaluation""" return self._py_context # ---------------------------------------------------------------------- def get_attribute_configuration(self, attr: Union[og.Attribute, og.AttributeData]): """Get the array configuration information from the attribute. Attributes can be simple, tuples, or arrays of either. The information on what this is will be encoded in the attribute type name. This method decodes that type name to find out what type of attribute data the attribute will use. The method also gives the right answers for both Attribute and AttributeData with some suitable AttributeError catches to special case on unimplemented methods. Args: attr: Attribute whose configuration is being determined Returns: Tuple of: str: Name of the full/resolved data type used by the attribute (e.g. "float[3][]") str: Name of the simple data type used by the attribute (e.g. "float") bool: True if the data type is a tuple or array (e.g. "float3" or "float[]") bool: True if the data type is a matrix and should be flattened (e.g. "matrixd[3]" or "framed[4][]") List: List of lookup methods for this type Raises: TypeError: If the attribute type is not yet supported """ # The actual data in extended types is the resolved type name; the attribute type is always token ogn_type = attr.get_resolved_type() if isinstance(attr, og.Attribute) else attr.get_type() type_name = ogn_type.get_ogn_type_name() # The root name is important for lookup root_type_name = ogn_type.get_base_type_name() if ogn_type.base_type == og.BaseDataType.UNKNOWN and ( attr.get_extended_type() in (og.ExtendedAttributeType.EXTENDED_ATTR_TYPE_ANY, og.ExtendedAttributeType.EXTENDED_ATTR_TYPE_UNION) ): raise TypeError(f"Attribute '{attr.get_name()}' is not resolved, and so has no concrete type") is_array_type = ogn_type.array_depth > 0 and ogn_type.role not in [og.AttributeRole.TEXT, og.AttributeRole.PATH] is_matrix_type = ( type_name.startswith("matrix") or type_name.startswith("frame") or type_name.startswith("transform") ) lookup_methods = UNSUPPORTED_METHODS # Gather nodes automatically add one level of array to their attributes is_gather_node = False with suppress(AttributeError): is_gather_node = attr.get_node().get_type_name() == "Gather" if is_gather_node: if is_array_type: raise TypeError("Array types on Gather nodes are not yet supported in Python") is_array_type = True # Arrays of arrays are not yet supported in flatcache so they cannot be supported in Python if ogn_type.array_depth > 1: raise TypeError("Nested array types are not yet supported in Python") try: lookup_methods = type_access_methods(ogn_type)[0] except (KeyError, TypeError) as error: raise TypeError(f"Root type {ogn_type.get_ogn_type_name()} is not yet supported in Python") from error return (type_name, root_type_name, is_array_type, is_matrix_type, lookup_methods) # ---------------------------------------------------------------------- def get( self, attr_object: Union[og.Attribute, og.AttributeData], on_gpu: bool = False, update_immediately: bool = False ): """ Get the value of an attribute or attribute data. Can be used for either type. This method is intended for simple value retrievals. For array values use get_array(). Args: attr_object: attribute data whose value is to be retrieved on_gpu: Is the value stored on the GPU? update_immediately: Should the stage update before getting the value or wait for the next regular update? Returns: Value of the attribute or attribute data Raises: TypeError: If an unsupported object type was passed in """ if isinstance(attr_object, og.AttributeData): helper = AttributeDataValueHelper(attr_object) return helper.get(on_gpu) if isinstance(attr_object, og.Attribute): helper = AttributeValueHelper(attr_object) return helper.get(on_gpu) raise TypeError(f"Object type {type(attr_object)} cannot be set with this method") # ---------------------------------------------------------------------- def get_array( self, attr_object: Union[og.Attribute, og.AttributeData], on_gpu: bool = False, update_immediately: bool = False, get_for_write: bool = False, reserved_element_count: int = 0, return_type: Optional[WrappedArrayType] = None, ) -> Any: """ Get the value of an attribute or attribute data. Can be used for either type. Args: attr_object: attribute whose value is to be retrieved on_gpu: Is the value stored on the GPU? update_immediately: Should the stage update before getting the value or wait for the next regular update? get_for_write: If True then get the data in writable form (which may do other things under the covers) reserved_element_count: For writable array types set the element count to this before retrieving the data. This guarantees a buffer of this many elements is available in the returned data. Returns: Array value of the attribute or attribute data Raises: TypeError: If an unsupported object type was passed in """ # Ask the attribute update its value. If we are using a push graph, this # won't do anything, but in a dirty and pull graph, this generates the "pull" that causes the graph # to evaluate the dirtied attribute. with suppress(AttributeError): attr_object.update_object_value(update_immediately) helper = AttributeValueHelper(attr_object) if get_for_write is not None: if reserved_element_count is None: raise ValueError("Tried to get an array for write without setting the element count") return helper.get_array(get_for_write, reserved_element_count, on_gpu, return_type) return helper.get(on_gpu) # ---------------------------------------------------------------------- def get_attr_value( self, attr: og.Attribute, isGPU: bool = False, # noqa: N803 isTensor: bool = False, # noqa: N803 getDefault: bool = False, # noqa: N803 updateImmediately=False, # noqa: N803 getForWrite=False, # noqa: N803 writeElemCount=0, # noqa: N803 ): """ Get the value of a node attribute in the context managed by this class. Args: attr: attribute whose value is to be retrieved isGPU: Is the attribute stored on the GPU? isTensor: Is the attribute value a tensor type? For some types of data this doesn't mean anything but is silently accepted anyway. isDefault: Whether or not we want to retrieve the default value updateImmediately: Should the stage update immediately or wait for the next regular update? getForWrite: Is the value going to be written to after calling? writeElemCount: If the value to get is a writable array then set it at this size Returns: Value of the attribute Raises: AttributeError: If you try to access array data with "isTensor=True" and torch was not imported TypeError: Raised if the data type of the attribute is not yet supported """ (type_name, root_type_name, is_array_type, _, lookup_methods) = self.get_attribute_configuration(attr) # Verify that getting arrays for write has a valid element count. 0 is okay, None indicates uninitialized if is_array_type and getForWrite and (writeElemCount is None): raise ValueError(f"Attribute {attr.get_name()} requires a size to be set before getting values") # Ask the attribute update its value. If we are using a push graph, this # won't do anything, but in a dirty and pull graph, this generates the "pull" that causes the graph # to evaluate the dirtied attribute. with suppress(AttributeError): attr.update_attribute_value(updateImmediately) can_be_tensor = (isTensor or isGPU) and is_array_type and torch_wrap is not None _ = DBG_EVAL and dbg_eval( f"Getting value of type {type_name} on {attr.get_name()}. GPU = {isGPU}, Tensor = {isTensor}" ) try: _ = DBG_EVAL and dbg_eval(" --> Has Get/Set methods") if is_array_type: if lookup_methods[IDX_ARRAY_GET] is not None: if can_be_tensor and (lookup_methods[IDX_ARRAY_GET_TENSOR] is not None): _ = DBG_EVAL and dbg_eval( f" --> Returning array tensor data with {lookup_methods[IDX_ARRAY_GET_TENSOR]}" ) tensor = lookup_methods[IDX_ARRAY_GET_TENSOR]( self._py_context, attr, isGPU, getForWrite, writeElemCount ) return torch_wrap.wrap_tensor(tensor) if tensor is not None else None _ = DBG_EVAL and dbg_eval(f" --> Returning array data with {lookup_methods[IDX_ARRAY_GET]}") return lookup_methods[IDX_ARRAY_GET]( self._py_context, attr, getDefault, getForWrite, writeElemCount ) raise TypeError(f"Getting array data of type {root_type_name} is not yet supported") if can_be_tensor and lookup_methods[IDX_GET_TENSOR] is not None: _ = DBG_EVAL and dbg_eval(f" --> Returning tensor data with {lookup_methods[IDX_GET_TENSOR]}") tensor = lookup_methods[IDX_GET_TENSOR](self._py_context, attr, isGPU, getForWrite, writeElemCount) return torch_wrap.wrap_tensor(tensor) if tensor is not None else None _ = DBG_EVAL and dbg_eval(f" --> Returning normal data with {lookup_methods[IDX_GET]}") return lookup_methods[IDX_GET](self._py_context, attr, getDefault, getForWrite, writeElemCount) except TypeError as error: raise TypeError(f"Trying to get unsupported attribute type {type_name}") from error except KeyError as error: raise TypeError(f"Trying to get unknown attribute type {type_name}") from error # ---------------------------------------------------------------------- def set_attr_value(self, new_value, attr: og.Attribute): """ Set the value of a attribute in the context managed by this class new_value: New value to be set on the attribute attr: Attribute whose value is to be set Raises: TypeError: Raised if the data type of the attribute is not yet supported or if the parameters were passed in the wrong order. """ if isinstance(new_value, og.Attribute): raise TypeError("set_attr_value is called with value first, attribute second") (type_name, root_type_name, is_array_type, is_matrix_type, lookup_methods) = self.get_attribute_configuration( attr ) # Flatten the matrix data out, if it wasn't already flattened # 2x2 matrix can come in as [[a, b], [c, d]] or [a, b, c, d] but will always go to the ABI as the latter if is_matrix_type: value_dimensions = list_dimensions(new_value) if is_array_type: if value_dimensions == 3: value_to_set = [[item for sublist in matrix for item in sublist] for matrix in new_value] else: value_to_set = new_value else: if value_dimensions == 2: value_to_set = [item for sublist in new_value for item in sublist] else: value_to_set = new_value else: value_to_set = new_value try: _ = DBG_EVAL and dbg_eval(f"Set attribute {attr.get_name()} of type {type_name} to {new_value}") _ = DBG_EVAL and dbg_eval(f" as {root_type_name}, array={is_array_type}, matrix={is_matrix_type}") if is_array_type: if lookup_methods[IDX_ARRAY_GET] and lookup_methods[IDX_ARRAY_SET]: _ = DBG_EVAL and dbg_eval(f" --> Setting array node data using {lookup_methods[IDX_ARRAY_SET]}") # When setting an entire array all at once you need to first ensure the memory is allocated # by calling the get method. lookup_methods[IDX_ARRAY_GET](self._py_context, attr, False, True, len(value_to_set)) lookup_methods[IDX_ARRAY_SET](self._py_context, value_to_set, attr) else: raise TypeError(f"Setting array data of type {type_name} is not yet supported") else: _ = DBG_EVAL and dbg_eval(f" --> Setting simple data with {lookup_methods[IDX_SET]}") lookup_methods[IDX_SET](self._py_context, value_to_set, attr) except KeyError as error: raise TypeError(f"Trying to set unsupported attribute type {type_name}") from error # ---------------------------------------------------------------------- def get_elem_count(self, attr): """ Get the number of elements on the attribute in the context managed by this class attr: Attribute whose element values are to be counted Returns: Number of elements currently on the attribute """ return self._py_context.get_elem_count(attr)
omniverse-code/kit/exts/omni.graph/omni/graph/core/_impl/v1_5_0/utils.py
r"""Deprecated utilities _____ ______ _____ _____ ______ _____ _______ ______ _____ | __ \ | ____|| __ \ | __ \ | ____|/ ____| /\ |__ __|| ____|| __ \ | | | || |__ | |__) || |__) || |__ | | / \ | | | |__ | | | | | | | || __| | ___/ | _ / | __| | | / /\ \ | | | __| | | | | | |__| || |____ | | | | \ \ | |____| |____ / ____ \ | | | |____ | |__| | |_____/ |______||_| |_| \_\|______|\_____|/_/ \_\|_| |______||_____/ """ from typing import Any, List, Tuple, Union import carb import omni.graph.core as og from pxr import Sdf, Usd ALLOW_IMPLICIT_GRAPH_SETTING = "/persistent/omnigraph/allowGlobalImplicitGraph" """Constant for the setting to selectively disable the global implicit graph""" USE_SCHEMA_PRIMS_SETTING = "/persistent/omnigraph/useSchemaPrims" """Constant for the setting to force OmniGraph prims to follow the schema""" ENABLE_LEGACY_PRIM_CONNECTIONS = "/persistent/omnigraph/enableLegacyPrimConnections" """Constant for the setting to enable connections between legacy Prims and OG Nodes""" DISABLE_PRIM_NODES_SETTING = "/persistent/omnigraph/disablePrimNodes" """Constant for the setting to enable legacy Prim nodes to exist in the scene""" # Object type hints are now available in typing.py NODE_TYPE_HINTS = Union[str, og.Node, Usd.Prim, None] # type: ignore NODE_TYPE_OR_LIST = Union[NODE_TYPE_HINTS, List[NODE_TYPE_HINTS]] ATTRIBUTE_TYPE_HINTS = Union[str, og.Attribute, Usd.Attribute] # type: ignore ATTRIBUTE_TYPE_OR_LIST = Union[ATTRIBUTE_TYPE_HINTS, List[ATTRIBUTE_TYPE_HINTS]] ATTRIBUTE_TYPE_TYPE_HINTS = Union[str, og.Type] ATTRIBUTE_VALUE_PAIR = Tuple[ATTRIBUTE_TYPE_HINTS, Any] ATTRIBUTE_VALUE_PAIRS = Union[ATTRIBUTE_VALUE_PAIR, List[ATTRIBUTE_VALUE_PAIR]] EXTENDED_ATTRIBUTE_TYPE_HINTS = Union[og.AttributePortType, Tuple[og.AttributePortType, Union[str, List[str]]]] GRAPH_TYPE_HINTS = Union[str, Sdf.Path, og.Graph, None] # type: ignore GRAPH_TYPE_OR_LIST = Union[GRAPH_TYPE_HINTS, List[GRAPH_TYPE_HINTS]] # ================================================================================ def get_omnigraph(): """Returns the current OmniGraph. Deprecated as there is no longer the notion of a 'current' graph """ carb.log_warn("get_omnigraph() is deprecated and will be removed - use og.ObjectLookup.graph() instead") for context in og.get_compute_graph_contexts(): return context.get_graph() raise ValueError("OmniGraph is not currently available") # ==================================================================================================== def l10n(msg): """Wrapper for l10n for when it gets implemented. Deprecated - implementation is not on the plan and usage is spotty. """ return msg
omniverse-code/kit/exts/omni.graph/omni/graph/core/_impl/v1_5_0/replaced_functions.py
r"""Deprecation support for functions that have been replaced by equivalents _____ ______ _____ _____ ______ _____ _______ ______ _____ | __ \ | ____|| __ \ | __ \ | ____|/ ____| /\ |__ __|| ____|| __ \ | | | || |__ | |__) || |__) || |__ | | / \ | | | |__ | | | | | | | || __| | ___/ | _ / | __| | | / /\ \ | | | __| | | | | | |__| || |____ | | | | \ \ | |____| |____ / ____ \ | | | |____ | |__| | |_____/ |______||_| |_| \_\|______|\_____|/_/ \_\|_| |______||_____/ """ import re import omni.graph.core as og import omni.graph.tools as ogt from ..lookup_tables import OGN_NAMES_TO_TYPES, USD_NAMES_TO_TYPES # Pattern match for OGN style type names # MATCH: BaseType, [TupleCount]|None, []|None - e.g. int[3][] = "int",[3],[] RE_OGN_ATTRIBUTE_TYPE_PATTERN = re.compile(r"(^[^\[]+)(\[[0-9]+\]){0,1}(\[\]){0,1}") # Pattern matches for USD style type names. The rules for USD names are a little more complex so they require # multiple patterns to fully grok. (e.g. an int[4] is "int4" but a colord[4] is "color4d") # MATCH: BaseType64, TupleCount|None, []|None - e.g. int64 = "int64",None,None RE_USD_ATTRIBUTE_64_TYPE_PATTERN = re.compile(r"^([a-zA-Z]+64)([0-9]+){0,1}(\[\]){0,1}") # MATCH: BaseType, TupleCount|None, h|d|f|None, []|None - e.g. quat3d[] = "quat",3,d,[] RE_USD_ATTRIBUTE_TYPE_PATTERN = re.compile(r"^([a-zA-Z]+)([0-9]+){0,1}([hdf]){0,1}(\[\]){0,1}") # Mapping of the .ogn base data types to the corresponding og.BaseDataType values BASE_DATA_TYPE_MAP = { "bool": og.BaseDataType.BOOL, "bundle": og.BaseDataType.RELATIONSHIP, "double": og.BaseDataType.DOUBLE, "execution": og.BaseDataType.UINT, "float": og.BaseDataType.FLOAT, "half": og.BaseDataType.HALF, "int": og.BaseDataType.INT, "int64": og.BaseDataType.INT64, "objectId": og.BaseDataType.UINT64, "path": og.BaseDataType.UCHAR, "string": og.BaseDataType.UCHAR, "token": og.BaseDataType.TOKEN, "uchar": og.BaseDataType.UCHAR, "uint": og.BaseDataType.UINT, "uint64": og.BaseDataType.UINT64, } # Mapping of the .ogn role names to the corresponding og.AttributeRole values ROLE_MAP = { "color": og.AttributeRole.COLOR, "execution": og.AttributeRole.EXECUTION, "frame": og.AttributeRole.FRAME, "matrix": og.AttributeRole.MATRIX, "none": og.AttributeRole.NONE, "normal": og.AttributeRole.NORMAL, "objectId": og.AttributeRole.OBJECT_ID, "path": og.AttributeRole.PATH, "point": og.AttributeRole.POSITION, "quat": og.AttributeRole.QUATERNION, "string": og.AttributeRole.TEXT, "texcoord": og.AttributeRole.TEXCOORD, "timecode": og.AttributeRole.TIMECODE, "transform": og.AttributeRole.TRANSFORM, "vector": og.AttributeRole.VECTOR, } # ============================================================================================================== @ogt.deprecated_function("Use og.AttributeType.type_from_ogn_type_name instead") def attribute_type_from_ogn_type_name(ogn_type_name: str) -> og.Type: """Construct an attribute type object from an OGN style type name""" type_match = RE_OGN_ATTRIBUTE_TYPE_PATTERN.match(ogn_type_name) if not type_match: raise AttributeError(f"Attribute type '{ogn_type_name}' does not match known OGN type names") try: (base_type, role) = OGN_NAMES_TO_TYPES[type_match.group(1)] except KeyError as error: raise AttributeError(f"Base type '{type_match.group(1)}' is not a supported OGN type") from error tuple_count = 1 if type_match.group(2) is None else int(type_match.group(2)[1]) array_depth = 0 if type_match.group(3) is None and role in [og.AttributeRole.TEXT, og.AttributeRole.PATH] else 1 is_matrix_type = role in [og.AttributeRole.MATRIX, og.AttributeRole.TRANSFORM, og.AttributeRole.FRAME] if is_matrix_type: tuple_count *= tuple_count return og.Type(base_type, tuple_count, array_depth, role) # ============================================================================================================== @ogt.deprecated_function("Use og.AttributeType.type_from_sdf_type_name instead") def attribute_type_from_usd_type_name(usd_type_name: str) -> og.Type: """Construct an attribute type object from a USD style type name""" # The 64 type pattern (int64, uint64) has to be applied first so that the base type includes it type_match = RE_USD_ATTRIBUTE_64_TYPE_PATTERN.match(usd_type_name) if type_match: (full_type, tuple_count, array_pattern) = type_match.groups() flavour = None else: type_match = RE_USD_ATTRIBUTE_TYPE_PATTERN.match(usd_type_name) if not type_match: raise AttributeError(f"Attribute type '{usd_type_name}' does not match known USD type names") (full_type, tuple_count, flavour, array_pattern) = type_match.groups() # Reassemble the role names (quat3d extracts as "quat",3,"d",None - need "quatd" to grok the types) full_type = f"{full_type}{flavour}" if flavour is not None else full_type tuple_count = 1 if tuple_count is None else int(tuple_count) array_depth = 0 if array_pattern is None else 1 try: (base_type, role, override_tuple_count) = USD_NAMES_TO_TYPES[full_type] if override_tuple_count is not None: tuple_count = override_tuple_count except KeyError as error: raise AttributeError(f"Base type '{full_type}' is not a supported USD type") from error is_matrix_type = usd_type_name.startswith("matrix") if is_matrix_type: tuple_count *= tuple_count return og.Type(base_type, tuple_count, array_depth, role)
omniverse-code/kit/exts/omni.graph/omni/graph/core/tests/test_bundle_changes.py
import omni.graph.core as og import omni.graph.core.tests as ogt class BundleTestSetup(ogt.OmniGraphTestCase): async def setUp(self): """Set up test environment, to be torn down when done""" await super().setUp() self.graph = og.Controller.create_graph("/graph") self.context = self.graph.get_default_graph_context() self.factory = og.IBundleFactory.create() self.assertTrue(self.factory is not None) self.bundle_changes = og.IBundleChanges.create(self.context) self.assertTrue(self.bundle_changes is not None) class TestBundleTopologyChanges(BundleTestSetup): async def setUp(self): """Set up test environment, to be torn down when done""" await super().setUp() async def test_bundle_changes_interface(self): bundle_changes = og.IBundleChanges.create(self.context) self.assertTrue(bundle_changes is not None) async def test_create_bundle(self): bundle = self.factory.create_bundle(self.context, "bundle") self.bundle_changes.activate_change_tracking(bundle) with og.BundleChanges(self.bundle_changes, bundle) as changes: self.assertEqual(changes.get_change(bundle), og.BundleChangeType.MODIFIED) # cleaned after leaving the scope self.assertEqual(self.bundle_changes.get_change(bundle), og.BundleChangeType.NONE) async def test_create_attribute(self): bundle = self.factory.create_bundle(self.context, "bundle") self.bundle_changes.activate_change_tracking(bundle) # setup tracking self.bundle_changes.get_change(bundle) self.bundle_changes.clear_changes() # check if everything is clean self.assertEqual(self.bundle_changes.get_change(bundle), og.BundleChangeType.NONE) # modify attrib = bundle.create_attribute("attrib", og.Type(og.BaseDataType.INT)) # check for changes with og.BundleChanges(self.bundle_changes, bundle) as changes: self.assertTrue(changes.has_changed()) self.assertEqual(changes.get_change(bundle), og.BundleChangeType.MODIFIED) self.assertEqual(changes.get_change(attrib), og.BundleChangeType.MODIFIED) # cleaned after leaving the scope self.assertEqual(self.bundle_changes.get_change(bundle), og.BundleChangeType.NONE) self.assertEqual(self.bundle_changes.get_change(attrib), og.BundleChangeType.NONE) async def test_create_attribute_like(self): bundle1 = self.factory.create_bundle(self.context, "bundle1") bundle2 = self.factory.create_bundle(self.context, "bundle2") self.bundle_changes.activate_change_tracking(bundle1) self.bundle_changes.activate_change_tracking(bundle2) attrib1 = bundle1.create_attribute("attrib", og.Type(og.BaseDataType.INT)) # setup tracking self.bundle_changes.get_change(bundle1) self.bundle_changes.get_change(bundle2) self.bundle_changes.get_change(attrib1) self.bundle_changes.clear_changes() # check if everything is clean self.assertEqual(self.bundle_changes.get_change(bundle1), og.BundleChangeType.NONE) self.assertEqual(self.bundle_changes.get_change(bundle2), og.BundleChangeType.NONE) self.assertEqual(self.bundle_changes.get_change(attrib1), og.BundleChangeType.NONE) # command: create attrib based on attrib1 attrib2 = bundle2.create_attribute_like(attrib1) # check for changes with og.BundleChanges(self.bundle_changes, bundle2) as changes: self.assertTrue(changes.has_changed()) self.assertEqual(changes.get_change(bundle1), og.BundleChangeType.NONE) self.assertEqual(changes.get_change(attrib1), og.BundleChangeType.NONE) self.assertEqual(changes.get_change(bundle2), og.BundleChangeType.MODIFIED) self.assertEqual(changes.get_change(attrib2), og.BundleChangeType.MODIFIED) # cleaned after leaving the scope self.assertEqual(self.bundle_changes.get_change(bundle1), og.BundleChangeType.NONE) self.assertEqual(self.bundle_changes.get_change(bundle2), og.BundleChangeType.NONE) self.assertEqual(self.bundle_changes.get_change(attrib1), og.BundleChangeType.NONE) self.assertEqual(self.bundle_changes.get_change(attrib2), og.BundleChangeType.NONE) async def test_create_child_bundle(self): bundle = self.factory.create_bundle(self.context, "bundle") self.bundle_changes.activate_change_tracking(bundle) # setup tracking self.bundle_changes.get_change(bundle) self.bundle_changes.clear_changes() # check if everything is clean self.assertEqual(self.bundle_changes.get_change(bundle), og.BundleChangeType.NONE) # modify bundle.create_child_bundle("child") # check for changes and clear them with og.BundleChanges(self.bundle_changes, bundle) as changes: self.assertTrue(changes.has_changed()) self.assertEqual(changes.get_change(bundle), og.BundleChangeType.MODIFIED) # cleaned after leaving the scope self.assertEqual(self.bundle_changes.get_change(bundle), og.BundleChangeType.NONE) async def test_remove_attribute(self): bundle = self.factory.create_bundle(self.context, "bundle") self.bundle_changes.activate_change_tracking(bundle) bundle.create_attribute("attrib", og.Type(og.BaseDataType.INT)) # setup tracking self.bundle_changes.get_change(bundle) self.bundle_changes.clear_changes() # check if everything is clean self.assertEqual(self.bundle_changes.get_change(bundle), og.BundleChangeType.NONE) # modify bundle.remove_attribute("attrib") # check for changes and clear them with og.BundleChanges(self.bundle_changes, bundle) as changes: self.assertTrue(changes.has_changed()) self.assertEqual(changes.get_change(bundle), og.BundleChangeType.MODIFIED) # cleaned after leaving the scope self.assertEqual(self.bundle_changes.get_change(bundle), og.BundleChangeType.NONE) async def test_remove_child_bundles(self): bundle = self.factory.create_bundle(self.context, "bundle") self.bundle_changes.activate_change_tracking(bundle) child = bundle.create_child_bundle("child") # setup tracking self.bundle_changes.get_change(bundle) self.bundle_changes.clear_changes() # check if everything is clean self.assertEqual(self.bundle_changes.get_change(bundle), og.BundleChangeType.NONE) # modify bundle.remove_child_bundle(child) # check for changes and clear them with og.BundleChanges(self.bundle_changes, bundle) as changes: self.assertTrue(changes.has_changed()) self.assertEqual(changes.get_change(bundle), og.BundleChangeType.MODIFIED) # cleaned after leaving the scope self.assertEqual(self.bundle_changes.get_change(bundle), og.BundleChangeType.NONE) async def test_clear_contents(self): bundle = self.factory.create_bundle(self.context, "bundle") self.bundle_changes.activate_change_tracking(bundle) # setup tracking self.bundle_changes.get_change(bundle) self.bundle_changes.clear_changes() # check if everything is clean self.assertEqual(self.bundle_changes.get_change(bundle), og.BundleChangeType.NONE) # modify bundle.clear_contents() # check for changes and clear them with og.BundleChanges(self.bundle_changes, bundle) as changes: self.assertTrue(changes.has_changed()) self.assertEqual(changes.get_change(bundle), og.BundleChangeType.MODIFIED) # cleaned after leaving the scope self.assertEqual(self.bundle_changes.get_change(bundle), og.BundleChangeType.NONE) async def test_copy_attribute(self): bundle1 = self.factory.create_bundle(self.context, "bundle1") bundle2 = self.factory.create_bundle(self.context, "bundle2") self.bundle_changes.activate_change_tracking(bundle1) self.bundle_changes.activate_change_tracking(bundle2) attrib1 = bundle1.create_attribute("attrib1", og.Type(og.BaseDataType.INT)) # setup tracking self.bundle_changes.get_change(bundle1) self.bundle_changes.get_change(bundle2) self.bundle_changes.get_change(attrib1) self.bundle_changes.clear_changes() # check if everything is clean self.assertEqual(self.bundle_changes.get_change(bundle1), og.BundleChangeType.NONE) self.assertEqual(self.bundle_changes.get_change(bundle2), og.BundleChangeType.NONE) self.assertEqual(self.bundle_changes.get_change(attrib1), og.BundleChangeType.NONE) # modify # only bundle2 is affected, but source bundle1 and attrib1 not bundle2.copy_attribute(attrib1) # check for changes and clear them with og.BundleChanges(self.bundle_changes, bundle2) as changes: self.assertTrue(changes.has_changed()) self.assertEqual(changes.get_change(bundle1), og.BundleChangeType.NONE) self.assertEqual(changes.get_change(bundle2), og.BundleChangeType.MODIFIED) self.assertEqual(changes.get_change(attrib1), og.BundleChangeType.NONE) # cleaned after leaving the scope self.assertEqual(self.bundle_changes.get_change(bundle1), og.BundleChangeType.NONE) self.assertEqual(self.bundle_changes.get_change(bundle2), og.BundleChangeType.NONE) self.assertEqual(self.bundle_changes.get_change(attrib1), og.BundleChangeType.NONE) async def test_copy_child_bundle(self): """Test if CoW reference is resolved.""" bundle1 = self.factory.create_bundle(self.context, "bundle1") bundle2 = self.factory.create_bundle(self.context, "bundle2") self.bundle_changes.activate_change_tracking(bundle1) self.bundle_changes.activate_change_tracking(bundle2) # setup tracking self.bundle_changes.get_change(bundle1) self.bundle_changes.get_change(bundle2) self.bundle_changes.clear_changes() # check if everything is clean self.assertEqual(self.bundle_changes.get_change(bundle1), og.BundleChangeType.NONE) self.assertEqual(self.bundle_changes.get_change(bundle2), og.BundleChangeType.NONE) # modify # only bundle1 is dirty, but bundle2 stays intact bundle1.copy_child_bundle(bundle2) self.assertEqual(self.bundle_changes.get_change(bundle2), og.BundleChangeType.NONE) # check for changes and clear them with og.BundleChanges(self.bundle_changes, bundle1) as changes: self.assertTrue(changes.has_changed()) self.assertEqual(changes.get_change(bundle1), og.BundleChangeType.MODIFIED) # cleaned after leaving the scope self.assertEqual(self.bundle_changes.get_change(bundle1), og.BundleChangeType.NONE) self.assertEqual(self.bundle_changes.get_change(bundle2), og.BundleChangeType.NONE) async def test_copy_bundle(self): """Copying bundle creates a shallow copy - a reference. To obtain the dirty id the reference needs to be resolved""" bundle1 = self.factory.create_bundle(self.context, "bundle1") bundle2 = self.factory.create_bundle(self.context, "bundle2") self.bundle_changes.activate_change_tracking(bundle1) self.bundle_changes.activate_change_tracking(bundle2) # setup tracking self.bundle_changes.get_change(bundle1) self.bundle_changes.get_change(bundle2) self.bundle_changes.clear_changes() # check if everything is clean self.assertEqual(self.bundle_changes.get_change(bundle1), og.BundleChangeType.NONE) self.assertEqual(self.bundle_changes.get_change(bundle2), og.BundleChangeType.NONE) # modify # bundle2 is modified, but bundle1 stays intact bundle2.copy_bundle(bundle1) self.assertEqual(self.bundle_changes.get_change(bundle1), og.BundleChangeType.NONE) # check for changes and clear them with og.BundleChanges(self.bundle_changes, bundle2) as changes: self.assertTrue(changes.has_changed()) self.assertEqual(changes.get_change(bundle2), og.BundleChangeType.MODIFIED) # cleaned after leaving the scope self.assertEqual(self.bundle_changes.get_change(bundle1), og.BundleChangeType.NONE) self.assertEqual(self.bundle_changes.get_change(bundle2), og.BundleChangeType.NONE) async def test_get_attribute_by_name(self): """Getting writable attribute data handle does not change dirty id. Only writing to an attribute triggers id to be changed.""" bundle = self.factory.create_bundle(self.context, "bundle") self.bundle_changes.activate_change_tracking(bundle) attrib = bundle.create_attribute("attrib", og.Type(og.BaseDataType.INT)) # setup tracking self.bundle_changes.get_change(bundle) self.bundle_changes.get_change(attrib) self.bundle_changes.clear_changes() # check if everything is clean self.assertEqual(self.bundle_changes.get_change(bundle), og.BundleChangeType.NONE) self.assertEqual(self.bundle_changes.get_change(attrib), og.BundleChangeType.NONE) # getting attribute doesn't mark any changes attrib = bundle.get_attribute_by_name("attrib") # check for changes and clear them with og.BundleChanges(self.bundle_changes, bundle) as changes: self.assertFalse(changes.has_changed()) self.assertEqual(changes.get_change(bundle), og.BundleChangeType.NONE) self.assertEqual(changes.get_change(attrib), og.BundleChangeType.NONE) # cleaned after leaving the scope self.assertEqual(self.bundle_changes.get_change(bundle), og.BundleChangeType.NONE) self.assertEqual(self.bundle_changes.get_change(attrib), og.BundleChangeType.NONE) async def test_get_child_bundle_by_name(self): """Getting writable bundle handle does not change dirty id. Only creating/removing attributes and children triggers id to be changed.""" bundle = self.factory.create_bundle(self.context, "bundle") self.bundle_changes.activate_change_tracking(bundle) child = bundle.create_child_bundle("child") # setup tracking self.bundle_changes.get_change(bundle) self.bundle_changes.get_change(child) self.bundle_changes.clear_changes() # check if everything is clean self.assertEqual(self.bundle_changes.get_change(bundle), og.BundleChangeType.NONE) self.assertEqual(self.bundle_changes.get_change(child), og.BundleChangeType.NONE) # bundle and child must be clean child = bundle.get_child_bundle_by_name("child") # check for changes and clear them with og.BundleChanges(self.bundle_changes, bundle) as changes: self.assertFalse(changes.has_changed()) self.assertEqual(changes.get_change(bundle), og.BundleChangeType.NONE) self.assertEqual(changes.get_change(child), og.BundleChangeType.NONE) # cleaned after leaving the scope self.assertEqual(self.bundle_changes.get_change(bundle), og.BundleChangeType.NONE) self.assertEqual(self.bundle_changes.get_change(child), og.BundleChangeType.NONE) async def test_change_child_and_propagate_changes_to_parent(self): r""" bundle1 \_ child0 \_ child1 \_ child2 <-- create attribute Will propagate dirty id changes up to `bundle1` (child2 -> child1 -> child0 -> bundle1) """ bundle = self.factory.create_bundle(self.context, "bundle") self.bundle_changes.activate_change_tracking(bundle) child0 = bundle.create_child_bundle("child0") child1 = child0.create_child_bundle("child1") child2 = child1.create_child_bundle("child2") # setup tracking self.bundle_changes.get_change(bundle) self.bundle_changes.get_change(child0) self.bundle_changes.get_change(child1) self.bundle_changes.get_change(child2) self.bundle_changes.clear_changes() # check if everything is clean self.assertEqual(self.bundle_changes.get_change(child2), og.BundleChangeType.NONE) self.assertEqual(self.bundle_changes.get_change(child1), og.BundleChangeType.NONE) self.assertEqual(self.bundle_changes.get_change(child0), og.BundleChangeType.NONE) self.assertEqual(self.bundle_changes.get_change(bundle), og.BundleChangeType.NONE) # creating attribute automatically make all hierarchy dirty child2.create_attribute("attrib", og.Type(og.BaseDataType.INT)) # check for changes and clear them with og.BundleChanges(self.bundle_changes, bundle) as changes: self.assertTrue(changes.has_changed()) self.assertEqual(changes.get_change(child2), og.BundleChangeType.MODIFIED) self.assertEqual(changes.get_change(child1), og.BundleChangeType.MODIFIED) self.assertEqual(changes.get_change(child0), og.BundleChangeType.MODIFIED) self.assertEqual(changes.get_change(bundle), og.BundleChangeType.MODIFIED) # cleaned after leaving the scope self.assertEqual(self.bundle_changes.get_change(child2), og.BundleChangeType.NONE) self.assertEqual(self.bundle_changes.get_change(child1), og.BundleChangeType.NONE) self.assertEqual(self.bundle_changes.get_change(child0), og.BundleChangeType.NONE) self.assertEqual(self.bundle_changes.get_change(bundle), og.BundleChangeType.NONE) class TestBundleAttributeDataChanges(BundleTestSetup): async def setUp(self): """Set up test environment, to be torn down when done""" await super().setUp() async def test_set_get_simple_attribute_data(self): """Getting simple attribute data should not change dirty id""" bundle = self.factory.create_bundle(self.context, "bundle") self.bundle_changes.activate_change_tracking(bundle) attrib = bundle.create_attribute("attrib", og.Type(og.BaseDataType.INT)) # setup tracking self.bundle_changes.get_change(bundle) self.bundle_changes.get_change(attrib) self.bundle_changes.clear_changes() self.assertEqual(self.bundle_changes.get_change(bundle), og.BundleChangeType.NONE) self.assertEqual(self.bundle_changes.get_change(attrib), og.BundleChangeType.NONE) # command: set modifies attribute and bundle attrib.set(42) # check for changes and clear them with og.BundleChanges(self.bundle_changes, bundle) as changes: self.assertTrue(changes.has_changed()) self.assertEqual(changes.get_change(bundle), og.BundleChangeType.MODIFIED) self.assertEqual(changes.get_change(attrib), og.BundleChangeType.MODIFIED) # cleaned after leaving the scope self.assertEqual(self.bundle_changes.get_change(bundle), og.BundleChangeType.NONE) self.assertEqual(self.bundle_changes.get_change(attrib), og.BundleChangeType.NONE) # query: get does not modify attribute and bundle self.assertEqual(attrib.as_read_only().get(), 42) # check for changes and clear them with og.BundleChanges(self.bundle_changes, bundle) as changes: self.assertFalse(changes.has_changed()) self.assertEqual(changes.get_change(bundle), og.BundleChangeType.NONE) self.assertEqual(changes.get_change(attrib), og.BundleChangeType.NONE) # cleaned after leaving the scope self.assertEqual(self.bundle_changes.get_change(bundle), og.BundleChangeType.NONE) self.assertEqual(self.bundle_changes.get_change(attrib), og.BundleChangeType.NONE) async def test_set_get_array_attribute_data(self): """Getting simple attribute data should not change dirty id""" bundle = self.factory.create_bundle(self.context, "bundle") self.bundle_changes.activate_change_tracking(bundle) attrib = bundle.create_attribute("attrib", og.Type(og.BaseDataType.INT, 1, 1)) # setup tracking self.bundle_changes.get_change(bundle) self.bundle_changes.get_change(attrib) self.bundle_changes.clear_changes() self.assertEqual(self.bundle_changes.get_change(bundle), og.BundleChangeType.NONE) self.assertEqual(self.bundle_changes.get_change(attrib), og.BundleChangeType.NONE) # command: set modifies attribute and bundle attrib.set([42]) # check for changes and clear them with og.BundleChanges(self.bundle_changes, bundle) as changes: self.assertTrue(changes.has_changed()) self.assertEqual(changes.get_change(bundle), og.BundleChangeType.MODIFIED) self.assertEqual(changes.get_change(attrib), og.BundleChangeType.MODIFIED) # cleaned after leaving the scope self.assertEqual(self.bundle_changes.get_change(bundle), og.BundleChangeType.NONE) self.assertEqual(self.bundle_changes.get_change(attrib), og.BundleChangeType.NONE) # query: get does not modify attribute and bundle self.assertEqual(attrib.as_read_only().get()[0], 42) # check for changes and clear them with og.BundleChanges(self.bundle_changes, bundle) as changes: self.assertFalse(changes.has_changed()) self.assertEqual(changes.get_change(bundle), og.BundleChangeType.NONE) self.assertEqual(changes.get_change(attrib), og.BundleChangeType.NONE) # cleaned after leaving the scope self.assertEqual(self.bundle_changes.get_change(bundle), og.BundleChangeType.NONE) self.assertEqual(self.bundle_changes.get_change(attrib), og.BundleChangeType.NONE) async def test_set_get_tuple_attribute_data(self): """Getting simple attribute data should not change dirty id""" bundle = self.factory.create_bundle(self.context, "bundle") self.bundle_changes.activate_change_tracking(bundle) attrib = bundle.create_attribute("attrib", og.Type(og.BaseDataType.INT, 2, 0)) # setup tracking self.bundle_changes.get_change(bundle) self.bundle_changes.get_change(attrib) self.bundle_changes.clear_changes() self.assertEqual(self.bundle_changes.get_change(bundle), og.BundleChangeType.NONE) self.assertEqual(self.bundle_changes.get_change(attrib), og.BundleChangeType.NONE) # command: set modifies attribute and bundle attrib.set([42, 24]) # check for changes and clear them with og.BundleChanges(self.bundle_changes, bundle) as changes: self.assertTrue(changes.has_changed()) self.assertEqual(changes.get_change(bundle), og.BundleChangeType.MODIFIED) self.assertEqual(changes.get_change(attrib), og.BundleChangeType.MODIFIED) # cleaned after leaving the scope self.assertEqual(self.bundle_changes.get_change(bundle), og.BundleChangeType.NONE) self.assertEqual(self.bundle_changes.get_change(attrib), og.BundleChangeType.NONE) # query: get does not modify attribute and bundle self.assertEqual(attrib.as_read_only().get()[0], 42) self.assertEqual(attrib.as_read_only().get()[1], 24) # check for changes and clear them with og.BundleChanges(self.bundle_changes, bundle) as changes: self.assertFalse(changes.has_changed()) self.assertEqual(changes.get_change(bundle), og.BundleChangeType.NONE) self.assertEqual(changes.get_change(attrib), og.BundleChangeType.NONE) # cleaned after leaving the scope self.assertEqual(self.bundle_changes.get_change(bundle), og.BundleChangeType.NONE) self.assertEqual(self.bundle_changes.get_change(attrib), og.BundleChangeType.NONE)
omniverse-code/kit/exts/omni.graph/omni/graph/core/tests/test_bundle_cow.py
import omni.graph.core as og import omni.graph.core.tests as ogt class TestBundleCow(ogt.OmniGraphTestCase): async def setUp(self): await super().setUp() self.graph = og.Controller.create_graph("/graph") self.context = self.graph.get_default_graph_context() self.factory = og.IBundleFactory.create() self.assertTrue(self.factory is not None) self.bundle1Name = "bundle1" self.bundle2Name = "bundle2" self.attr1Name = "attr1" self.attr1Type = og.Type(og.BaseDataType.BOOL, 1, 1) self.bundle1 = self.factory.create_bundle(self.context, self.bundle1Name) self.assertTrue(self.bundle1.valid) self.bundle2 = self.factory.create_bundle(self.context, self.bundle2Name) self.assertTrue(self.bundle2.valid) async def test_copy_and_remove_attribute_with_metadata(self): meta_name = "meta1" meta_type = og.Type(og.BaseDataType.INT, 1, 1) attr1 = self.bundle1.create_attribute(self.attr1Name, self.attr1Type) attr1.set([False, True]) meta1 = self.bundle1.create_attribute_metadata(self.attr1Name, meta_name, meta_type) meta1.set([1, 2, 3, 4]) # copy attribute with metadata self.bundle2.copy_attribute(attr1) # confirm data is accurate after setting it cpy_meta1 = self.bundle2.get_attribute_metadata_by_name(self.attr1Name, meta_name) cpy_meta1.set([4, 3, 2, 1]) self.assertTrue((meta1.get() == [1, 2, 3, 4]).all()) self.assertTrue((cpy_meta1.get() == [4, 3, 2, 1]).all()) # remove copied attribute should leave original attribute intact self.bundle2.remove_attributes_by_name([self.attr1Name]) # confirm source data is intact attr1 = self.bundle1.get_attribute_by_name(self.attr1Name) self.assertTrue(attr1.is_valid()) self.assertTrue((attr1.get() == [False, True]).all()) self.assertEqual(self.bundle1.get_attribute_metadata_count(self.attr1Name), 1) meta1 = self.bundle1.get_attribute_metadata_by_name(self.attr1Name, meta_name) self.assertTrue(meta1.is_valid()) self.assertTrue((meta1.get() == [1, 2, 3, 4]).all()) # confirm removed metadata is gone self.assertEqual(self.bundle2.get_attribute_metadata_count(self.attr1Name), 0) attr1 = self.bundle2.get_attribute_metadata_by_name(self.attr1Name, meta_name) self.assertFalse(attr1.is_valid()) async def test_copy_bundle_and_remove_attribute_with_metadata(self): meta_name = "meta1" meta_type = og.Type(og.BaseDataType.INT, 1, 1) attr1 = self.bundle1.create_attribute(self.attr1Name, self.attr1Type) attr1.set([False, True]) meta1 = self.bundle1.create_attribute_metadata(self.attr1Name, meta_name, meta_type) meta1.set([1, 2, 3, 4]) # copy attribute with metadata self.bundle2.copy_bundle(self.bundle1) # # Do NOT materialize attribute - keep shallow copy of entire bundle # # remove copied attribute should leave original attribute intact self.bundle2.remove_attributes_by_name([self.attr1Name]) # confirm source data is intact attr1 = self.bundle1.get_attribute_by_name(self.attr1Name) self.assertTrue(attr1.is_valid()) self.assertTrue((attr1.get() == [False, True]).all()) self.assertEqual(self.bundle1.get_attribute_metadata_count(self.attr1Name), 1) meta1 = self.bundle1.get_attribute_metadata_by_name(self.attr1Name, meta_name) self.assertTrue(meta1.is_valid()) self.assertTrue((meta1.get() == [1, 2, 3, 4]).all()) # confirm copied metadata is gone self.assertEqual(self.bundle2.get_attribute_metadata_count(self.attr1Name), 0) attr1 = self.bundle2.get_attribute_metadata_by_name(self.attr1Name, meta_name) self.assertFalse(attr1.is_valid()) async def test_remove_attribute_metadata(self): attr1 = self.bundle1.create_attribute(self.attr1Name, self.attr1Type) attr1.set([False, True]) meta_name1 = "meta1" meta_type1 = og.Type(og.BaseDataType.INT, 1, 1) meta1 = self.bundle1.create_attribute_metadata(self.attr1Name, meta_name1, meta_type1) meta1.set([1, 2, 3, 4]) meta_name2 = "meta2" meta_type2 = og.Type(og.BaseDataType.BOOL, 1, 1) meta1 = self.bundle1.create_attribute_metadata(self.attr1Name, meta_name2, meta_type2) meta1.set([False, True]) # copy attribute with metadata self.bundle2.copy_bundle(self.bundle1) # # Materialize metadata for bundle2! # self.bundle2.remove_attribute_metadata(self.attr1Name, (meta_name1)) # check if source is intact self.assertEqual(self.bundle1.get_attribute_metadata_count(self.attr1Name), 2) names = self.bundle1.get_attribute_metadata_names(self.attr1Name) self.assertEqual(len(names), 2) self.assertTrue(meta_name1 in names) self.assertTrue(meta_name2 in names) # check if shallow copied metadata bundle has been materialized self.assertEqual(self.bundle2.get_attribute_metadata_count(self.attr1Name), 1) names = self.bundle2.get_attribute_metadata_names(self.attr1Name) self.assertEqual(len(names), 1) self.assertFalse(meta_name1 in names) self.assertTrue(meta_name2 in names) async def test_copy_child_bundle(self): org_child = self.bundle1.create_child_bundle("org_child") # create bundle for modifications mod_bundle = self.factory.create_bundle(self.context, "mod_bundle") mod_child = mod_bundle.copy_child_bundle(org_child) mod_child.create_attribute("attr", og.Type(og.BaseDataType.BOOL, 1, 1)) # original child can not change, but modified change must self.assertEqual(org_child.get_attribute_count(), 0) self.assertEqual(mod_child.get_attribute_count(), 1) async def test_attribute_resize(self): src_bundle = self.factory.create_bundle(self.context, "src_bundle") src_attrib = src_bundle.create_attribute( "attrib", og.Type( og.BaseDataType.FLOAT, tuple_count=1, array_depth=1, ), element_count=100, ) dst_bundle = self.factory.create_bundle(self.context, "dst_bundle") dst_bundle.copy_bundle(src_bundle) self.assertEqual(dst_bundle.get_attribute_count(), 1) dst_attrib = dst_bundle.create_attribute( "attrib", og.Type( og.BaseDataType.FLOAT, tuple_count=1, array_depth=1, ), element_count=200, ) self.assertEqual(src_attrib.size(), 100) self.assertEqual(dst_attrib.size(), 200)
omniverse-code/kit/exts/omni.graph/omni/graph/core/tests/test_omnigraph_utils.py
""" Suite of tests to exercise small pieces of the OmniGraph utility scripts. These tests are like unit tests in that they all only focus on one piece of functionality, not the integration of many pieces, as these tests usually do. """ import json from contextlib import suppress from pathlib import Path import carb import carb.settings import omni.graph.core as og import omni.graph.core.tests as ogt import omni.kit.app import omni.kit.commands import omni.kit.test import omni.usd class TestOmniGraphUtilities(ogt.OmniGraphTestCase): """Wrapper for unit tests on basic OmniGraph support script functionality""" # ---------------------------------------------------------------------- async def test_ogn_type_conversion(self): """Test operation of the AttributeType.type_from_ogn_type_name() function""" # Test data is tuples of string input and expected Type output simple_data_no_tuples = [ ("any", og.Type(og.BaseDataType.TOKEN)), ("bool", og.Type(og.BaseDataType.BOOL)), ("int64", og.Type(og.BaseDataType.INT64)), ("token", og.Type(og.BaseDataType.TOKEN)), ("uchar", og.Type(og.BaseDataType.UCHAR)), ("uint", og.Type(og.BaseDataType.UINT)), ("uint64", og.Type(og.BaseDataType.UINT64)), ] simple_data = [ ("double", og.Type(og.BaseDataType.DOUBLE)), ("float", og.Type(og.BaseDataType.FLOAT)), ("half", og.Type(og.BaseDataType.HALF)), ("int", og.Type(og.BaseDataType.INT)), ] tuple_data = [(f"{type_name}[2]", og.Type(og_type.base_type, 2, 0)) for (type_name, og_type) in simple_data] array_data = [ (f"{type_name}[]", og.Type(og_type.base_type, 1, 1)) for (type_name, og_type) in simple_data + simple_data_no_tuples ] array_tuple_data = [ (f"{type_name}[3][]", og.Type(og_type.base_type, 3, 1)) for (type_name, og_type) in simple_data ] role_data = [ ("bundle", og.Type(og.BaseDataType.RELATIONSHIP, 1, 0, og.AttributeRole.BUNDLE)), ("colord[3]", og.Type(og.BaseDataType.DOUBLE, 3, 0, og.AttributeRole.COLOR)), ("colorf[3]", og.Type(og.BaseDataType.FLOAT, 3, 0, og.AttributeRole.COLOR)), ("colorh[3]", og.Type(og.BaseDataType.HALF, 3, 0, og.AttributeRole.COLOR)), ("frame[4]", og.Type(og.BaseDataType.DOUBLE, 16, 0, og.AttributeRole.FRAME)), ("matrixd[2]", og.Type(og.BaseDataType.DOUBLE, 4, 0, og.AttributeRole.MATRIX)), ("matrixd[3]", og.Type(og.BaseDataType.DOUBLE, 9, 0, og.AttributeRole.MATRIX)), ("matrixd[4]", og.Type(og.BaseDataType.DOUBLE, 16, 0, og.AttributeRole.MATRIX)), ("normald[3]", og.Type(og.BaseDataType.DOUBLE, 3, 0, og.AttributeRole.NORMAL)), ("normalf[3]", og.Type(og.BaseDataType.FLOAT, 3, 0, og.AttributeRole.NORMAL)), ("normalh[3]", og.Type(og.BaseDataType.HALF, 3, 0, og.AttributeRole.NORMAL)), ("path", og.Type(og.BaseDataType.UCHAR, 1, 1, og.AttributeRole.PATH)), ("pointd[3]", og.Type(og.BaseDataType.DOUBLE, 3, 0, og.AttributeRole.POSITION)), ("pointf[3]", og.Type(og.BaseDataType.FLOAT, 3, 0, og.AttributeRole.POSITION)), ("pointh[3]", og.Type(og.BaseDataType.HALF, 3, 0, og.AttributeRole.POSITION)), ("quatd[3]", og.Type(og.BaseDataType.DOUBLE, 3, 0, og.AttributeRole.QUATERNION)), ("quatf[3]", og.Type(og.BaseDataType.FLOAT, 3, 0, og.AttributeRole.QUATERNION)), ("quath[3]", og.Type(og.BaseDataType.HALF, 3, 0, og.AttributeRole.QUATERNION)), ("target", og.Type(og.BaseDataType.RELATIONSHIP, 1, 0, og.AttributeRole.TARGET)), ("texcoordd[3]", og.Type(og.BaseDataType.DOUBLE, 3, 0, og.AttributeRole.TEXCOORD)), ("texcoordf[3]", og.Type(og.BaseDataType.FLOAT, 3, 0, og.AttributeRole.TEXCOORD)), ("texcoordh[3]", og.Type(og.BaseDataType.HALF, 3, 0, og.AttributeRole.TEXCOORD)), ("timecode[3]", og.Type(og.BaseDataType.DOUBLE, 3, 0, og.AttributeRole.TIMECODE)), ("transform[3]", og.Type(og.BaseDataType.DOUBLE, 9, 0, og.AttributeRole.TRANSFORM)), ("vectord[3]", og.Type(og.BaseDataType.DOUBLE, 3, 0, og.AttributeRole.VECTOR)), ("vectorf[3]", og.Type(og.BaseDataType.FLOAT, 3, 0, og.AttributeRole.VECTOR)), ("vectorh[3]", og.Type(og.BaseDataType.HALF, 3, 0, og.AttributeRole.VECTOR)), ] test_data = simple_data + simple_data_no_tuples + tuple_data + array_data + array_tuple_data + role_data for (attribute_type_spec, attribute_type_expected) in test_data: actual = og.AttributeType.type_from_ogn_type_name(attribute_type_spec) self.assertEqual(attribute_type_expected, actual, f"Failed to convert {attribute_type_spec}") # ---------------------------------------------------------------------- async def test_sdf_type_conversion(self): """Test operation of the AttributeType.type_from_sdf_type_name() function""" # Test data is tuples of string input and expected Type output simple_data_no_tuples = [ ("bool", og.Type(og.BaseDataType.BOOL)), ("int64", og.Type(og.BaseDataType.INT64)), ("token", og.Type(og.BaseDataType.TOKEN)), ("uchar", og.Type(og.BaseDataType.UCHAR)), ("uint", og.Type(og.BaseDataType.UINT)), ("uint64", og.Type(og.BaseDataType.UINT64)), ] simple_data = [ ("double", og.Type(og.BaseDataType.DOUBLE)), ("float", og.Type(og.BaseDataType.FLOAT)), ("half", og.Type(og.BaseDataType.HALF)), ("int", og.Type(og.BaseDataType.INT)), ] tuple_data = [(f"{type_name}2", og.Type(og_type.base_type, 2, 0)) for (type_name, og_type) in simple_data] array_data = [ (f"{type_name}[]", og.Type(og_type.base_type, 1, 1)) for (type_name, og_type) in simple_data + simple_data_no_tuples ] array_tuple_data = [ (f"{type_name}3[]", og.Type(og_type.base_type, 3, 1)) for (type_name, og_type) in simple_data ] role_data = [ ("color3d", og.Type(og.BaseDataType.DOUBLE, 3, 0, og.AttributeRole.COLOR)), ("color3f", og.Type(og.BaseDataType.FLOAT, 3, 0, og.AttributeRole.COLOR)), ("color3h", og.Type(og.BaseDataType.HALF, 3, 0, og.AttributeRole.COLOR)), ("frame4d", og.Type(og.BaseDataType.DOUBLE, 16, 0, og.AttributeRole.FRAME)), ("matrix2d", og.Type(og.BaseDataType.DOUBLE, 4, 0, og.AttributeRole.MATRIX)), ("matrix3d", og.Type(og.BaseDataType.DOUBLE, 9, 0, og.AttributeRole.MATRIX)), ("matrix4d", og.Type(og.BaseDataType.DOUBLE, 16, 0, og.AttributeRole.MATRIX)), ("normal3d", og.Type(og.BaseDataType.DOUBLE, 3, 0, og.AttributeRole.NORMAL)), ("normal3f", og.Type(og.BaseDataType.FLOAT, 3, 0, og.AttributeRole.NORMAL)), ("normal3h", og.Type(og.BaseDataType.HALF, 3, 0, og.AttributeRole.NORMAL)), ("point3d", og.Type(og.BaseDataType.DOUBLE, 3, 0, og.AttributeRole.POSITION)), ("point3f", og.Type(og.BaseDataType.FLOAT, 3, 0, og.AttributeRole.POSITION)), ("point3h", og.Type(og.BaseDataType.HALF, 3, 0, og.AttributeRole.POSITION)), ("quatd", og.Type(og.BaseDataType.DOUBLE, 4, 0, og.AttributeRole.QUATERNION)), ("quatf", og.Type(og.BaseDataType.FLOAT, 4, 0, og.AttributeRole.QUATERNION)), ("quath", og.Type(og.BaseDataType.HALF, 4, 0, og.AttributeRole.QUATERNION)), ("texCoord3d", og.Type(og.BaseDataType.DOUBLE, 3, 0, og.AttributeRole.TEXCOORD)), ("texCoord3f", og.Type(og.BaseDataType.FLOAT, 3, 0, og.AttributeRole.TEXCOORD)), ("texCoord3h", og.Type(og.BaseDataType.HALF, 3, 0, og.AttributeRole.TEXCOORD)), ("timecode", og.Type(og.BaseDataType.DOUBLE, 1, 0, og.AttributeRole.TIMECODE)), ("vector3d", og.Type(og.BaseDataType.DOUBLE, 3, 0, og.AttributeRole.VECTOR)), ("vector3f", og.Type(og.BaseDataType.FLOAT, 3, 0, og.AttributeRole.VECTOR)), ("vector3h", og.Type(og.BaseDataType.HALF, 3, 0, og.AttributeRole.VECTOR)), ] test_data = simple_data + simple_data_no_tuples + tuple_data + array_data + array_tuple_data + role_data for (attribute_type_spec, attribute_type_expected) in test_data: actual = og.AttributeType.type_from_sdf_type_name(attribute_type_spec) self.assertEqual( attribute_type_expected, actual, f"Failed to convert '{attribute_type_spec}' - '{attribute_type_expected.get_type_name()}'" f" != '{actual.get_type_name()}'", ) # ---------------------------------------------------------------------- async def test_extension_information(self): """Test operation of the utilities to examine extension and OmniGraph node type information""" extension_information = og.ExtensionInformation() manager = omni.kit.app.get_app_interface().get_extension_manager() examples_cpp_extension = "omni.graph.examples.cpp" nodes_extension = "omni.graph.nodes" # If the two known extensions are somehow not found then the test cannot run examples_cpp_extension_id = None nodes_extension_id = None with suppress(Exception): examples_cpp_extension_id = manager.get_extension_id_by_module(examples_cpp_extension) nodes_extension_id = manager.get_extension_id_by_module(nodes_extension) if not examples_cpp_extension_id: carb.log_warn("test_extension_information cannot run since omni.graph.examples.cpp was not found") return if not nodes_extension_id: carb.log_warn("test_extension_information cannot run since omni.graph.nodes was not found") return # Remember the enabled state so that we can gracefully recover after the test run examples_cpp_enabled = manager.is_extension_enabled(examples_cpp_extension) nodes_enabled = manager.is_extension_enabled(nodes_extension) try: # The test proceeds by creating five nodes, two OmniGraph nodes from each of the known extensions # and one Prim that is given attribute information to make it look like an OmniGraph node. Then the # extension mapping information is read in with all of the extension enabled/disabled combinations to # ensure the correct information is retrieved. # Set up the scene with both extensions enabled to begin with manager.set_extension_enabled_immediate(examples_cpp_extension_id, True) manager.set_extension_enabled_immediate(nodes_extension_id, True) examples_cpp_node_types = ["omni.graph.examples.cpp.Smooth", "omni.graph.examples.cpp.VersionedDeformer"] examples_cpp_nodes = ["/TestGraph/Smooth", "/TestGraph/VersionedDeformer"] nodes_node_types = ["omni.graph.nodes.ArrayLength", "omni.graph.nodes.Noop"] nodes_nodes = ["/TestGraph/ArrayLength", "/TestGraph/Noop"] og.Controller.edit( "/TestGraph", { og.Controller.Keys.CREATE_NODES: [ (examples_cpp_nodes[0][11:], examples_cpp_node_types[0]), (examples_cpp_nodes[1][11:], examples_cpp_node_types[1]), (nodes_nodes[0][11:], nodes_node_types[0]), (nodes_nodes[1][11:], nodes_node_types[1]), ] }, ) # test_data is a list of test configurations where the contents are: # Enable omni.graph.examples.cpp? # Enable omni.graph.nodes? test_data = [ [True, True], [True, False], [False, False], [False, True], ] for enable_examples_cpp, enable_nodes in test_data: manager.set_extension_enabled_immediate(examples_cpp_extension_id, enable_examples_cpp) manager.set_extension_enabled_immediate(nodes_extension_id, enable_nodes) # The first test reads the entire set of extension node types. As this is always in flux only a few # that are unlikely to move are checked. (enabled_extensions, disabled_extensions) = extension_information.get_node_types_by_extension() # Make sure the extensions are partitioned correctly by enabled state if enable_examples_cpp: self.assertTrue(examples_cpp_extension in enabled_extensions) self.assertTrue(examples_cpp_extension not in disabled_extensions) for node_type in examples_cpp_node_types: self.assertIn(node_type, enabled_extensions[examples_cpp_extension]) else: self.assertTrue(examples_cpp_extension not in enabled_extensions) self.assertTrue(examples_cpp_extension in disabled_extensions) for node_type in examples_cpp_node_types: self.assertIn(node_type, disabled_extensions[examples_cpp_extension]) if enable_nodes: self.assertTrue(nodes_extension in enabled_extensions) self.assertTrue(nodes_extension not in disabled_extensions) for node_type in nodes_node_types: self.assertIn(node_type, enabled_extensions[nodes_extension]) else: self.assertTrue(nodes_extension not in enabled_extensions) self.assertTrue(nodes_extension in disabled_extensions) for node_type in nodes_node_types: self.assertIn(node_type, disabled_extensions[nodes_extension]) # Check that the node configuration is also returning the correct data (enabled_nodes, disabled_nodes) = extension_information.get_nodes_by_extension() if enable_examples_cpp: self.assertTrue(examples_cpp_extension in enabled_nodes) self.assertTrue(examples_cpp_extension not in disabled_nodes) for node_path in examples_cpp_nodes: self.assertIn(node_path, enabled_nodes[examples_cpp_extension]) else: self.assertTrue(examples_cpp_extension not in enabled_nodes) self.assertTrue(examples_cpp_extension in disabled_nodes) for node_path in examples_cpp_nodes: self.assertIn(node_path, disabled_nodes[examples_cpp_extension]) if enable_nodes: self.assertTrue(nodes_extension in enabled_nodes) self.assertTrue(nodes_extension not in disabled_nodes) for node_path in nodes_nodes: self.assertIn(node_path, enabled_nodes[nodes_extension]) else: self.assertTrue(nodes_extension not in enabled_nodes) self.assertTrue(nodes_extension in disabled_nodes) for node_path in nodes_nodes: self.assertIn(node_path, disabled_nodes[nodes_extension]) finally: manager.set_extension_enabled_immediate(examples_cpp_extension, examples_cpp_enabled) manager.set_extension_enabled_immediate(nodes_extension, nodes_enabled) # ---------------------------------------------------------------------- async def test_graphregistry_event_stream(self): """ Tests the graph registry event stream notifies when extensions with node types are loaded and unloaded """ examples_python_extension = "omni.graph.examples.python" manager = omni.kit.app.get_app_interface().get_extension_manager() examples_python_extension_id = None with suppress(Exception): examples_python_extension_id = manager.get_extension_id_by_module(examples_python_extension) if not examples_python_extension_id: carb.log_warn(f"test_graphregistry_event_stream cannot run since {examples_python_extension} was not found") return examples_enabled = manager.is_extension_enabled(examples_python_extension) # tests the registration count = 0 event_type = None def on_changed(event): nonlocal count nonlocal event_type if event.type in (int(og.GraphRegistryEvent.NODE_TYPE_ADDED), int(og.GraphRegistryEvent.NODE_TYPE_REMOVED)): event_type = event.type count = count + 1 sub = og.GraphRegistry().get_event_stream().create_subscription_to_pop(on_changed) self.assertIsNotNone(sub) try: enabled = examples_enabled # each load/unload should trigger the callback for each node loaded/unloaded last_count = count for i in range(1, 4): enabled = not enabled manager.set_extension_enabled_immediate(examples_python_extension, enabled) await omni.kit.app.get_app().next_update_async() self.assertGreater(count, last_count) if enabled: self.assertEqual(event_type, int(og.GraphRegistryEvent.NODE_TYPE_ADDED)) else: self.assertEquals(event_type, int(og.GraphRegistryEvent.NODE_TYPE_REMOVED)) last_count = count # wait more frames to validate the callback didn't get called without an extension change for _j in range(1, i): await omni.kit.app.get_app().next_update_async() self.assertEqual(count, last_count) finally: manager.set_extension_enabled_immediate(examples_python_extension, examples_enabled) # ---------------------------------------------------------------------- async def test_typed_value(self): """Test operation of the TypedValue class""" # Test data consists of args + kwargs values to pass to the set() method, a boolean indicating whether setting # should succeed or not, and the expected value and type after setting. When there are two args or two kwargs # the __init__ method is used as well as those are the cases in which it is valid. unknown_t = og.Type(og.BaseDataType.UNKNOWN) float_t = og.Type(og.BaseDataType.FLOAT) test_data = [ # Legal args configurations [[], {}, True, None, unknown_t], [[1.0], {}, True, 1.0, unknown_t], [[1.0, "float"], {}, True, 1.0, float_t], [[1.0, float_t], {}, True, 1.0, float_t], # Legal kwargs configurations [[], {"value": 1.0}, True, 1.0, unknown_t], [[], {"value": 1.0, "type": "float"}, True, 1.0, float_t], [[], {"value": 1.0, "type": float_t}, True, 1.0, float_t], [[], {"type": float_t, "value": 1.0}, True, 1.0, float_t], # Illegal args combinations [[1.0, "float", 2], {}, False, None, None], [[1.0, "sink"], {}, False, None, None], [["float", 1.0], {}, False, None, None], # Illegal kwargs combinations [[], {"valley": 1.0}, False, None, None], [[], {"type": "float"}, False, None, None], [[], {"value": 1.0, "type": "flat"}, False, None, None], [[], {"value": 1.0, "type": "float", "scissors": "run_with"}, False, None, None], # Illegal args+kwargs combinations [[1.0], {"type": "float"}, False, None, None], [[1.0, "float"], {"value": 1.0}, False, None, None], ] for args, kwargs, should_succeed, expected_value, expected_type in test_data: test_info = ( f"args={args}, kwargs={kwargs}, success={should_succeed}, value={expected_value}, type={expected_type}" ) if should_succeed: if len(args) == 2: init_test = og.TypedValue(*args) self.assertEqual(init_test.value, expected_value, test_info) self.assertEqual(init_test.type, expected_type, test_info) elif len(kwargs) == 2: init_test = og.TypedValue(**kwargs) self.assertEqual(init_test.value, expected_value, test_info) self.assertEqual(init_test.type, expected_type, test_info) set_test = og.TypedValue() set_test.set(*args, **kwargs) self.assertEqual(set_test.value, expected_value, test_info) self.assertEqual(set_test.type, expected_type, test_info) else: with self.assertRaises(og.OmniGraphError): set_test = og.TypedValue() set_test.set(*args, **kwargs) if len(args) == 2 and not kwargs: with self.assertRaises(og.OmniGraphError): init_test = og.TypedValue(*args) elif len(kwargs) == 2 and not args: with self.assertRaises(og.OmniGraphError): init_test = og.TypedValue(**kwargs) # ---------------------------------------------------------------------- async def test_category_setup(self): """Test that the default category list is something sensible""" # Read the exact set of default categories, which should be the minimum available category list category_path = Path(carb.tokens.get_tokens_interface().resolve("${kit}")) / "dev" / "ogn" / "config" with open(category_path / "CategoryConfiguration.json", "r", encoding="utf-8") as cat_fd: default_categories = dict(json.load(cat_fd)["categoryDefinitions"].items()) actual_categories = og.get_node_categories_interface().get_all_categories() # compounds is a special case that gets added at runtime, not in ogn, and is not intended # for use by .ogn compiled nodes. self.assertTrue("Compounds" in actual_categories) for category_name, category_description in actual_categories.items(): if category_name == "Compounds": continue self.assertTrue(category_name in default_categories) self.assertEqual(category_description, default_categories[category_name]) # ---------------------------------------------------------------------- async def test_app_information(self): """Test the functions which return information about the running application.""" # Make sure that we get back a tuple containing two non-negative ints. kit_version = og.get_kit_version() self.assertTrue( isinstance(kit_version, tuple), f"get_kit_version() returned type {type(kit_version)}, not tuple" ) self.assertEqual( len(kit_version), 2, f"get_kit_version() returned tuple with {len(kit_version)} elements, expected 2" ) self.assertTrue( isinstance(kit_version[0], int) and isinstance(kit_version[1], int), f"get_kit_version() returned types ({type(kit_version[0])}, {type(kit_version[1])}, expected (int, int)", ) self.assertTrue( kit_version[0] >= 0 and kit_version[1] >= 0, f"get_kit_version() returned invalid value '{kit_version}'" ) # ---------------------------------------------------------------------- async def test_temp_settings(self): """Test the Settings.temporary context manager.""" setting_names = ("/omnigraph/test/boolval", "/omnigraph/test/intval", "/omnigraph/test/sub/strval") # Initialize the settings. settings = carb.settings.get_settings() initial_values = (True, None, "first") initial_settings = list(zip(setting_names, initial_values)) for name, value in initial_settings: settings.destroy_item(name) if value is not None: settings.set(name, value) # Test the single setting version of the context. with og.Settings.temporary(setting_names[2], "second"): self.assertEqual(settings.get(setting_names[2]), "second", "Single setting, in context.") self.assertEqual(settings.get(setting_names[2]), initial_values[2], "Single setting, after context.") # Test the list version. temp_settings = list(zip(setting_names, (False, 6, "third"))) with og.Settings.temporary(temp_settings): for name, value in temp_settings: self.assertEqual(settings.get(name), value, f"Multiple settings, in context: '{name}'") for name, value in initial_settings: self.assertEqual(settings.get(name), value, f"Multiple settings, after context: '{name}'") # Clean up. for name in setting_names: settings.destroy_item(name)
omniverse-code/kit/exts/omni.graph/omni/graph/core/tests/test_register_ogn_nodes.py
""" Contains support for testing methods in ../scripts/register_ogn_nodes """ import os from pathlib import Path from tempfile import TemporaryDirectory import omni.graph.core.tests as ogts import omni.graph.tools.ogn as ogn from .._impl.register_ogn_nodes import find_import_locations class TestRegisterOgnNodes(ogts.OmniGraphTestCase): """Unit test class""" # -------------------------------------------------------------------------------------------------------------- def test_find_import_locations(self): """Test for the utility function find_import_locations Test data consists of list of (inputs, outputs, failure): inputs (2-tuple): Path to file calling the scripts Python import path for the extension outputs (2-tuple): Expected location of the import path's root directory Expected location of the calling file's directory failure (bool): Should the test raise an exception? """ no_exception = False exception = True drive = "C:" if os.name == "nt" else "/drive" test_data = [ [(f"{drive}/a/b/c/d.py", "b.c"), (f"{drive}/a", f"{drive}/a/b/c"), no_exception], [(f"{drive}/a/b/c/d.py", "b.c.d"), (), exception], ] for (index, test_run) in enumerate(test_data): if test_run[2]: with self.assertRaises(ValueError, msg=f"Expected failure in test {index} - {test_run}"): _ = find_import_locations(test_run[0][0], test_run[0][1]) else: results = find_import_locations(test_run[0][0], test_run[0][1]) self.assertEqual(results[0], test_run[1][0], f"Import root for {test_run}") self.assertEqual(results[1], test_run[1][1], f"Generated directory for {test_run}") # -------------------------------------------------------------------------------------------------------------- def test_generate_automatic_test_imports(self): """Test for the utility function generate_automatic_test_imports Test data consists of list of (test_files, output, should_modify): inputs (List[str]): List of test file names to create output (str): Expected contents of __init__.py should_modify (bool): Should the test have modified __init__.py """ full_test_file = ogn.import_file_contents() test_data = [ [], # Generate an empty init file if no tests are available ["TestOgnTest1.py"], # Add a new test case ["TestOgnTest1.py"], # No new testcases so no changes should be made ["TestOgnTest1.py", "TestOgnTest2.py"], # Add a new test case [], # No testcases leaves the file in place ] # Set up temporary test directory with TemporaryDirectory() as test_directory_fd: test_directory = Path(test_directory_fd) import_filepath = test_directory / "__init__.py" for test_run, test_files in enumerate(test_data): # Create empty test files for file in test_files: with open(test_directory / file, "a", encoding="utf-8"): pass ogn.generate_test_imports(test_directory, write_file=True) # Verify __init__.py contents with open(import_filepath, "r", encoding="utf-8") as import_fd: self.assertCountEqual( [line.rstrip() for line in import_fd.readlines()], full_test_file, f"Generated incorrect test import file for run {test_run}", ) # Delete generated test files to prepare for the next test for file in test_directory.glob("TestOgn*.py"): file.unlink()
omniverse-code/kit/exts/omni.graph/omni/graph/core/tests/omnigraph_test_utils.py
# noqa: PLC0302 """A set of utilities useful for testing OmniGraph. Note that this file should not be imported directly, the API is in omni.graph.core.tests. Available in this module are: - omni.graph.core.tests.DataTypeHelper - a utility class to help iterate over all available data types - omni.graph.core.tests.find_build_directory_above - find the root directory of the build - omni.graph.core.tests.load_test_file - load a test file and wait for it to be ready - omni.graph.core.tests.insert_sublayer - load a test file as a sublayer - omni.graph.core.tests.dump_graph - conditionally call omni.graph.core.tests.print_current_graph - omni.graph.core.tests.print_current_graph - print out the contents of the existing OmniGraphs - omni.graph.core.tests.compare_lists - do an unordered comparison of two lists - omni.graph.core.tests.verify_connections - confirm that a set of expected connections exists - omni.graph.core.tests.verify_node_existence - confirm that a set of expected nodes exists - omni.graph.core.tests.verify_values - confirm that a set of expected attribute values are correct - omni.graph.core.tests.create_scope_node - create a Scope prim - omni.graph.core.tests.create_cube - create a Cube prim - omni.graph.core.tests.create_sphere - create a Sphere prim - omni.graph.core.tests.create_cone - create a Cube prim - omni.graph.core.tests.create_grid_mesh - Create a simple mesh consisting of a grid - omni.graph.core.tests.create_input_and_output_grid_meshes - Create two meshes consisting of grids """ import inspect import os import unittest from abc import ABC, abstractmethod from contextlib import suppress from dataclasses import dataclass from math import isclose, isnan from typing import Any, Dict, List, Optional, Tuple, Union import carb import numpy as np import omni.graph.core as og import omni.graph.tools as ogt import omni.graph.tools.ogn as ogn import omni.kit import omni.usd from pxr import OmniGraphSchemaTools, Sdf, Usd, UsdGeom # If a node type version is unspecified then this is the value it gets. # Keep in sync with kDefaultNodeTypeVersion in include/omni/graph/core/NodeTypeRegistrar.h NODE_TYPE_VERSION_DEFAULT = 1 # ============================================================================================================== class TestContextManager(ABC): """Definition of the context classes that can be temporarily enabled during tests. These can be passed in to the test_case_class() factory method to extend the capabilities it has that are hardcoded in this file by instantiating one of these classes and passing it through the extra_contexts= parameter. The __init__ gets called to instantiate the base class information required by the test case. The setUp() method gets called when the test case's setUp method is called (once for every test). The tearDown() method gets called when the test case's tearDown method is called (once for every test) """ @abstractmethod def __init__(self): """Remember the setting name.""" @abstractmethod async def setUp(self): """Called when the test case setUp() is called""" @abstractmethod async def tearDown(self): """Called when the test case tearDown() is called""" # ============================================================================================================== class SettingContext(TestContextManager): """Helper class with an setUp and tearDown for modifying and restoring a carb setting""" def __init__(self, setting_name: str, temporary_value: any): """Remember the setting name.""" super().__init__() self.__setting_name = setting_name self.__temporary_value = temporary_value self.__original_value = None async def setUp(self): """Save the current value of the setting and set it to the desired temporary value""" settings = carb.settings.get_settings() self.__original_value = settings.get(self.__setting_name) ogt.dbg(f"SETUP Setting: Change {self.__setting_name} from {self.__original_value} to {self.__temporary_value}") settings.set(self.__setting_name, self.__temporary_value) async def tearDown(self): """Restore the original value of the setting""" ogt.dbg( f"TEARDOWN Setting: Restore {self.__setting_name} to {self.__original_value} from {self.__temporary_value}" ) carb.settings.get_settings().set(self.__setting_name, self.__original_value) # ============================================================================================================== class __ClearSceneContext(TestContextManager): """Helper class with an setUp and tearDown for potentially clearing the scene when a test is complete""" def __init__(self): # noqa: PLW0246 """Empty init is required since the parent is abstract""" super().__init__() async def setUp(self): """Nothing to do when setting up the test but the method is required""" ogt.dbg("SETUP ClearScene") async def tearDown(self): """If a clear was requested on tearDown do it now""" ogt.dbg("TEARDOWN ClearScene") await omni.usd.get_context().new_stage_async() # ============================================================================================================== def test_case_class(**kwargs) -> object: """ "Factory to return a base class to use for a test case configured with certain transient settings. The argument list is intentionally generic so that future changes can happen without impacting existing cases. The contexts will be invoked in the order specified below, with the extra_contexts being invoked in the order of the list passed in. Args: no_clear_on_finish (bool): If True then the scene will not be cleared after the test is complete extra_contexts (List[TestContextManager]): List of user-defined context managers to pass in deprecated (Tuple[str, DeprecationLevel]): Used to indicate this instantiation of the class has been deprecated base_class (object): Alternative base class for the test case, defaults to omni.kit.test.AsyncTestCase Return: Class object representing the base class for a test case with the given properties """ # Check to see if an alternative base class was passed in base_class = omni.kit.test.AsyncTestCase with suppress(KeyError): base_class = kwargs["base_class"] # Issue the deprecation message if specified, but continue on deprecation = None with suppress(KeyError): deprecation = kwargs["deprecated"] # Create a container for classes that will manage the temporary setting changes custom_actions = [] with suppress(KeyError): extra_contexts = kwargs["extra_contexts"] if not isinstance(extra_contexts, list): extra_contexts = [extra_contexts] for extra_context in extra_contexts: if not isinstance(extra_context, TestContextManager): raise ValueError(f"extra_contexts {extra_context} is not a TestContextManager") custom_actions.append(extra_context) if "no_clear_on_finish" not in kwargs or not kwargs["no_clear_on_finish"]: custom_actions.append(__ClearSceneContext()) # -------------------------------------------------------------------------------------------------------------- # Construct the customized test case base class object using the temporary setting and base class information class OmniGraphCustomTestCase(base_class): """A custom constructed test case base class that performs the prescribed setUp and tearDown actions. Members: __actions: List of actions to perform on setUp (calls action.setUp()) and tearDown (calls action.tearDown()) """ async def setUp(self): """Set up the test by saving and then setting up all of the action contexts""" super().setUp() if deprecation is not None: ogt.DeprecateMessage.deprecated(deprecation[0], deprecation[1]) # Start with no test failures registered og.set_test_failure(False) # Always start with a clean slate as the settings may conflict with something in the scene await omni.usd.get_context().new_stage_async() await omni.kit.app.get_app().next_update_async() # Perform the custom action entries self.__action_contexts = custom_actions for action in self.__action_contexts: await action.setUp() async def tearDown(self): """Complete the test by tearing down all of the action contexts""" # Perform the custom action tearDowns for action in reversed(self.__action_contexts): await action.tearDown() super().tearDown() # Return the constructed class definition return OmniGraphCustomTestCase OmniGraphTestCase = test_case_class() """Default test case base class used for most OmniGraph tests""" OmniGraphTestCaseNoClear = test_case_class(no_clear_on_finish=True) """Test case class that leaves the stage as it was when the test completed""" # ============================================================================================================== class DataTypeHelper: """ Class providing utility methods to assist with the comprehensive data type tests. Example of how to walk all of the valid input attribute values: for attribute_type in DataTypeHelper.all_attribute_types(): try: input_value = DataTypeHelper.test_input_value(attribute_type) process(input_value) except TypeError: pass # Cannot process this type yet """ _ATTR_TEST_DATA = None # -------------------------------------------------------------------------------------------------------------- @staticmethod def all_test_data() -> Dict[str, List[Any]]: """Returns a dict mapping all available Sdf attribute type names and a pair of sample values of those types""" if DataTypeHelper._ATTR_TEST_DATA is None: # Lazily initialize since this data is not needed until tests request it test_data = {} for type_name in ogn.supported_attribute_type_names(): attribute_type = og.AttributeType.type_from_ogn_type_name(type_name) sdf_type_name = og.AttributeType.sdf_type_name_from_type(attribute_type) if sdf_type_name is not None: test_data[sdf_type_name] = ogn.get_attribute_manager_type(type_name).sample_values() DataTypeHelper._ATTR_TEST_DATA = test_data return DataTypeHelper._ATTR_TEST_DATA # -------------------------------------------------------------------------------------------------------------- @staticmethod def all_attribute_types() -> List[str]: """Return the list of all supported attribute Sdf type names, including array versions""" return list(DataTypeHelper.all_test_data().keys()) # -------------------------------------------------------------------------------------------------------------- @staticmethod def test_input_value(attribute_type_name: str) -> Any: """ :return: Test value on the input side of a node for the given attribute type :raise TypeError: If the attribute type is not yet supported """ try: return DataTypeHelper.all_test_data()[attribute_type_name][0] # noqa: PLE1136 except KeyError as error: raise TypeError(f"Not yet supporting attribute type {attribute_type_name}") from error # -------------------------------------------------------------------------------------------------------------- @staticmethod def test_output_value(attribute_type_name: str) -> any: """ :return: Test value on the output side of a node for the given attribute type :raise TypeError: If the attribute type is not yet supported """ try: return DataTypeHelper.all_test_data()[attribute_type_name][1] # noqa: PLE1136 except KeyError as error: raise TypeError(f"Not yet supporting attribute type {attribute_type_name}") from error # -------------------------------------------------------------------------------------------------------------- @staticmethod def attribute_names(attribute_type_name: str, is_downstream_node: bool): """ :param attribute_type_name: One of the available attribute types, including arrays of them (e.g. int and int[]) :param is_downstream_node: True means it is one of the nodes accepting inputs, not computing anything itself :return: Pair of (INPUT_ATTRIBUTE_NAME, OUTPUT_ATTRIBUTE_NAME) used for the data test nodes """ suffixes = ["from_input", "from_output"] if is_downstream_node else ["original", "computed"] return [f"a_{attribute_type_name.replace('[]','_array')}_{suffixes[i]}" for i in range(2)] # -------------------------------------------------------------------------------------------------------------- def dump_graph(force_dump: bool = False): """Utility to conditionally print the current contents of the scene and graph""" if ogt.OGN_DEBUG or force_dump: print_current_graph() print(omni.usd.get_context().get_stage().GetRootLayer().ExportToString()) # -------------------------------------------------------------------------------------------------------------- def find_build_directory_above(start_at: Optional[str] = None) -> str: """Find the absolute path to the _build/ directory above the current one. If any of the folder up that path contains `dev/ogn` subfolder that is prioritized over `_build/` for shallow package support which don't have _build folder packaged at all. Using this method avoids the problems associated with following symlinks up a tree. :param start_at: Location at which to start looking; if None start at this script's location :raises ValueError: if there is no build directory above this file's directory :return: Path in which the _build/ directory was found """ starting_file = __file__ if start_at is None else start_at build_directory = os.path.abspath(starting_file) (parent_directory, leaf_directory) = os.path.split(build_directory) while leaf_directory != "_build": if os.path.exists(f"{parent_directory}/dev/ogn"): return f"{parent_directory}/dev" build_directory = parent_directory (parent_directory, leaf_directory) = os.path.split(build_directory) if parent_directory == build_directory: raise ValueError(f"No _build/ directory above {starting_file}") return build_directory # -------------------------------------------------------------------------------------------------------------- async def load_test_file(test_file_name: str, use_caller_subdirectory: bool = False) -> Tuple[bool, str]: """ Load the contents of the USD test file onto the stage, synchronously, when called as "await load_test_file(X)". In a testing environment we need to run one test at a time since there is no guarantee that tests can run concurrently, especially when loading files. This method encapsulates the logic necessary to load a test file using the omni.kit.asyncapi method and then wait for it to complete before returning. Args: test_file_name: Name of the test file to load - if an absolute path use it as-is use_caller_subdirectory: If True, look in the data/ subdirectory of the caller's directory for the file otherwise it will look in the data/ subdirectory below this directory Returns: (LOAD_SUCCEEDED[bool], LOAD_ERROR[str]) Raises: ValueError if the test file is not a valid USD file """ if not Usd.Stage.IsSupportedFile(test_file_name): raise ValueError("Only USD files can be loaded with this method") if os.path.isabs(test_file_name): path_to_file = test_file_name elif use_caller_subdirectory: path_to_file = os.path.join(os.path.dirname(inspect.stack()[1][1]), "data", test_file_name) else: path_to_file = os.path.join(os.path.dirname(__file__), "data", test_file_name) # Unicode error might happen if the file is a .usd rather than .usda and it was already pulled so that case is okay with suppress(UnicodeDecodeError): with open(path_to_file, "r", encoding="utf-8") as test_fd: first_line = test_fd.readline() if first_line.startswith("version"): raise ValueError(f"Do a 'git lfs pull' to update the contents of {path_to_file}") usd_context = omni.usd.get_context() usd_context.disable_save_to_recent_files() (result, error) = await usd_context.open_stage_async(path_to_file) usd_context.enable_save_to_recent_files() dump_graph() await omni.kit.app.get_app().next_update_async() return (result, str(error)) # -------------------------------------------------------------------------------------------------------------- async def insert_sublayer(test_file_name: str, use_caller_subdirectory: bool = False) -> bool: """ Inserts a sublayer from the given usd file into the current stage Args: test_file_name: Name of the test file to load - if an absolute path use it as-is use_caller_subdirectory: If True, look in the data/ subdirectory of the caller's directory for the file otherwise it will look in the data/ subdirectory below this directory Returns: True if the layer was loaded successfully, false otherwise """ if os.path.isabs(test_file_name): path_to_file = test_file_name elif use_caller_subdirectory: path_to_file = os.path.join(os.path.dirname(inspect.stack()[1][1]), "data", test_file_name) else: path_to_file = os.path.join(os.path.dirname(__file__), "data", test_file_name) root_layer = omni.usd.get_context().get_stage().GetRootLayer() sublayer_position = len(root_layer.subLayerPaths) new_layer = Sdf.Layer.FindOrOpen(path_to_file) if new_layer: relative_path = omni.client.make_relative_url(root_layer.identifier, new_layer.identifier).replace("\\", "/") root_layer.subLayerPaths.insert(sublayer_position, relative_path) else: return False await omni.kit.app.get_app().next_update_async() return True # -------------------------------------------------------------------------------------------------------------- def print_current_graph(show_attributes: bool = True, show_connections: bool = True, show_evaluation: bool = True): """ Finds the current compute graph and prints out the nodes and attributes in it. Args: show_attributes: If True then include the attributes on the nodes show_connections: If True then include the connections between the nodes show_evaluation: If True then include the evaluation info for the graph """ flags = [] if show_attributes: flags.append("attributes") if show_connections: flags.append("connections") if show_evaluation: flags.append("evaluation") print(og.OmniGraphInspector().as_json(og.get_all_graphs()[0], flags=flags), flush=True) # -------------------------------------------------------------------------------------------------------------- def compare_lists(expected_values: list, actual_values: list, comparing_what: str): """Compare the values in two lists, returning a relevant message if they are different, None if not""" extra_values = set(actual_values) - set(expected_values) missing_values = set(expected_values) - set(actual_values) if extra_values: return f"Unexpected {comparing_what} found - {extra_values}" if missing_values: return f"Expected {comparing_what} missing - {missing_values}" return None # -------------------------------------------------------------------------------------------------------------- def verify_connections(connections_expected: list): """ Confirm that the list of connections passed in exists in the compute graph, and are the only connections present. The argument is a list of pairs (SRC, DST) corresponding to the connection SRC -> DST """ graph = og.get_all_graphs()[0] if not graph.is_valid(): return "Compute graph has no valid contexts" ogt.dbg(f"Expecting {connections_expected}") # Collect connection information in both directions to verify they are the same upstream_connections_found = [] downstream_connections_found = [] comparison_errors = [] nodes = graph.get_nodes() # Ignore the default nodes since they may change and this test doesn't care nodes_of_interest = [ node for node in nodes if node.get_prim_path().find("/default") != 0 and node.get_prim_path().find("/Omniverse") < 0 and node.get_prim_path() != "/World" and node.get_prim_path() != "/" ] for node in nodes_of_interest: attributes_on_node = node.get_attributes() for attribute in attributes_on_node: this_attr = node.get_attribute(attribute.get_name()) this_attr_name = f"{node.get_prim_path()}.{attribute.get_name()}" upstream_connections = this_attr.get_upstream_connections() if len(upstream_connections) > 0: for connection in upstream_connections: upstream_attr_name = f"{connection.get_node().get_prim_path()}.{connection.get_name()}" upstream_connections_found.append((upstream_attr_name, this_attr_name)) downstream_connections = this_attr.get_downstream_connections() if len(downstream_connections) > 0: for connection in downstream_connections: downstream_attr_name = f"{connection.get_node().get_prim_path()}.{connection.get_name()}" downstream_connections_found.append((this_attr_name, downstream_attr_name)) ogt.dbg(f"Upstream = {upstream_connections_found}") ogt.dbg(f"Downstream = {downstream_connections_found}") comparison_error = compare_lists( upstream_connections_found, downstream_connections_found, "upstream/downstream pair" ) if comparison_error is not None: comparison_errors.append(comparison_error) comparison_error = compare_lists(connections_expected, downstream_connections_found, "connection") if comparison_error is not None: comparison_errors.append(comparison_error) return comparison_errors # -------------------------------------------------------------------------------------------------------------- def verify_node_existence(primitives_expected: list): """ Confirm that the list of nodes passed in exists in the compute graph. Args: primitives_expected: List of node names expected in the graph. Returns: A list of errors found, empty list if none """ graph = og.get_all_graphs()[0] if not graph.is_valid(): return ["Compute graph has no valid contexts"] comparison_errors = [] nodes = graph.get_nodes() # Get the current nodes in the world, ignoring the defaults since they may change and this test doesn't care primitives_found = [node.get_prim_path() for node in nodes if node.get_prim_path() in primitives_expected] comparison_error = compare_lists(primitives_expected, primitives_found, "compute graph primitives") if comparison_error is not None: comparison_errors.append(comparison_error) return comparison_errors # -------------------------------------------------------------------------------------------------------------- def verify_values(expected_value, actual_value, error_message: str): """Generic assert comparison which uses introspection to choose the correct method to compare the data values Args: expected_value: Value that was expected to be seen actual_value: Actual value that was seen error_message: Message describing the error if they do not match Raises: ValueError: With error message if the values do not match """ ogt.dbg(f"Comparing {actual_value} with expected {expected_value} - error = '{error_message}'") def to_np_array(from_value: Union[List, Tuple, np.ndarray]) -> np.ndarray: """Returns the list of values as a flattened numpy array""" # TODO: The only reason this is flattened at the moment is because Python matrix values are incorrectly # extracted as a flat array. They should maintain their data shape. return np.array(from_value).flatten() def is_close(first_value: float, second_value: float): """Raise a ValueError iff the single float values are not equal or floating-point close""" # Handle the NaN values first, which don't equal each other but should compare to equal for testing purposes if isnan(first_value) and isnan(second_value): return if isnan(first_value) or isnan(second_value): raise ValueError("NaN is only equal to other NaN values") # Default tolerance is 1e-9, which is a little tight for most simple uses if not isclose(first_value, second_value, rel_tol=1e-9): if not isclose(first_value, second_value, rel_tol=1e-5): raise ValueError ogt.dbg("The tolerance had to be loosened to make this pass") try: if isinstance(expected_value, (list, tuple, np.ndarray)): # Empty arrays are okay but only if both are empty. Using len() to handle both lists and numpy arrays if not len(expected_value) or not len(actual_value): # noqa: PLC1802 if not len(expected_value) and not len(actual_value): # noqa: PLC1802 return raise ValueError # Lists of strings must be compared elementwise, numeric arrays can use numpy if isinstance(expected_value[0], str): if set(actual_value) != set(expected_value): raise ValueError else: expected_array = to_np_array(expected_value) actual_array = to_np_array(actual_value) # If there are any NaN values then the array has to be checked element-by-element if any(np.isnan(expected_array)) and any(np.isnan(actual_array)): for expected, actual in zip(expected_array, actual_array): is_close(expected, actual) elif not np.allclose(expected_array, actual_array): raise ValueError elif isinstance(actual_value, (float, np.float32, np.float64, np.half)): is_close(actual_value, expected_value) else: if actual_value != expected_value: raise ValueError except ValueError as error: raise ValueError( f"{error_message}: Expected '{expected_value}' ({type(expected_value)}), " f"saw '{actual_value}' ({type(actual_value)})" ) from error # -------------------------------------------------------------------------------------------------------------- def create_scope_node(prim_name: str, attribute_data: Optional[Dict[str, Any]] = None) -> str: """Create a Scope prim at the given path, populated with the attribute data. This prim is a good source for a bundle attribute connection for testing. Args: prim_name: Name to give the prim within the current stage attribute_data: Dictionary of attribute names and the value the attribute should have in the prim The key is the name of the attribute in the prim. The value is the attribute information as a tuple of (TYPE, ATTRIBUTE_VALUE) TYPE: OGN name of the base data type ATTRIBUTE_VALUE: Data stored in the attribute within the prim Returns: Full path to the prim within the current stage (usually the path passed in) """ if attribute_data is None: attribute_data = {} stage = omni.usd.get_context().get_stage() prim_path = omni.usd.get_stage_next_free_path(stage, "/" + prim_name, True) prim = stage.DefinePrim(prim_path, "Scope") prim.CreateAttribute("node:type", Sdf.ValueTypeNames.Token).Set("Scope") return prim # -------------------------------------------------------------------------------------------------------------- def create_cube(stage, prim_name: str, displayColor: tuple) -> Usd.Prim: # noqa: N803 path = omni.usd.get_stage_next_free_path(stage, "/" + prim_name, True) prim = stage.DefinePrim(path, "Cube") prim.CreateAttribute("primvars:displayColor", Sdf.ValueTypeNames.Color3fArray).Set([displayColor]) prim.CreateAttribute("size", Sdf.ValueTypeNames.Double).Set(1.0) return prim # -------------------------------------------------------------------------------------------------------------- def create_sphere(stage, prim_name: str, displayColor: tuple) -> Usd.Prim: # noqa: N803 path = omni.usd.get_stage_next_free_path(stage, "/" + prim_name, True) prim = stage.DefinePrim(path, "Sphere") prim.CreateAttribute("primvars:displayColor", Sdf.ValueTypeNames.Color3fArray).Set([displayColor]) prim.CreateAttribute("radius", Sdf.ValueTypeNames.Double).Set(1.0) return prim # -------------------------------------------------------------------------------------------------------------- def create_cone(stage, prim_name: str, displayColor: tuple) -> Usd.Prim: # noqa: N803 path = omni.usd.get_stage_next_free_path(stage, "/" + prim_name, True) prim = stage.DefinePrim(path, "Cone") prim.CreateAttribute("primvars:displayColor", Sdf.ValueTypeNames.Color3fArray).Set([displayColor]) prim.CreateAttribute("radius", Sdf.ValueTypeNames.Double).Set(1.0) prim.CreateAttribute("height", Sdf.ValueTypeNames.Double).Set(1.0) return prim # -------------------------------------------------------------------------------------------------------------- def create_grid_mesh(stage, path, counts=(32, 32), domain=(620, 620, 20), display_color=(1, 1, 1)): mesh = UsdGeom.Mesh.Define(stage, path) mesh.CreateDoubleSidedAttr().Set(True) num_vertices = counts[0] * counts[1] num_triangles = (counts[0] - 1) * (counts[1] - 1) mesh.CreateFaceVertexCountsAttr().Set([3] * num_triangles * 2) face_vertex_indices = [0] * num_triangles * 6 for i in range(counts[0] - 1): for j in range(counts[1] - 1): a = i * counts[0] + j b = a + 1 c = a + counts[0] d = c + 1 k = (i * (counts[0] - 1) + j) * 6 face_vertex_indices[k : k + 6] = [a, b, d, a, d, c] mesh.CreateFaceVertexIndicesAttr().Set(face_vertex_indices) points = [(0, 0, 0)] * num_vertices for i in range(counts[0]): for j in range(counts[1]): points[i * counts[0] + j] = (i * domain[0] / (counts[0] - 1), j * domain[1] / (counts[1] - 1), domain[2]) mesh.CreatePointsAttr().Set(points) mesh.CreateDisplayColorPrimvar().Set([display_color]) return mesh # -------------------------------------------------------------------------------------------------------------- def create_input_and_output_grid_meshes(stage): input_grid = create_grid_mesh(stage, "/defaultPrim/inputGrid", display_color=(0.2784314, 0.64705884, 1)) output_grid = create_grid_mesh(stage, "/defaultPrim/outputGrid", display_color=(0.784314, 0.64705884, 0.1)) return (input_grid, output_grid) # ============================================================================================================== # Below here is support for generated tests # @dataclass class _TestGraphAndNode: """Helper class to pass graph and node around in test utility methods below""" graph: og.Graph = None node: og.Node = None # -------------------------------------------------------------------------------------------------------------- async def _test_clear_scene(tc: unittest.TestCase, test_run: Dict[str, Any]): """Clear the scene if test run requires it Args: tc: Unit test case executing this method. Used to raise errors test_run: Dictionary of consist of four sub-lists and a dictionary: - values for input attributes, set before the test starts - values for output attributes, checked after the test finishes - initial values for state attributes, set before the test starts - final values for state attributes, checked after the test finishes - setup to be used for populating the scene via controller For complete implementation see generate_user_test_data. """ setup = test_run.get("setup", None) if setup is None or setup: await omni.usd.get_context().new_stage_async() # -------------------------------------------------------------------------------------------------------------- async def _test_setup_scene( tc: unittest.TestCase, controller: og.Controller, test_graph_name: str, test_node_name: str, test_node_type: str, test_run: Dict[str, Any], last_test_info: _TestGraphAndNode, instance_count=0, ) -> _TestGraphAndNode: """Setup the scene based on given test run dictionary Args: tc: Unit test case executing this method. Used to raise errors controller: Controller object to use when constructing the scene (e.g. may have undo support disabled) test_graph_name: Graph name to use when constructing the scene test_node_name: Node name to use when constructing the scene without "setup" explicitly provided in test_run test_node_type: Node type to use when constructing the scene without "setup" explicitly provided in test_run test_run: Dictionary of consist of four sub-lists and a dictionary: - values for input attributes, set before the test starts - values for output attributes, checked after the test finishes - initial values for state attributes, set before the test starts - final values for state attributes, checked after the test finishes - setup to be used for populating the scene via controller For complete implementation see generate_user_test_data. last_test_info: When executing multiple tests cases for the same node, this represents graph and node used in previous run instance_count: number of instances to create assotiated to this graph, in order to test vectorized compute Returns: Graph and node to use in current execution of the test """ test_info = last_test_info setup = test_run.get("setup", None) if setup: (test_info.graph, test_nodes, _, _) = controller.edit(test_graph_name, setup) tc.assertTrue(test_nodes) test_info.node = test_nodes[0] elif setup is None: test_info.graph = controller.create_graph(test_graph_name) test_info.node = controller.create_node((test_node_name, test_info.graph), test_node_type) else: tc.assertTrue( test_info.graph is not None and test_info.graph.is_valid(), "Test is misconfigured - empty setup cannot be in the first test", ) tc.assertTrue(test_info.graph is not None and test_info.graph.is_valid(), "Test graph invalid") tc.assertTrue(test_info.node is not None and test_info.node.is_valid(), "Test node invalid") test_info.graph.set_auto_instancing_allowed(False) await controller.evaluate(test_info.graph) inputs = test_run.get("inputs", []) state_set = test_run.get("state_set", []) values_to_set = inputs + state_set if values_to_set: for attribute_name, attribute_value, _ in values_to_set: controller.set(attribute=(attribute_name, test_info.node), value=attribute_value) # create some instance prims, and apply the graph on it if instance_count != 0: stage = omni.usd.get_context().get_stage() for i in range(instance_count): prim_name = f"/World/Test_Instance_Prim_{i}" stage.DefinePrim(prim_name) OmniGraphSchemaTools.applyOmniGraphAPI(stage, prim_name, test_graph_name) return test_info # -------------------------------------------------------------------------------------------------------------- def _test_verify_scene( tc: unittest.TestCase, controller: og.Controller, test_run: Dict[str, Any], test_info: _TestGraphAndNode, error_msg: str, instance_count=0, ): """Verify the scene state based on given test run dictionary Args: tc: Unit test case executing this method. Used to raise errors controller: Controller object to use when constructing the scene (e.g. may have undo support disabled) test_run: Dictionary of consist of four sub-lists and a dictionary: - values for input attributes, set before the test starts - values for output attributes, checked after the test finishes - initial values for state attributes, set before the test starts - final values for state attributes, checked after the test finishes - setup to be used for populating the scene via controller For complete implementation see generate_user_test_data. error_msg: Customized error message to use as a prefix for all unit test errors detected within this method instance_count: number of instances assotiated to this graph that needs to be verified """ outputs = test_run.get("outputs", []) state_get = test_run.get("state_get", []) for attribute_name, expected_value, _ in outputs + state_get: test_attribute = controller.attribute(attribute_name, test_info.node) expected_type = None if isinstance(expected_value, dict): expected_type = expected_value["type"] expected_value = expected_value["value"] if instance_count != 0: for i in range(instance_count): actual_output = controller.get(attribute=test_attribute, instance=i) verify_values( expected_value, actual_output, f"{error_msg}: {attribute_name} attribute value error on instance {i}", ) else: actual_output = controller.get(attribute=test_attribute) verify_values(expected_value, actual_output, f"{error_msg}: {attribute_name} attribute value error") if expected_type: tp = og.AttributeType.type_from_ogn_type_name(expected_type) actual_type = test_attribute.get_resolved_type() if tp != actual_type: raise ValueError( f"{error_msg} - {attribute_name}: Expected {expected_type}, saw {actual_type.get_ogn_type_name()}" ) # ============================================================================================================== # _____ ______ _____ _____ ______ _____ _______ ______ _____ # | __ \ | ____|| __ \ | __ \ | ____|/ ____| /\ |__ __|| ____|| __ \ # | | | || |__ | |__) || |__) || |__ | | / \ | | | |__ | | | | # | | | || __| | ___/ | _ / | __| | | / /\ \ | | | __| | | | | # | |__| || |____ | | | | \ \ | |____| |____ / ____ \ | | | |____ | |__| | # |_____/ |______||_| |_| \_\|______|\_____|/_/ \_\|_| |______||_____/ #
omniverse-code/kit/exts/omni.graph/omni/graph/core/tests/test_internal_registration.py
# pylint: disable=too-many-lines """Tests the correct generation of node type definitions into the cache""" from __future__ import annotations import sys from contextlib import ExitStack from pathlib import Path from tempfile import TemporaryDirectory import omni.graph.core as og import omni.graph.core.tests as ogts import omni.graph.tools._internal as ogi import omni.kit.test from omni.graph.core._impl._registration.extension_management import extension_management_factory from omni.graph.tools.tests.internal_utils import TemporaryPathAddition from ._internal_utils import _TestExtensionManager # Helper constants shared by many tests _CURRENT_VERSIONS = ogi.GenerationVersions(ogi.Compatibility.FullyCompatible) _EXT_INDEX = 0 # ============================================================================================================== class ModuleContexts: def __init__(self, stack: ExitStack): """Set up a stack of contexts to use for tests running in individual temporary directory""" global _EXT_INDEX _EXT_INDEX += 1 self.ext_name = f"omni.test.internal.registration{_EXT_INDEX}" # Default extension version is 0.1.0 so create an ID with that self.ext_id = f"{self.ext_name}-0.1.0" # Put all temporary files in a temporary directory for easy disposal self.test_directory = Path(stack.enter_context(TemporaryDirectory())) # pylint: disable=consider-using-with self.python_root = Path(self.test_directory) / "exts" self.module_name = self.ext_name self.module_path = self.python_root / self.ext_name / self.ext_name.replace(".", "/") # Redirect the usual node cache to the temporary directory self.cache_root = stack.enter_context(ogi.TemporaryCacheLocation(self.test_directory / "cache")) # Add the import path of the new extension to the system path self.path_addition = stack.enter_context(TemporaryPathAddition(self.python_root / self.ext_name)) # Uncomment this to dump debugging information while the tests are running # self.log = stack.enter_context(ogi.TemporaryLogLocation("stdout")) # ============================================================================================================== def _expected_cache_contents( cache_root: Path, node_type_name: str, exclusions: list[ogi.FileType] = None ) -> list[Path]: """Returns a list of the files that should be in the generated cache at the given root for the given node type""" file_list = [cache_root / "__init__.py", cache_root / f"{node_type_name}Database.py"] if ogi.FileType.DOCS not in (exclusions or []): file_list.append(cache_root / "docs" / f"{node_type_name}.rst") if ogi.FileType.TEST not in (exclusions or []): file_list.append(cache_root / "tests" / "__init__.py") file_list.append(cache_root / "tests" / f"Test{node_type_name}.py") if ogi.FileType.USD not in (exclusions or []): file_list.append(cache_root / "tests" / "usd" / f"{node_type_name}Template.usda") return file_list # ============================================================================================================== def _expected_1_18_module_files( module_root: Path, node_type_name: str, exclusions: list[ogi.FileType] = None ) -> list[Path]: """Returns a list of the files that should be in a standard V1.18 generated module directory for one node type""" file_list = [ module_root / "__init__.py", module_root / "ogn" / "nodes" / f"{node_type_name}.ogn", module_root / "ogn" / "nodes" / f"{node_type_name}.py", module_root / "ogn" / f"{node_type_name}Database.py", ] if ogi.FileType.TEST not in (exclusions or []): file_list.append(module_root / "ogn" / "tests" / "__init__.py") file_list.append(module_root / "ogn" / "tests" / f"Test{node_type_name}.py") if ogi.FileType.USD not in (exclusions or []): file_list.append(module_root / "ogn" / "tests" / "usd" / f"{node_type_name}Template.usda") return file_list # ============================================================================================================== def _expected_standalone_module_files(module_root: Path, node_type_name: str) -> list[Path]: """Returns a list of the files that should be in a non-generated module directory for one node type""" return [ module_root / "__init__.py", module_root / "nodes" / f"{node_type_name}.ogn", module_root / "nodes" / f"{node_type_name}.py", ] # ============================================================================================================== class TestInternalRegistration(ogts.OmniGraphTestCase): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.maxDiff = None # Diffs of file path lists can be large so let the full details be seen # -------------------------------------------------------------------------------------------------------------- async def _test_extension_modules(self, import_ogn: bool, import_ogn_tests: bool, generate_tests: bool): """Metatest that the utility to create a test extension creates the proper imports for a single configuration Args: import_ogn: Add the ogn submodule to the extension.toml python module list import_ogn: Add the ogn.tests submodule to the extension.toml python module list generate_tests: Generate/initialize test files for the node type generated code """ with ExitStack() as stack: ctx = ModuleContexts(stack) self.assertTrue(str(ctx.python_root / ctx.ext_name) in sys.path) ext_contents = _TestExtensionManager( ctx.python_root, ctx.ext_name, _CURRENT_VERSIONS, import_ogn=import_ogn, import_ogn_tests=import_ogn_tests, ) exclusions = [] if generate_tests else [ogi.FileType.TEST] exclusions += [ogi.FileType.USD, ogi.FileType.DOCS] ext_contents.add_v1_18_node("OgnTestNode", exclusions) expected_files = [ ctx.python_root / ctx.ext_name / "config" / "extension.toml", ] expected_files += _expected_1_18_module_files(ctx.module_path, "OgnTestNode", exclusions) actual_files = [] for root, _dirs, files in ogi.walk_with_excludes(ctx.test_directory, ["__pycache__"]): for file in files: actual_files.append(Path(root) / file) self.assertCountEqual(expected_files, actual_files, "Created extension contents") ext_ogn_mgr = extension_management_factory(ctx.ext_id, ctx.ext_name, ctx.python_root / ctx.ext_name) self.assertIsNotNone(ext_ogn_mgr) ext_ogn_mgr.scan_for_nodes() ext_ogn_mgr.ensure_files_up_to_date() (ogn_module, ogn_test_module) = ext_ogn_mgr.ensure_required_modules_exist() self.assertIsNotNone(ogn_module) if generate_tests: self.assertIsNotNone(ogn_test_module) else: self.assertIsNone(ogn_test_module) # -------------------------------------------------------------------------------------------------------------- async def test_extension_modules(self): """Metatest that the utility to create a test extension creates the proper modules for all configurations""" for test_configuration in [0b000, 0b100, 0b110, 0b001, 0b101, 0b111]: import_ogn = test_configuration & 0b100 != 0 import_ogn_tests = test_configuration & 0b010 != 0 generate_tests = test_configuration & 0b001 != 0 with self.subTest(import_ogn=import_ogn, import_ogn_tests=import_ogn_tests, generate_tests=generate_tests): await self._test_extension_modules( import_ogn=import_ogn, import_ogn_tests=import_ogn_tests, generate_tests=generate_tests ) # -------------------------------------------------------------------------------------------------------------- async def _test_extension_imports(self, import_ogn: bool, import_ogn_tests: bool, generate_tests: bool): """Metatest that the utility to create a test extension creates the proper imports for a single configuration Args: import_ogn: Add the ogn submodule to the extension.toml python module list import_ogn: Add the ogn.tests submodule to the extension.toml python module list generate_tests: Generate/initialize test files for the node type generated code """ test_config = f"import_ogn={import_ogn}, import_ogn_tests={import_ogn_tests}" with ExitStack() as stack: ctx = ModuleContexts(stack) self.assertTrue(str(ctx.python_root / ctx.ext_name) in sys.path) ext_contents = _TestExtensionManager( ctx.python_root, ctx.ext_name, _CURRENT_VERSIONS, import_ogn=import_ogn, import_ogn_tests=import_ogn_tests, ) exclusions = [] if generate_tests else [ogi.FileType.TEST] exclusions += [ogi.FileType.USD, ogi.FileType.DOCS] ext_contents.add_v1_18_node("OgnTestNode", exclusions) expected_files = [ ctx.python_root / ctx.ext_name / "config" / "extension.toml", ] expected_files += _expected_1_18_module_files(ctx.module_path, "OgnTestNode", exclusions) actual_files = [] for root, _dirs, files in ogi.walk_with_excludes(ctx.test_directory, ["__pycache__"]): for file in files: actual_files.append(Path(root) / file) self.assertCountEqual(expected_files, actual_files, f"Created extension contents using {test_config}") ext_ogn_mgr = extension_management_factory(ctx.ext_id, ctx.ext_name, ctx.python_root / ctx.ext_name) self.assertIsNotNone(ext_ogn_mgr, test_config) ext_ogn_mgr.scan_for_nodes() ext_ogn_mgr.ensure_files_up_to_date() # Ensure that the OGN submodules could be found in the newly created extension (ogn_module, ogn_test_module) = ext_ogn_mgr.ensure_required_modules_exist() self.assertIsNotNone(ogn_module, test_config) self.assertTrue(not generate_tests or ogn_test_module is not None, test_config) (ogn_module, ogn_test_module) = ext_ogn_mgr.do_python_imports() # Do it twice because the second time it should just pick it up from sys.modules (ogn_module_2, ogn_test_module_2) = ext_ogn_mgr.do_python_imports() self.assertEqual(ogn_module, ogn_module_2, test_config) self.assertEqual(ogn_test_module, ogn_test_module_2, test_config) # Check the contents of the ogn submodule to make sure the node class and database were imported self.assertIsNotNone(ogn_module, test_config) self.assertTrue(hasattr(ogn_module, ext_ogn_mgr.NODE_STORAGE_OBJECT), test_config) self.assertTrue(getattr(ogn_module, ext_ogn_mgr.NODE_STORAGE_OBJECT), test_config) self.assertTrue(hasattr(ogn_module, "OgnTestNodeDatabase"), test_config) ogn_module_file_path = ogi.get_module_path(ogn_module) self.assertIsNotNone(ogn_module_file_path, test_config) self.assertTrue(ctx.module_path in ogn_module_file_path.parents, test_config) # If tests were requested then confirm the generated tests was imported into the ogn.tests submodule if generate_tests: self.assertIsNotNone(ogn_test_module, test_config) self.assertTrue(hasattr(ogn_test_module, "TestOgnTestNode"), test_config) ogn_test_module_file_path = ogi.get_module_path(ogn_test_module) self.assertIsNotNone(ogn_test_module_file_path, test_config) self.assertTrue(ctx.module_path in ogn_test_module_file_path.parents, test_config) else: self.assertIsNone(ogn_test_module, test_config) # -------------------------------------------------------------------------------------------------------------- async def test_extension_imports(self): """Metatest that the utility to create a test extension imports the proper modules for all configurations""" for test_configuration in [0b000, 0b100, 0b110, 0b001, 0b101, 0b111]: import_ogn = test_configuration & 0b100 != 0 import_ogn_tests = test_configuration & 0b010 != 0 generate_tests = test_configuration & 0b001 != 0 with self.subTest(import_ogn=import_ogn, import_ogn_tests=import_ogn_tests, generate_tests=generate_tests): await self._test_extension_imports( import_ogn=import_ogn, import_ogn_tests=import_ogn_tests, generate_tests=generate_tests ) # -------------------------------------------------------------------------------------------------------------- async def _test_extension_cached_imports( self, import_ogn: bool, import_ogn_tests: bool, generate_tests: bool, use_prebuilt_cache: bool, ): """Metatest that the utility to create a test extension creates the proper imports for a single configuration Args: import_ogn: Add the ogn submodule to the extension.toml python module list import_ogn: Add the ogn.tests submodule to the extension.toml python module list generate_tests: Generate/initialize test files for the node type generated code use_prebuilt_cache: If True then prebuild the up-to-date cache files, otherwise generate old ones to ignore """ # ogi.set_registration_logging("stdout") # Uncomment for test debugging information test_config = ( f"import_ogn={import_ogn}, import_ogn_tests={import_ogn_tests}, " f"tests={generate_tests}, prebuilt={use_prebuilt_cache}" ) with ExitStack() as stack: ctx = ModuleContexts(stack) self.assertTrue(str(ctx.python_root / ctx.ext_name) in sys.path, test_config) # Create an old cache to make sure it gets ignored as well exclusions = [] if generate_tests else [ogi.FileType.TEST] exclusions += [ogi.FileType.USD, ogi.FileType.DOCS] ext_contents_incompatible = _TestExtensionManager( ctx.python_root, ctx.ext_name, ogi.GenerationVersions(ogi.Compatibility.Incompatible), import_ogn=import_ogn, import_ogn_tests=import_ogn_tests, ) ext_contents_incompatible.add_v1_18_node("OgnTestNode", exclusions) compatibility = ogi.Compatibility.FullyCompatible if use_prebuilt_cache else ogi.Compatibility.Incompatible cache_versions = ogi.GenerationVersions(compatibility) current_cache_directory = ogi.full_cache_path(cache_versions, ctx.ext_id, ctx.module_name) ext_contents = _TestExtensionManager( ctx.python_root, ctx.ext_name, cache_versions, import_ogn=import_ogn, import_ogn_tests=import_ogn_tests, ) ext_contents.add_cache_for_node("OgnTestNode", exclusions) cached_files = _expected_cache_contents(current_cache_directory, "OgnTestNode", exclusions) # If using the obsolete cache then add in the ones that will be built when the generator runs if not use_prebuilt_cache: current_cache_directory = ogi.full_cache_path(_CURRENT_VERSIONS, ctx.ext_id, ctx.module_name) cached_files += _expected_cache_contents(current_cache_directory, "OgnTestNode", exclusions) expected_files = [ ctx.python_root / ctx.ext_name / "config" / "extension.toml", # Not in the cache ] expected_files += _expected_1_18_module_files(ctx.module_path, "OgnTestNode", exclusions) expected_files += cached_files ext_ogn_mgr = extension_management_factory(ctx.ext_id, ctx.ext_name, ctx.python_root / ctx.ext_name) self.assertIsNotNone(ext_ogn_mgr, test_config) ext_ogn_mgr.scan_for_nodes() ext_ogn_mgr.ensure_files_up_to_date() actual_files = [] for root, _dirs, files in ogi.walk_with_excludes(ctx.test_directory, ["__pycache__"]): for file in files: actual_files.append(Path(root) / file) self.assertCountEqual(expected_files, actual_files, f"Created extension contents with {test_config}") # Ensure that the OGN submodules could be found in the newly created extension (ogn_module, ogn_test_module) = ext_ogn_mgr.do_python_imports() # Do it twice because the second time it should just pick it up from sys.modules (ogn_module_2, ogn_test_module_2) = ext_ogn_mgr.do_python_imports() self.assertEqual(ogn_module, ogn_module_2, test_config) self.assertEqual(ogn_test_module, ogn_test_module_2, test_config) # Check the contents of the ogn submodule to make sure the node class and database were imported self.assertIsNotNone(ogn_module, test_config) self.assertTrue(hasattr(ogn_module, ext_ogn_mgr.NODE_STORAGE_OBJECT), test_config) self.assertTrue(getattr(ogn_module, ext_ogn_mgr.NODE_STORAGE_OBJECT), test_config) self.assertTrue(hasattr(ogn_module, "OgnTestNodeDatabase"), test_config) ogn_module_file_path = ogi.get_module_path(ogn_module.OgnTestNodeDatabase) self.assertIsNotNone(ogn_module_file_path, test_config) self.assertTrue( current_cache_directory in ogn_module_file_path.parents, f"Cache {current_cache_directory} not in {ogn_module_file_path} - {test_config}", ) # If tests were requested then confirm the generated tests was imported into the ogn.tests submodule if generate_tests: self.assertIsNotNone(ogn_test_module, test_config) self.assertTrue(hasattr(ogn_test_module, "TestOgnTestNode"), test_config) ogn_test_module_file_path = ogi.get_module_path(ogn_test_module) self.assertIsNotNone(ogn_test_module_file_path, test_config) self.assertTrue( current_cache_directory in ogn_module_file_path.parents, f"Cache {current_cache_directory} not in {ogn_module_file_path} - {test_config}", ) else: self.assertIsNone(ogn_test_module, test_config) # -------------------------------------------------------------------------------------------------------------- async def test_extension_cached_imports_ffff(self): """Metatest that the utility to create a test extension that requires building a cache imports the proper modules for all configurations from that cache. These all have to run as separate tests in order to avoid stomping on each other's import spaces and cache directories. """ await self._test_extension_cached_imports(False, False, False, False) async def test_extension_cached_imports_tfff(self): await self._test_extension_cached_imports(True, False, False, False) async def test_extension_cached_imports_ttff(self): await self._test_extension_cached_imports(True, True, False, False) async def test_extension_cached_imports_fftf(self): await self._test_extension_cached_imports(False, False, True, False) async def test_extension_cached_imports_tftf(self): await self._test_extension_cached_imports(True, False, True, False) async def test_extension_cached_imports_tttf(self): await self._test_extension_cached_imports(True, True, True, False) async def test_extension_cached_imports_ffft(self): await self._test_extension_cached_imports(False, False, False, True) async def test_extension_cached_imports_tfft(self): await self._test_extension_cached_imports(True, False, False, True) async def test_extension_cached_imports_ttft(self): await self._test_extension_cached_imports(True, True, False, True) async def test_extension_cached_imports_fftt(self): await self._test_extension_cached_imports(False, False, True, True) async def test_extension_cached_imports_tftt(self): await self._test_extension_cached_imports(True, False, True, True) async def test_extension_cached_imports_tttt(self): await self._test_extension_cached_imports(True, True, True, True) # -------------------------------------------------------------------------------------------------------------- def __confirm_module_contents(self, expected_modules_and_contents: list[tuple[str, str]]): """Asserts if the module does not contain at least all of the expected symbols. Args: expected_modules_and_contents: List of (MODULE_NAME, EXPECTED_SYMBOLS) to verify """ for expected_name, symbols in expected_modules_and_contents: self.assertTrue(expected_name in sys.modules, f"Looking for module {expected_name}") actual_contents = dir(sys.modules[expected_name]) for expected_symbol in symbols: self.assertTrue( expected_symbol in actual_contents, f"Looking for symbol {expected_symbol} in {expected_name}" ) # -------------------------------------------------------------------------------------------------------------- async def test_raw_extension_creation(self): """Metatest that the utility to create a test extension using the generated files and successfully load a file of the generated type into a scene. """ with ExitStack() as stack: ctx = ModuleContexts(stack) self.assertTrue(str(ctx.python_root / ctx.ext_name) in sys.path) ext_contents = _TestExtensionManager( ctx.python_root, ctx.ext_name, _CURRENT_VERSIONS, import_ogn=False, import_ogn_tests=False, ) ext_contents.add_v1_18_node("OgnTestNode") ext_ogn_mgr = extension_management_factory(ctx.ext_id, ctx.ext_name, ctx.python_root / ctx.ext_name) self.assertIsNotNone(ext_ogn_mgr) ext_ogn_mgr.scan_for_nodes() ext_ogn_mgr.ensure_files_up_to_date() (ogn_module, ogn_test_module) = ext_ogn_mgr.do_python_imports() self.assertIsNotNone(ogn_module) self.assertIsNotNone(ogn_test_module) ext_ogn_mgr.do_registration() # Enable the extension inside Kit await ext_contents.enable() # Confirm that the test node type now exists and can be instantiated (_, (test_node,), _, _) = og.Controller.edit( "/TestGraph", {og.Controller.Keys.CREATE_NODES: [("TestNode", f"{ctx.ext_name}.OgnTestNode")]} ) self.assertIsNotNone(test_node) self.assertTrue(test_node.is_valid()) # Confirm that the modules were correctly created expected_modules_and_contents = [ (ctx.ext_name, ["_PublicExtension"]), (f"{ctx.ext_name}.ogn", ["OgnTestNodeDatabase"]), (f"{ctx.ext_name}.ogn.OgnTestNodeDatabase", ["OgnTestNodeDatabase"]), (f"{ctx.ext_name}.ogn.nodes.OgnTestNode", ["OgnTestNode"]), (f"{ctx.ext_name}.ogn.tests", ["TestOgnTestNode"]), (f"{ctx.ext_name}.ogn.tests.TestOgnTestNode", ["TestOgn"]), ] self.__confirm_module_contents(expected_modules_and_contents) # Clear the scene and disable the extension await omni.usd.get_context().new_stage_async() await ext_contents.disable() # Confirm that the test node type no longer exists with self.assertRaises(og.OmniGraphError): (_, (test_node,), _, _) = og.Controller.edit( "/TestGraph", {og.Controller.Keys.CREATE_NODES: [("TestNode", f"{ctx.ext_name}.OgnTestNode")]} ) # -------------------------------------------------------------------------------------------------------------- async def test_cache_generation(self): """Test that an extension with no prebuilt files registers and is seen correctly. This entails enabling the test extension and then looking at the modules to ensure that: - the database exists and can be imported - the node type was correctly registered - the generated test was correctly registered - the database, node type, and generated test are removed when the extension is disabled """ with ExitStack() as stack: ctx = ModuleContexts(stack) cache_directory = ogi.full_cache_path(_CURRENT_VERSIONS, ctx.ext_id, ctx.module_name) ext_contents = _TestExtensionManager( ctx.python_root, ctx.ext_name, ogi.GenerationVersions(), import_ogn=False, import_ogn_tests=False, ) ext_contents.add_standalone_node("OgnTestNode") expected_cache_files = _expected_cache_contents(cache_directory, "OgnTestNode") expected_files = [ ctx.python_root / ctx.ext_name / "config" / "extension.toml", ] expected_files += _expected_standalone_module_files(ctx.module_path, "OgnTestNode") expected_files += expected_cache_files # Register the extension and enable it try: await ext_contents.enable() actual_files = [] for root, _dirs, files in ogi.walk_with_excludes(ctx.test_directory, ["__pycache__"]): for file in files: actual_files.append(Path(root) / file) self.assertCountEqual(expected_files, actual_files, "Rebuilt cached extension") # Confirm that the test node type now exists and can be instantiated key_create = og.Controller.Keys.CREATE_NODES (_, (test_node,), _, _) = og.Controller.edit( "/TestGraph", {key_create: [("TestNode", f"{ctx.ext_name}.OgnTestNode")]} ) self.assertIsNotNone(test_node) self.assertTrue(test_node.is_valid()) # Confirm that the modules were correctly created expected_modules_and_contents = [ (ctx.ext_name, ["_PublicExtension"]), (f"{ctx.ext_name}.nodes.OgnTestNode", ["OgnTestNode"]), (f"{ctx.ext_name}.ogn", ["OgnTestNodeDatabase"]), (f"{ctx.ext_name}.ogn.OgnTestNodeDatabase", ["OgnTestNodeDatabase"]), (f"{ctx.ext_name}.ogn.tests", ["TestOgnTestNode"]), (f"{ctx.ext_name}.ogn.tests.TestOgnTestNode", ["TestOgn"]), ] self.__confirm_module_contents(expected_modules_and_contents) # Double check the imported database file to make sure it is using the cached one db_object = getattr(sys.modules[f"{ctx.ext_name}.ogn.OgnTestNodeDatabase"], "OgnTestNodeDatabase", None) self.assertIsNotNone(db_object, "Could not get the database from the extension imports") generator_version = getattr(db_object, ogi.VersionProperties.GENERATOR.value, None) self.assertEqual(generator_version, ogi.get_generator_extension_version()) target_version = getattr(db_object, ogi.VersionProperties.TARGET.value, None) self.assertEqual(target_version, ogi.get_target_extension_version()) ogn_module_file_path = ogi.get_module_path(sys.modules[f"{ctx.ext_name}.ogn"]) self.assertIsNotNone(ogn_module_file_path) self.assertTrue(cache_directory in ogn_module_file_path.parents) # Clear the scene and disable the extension await omni.usd.get_context().new_stage_async() finally: await ext_contents.disable() # Confirm that the test node type no longer exists with self.assertRaises(og.OmniGraphError): (_, (test_node,), _, _) = og.Controller.edit( "/TestGraph", {key_create: [("TestNode", f"{ctx.ext_name}.OgnTestNode")]} ) # -------------------------------------------------------------------------------------------------------------- async def test_cache_generation_from_old_build(self): """Test that an extension with prebuilt files that are out of date registers and is seen correctly. This entails enabling the test extension and then looking at the modules to ensure that: - the database exists and can be imported - the node type was correctly registered - the generated test was correctly registered - the database, node type, and generated test are removed when the extension is disabled """ with ExitStack() as stack: ctx = ModuleContexts(stack) cache_directory = ogi.full_cache_path(_CURRENT_VERSIONS, ctx.ext_id, ctx.module_name) ext_contents = _TestExtensionManager( ctx.python_root, ctx.ext_name, ogi.GenerationVersions(ogi.Compatibility.Incompatible), import_ogn=False, import_ogn_tests=False, ) ext_contents.add_v1_18_node("OgnTestNode") expected_files = [ ctx.python_root / ctx.ext_name / "config" / "extension.toml", ] expected_files += _expected_cache_contents(cache_directory, "OgnTestNode") expected_files += _expected_1_18_module_files(ctx.module_path, "OgnTestNode") # Register the extension and enable it try: await ext_contents.enable() actual_files = [] for root, _dirs, files in ogi.walk_with_excludes(ctx.test_directory, ["__pycache__"]): for file in files: actual_files.append(Path(root) / file) self.assertCountEqual(expected_files, actual_files, "Rebuilt cached extension") # Confirm that the test node type now exists and can be instantiated key_create = og.Controller.Keys.CREATE_NODES (_, (test_node,), _, _) = og.Controller.edit( "/TestGraph", {key_create: [("TestNode", f"{ctx.ext_name}.OgnTestNode")]} ) self.assertIsNotNone(test_node) self.assertTrue(test_node.is_valid()) # Confirm that the modules were correctly created expected_modules_and_contents = [ (ctx.ext_name, ["_PublicExtension"]), (f"{ctx.ext_name}.ogn", ["OgnTestNodeDatabase"]), (f"{ctx.ext_name}.ogn.nodes.OgnTestNode", ["OgnTestNode"]), (f"{ctx.ext_name}.ogn.OgnTestNodeDatabase", ["OgnTestNodeDatabase"]), (f"{ctx.ext_name}.ogn.tests", ["TestOgnTestNode"]), (f"{ctx.ext_name}.ogn.tests.TestOgnTestNode", ["TestOgn"]), ] self.__confirm_module_contents(expected_modules_and_contents) # Double check the version number in the imported database file to make sure it is using the cached one db_module = sys.modules[f"{ctx.ext_name}.ogn.OgnTestNodeDatabase"] db_object = getattr(db_module, "OgnTestNodeDatabase", None) self.assertIsNotNone(db_object, "Could not get the database from the extension imports") generator_version = getattr(db_object, ogi.VersionProperties.GENERATOR.value, None) self.assertEqual(generator_version, ogi.get_generator_extension_version()) target_version = getattr(db_object, ogi.VersionProperties.TARGET.value, None) self.assertEqual(target_version, ogi.get_target_extension_version()) db_module_path = ogi.get_module_path(db_module) self.assertIsNotNone(db_module_path) self.assertTrue(cache_directory in db_module_path.parents) # Clear the scene and disable the extension await omni.usd.get_context().new_stage_async() finally: await ext_contents.disable() # Confirm that the test node type no longer exists with self.assertRaises(og.OmniGraphError): (_, (test_node,), _, _) = og.Controller.edit( "/TestGraph", {key_create: [("TestNode", f"{ctx.ext_name}.OgnTestNode")]} ) # -------------------------------------------------------------------------------------------------------------- async def test_cache_update(self): """Test that an extension with prebuilt files that are from a compatible version but whose .ogn files are out of date correctly notices and rebuilds cached files and registers them correctly. This entails enabling the test extension and then looking at the modules to ensure that: - the database exists and can be imported - the node type was correctly registered - the generated test was correctly registered - the database, node type, and generated test are removed when the extension is disabled """ with ExitStack() as stack: ctx = ModuleContexts(stack) incompatible = ogi.GenerationVersions(ogi.Compatibility.Incompatible) cache_directory = ogi.full_cache_path(_CURRENT_VERSIONS, ctx.ext_id, ctx.module_name) old_cache_directory = ogi.full_cache_path(incompatible, ctx.ext_id, ctx.module_name) ext_contents = _TestExtensionManager( ctx.python_root, ctx.ext_name, _CURRENT_VERSIONS, import_ogn=False, import_ogn_tests=False, ) ext_contents.add_v1_18_node("OgnTestNode") ext_contents_incompatible = _TestExtensionManager( ctx.python_root, ctx.ext_name, incompatible, import_ogn=False, import_ogn_tests=False, ) ext_contents_incompatible.add_cache_for_node("OgnTestNode") expected_files = [ ctx.python_root / ctx.ext_name / "config" / "extension.toml", ] expected_files += _expected_cache_contents(old_cache_directory, "OgnTestNode") expected_files += _expected_1_18_module_files(ctx.module_path, "OgnTestNode") actual_files = [] for root, _dirs, files in ogi.walk_with_excludes(ctx.test_directory, ["__pycache__"]): for file in files: actual_files.append(Path(root) / file) self.assertCountEqual(expected_files, actual_files, "Rebuilt cached extension") ogn_file = ctx.module_path / "ogn" / "nodes" / "OgnTestNode.ogn" ogn_file.touch() # Files that will be built when the cache updates after registration expected_cache_files = _expected_cache_contents(cache_directory, "OgnTestNode") # Register the extension and enable it try: await ext_contents.enable() actual_files = [] for root, _dirs, files in ogi.walk_with_excludes(ctx.test_directory, ["__pycache__"]): for file in files: actual_files.append(Path(root) / file) self.assertCountEqual(expected_files + expected_cache_files, actual_files, "Rebuilt cached extension") # Confirm that the test node type now exists and can be instantiated key_create = og.Controller.Keys.CREATE_NODES (_, (test_node,), _, _) = og.Controller.edit( "/TestGraph", {key_create: [("TestNode", f"{ctx.ext_name}.OgnTestNode")]} ) self.assertIsNotNone(test_node) self.assertTrue(test_node.is_valid()) # Confirm that the modules were correctly created expected_modules_and_contents = [ (ctx.ext_name, ["_PublicExtension"]), (f"{ctx.ext_name}.ogn", ["OgnTestNodeDatabase"]), (f"{ctx.ext_name}.ogn.nodes.OgnTestNode", ["OgnTestNode"]), (f"{ctx.ext_name}.ogn.OgnTestNodeDatabase", ["OgnTestNodeDatabase"]), (f"{ctx.ext_name}.ogn.tests", ["TestOgnTestNode"]), (f"{ctx.ext_name}.ogn.tests.TestOgnTestNode", ["TestOgn"]), ] self.__confirm_module_contents(expected_modules_and_contents) # Double check the version number in the imported database file to make sure it is using the cached one db_module = sys.modules[f"{ctx.ext_name}.ogn.OgnTestNodeDatabase"] db_object = getattr(db_module, "OgnTestNodeDatabase", None) self.assertIsNotNone(db_object, "Could not get the database from the extension imports") generator_version = getattr(db_object, ogi.VersionProperties.GENERATOR.value, None) self.assertEqual(generator_version, ogi.get_generator_extension_version()) target_version = getattr(db_object, ogi.VersionProperties.TARGET.value, None) self.assertEqual(target_version, ogi.get_target_extension_version()) db_module_path = ogi.get_module_path(db_module) self.assertIsNotNone(db_module_path) self.assertTrue(cache_directory in db_module_path.parents) # Double check the path to the registered test to make sure it is using the newly generated cache test_module = sys.modules[f"{ctx.ext_name}.ogn.tests.TestOgnTestNode"] test_module_path = ogi.get_module_path(test_module) self.assertIsNotNone(test_module_path) self.assertTrue(cache_directory in test_module_path.parents) # Clear the scene and disable the extension await omni.usd.get_context().new_stage_async() finally: await ext_contents.disable() # Confirm that the test node type no longer exists with self.assertRaises(og.OmniGraphError): (_, (test_node,), _, _) = og.Controller.edit( "/TestGraph", {key_create: [("TestNode", f"{ctx.ext_name}.OgnTestNode")]} ) # -------------------------------------------------------------------------------------------------------------- async def test_hot_reload(self): """Test that an extension cache is correctly generated when loading, then regenerated after a .ogn change. The .ogn change is such that it can be checked at runtime (adding an attribute). """ with ExitStack() as stack: ctx = ModuleContexts(stack) cache_directory = ogi.full_cache_path(_CURRENT_VERSIONS, ctx.ext_id, ctx.module_name) ext_contents = _TestExtensionManager( ctx.python_root, ctx.ext_name, ogi.GenerationVersions(ogi.Compatibility.Incompatible), import_ogn=False, import_ogn_tests=False, ) ext_contents.add_v1_18_node("OgnTestNode") expected_files = [ ctx.python_root / ctx.ext_name / "config" / "extension.toml", ] expected_files += _expected_cache_contents(cache_directory, "OgnTestNode") expected_files += _expected_1_18_module_files(ctx.module_path, "OgnTestNode") # Register the extension and enable it try: await ext_contents.enable() actual_files = [] for root, _dirs, files in ogi.walk_with_excludes(ctx.test_directory, ["__pycache__"]): for file in files: actual_files.append(Path(root) / file) self.assertCountEqual(expected_files, actual_files, "Rebuilt cached extension") # Confirm that the test node type now exists and can be instantiated key_create = og.Controller.Keys.CREATE_NODES (_, (test_node,), _, _) = og.Controller.edit( "/TestGraph", {key_create: [("TestNode", f"{ctx.ext_name}.OgnTestNode")]} ) await og.Controller.evaluate() self.assertIsNotNone(test_node) self.assertTrue(test_node.is_valid()) # Modify the .ogn to add in a new attribute, then wait for the scene to reattach await ext_contents.add_hot_attribute_to_ogn() # This syncs are to wait for the hot reload to happen await omni.kit.app.get_app().next_update_async() await omni.kit.app.get_app().next_update_async() actual_files = [] for root, _dirs, files in ogi.walk_with_excludes(ctx.test_directory, ["__pycache__"]): for file in files: actual_files.append(Path(root) / file) self.assertCountEqual(expected_files, actual_files, "After hot reload") # Rebuild the scene. This is necessary because the scene reattach process does not currently update any # modified nodes with their new attributes so the only way to test this is to create a new node and # check that it picks up the new definition. await omni.usd.get_context().new_stage_async() (_, (test_node,), _, _) = og.Controller.edit( "/TestGraph", {key_create: [("TestNode", f"{ctx.ext_name}.OgnTestNode")]} ) await og.Controller.evaluate() self.assertIsNotNone(test_node) self.assertTrue(test_node.is_valid()) # Confirm that the hot-reloading attribute now exists hot_attribute = og.Controller.attribute("inputs:hot", test_node) self.assertIsNotNone(hot_attribute) self.assertTrue(hot_attribute.is_valid()) # Confirm that the modules were correctly created expected_modules_and_contents = [ (ctx.ext_name, ["_PublicExtension"]), (f"{ctx.ext_name}.ogn", ["OgnTestNodeDatabase"]), (f"{ctx.ext_name}.ogn.nodes.OgnTestNode", ["OgnTestNode"]), (f"{ctx.ext_name}.ogn.OgnTestNodeDatabase", ["OgnTestNodeDatabase"]), (f"{ctx.ext_name}.ogn.tests", ["TestOgnTestNode"]), (f"{ctx.ext_name}.ogn.tests.TestOgnTestNode", ["TestOgn"]), ] self.__confirm_module_contents(expected_modules_and_contents) # Double check the imported database file to make sure it is using the cached one db_object = getattr(sys.modules[f"{ctx.ext_name}.ogn.OgnTestNodeDatabase"], "OgnTestNodeDatabase", None) self.assertIsNotNone(db_object, "Could not get the database from the extension imports") generator_version = getattr(db_object, ogi.VersionProperties.GENERATOR.value, None) self.assertEqual(generator_version, ogi.get_generator_extension_version()) target_version = getattr(db_object, ogi.VersionProperties.TARGET.value, None) self.assertEqual(target_version, ogi.get_target_extension_version()) db_file_path = ogi.get_module_path(sys.modules[f"{ctx.ext_name}.ogn.OgnTestNodeDatabase"]) self.assertIsNotNone(db_file_path) self.assertTrue( cache_directory in db_file_path.parents, f"Expected {cache_directory} to be a parent of {db_file_path}", ) # Clear the scene and disable the extension await omni.usd.get_context().new_stage_async() finally: await ext_contents.disable() # Confirm that the test node type no longer exists with self.assertRaises(og.OmniGraphError): (_, (test_node,), _, _) = og.Controller.edit( "/TestGraph", {key_create: [("TestNode", f"{ctx.ext_name}.OgnTestNode")]} ) # -------------------------------------------------------------------------------------------------------------- async def test_multiple_nodes(self): """Test that a built extension with more than one node correctly imports all of them""" with ExitStack() as stack: ctx = ModuleContexts(stack) cache_directory = ogi.full_cache_path(_CURRENT_VERSIONS, ctx.ext_id, ctx.module_name) ext_contents = _TestExtensionManager( ctx.python_root, ctx.ext_name, _CURRENT_VERSIONS, import_ogn=False, import_ogn_tests=False, ) ext_contents.add_v1_18_node("OgnTestNode") ext_contents.add_v1_18_node("OgnGoodTestNode") expected_files = [ ctx.python_root / ctx.ext_name / "config" / "extension.toml", ] expected_files += _expected_1_18_module_files(ctx.module_path, "OgnTestNode") expected_files += _expected_1_18_module_files(ctx.module_path, "OgnGoodTestNode") expected_files += _expected_cache_contents(cache_directory, "OgnTestNode") expected_files = list(set(expected_files)) # Touch the .ogn file to make it out of date outdated_ogn = ctx.module_path / "ogn" / "nodes" / "OgnTestNode.ogn" outdated_ogn.touch() # Register the extension and enable it try: await ext_contents.enable() actual_files = [] for root, _dirs, files in ogi.walk_with_excludes(ctx.test_directory, ["__pycache__"]): for file in files: actual_files.append(Path(root) / file) self.assertCountEqual(expected_files, actual_files, "Rebuilt cached extension") # Confirm that the test node type now exists and can be instantiated key_create = og.Controller.Keys.CREATE_NODES (_, (test_node, test_good_node), _, _) = og.Controller.edit( "/TestGraph", { key_create: [ ("TestNode", f"{ctx.ext_name}.OgnTestNode"), ("GoodTestNode", f"{ctx.ext_name}.OgnGoodTestNode"), ] }, ) self.assertIsNotNone(test_node) self.assertTrue(test_node.is_valid()) self.assertIsNotNone(test_good_node) self.assertTrue(test_good_node.is_valid()) # Confirm that the modules were correctly created expected_modules_and_contents = [ (ctx.ext_name, ["_PublicExtension"]), (f"{ctx.ext_name}.ogn", ["OgnTestNodeDatabase"]), (f"{ctx.ext_name}.ogn.nodes.OgnTestNode", ["OgnTestNode"]), (f"{ctx.ext_name}.ogn.OgnTestNodeDatabase", ["OgnTestNodeDatabase"]), (f"{ctx.ext_name}.ogn.tests", ["TestOgnTestNode"]), (f"{ctx.ext_name}.ogn.tests.TestOgnTestNode", ["TestOgn"]), (f"{ctx.ext_name}.ogn.OgnGoodTestNodeDatabase", ["OgnGoodTestNodeDatabase"]), (f"{ctx.ext_name}.ogn.tests", ["TestOgnGoodTestNode"]), (f"{ctx.ext_name}.ogn.tests.TestOgnGoodTestNode", ["TestOgn"]), ] self.__confirm_module_contents(expected_modules_and_contents) # Double check the version number in the imported database file to make sure it is using the cached one db_module = sys.modules[f"{ctx.ext_name}.ogn.OgnTestNodeDatabase"] db_object = getattr(db_module, "OgnTestNodeDatabase", None) self.assertIsNotNone(db_object, "Could not get the cached database from the extension imports") generator_version = getattr(db_object, ogi.VersionProperties.GENERATOR.value, None) self.assertEqual(generator_version, ogi.get_generator_extension_version()) target_version = getattr(db_object, ogi.VersionProperties.TARGET.value, None) self.assertEqual(target_version, ogi.get_target_extension_version()) db_module_path = ogi.get_module_path(db_module) self.assertIsNotNone(db_module_path) self.assertTrue(cache_directory in db_module_path.parents) test_module = sys.modules[f"{ctx.ext_name}.ogn.tests.TestOgnTestNode"] test_object = getattr(test_module, "TestOgn", None) self.assertIsNotNone(test_object, "Could not get the cached test from the extension imports") test_module_path = ogi.get_module_path(test_module) self.assertIsNotNone(test_module_path) self.assertTrue(cache_directory in test_module_path.parents) # Check that the node that did not have to be rebuilt imports from the build directory, not the cache db_module = sys.modules[f"{ctx.ext_name}.ogn.OgnGoodTestNodeDatabase"] db_object = getattr(db_module, "OgnGoodTestNodeDatabase", None) self.assertIsNotNone(db_object, "Could not get the built database from the extension imports") generator_version = getattr(db_object, ogi.VersionProperties.GENERATOR.value, None) self.assertEqual(generator_version, ogi.get_generator_extension_version()) target_version = getattr(db_object, ogi.VersionProperties.TARGET.value, None) self.assertEqual(target_version, ogi.get_target_extension_version()) db_module_path = ogi.get_module_path(db_module) self.assertIsNotNone(db_module_path) self.assertTrue(ctx.module_path in db_module_path.parents) test_module = sys.modules[f"{ctx.ext_name}.ogn.tests.TestOgnGoodTestNode"] test_object = getattr(test_module, "TestOgn", None) self.assertIsNotNone(test_object, "Could not get the built test from the extension imports") test_module_path = ogi.get_module_path(test_module) self.assertIsNotNone(test_module_path) self.assertTrue(ctx.module_path in test_module_path.parents) # Clear the scene and disable the extension await omni.usd.get_context().new_stage_async() finally: await ext_contents.disable() # Confirm that the test node type no longer exists with self.assertRaises(og.OmniGraphError): (_, (test_node,), _, _) = og.Controller.edit( "/TestGraph", { key_create: [ ("TestNode", f"{ctx.ext_name}.OgnTestNode"), ] }, ) with self.assertRaises(og.OmniGraphError): (_, (test_node,), _, _) = og.Controller.edit( "/TestGraph", { key_create: [ ("GoodTestNode", f"{ctx.ext_name}.OgnGoodTestNode"), ] }, ) # -------------------------------------------------------------------------------------------------------------- async def test_multiple_standalone_nodes(self): """Test that a built extension with more than one node without generation correctly imports all of them""" with ExitStack() as stack: ctx = ModuleContexts(stack) cache_directory = ogi.full_cache_path(_CURRENT_VERSIONS, ctx.ext_id, ctx.module_name) ext_contents = _TestExtensionManager( ctx.python_root, ctx.ext_name, _CURRENT_VERSIONS, import_ogn=False, import_ogn_tests=False, ) ext_contents.add_standalone_node("OgnTestNode") ext_contents.add_standalone_node("OgnGoodTestNode") expected_files = [ ctx.python_root / ctx.ext_name / "config" / "extension.toml", ctx.module_path / "__init__.py", ] expected_files += _expected_standalone_module_files(ctx.module_path, "OgnTestNode") expected_files += _expected_standalone_module_files(ctx.module_path, "OgnGoodTestNode") expected_files += _expected_cache_contents(cache_directory, "OgnTestNode") expected_files += _expected_cache_contents(cache_directory, "OgnGoodTestNode") expected_files = list(set(expected_files)) # Register the extension and enable it try: await ext_contents.enable() actual_files = [] for root, _dirs, files in ogi.walk_with_excludes(ctx.test_directory, ["__pycache__"]): for file in files: actual_files.append(Path(root) / file) self.assertCountEqual(expected_files, actual_files, "Rebuilt cached extension") # Confirm that the test node type now exists and can be instantiated key_create = og.Controller.Keys.CREATE_NODES (_, (test_node, test_good_node), _, _) = og.Controller.edit( "/TestGraph", { key_create: [ ("TestNode", f"{ctx.ext_name}.OgnTestNode"), ("GoodTestNode", f"{ctx.ext_name}.OgnGoodTestNode"), ] }, ) self.assertIsNotNone(test_node) self.assertTrue(test_node.is_valid()) self.assertIsNotNone(test_good_node) self.assertTrue(test_good_node.is_valid()) # Confirm that the modules were correctly created expected_modules_and_contents = [ (ctx.ext_name, ["_PublicExtension"]), (f"{ctx.ext_name}.nodes.OgnTestNode", ["OgnTestNode"]), (f"{ctx.ext_name}.ogn", ["OgnTestNodeDatabase"]), (f"{ctx.ext_name}.ogn.OgnTestNodeDatabase", ["OgnTestNodeDatabase"]), (f"{ctx.ext_name}.ogn.tests", ["TestOgnTestNode"]), (f"{ctx.ext_name}.ogn.tests.TestOgnTestNode", ["TestOgn"]), (f"{ctx.ext_name}.nodes.OgnGoodTestNode", ["OgnGoodTestNode"]), (f"{ctx.ext_name}.ogn", ["OgnGoodTestNodeDatabase"]), (f"{ctx.ext_name}.ogn.OgnGoodTestNodeDatabase", ["OgnGoodTestNodeDatabase"]), (f"{ctx.ext_name}.ogn.tests", ["TestOgnGoodTestNode"]), (f"{ctx.ext_name}.ogn.tests.TestOgnGoodTestNode", ["TestOgn"]), ] self.__confirm_module_contents(expected_modules_and_contents) # Double check the version number in the imported database file to make sure it is using the cached one db_module = sys.modules[f"{ctx.ext_name}.ogn.OgnTestNodeDatabase"] db_object = getattr(db_module, "OgnTestNodeDatabase", None) self.assertIsNotNone(db_object, "Could not get the cached database from the extension imports") generator_version = getattr(db_object, ogi.VersionProperties.GENERATOR.value, None) self.assertEqual(generator_version, ogi.get_generator_extension_version()) target_version = getattr(db_object, ogi.VersionProperties.TARGET.value, None) self.assertEqual(target_version, ogi.get_target_extension_version()) db_module_path = ogi.get_module_path(db_module) self.assertIsNotNone(db_module_path) self.assertTrue(cache_directory in db_module_path.parents) test_module = sys.modules[f"{ctx.ext_name}.ogn.tests.TestOgnTestNode"] test_object = getattr(test_module, "TestOgn", None) self.assertIsNotNone(test_object, "Could not get the cached test from the extension imports") test_module_path = ogi.get_module_path(test_module) self.assertIsNotNone(test_module_path) self.assertTrue(cache_directory in test_module_path.parents) # Check that the node that did not have to be rebuilt imports from the build directory, not the cache db_module = sys.modules[f"{ctx.ext_name}.ogn.OgnGoodTestNodeDatabase"] db_object = getattr(db_module, "OgnGoodTestNodeDatabase", None) self.assertIsNotNone(db_object, "Could not get the built database from the extension imports") generator_version = getattr(db_object, ogi.VersionProperties.GENERATOR.value, None) self.assertEqual(generator_version, ogi.get_generator_extension_version()) target_version = getattr(db_object, ogi.VersionProperties.TARGET.value, None) self.assertEqual(target_version, ogi.get_target_extension_version()) db_module_path = ogi.get_module_path(db_module) self.assertIsNotNone(db_module_path) self.assertTrue( cache_directory in db_module_path.parents, f"{db_module_path} must be a child of {cache_directory}" ) test_module = sys.modules[f"{ctx.ext_name}.ogn.tests.TestOgnGoodTestNode"] test_object = getattr(test_module, "TestOgn", None) self.assertIsNotNone(test_object, "Could not get the built test from the extension imports") test_module_path = ogi.get_module_path(test_module) self.assertIsNotNone(test_module_path) self.assertTrue(cache_directory in test_module_path.parents) # Clear the scene and disable the extension await omni.usd.get_context().new_stage_async() finally: await ext_contents.disable() # Confirm that the test node type no longer exists with self.assertRaises(og.OmniGraphError): (_, (test_node,), _, _) = og.Controller.edit( "/TestGraph", { key_create: [ ("TestNode", f"{ctx.ext_name}.OgnTestNode"), ] }, ) with self.assertRaises(og.OmniGraphError): (_, (test_node,), _, _) = og.Controller.edit( "/TestGraph", { key_create: [ ("GoodTestNode", f"{ctx.ext_name}.OgnGoodTestNode"), ] }, )
omniverse-code/kit/exts/omni.graph/omni/graph/core/tests/_internal_utils.py
"""Helpers for configuring and running local tests, not meant for general use""" from __future__ import annotations import json from collections import defaultdict from pathlib import Path import omni.ext import omni.graph.tools._internal as ogi import omni.graph.tools.ogn as ogn import omni.kit from omni.graph.tools.tests.internal_utils import CreateHelper # ============================================================================================================== class _TestExtensionManager: """Object that lets you create and control a dynamically generated extension Attributes: __root: Path to the directory in which the extension will be created __ext_path: Path to the created extension directory __ext_name: Name of the created extension __ogn_files: Dictionary of class name to .ogn file implementing the class __module_path: Path to the Python module directory inside the extension __exclusions: List of file types to exclude from any generated code __creator: Helper that creates files of various types """ # Dictionary of Path:count that tracks how many test extensions are using a given path, tracked so that the # extension manager's path information can be properly managed. PATHS_ADDED = defaultdict(lambda: 0) def __init__( self, root: Path, ext_name: str, versions: ogi.GenerationVersions, import_ogn: bool, import_ogn_tests: bool, ): """Initialize the temporary extension object, creating the required files. The files will not be deleted by this class, their lifespan must be managed by the caller, e.g. through using a TempDirectory for their location. Args: root: Directory that contains all extensions ext_name: Name of the extension to create (e.g. 'omni.my.extension') versions: Versions to use in any generated code import_ogn: Add a python module spec for the .ogn submodule in the extension.toml import_ogn_tests: Add a python module spec for the .ogn.tests submodule in the extension.toml Raises: AttributeError if there was a problem creating the extension configuration """ ogi.LOG.info("Creating extension %s at %s", ext_name, root) self.__root: Path = root self.__ext_path: Path = root / ext_name self.__ext_name: str = ext_name self.__ogn_files: dict[str, Path] = {} # Class name to .ogn file implementing it self.__module_path: Path = self.__ext_path / ext_name.replace(".", "/") self.__module_path.mkdir(parents=True, exist_ok=True) self.__exclusions: list[ogi.FileType] = [] self.__creator: CreateHelper = CreateHelper(ext_name, self.__root, versions) self.__creator.add_extension_module(self.__root, ext_name, self.__module_path, import_ogn, import_ogn_tests) # -------------------------------------------------------------------------------------------------------------- def add_standalone_node( self, node_type_name: str, exclusions: list[ogi.FileType] = None, ): """Add a node definition for a node with no generated code. See CreateHelper.add_standalone_node for details""" created_files = self.__creator.add_standalone_node(node_type_name, exclusions) self.__exclusions = exclusions for created_file in created_files: if created_file.suffix == ".ogn": self.__ogn_files[node_type_name] = created_file return raise ValueError(f"No .ogn file found in standalone created files {created_files}") # -------------------------------------------------------------------------------------------------------------- def add_v1_18_node( self, node_type_name: str, exclusions: list[ogi.FileType] = None, ): """Add a node definition using the V1.18 and earlier pattern. See CreateHelper.add_v1_18_node for details""" created_files = self.__creator.add_v1_18_node(node_type_name, exclusions) self.__exclusions = exclusions for created_file in created_files: if created_file.suffix == ".ogn": self.__ogn_files[node_type_name] = created_file return raise ValueError(f"No .ogn file found in V1.18 created files {created_files}") # -------------------------------------------------------------------------------------------------------------- def add_v1_19_node( self, node_type_name: str, exclusions: list[ogi.FileType] = None, ): """Add a node definition using the V1.19 pattern. See CreateHelper.add_v1_19_node for details""" created_files = self.__creator.add_v1_19_node(node_type_name, exclusions) self.__exclusions = exclusions for created_file in created_files: if created_file.suffix == ".ogn": self.__ogn_files[node_type_name] = created_file return raise ValueError(f"No .ogn file found in V1.19 created files {created_files}") # -------------------------------------------------------------------------------------------------------------- def add_cache_for_node( self, node_type_name: str, exclusions: list[ogi.FileType] = None, ): """Add a node definition to the cache. See CreateHelper.add_cache_for_node for details""" self.__creator.add_cache_for_node(node_type_name, exclusions) self.__exclusions = exclusions # -------------------------------------------------------------------------------------------------------------- async def add_hot_attribute_to_ogn(self): """Rewrite the .ogn file with a new input attribute "hot_attribute" for hot reload testing""" ogi.LOG.info("!!! Adding hot reload attribute to %s", str(self.__ogn_files)) # Remember the .ogn definitions for use in the generation of sample code ogn_definitions = { class_name: { ogn.NodeTypeKeys.DESCRIPTION: "None", ogn.NodeTypeKeys.VERSION: 1, ogn.NodeTypeKeys.EXCLUDE: self.__exclusions or [], ogn.NodeTypeKeys.LANGUAGE: ogn.LanguageTypeValues.PYTHON, ogn.NodeTypeKeys.INPUTS: { "hot": {"type": "bool", "description": "Additional attribute added for hot reload"} }, } for class_name in self.__ogn_files } ogi.LOG.info("Updated ogn definition(s) in %s", self.__ogn_files) for class_name, ogn_path in self.__ogn_files.items(): ogn_path = CreateHelper.safe_create( self.__module_path / "ogn" / "nodes", class_name, ogi.FileType.OGN, json.dumps({class_name: ogn_definitions[class_name]}), ) self.__ogn_files[class_name] = ogn_path ogi.LOG.info("!!! Attribute added from hot reload") # -------------------------------------------------------------------------------------------------------------- def add_extra_import(self, directory_name: str, file_name: str, object_to_define: str) -> Path: """Add a new file under the ogn/ directory that acts as a proxy for an import that results from the links that the LUA function add_ogn_subdirectory() adds. Returns the path to the newly created file. """ return CreateHelper.safe_create( # self.__module_path / "ogn" / directory_name / file_name, self.__module_path / "ogn" / file_name, None, None, f"{object_to_define} = True\n", ) # -------------------------------------------------------------------------------------------------------------- async def enable(self): """Make the constructed extension visible to the extension manager, if it hasn't yet been, and enable it""" ogi.LOG.info("Enabling extension %s at %s", self.__ext_name, self.__ext_path) manager = omni.kit.app.get_app().get_extension_manager() # Remove and add back to ensure that the path is scanned for the new content manager.remove_path(str(self.__root)) manager.add_path(str(self.__root), omni.ext.ExtensionPathType.COLLECTION_USER) # This sync is to get the manager to refresh its paths await omni.kit.app.get_app().next_update_async() manager.set_extension_enabled(self.__ext_name, True) self.PATHS_ADDED[self.__root] += 1 # This sync is to allow time for executing the extension enabled hooks await omni.kit.app.get_app().next_update_async() # -------------------------------------------------------------------------------------------------------------- async def disable(self): """Disable the constructed extension, if enabled and decrement the accesses to its path""" ogi.LOG.info("Disabling extension %s", self.__ext_name) manager = omni.kit.app.get_app().get_extension_manager() # If this was the last extension to need the path then remove it from the manager's path. Either way the # path is removed first to force the path to be scanned for the remaining content. manager.set_extension_enabled(self.__ext_name, False) # This sync is to ensure the extension is disabled before removing its path await omni.kit.app.get_app().next_update_async() manager.remove_path(str(self.__root)) self.PATHS_ADDED[self.__root] -= 1 # If some other creator exists in the same path then bring the path back for continued use if self.PATHS_ADDED[self.__root] > 0: manager.add_path(str(self.__root), omni.ext.ExtensionPathType.COLLECTION_USER) # This sync is to get the manager to executing the extension disabled hooks and refresh the paths await omni.kit.app.get_app().next_update_async()
omniverse-code/kit/exts/omni.graph/omni/graph/core/tests/test_api.py
"""Testing the stability of the API in this module""" import omni.graph.core as og import omni.graph.core._impl.commands as ogc import omni.graph.core.autonode as autonode import omni.graph.core.typing as ogty import omni.kit from omni.graph.tools.tests.internal_utils import _check_module_api_consistency, _check_public_api_contents # ====================================================================== class _TestOmniGraphApi(omni.kit.test.AsyncTestCase): _UNPUBLISHED = ["bindings", "tests", "omni", "commands"] async def test_api(self): _check_module_api_consistency(og.tests, [], is_test_module=True) # noqa: PLW0212 _check_module_api_consistency(autonode) # noqa: PLW0212 _check_module_api_consistency(ogty) # noqa: PLW0212 _check_module_api_consistency(ogc, ogc._HIDDEN) # noqa: PLW0212 # Since the og module also contains all of the previously exposed objects for backward compatibility, they # have to be added to the list of unpublished elements here as they, rightly, do not appear in __all__ all_unpublished = ( self._UNPUBLISHED + og._HIDDEN # noqa: PLW0212 + ogc._HIDDEN # noqa: PLW0212 + [module_object for module_object in dir(autonode) if not module_object.startswith("_")] + [module_object for module_object in dir(ogty) if not module_object.startswith("_")] ) _check_module_api_consistency(og, all_unpublished) # noqa: PLW0212 async def test_api_features(self): """Test that the known public API features continue to exist""" _check_public_api_contents( og, [ # noqa: PLW0212 "attribute_value_as_usd", "AttributeDataValueHelper", "AttributeValueHelper", "autonode", "Bundle", "BundleContainer", "BundleContents", "cmds", "Controller", "data_shape_from_type", "Database", "DataView", "DataWrapper", "Device", "Dtype", "DynamicAttributeAccess", "DynamicAttributeInterface", "ExtensionInformation", "get_global_orchestration_graphs", "get_graph_settings", "get_port_type_namespace", "GraphController", "GraphSettings", "in_compute", "is_attribute_plain_data", "is_in_compute", "MetadataKeys", "NodeController", "ObjectLookup", "OmniGraphError", "OmniGraphInspector", "OmniGraphValueError", "PerNodeKeys", "python_value_as_usd", "ReadOnlyError", "resolve_base_coupled", "resolve_fully_coupled", "RuntimeAttribute", "Settings", "ThreadsafetyTestUtils", "TypedValue", "typing", "WrappedArrayType", ], self._UNPUBLISHED, only_expected_allowed=False, )
omniverse-code/kit/exts/omni.graph/omni/graph/core/tests/__init__.py
""" Imports from the test module are only recommended for use in OmniGraph tests. To get documentation on this module and methods import this file into a Python interpreter and run dir/help, like this: .. code-block:: python import omni.graph.core.tests as ogts dir(ogts) help(ogts.load_test_file) """ # fmt: off # isort: off # Exported interface for testing utilities that are of general use. # (Others exist but are legacy or specific to one use only and imported directly) from ._unittest_support import construct_test_class from ._unittest_support import OmniGraphTestConfiguration from .omnigraph_test_utils import OmniGraphTestCase from .omnigraph_test_utils import OmniGraphTestCaseNoClear from .omnigraph_test_utils import SettingContext from .omnigraph_test_utils import TestContextManager from .expected_error import ExpectedError from .omnigraph_test_utils import create_cone from .omnigraph_test_utils import create_cube from .omnigraph_test_utils import create_grid_mesh from .omnigraph_test_utils import create_input_and_output_grid_meshes from .omnigraph_test_utils import create_sphere from .omnigraph_test_utils import DataTypeHelper from .omnigraph_test_utils import dump_graph from .omnigraph_test_utils import insert_sublayer from .omnigraph_test_utils import load_test_file from .omnigraph_test_utils import test_case_class from .omnigraph_test_utils import verify_connections from .omnigraph_test_utils import verify_node_existence from .omnigraph_test_utils import verify_values from .validation import validate_abi_interface scan_for_test_modules = True """The presence of this object causes the test runner to automatically scan the directory for unit test cases""" # ============================================================================================================== # _____ ______ _____ _____ ______ _____ _______ ______ _____ # | __ \ | ____|| __ \ | __ \ | ____|/ ____| /\ |__ __|| ____|| __ \ # | | | || |__ | |__) || |__) || |__ | | / \ | | | |__ | | | | # | | | || __| | ___/ | _ / | __| | | / /\ \ | | | __| | | | | # | |__| || |____ | | | | \ \ | |____| |____ / ____ \ | | | |____ | |__| | # |_____/ |______||_| |_| \_\|______|\_____|/_/ \_\|_| |______||_____/ # # isort: on # fmt: on
omniverse-code/kit/exts/omni.graph/omni/graph/core/tests/test_bundle_dirty_id.py
import omni.graph.core as og import omni.graph.core.tests as ogt class BundleTestSetup(ogt.OmniGraphTestCase): async def setUp(self): """Set up test environment, to be torn down when done""" await super().setUp() self.graph = og.Controller.create_graph("/graph") self.context = self.graph.get_default_graph_context() self.factory = og.IBundleFactory.create() self.assertTrue(self.factory is not None) self.dirty = og._og_unstable.IDirtyID2.create(self.context) # noqa: PLW0212 self.assertTrue(self.dirty is not None) # bundle paths self.bundle2Name = "bundle2" self.bundle3Name = "bundle3" self.attr1Name = "attr1" self.attr1Type = og.Type(og.BaseDataType.INT) self.attr2Name = "attr2" self.attr2Type = og.Type(og.BaseDataType.FLOAT) self.attr3Name = "attr3" self.attr3Type = og.Type(og.BaseDataType.INT, 1, 1) self.attr4Name = "attr4" self.attr4Type = og.Type(og.BaseDataType.INT, 2, 0) class TestBundleDirtyID(BundleTestSetup): async def setUp(self): """Set up test environment, to be torn down when done""" await super().setUp() async def test_create_bundle(self): bundle1 = self.factory.create_bundle(self.context, "bundle1") bundle2 = self.factory.create_bundle(self.context, "bundle2") self.dirty.setup(bundle1, True) self.dirty.setup(bundle2, True) ids = self.dirty.get([bundle1, bundle2]) self.assertTrue(self.dirty.is_valid(ids[0])) self.assertTrue(self.dirty.is_valid(ids[1])) self.assertNotEqual(ids[0], ids[1]) async def test_create_attribute(self): bundle = self.factory.create_bundle(self.context, "bundle") self.dirty.setup(bundle, True) ids0 = self.dirty.get([bundle]) bundle.create_attribute(self.attr1Name, self.attr1Type) ids1 = self.dirty.get([bundle]) self.assertTrue(self.dirty.is_valid(ids0[0])) self.assertTrue(self.dirty.is_valid(ids1[0])) self.assertNotEqual(ids0[0], ids1[0]) async def test_create_child_bundle(self): bundle = self.factory.create_bundle(self.context, "bundle") self.dirty.setup(bundle, True) ids0 = self.dirty.get([bundle]) self.assertTrue(self.dirty.is_valid(ids0[0])) bundle.create_child_bundle(self.bundle2Name) ids1 = self.dirty.get([bundle]) self.assertTrue(self.dirty.is_valid(ids1[0])) self.assertNotEqual(ids0[0], ids1[0]) async def test_remove_attribute(self): bundle = self.factory.create_bundle(self.context, "bundle") self.dirty.setup(bundle, True) bundle.create_attribute(self.attr1Name, self.attr1Type) ids0 = self.dirty.get([bundle]) self.assertTrue(self.dirty.is_valid(ids0[0])) bundle.remove_attribute(self.attr1Name) ids1 = self.dirty.get([bundle]) self.assertTrue(self.dirty.is_valid(ids1[0])) self.assertNotEqual(ids0[0], ids1[0]) async def test_remove_child_bundles(self): bundle = self.factory.create_bundle(self.context, "bundle") self.dirty.setup(bundle, True) bundle2 = bundle.create_child_bundle("child") ids0 = self.dirty.get([bundle]) self.assertTrue(self.dirty.is_valid(ids0[0])) bundle.remove_child_bundle(bundle2) ids1 = self.dirty.get([bundle]) self.assertTrue(self.dirty.is_valid(ids1[0])) self.assertNotEqual(ids0[0], ids1[0]) async def test_clear_contents(self): """Test if clearing bundle results with new dirty id""" bundle = self.factory.create_bundle(self.context, "bundle") self.dirty.setup(bundle, True) ids0 = self.dirty.get([bundle]) self.assertTrue(self.dirty.is_valid(ids0[0])) bundle.clear_contents() ids1 = self.dirty.get([bundle]) self.assertTrue(self.dirty.is_valid(ids1[0])) self.assertNotEqual(ids0[0], ids1[0]) async def test_copy_attribute(self): bundle1 = self.factory.create_bundle(self.context, "bundle1") bundle2 = self.factory.create_bundle(self.context, "bundle2") self.dirty.setup(bundle1, True) self.dirty.setup(bundle2, True) attr1 = bundle1.create_attribute(self.attr1Name, self.attr1Type) ids0 = self.dirty.get([bundle2]) self.assertTrue(self.dirty.is_valid(ids0[0])) bundle2.copy_attribute(attr1) ids1 = self.dirty.get([bundle2]) self.assertTrue(self.dirty.is_valid(ids1[0])) self.assertNotEqual(ids0[0], ids1[0]) async def test_copy_child_bundle(self): """Test if CoW reference is resolved.""" bundle1 = self.factory.create_bundle(self.context, "bundle1") bundle2 = self.factory.create_bundle(self.context, "bundle2") self.dirty.setup(bundle1, True) self.dirty.setup(bundle2, True) ids0 = self.dirty.get([bundle1]) self.assertTrue(self.dirty.is_valid(ids0[0])) bundle1.copy_child_bundle(self.bundle2Name, bundle2) ids1 = self.dirty.get([bundle1]) self.assertTrue(self.dirty.is_valid(ids1[0])) self.assertNotEqual(ids0[0], ids1[0]) async def test_copy_bundle(self): """Copying bundle creates a shallow copy - a reference. To obtain the dirty id the reference needs to be resolved""" bundle1 = self.factory.create_bundle(self.context, "bundle1") bundle2 = self.factory.create_bundle(self.context, "bundle2") self.dirty.setup(bundle1, True) self.dirty.setup(bundle2, True) ids0 = self.dirty.get([bundle1, bundle2]) self.assertNotEqual(ids0[0], ids0[1]) self.assertTrue(self.dirty.is_valid(ids0[0])) self.assertTrue(self.dirty.is_valid(ids0[1])) bundle2.copy_bundle(bundle1) ids1 = self.dirty.get([bundle1, bundle2]) self.assertTrue(self.dirty.is_valid(ids1[0])) self.assertTrue(self.dirty.is_valid(ids1[1])) self.assertEqual(ids1[0], ids1[1]) async def test_get_attribute_by_name(self): """Getting writable attribute data handle does not change dirty id. Only writing to an attribute triggers id to be changed.""" bundle = self.factory.create_bundle(self.context, "bundle") self.dirty.setup(bundle, True) bundle.create_attribute(self.attr1Name, self.attr1Type) ids0 = self.dirty.get([bundle]) self.assertTrue(self.dirty.is_valid(ids0[0])) bundle.get_attribute_by_name(self.attr1Name) ids1 = self.dirty.get([bundle]) self.assertTrue(self.dirty.is_valid(ids1[0])) self.assertEqual(ids0[0], ids1[0]) async def test_get_child_bundle_by_name(self): """Getting writable bundle handle does not change dirty id. Only creating/removing attributes and children triggers id to be changed.""" bundle = self.factory.create_bundle(self.context, "bundle") self.dirty.setup(bundle, True) bundle.create_child_bundle(self.bundle2Name) ids0 = self.dirty.get([bundle]) self.assertTrue(self.dirty.is_valid(ids0[0])) bundle.get_child_bundle_by_name(self.bundle2Name) ids1 = self.dirty.get([bundle]) self.assertTrue(self.dirty.is_valid(ids1[0])) self.assertEqual(ids0[0], ids1[0]) async def test_get_simple_attribute_data(self): """Getting simple attribute data should not change dirty id""" bundle = self.factory.create_bundle(self.context, "bundle") self.dirty.setup(bundle, True) attr = bundle.create_attribute(self.attr1Name, self.attr1Type) attr.set(42) ids0 = self.dirty.get([bundle]) self.assertTrue(self.dirty.is_valid(ids0[0])) self.assertEqual(attr.as_read_only().get(), 42) ids1 = self.dirty.get([bundle]) self.assertTrue(self.dirty.is_valid(ids1[0])) self.assertEqual(ids0[0], ids1[0]) async def test_get_array_attribute_data(self): """Getting array attribute data should not change dirty id""" bundle = self.factory.create_bundle(self.context, "bundle") self.dirty.setup(bundle, True) attr = bundle.create_attribute(self.attr3Name, self.attr3Type) attr.set([42]) ids0 = self.dirty.get([bundle]) self.assertTrue(self.dirty.is_valid(ids0[0])) self.assertEqual(attr.as_read_only().get()[0], 42) ids1 = self.dirty.get([bundle]) self.assertTrue(self.dirty.is_valid(ids1[0])) self.assertEqual(ids0[0], ids1[0]) async def _get_array_rw_attribute_data(self, on_gpu): """Getting array attribute data for read-write""" bundle = self.factory.create_bundle(self.context, "bundle") self.dirty.setup(bundle, True) attr = bundle.create_attribute(self.attr3Name, self.attr3Type) attr.set([42]) ids0 = self.dirty.get([bundle]) self.assertTrue(self.dirty.is_valid(ids0[0])) # no bump attr.as_read_only().get_array(on_gpu=on_gpu, get_for_write=False, reserved_element_count=1) ids1 = self.dirty.get([bundle]) self.assertTrue(self.dirty.is_valid(ids1[0])) self.assertEqual(ids0[0], ids1[0]) # bump attr.get_array(on_gpu=on_gpu, get_for_write=True, reserved_element_count=1) ids1 = self.dirty.get([bundle]) self.assertTrue(self.dirty.is_valid(ids1[0])) self.assertNotEqual(ids0[0], ids1[0]) async def test_get_array_attribute_data_cpu(self): await self._get_array_rw_attribute_data(False) async def test_get_array_attribute_data_gpu(self): await self._get_array_rw_attribute_data(True) async def test_resize_array_attribute(self): bundle = self.factory.create_bundle(self.context, "bundle") self.dirty.setup(bundle, True) attr = bundle.create_attribute(self.attr3Name, self.attr3Type) ids0 = self.dirty.get([bundle]) self.assertTrue(self.dirty.is_valid(ids0[0])) # no bump attr.size() ids1 = self.dirty.get([bundle]) self.assertTrue(self.dirty.is_valid(ids1[0])) self.assertEqual(ids0[0], ids1[0]) # bump attr.resize(10) ids1 = self.dirty.get([bundle]) self.assertTrue(self.dirty.is_valid(ids1[0])) self.assertNotEqual(ids0[0], ids1[0]) async def test_get_tuple_attribute_data(self): """Getting array attribute data should not change dirty id""" bundle = self.factory.create_bundle(self.context, "bundle") self.dirty.setup(bundle, True) attr = bundle.create_attribute(self.attr4Name, self.attr4Type) attr.set([42, 24]) ids0 = self.dirty.get([bundle]) self.assertTrue(self.dirty.is_valid(ids0[0])) self.assertEqual(attr.as_read_only().get()[0], 42) self.assertEqual(attr.as_read_only().get()[1], 24) ids1 = self.dirty.get([bundle]) self.assertTrue(self.dirty.is_valid(ids1[0])) self.assertEqual(ids0[0], ids1[0]) async def test_change_child_and_propagate_changes_to_parent(self): r""" bundle1 \_ child0 \_ child1 \_ child2 <-- create attribute Will propagate dirty id changes up to `bundle1` (child2 -> child1 -> child0 -> bundle1) """ bundle = self.factory.create_bundle(self.context, "bundle") self.dirty.setup(bundle, True) child0 = bundle.create_child_bundle("child0") child1 = child0.create_child_bundle("child1") child2 = child1.create_child_bundle("child2") ids0 = self.dirty.get([bundle, child0, child1]) self.assertTrue(self.dirty.is_valid(ids0[0])) self.assertTrue(self.dirty.is_valid(ids0[1])) self.assertTrue(self.dirty.is_valid(ids0[2])) # creating attribute automatically bumps parent ids child2.create_attribute(self.attr1Name, self.attr1Type) ids1 = self.dirty.get([bundle, child0, child1]) self.assertTrue(self.dirty.is_valid(ids1[0])) self.assertTrue(self.dirty.is_valid(ids1[1])) self.assertTrue(self.dirty.is_valid(ids1[2])) self.assertNotEqual(ids0[0], ids1[0]) self.assertNotEqual(ids0[1], ids1[1]) self.assertNotEqual(ids0[2], ids1[2]) class TestAttributeDirtyID(BundleTestSetup): async def setUp(self): """Set up test environment, to be torn down when done""" await super().setUp() async def test_create_attribute(self): bundle = self.factory.create_bundle(self.context, "bundle") self.dirty.setup(bundle, True) attr1 = bundle.create_attribute(self.attr1Name, self.attr1Type) ids0 = self.dirty.get([attr1]) self.assertTrue(self.dirty.is_valid(ids0[0])) attr2 = bundle.create_attribute(self.attr2Name, self.attr2Type) ids1 = self.dirty.get([attr2]) self.assertTrue(self.dirty.is_valid(ids1[0])) self.assertNotEqual(ids0[0], ids1[0]) async def test_create_same_attribute(self): bundle = self.factory.create_bundle(self.context, "bundle") self.dirty.setup(bundle, True) attr1 = bundle.create_attribute(self.attr1Name, self.attr1Type) ids0 = self.dirty.get([attr1]) self.assertTrue(self.dirty.is_valid(ids0[0])) attr2 = bundle.create_attribute(self.attr1Name, self.attr1Type) ids1 = self.dirty.get([attr2]) self.assertTrue(self.dirty.is_valid(ids1[0])) self.assertEqual(ids0[0], ids1[0]) async def test_create_same_attribute_new_size(self): bundle = self.factory.create_bundle(self.context, "bundle") self.dirty.setup(bundle, True) n = "attr" t = og.Type(og.BaseDataType.INT, 1, 1) attr = bundle.create_attribute(n, t, 100) ids0 = self.dirty.get([attr]) self.assertTrue(self.dirty.is_valid(ids0[0])) # same size does not bump dirty ids attr = bundle.create_attribute(n, t, 100) ids1 = self.dirty.get([attr]) self.assertTrue(self.dirty.is_valid(ids1[0])) self.assertEqual(ids0[0], ids1[0]) # new size bumps dirty ids attr = bundle.create_attribute(n, t, 10) ids1 = self.dirty.get([attr]) self.assertTrue(self.dirty.is_valid(ids1[0])) self.assertNotEqual(ids0[0], ids1[0]) async def test_get_simple_attribute_data(self): """Getting simple attribute data should not change dirty id""" bundle = self.factory.create_bundle(self.context, "bundle") self.dirty.setup(bundle, True) attr = bundle.create_attribute(self.attr1Name, self.attr1Type) attr.set(42) ids0 = self.dirty.get([attr]) self.assertTrue(self.dirty.is_valid(ids0[0])) self.assertEqual(attr.as_read_only().get(), 42) ids1 = self.dirty.get([attr]) self.assertTrue(self.dirty.is_valid(ids1[0])) self.assertEqual(ids0[0], ids1[0]) async def test_get_array_attribute_data(self): """Getting array attribute data should not change dirty id""" bundle = self.factory.create_bundle(self.context, "bundle") self.dirty.setup(bundle, True) attr = bundle.create_attribute(self.attr3Name, self.attr3Type) attr.set([42]) ids0 = self.dirty.get([attr]) self.assertTrue(self.dirty.is_valid(ids0[0])) self.assertEqual(attr.as_read_only().get()[0], 42) ids1 = self.dirty.get([attr]) self.assertTrue(self.dirty.is_valid(ids1[0])) self.assertEqual(ids0[0], ids1[0]) async def test_get_tuple_attribute_data(self): """Getting tuple attribute data should not change dirty id""" bundle = self.factory.create_bundle(self.context, "bundle") self.dirty.setup(bundle, True) attr = bundle.create_attribute(self.attr4Name, self.attr4Type) attr.set([42, 24]) ids0 = self.dirty.get([attr]) self.assertTrue(self.dirty.is_valid(ids0[0])) self.assertEqual(attr.as_read_only().get()[0], 42) self.assertEqual(attr.as_read_only().get()[1], 24) ids1 = self.dirty.get([attr]) self.assertTrue(self.dirty.is_valid(ids1[0])) self.assertEqual(ids0[0], ids1[0]) async def test_set_simple_attribute_data(self): """Setting simple attribute data changes dirty id""" bundle = self.factory.create_bundle(self.context, "bundle") self.dirty.setup(bundle, True) attr = bundle.create_attribute(self.attr1Name, self.attr1Type) ids0 = self.dirty.get([attr, bundle]) self.assertTrue(self.dirty.is_valid(ids0[0])) self.assertTrue(self.dirty.is_valid(ids0[1])) attr.set(42) ids1 = self.dirty.get([attr, bundle]) self.assertTrue(self.dirty.is_valid(ids1[0])) self.assertTrue(self.dirty.is_valid(ids1[1])) self.assertNotEqual(ids0[0], ids1[0]) self.assertNotEqual(ids0[1], ids1[1]) async def test_set_array_attribute_data(self): """Setting array attribute data changes dirty id""" bundle = self.factory.create_bundle(self.context, "bundle") self.dirty.setup(bundle, True) attr = bundle.create_attribute(self.attr3Name, self.attr3Type) ids0 = self.dirty.get([attr, bundle]) self.assertTrue(self.dirty.is_valid(ids0[0])) self.assertTrue(self.dirty.is_valid(ids0[1])) attr.set([42]) ids1 = self.dirty.get([attr, bundle]) self.assertTrue(self.dirty.is_valid(ids1[0])) self.assertTrue(self.dirty.is_valid(ids1[1])) self.assertNotEqual(ids0[0], ids1[0]) self.assertNotEqual(ids0[1], ids1[1]) async def test_set_tuple_attribute_data(self): """Setting tuple attribute data changes dirty id""" bundle = self.factory.create_bundle(self.context, "bundle") self.dirty.setup(bundle, True) attr = bundle.create_attribute(self.attr4Name, self.attr4Type) ids0 = self.dirty.get([attr, bundle]) self.assertTrue(self.dirty.is_valid(ids0[0])) self.assertTrue(self.dirty.is_valid(ids0[1])) attr.set([42, 24]) ids1 = self.dirty.get([attr, bundle]) self.assertTrue(self.dirty.is_valid(ids1[0])) self.assertTrue(self.dirty.is_valid(ids1[1])) self.assertNotEqual(ids0[0], ids1[0]) self.assertNotEqual(ids0[1], ids1[1])
omniverse-code/kit/exts/omni.graph/omni/graph/core/tests/test_unittest_support.py
"""Tests that exercise the capabilities provided for OmniGraph unit testing""" from contextlib import asynccontextmanager, contextmanager import carb import omni.graph.core.tests as ogts import omni.graph.tools as ogt import omni.kit.test import omni.usd # Name of a fake setting that will be used for testing TEST_SETTING = "/not/a/setting" # ============================================================================================================== class TestOmniGraphTestFeatures(omni.kit.test.AsyncTestCase): """Run targeted tests on the test helper functions and classes directly, not as part of the test definition""" async def test_configuration_class(self): """Tests the functionality of customized OmniGraphTestConfiguration objects""" settings = carb.settings.get_settings() with ogts.OmniGraphTestConfiguration(settings={TEST_SETTING: True}): self.assertEqual(settings.get(TEST_SETTING), True) self.assertEqual(settings.get(TEST_SETTING), None) # -------------------------------------------------------------------------------------------------------------- CONTEXT_FLAG = 0 async def test_custom_contexts(self): """Tests the functionality of providing my own custom contexts via the contextmanager decorator""" @contextmanager def context_add_1(): TestOmniGraphTestFeatures.CONTEXT_FLAG = TestOmniGraphTestFeatures.CONTEXT_FLAG + 1 try: yield True finally: TestOmniGraphTestFeatures.CONTEXT_FLAG = TestOmniGraphTestFeatures.CONTEXT_FLAG - 1 @asynccontextmanager async def async_context_add_10(): TestOmniGraphTestFeatures.CONTEXT_FLAG = TestOmniGraphTestFeatures.CONTEXT_FLAG + 10 try: yield True finally: TestOmniGraphTestFeatures.CONTEXT_FLAG = TestOmniGraphTestFeatures.CONTEXT_FLAG - 10 my_configuration = ogts.OmniGraphTestConfiguration( contexts=[context_add_1], async_contexts=[async_context_add_10] ) self.assertEqual(TestOmniGraphTestFeatures.CONTEXT_FLAG, 0) with my_configuration: self.assertEqual(TestOmniGraphTestFeatures.CONTEXT_FLAG, 1) self.assertEqual(TestOmniGraphTestFeatures.CONTEXT_FLAG, 0) async with my_configuration: self.assertEqual(TestOmniGraphTestFeatures.CONTEXT_FLAG, 11) self.assertEqual(TestOmniGraphTestFeatures.CONTEXT_FLAG, 0) # -------------------------------------------------------------------------------------------------------------- async def test_construct_test_class(self): """Tests the ability to create a base class using the construct_test_class() function""" # Test the deprecated keyword message = "I am deprecated" deprecated_class = ogts.construct_test_class(deprecated=message) self.assertTrue(omni.kit.test.AsyncTestCase in deprecated_class.__bases__) with ogt.DeprecateMessage.NoLogging(): instance = deprecated_class() await instance.setUp() messages_logged = ogt.DeprecateMessage.messages_logged() self.assertTrue(message in messages_logged, f"'{message}' not in {messages_logged}") # Test the base_class keyword class BaseTestClass(omni.kit.test.AsyncTestCase): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.i_exist = True derived_class = ogts.construct_test_class(base_class=BaseTestClass) instance = derived_class() self.assertTrue(hasattr(instance, "i_exist") and instance.i_exist, f"No 'i_exist' in {dir(instance)}") self.assertTrue(isinstance(instance, BaseTestClass)) # Test the configure keyword configuration = ogts.OmniGraphTestConfiguration(settings={TEST_SETTING: True}) configured_class = ogts.construct_test_class(configuration=configuration) instance = configured_class() self.assertEqual(type(configuration), type(instance._OmniGraphCustomTestCase__configuration)) # noqa PLW0212 with self.assertRaises(TypeError): _ = ogts.construct_test_class(configuration=3) # Test the extensions_enabled keyword test_extension = "omni.graph.scriptnode" manager = omni.kit.app.get_app().get_extension_manager() was_enabled = manager.is_extension_enabled(test_extension) manager.set_extension_enabled_immediate(test_extension, False) configuration = ogts.OmniGraphTestConfiguration(extensions_enabled=[test_extension]) with configuration: self.assertTrue(manager.is_extension_enabled(test_extension)) manager.set_extension_enabled_immediate(test_extension, was_enabled) # Test the extensions_disabled keyword manager.set_extension_enabled_immediate(test_extension, True) configuration = ogts.OmniGraphTestConfiguration(extensions_disabled=[test_extension]) with configuration: self.assertFalse(manager.is_extension_enabled(test_extension)) manager.set_extension_enabled_immediate(test_extension, was_enabled) # ============================================================================================================== class TestStandardConfiguration(ogts.OmniGraphTestCase): """Run tests using the standard OmniGraph test configuration""" async def setUp(self): await super().setUp() async def tearDown(self): await super().tearDown() async def test_settings(self): """Test that the standard settings are applied by the test case""" # ============================================================================================================== class TestCustomSetUp(omni.kit.test.AsyncTestCase): """Run tests using an OmniGraphTestConfiguration customization using the Kit base class""" async def test_configuration(self): with ogts.OmniGraphTestConfiguration(settings={TEST_SETTING: True}): self.assertTrue(carb.settings.get_settings().get(TEST_SETTING)) # ============================================================================================================== MyTestClass = ogts.construct_test_class(settings={TEST_SETTING: True}) class TestManualConfiguration(MyTestClass): """Run tests using a custom created base test class""" async def test_constructed_base_class(self): self.assertTrue(carb.settings.get_settings().get(TEST_SETTING)) # ============================================================================================================== class TestCustomBaseClass(MyTestClass): """Run tests using a custom created base test class derived from another custom base class""" async def test_constructed_derived_class(self): with self.assertRaises(TypeError): MyDerivedTestClass = ogts.construct_test_class(base_class=MyTestClass) # noqa F841 # ============================================================================================================== class TestOverrideSetUp(ogts.OmniGraphTestCase): """Run tests using a customization that is based on the standard configuration""" async def test_configuration(self): with ogts.OmniGraphTestConfiguration(settings={TEST_SETTING: True}): self.assertTrue(carb.settings.get_settings().get(TEST_SETTING))
omniverse-code/kit/exts/omni.graph/omni/graph/core/tests/_unittest_support.py
"""Support for creating unittest style test cases that use OmniGraph components. Note the leading underscore in the file name, indicating that it should not be imported directly. Instead use this: .. code-block:: python import omni.graph.core.tests as ogts There are three primary workflows for setting up unit test case classes that manage OmniGraph state. If your test case uses OmniGraph and just wants a standard configuration while running then you can use the predefined test case base class :py:class:`omni.graph.core.tests.OmniGraphTestCase`. .. code-block:: python import omni.graph.core.tests as ogts class TestMyStuff(ogts.OmniGraphTestCase): async def test_my_stuff(self): pass # My stuff always works If instead you wish to make use of only a subset of the various OmniGraph configuration values or use your own test base class then you can use :py:class:`omni.graph.core.tests.OmniGraphTestConfiguration` to build up a set of temporary conditions in force while the test runs, such as using an empty scene, defining settings, etc. .. code-block:: python import omni.graph.core.tests as ogts class TestMyStuff(omni.kit.test.AsyncTestCase): async def test_my_stuff(self): with ogts.OmniGraphTestConfiguration(clear_on_start=False): pass # My stuff always works You can also use the test case class constructor to define your own base class that can be used in multiple locations: .. code-block:: python import omni.graph.core.tests as ogts MyDebugTestClass = ogts.test_case_class(clear_on_finish=False, clear_on_start=False) class TestMyStuff(MyDebugTestClass): async def test_my_stuff(self): pass # My stuff always works """ from __future__ import annotations import asyncio import inspect from contextlib import AsyncExitStack, ExitStack, asynccontextmanager, contextmanager import omni.graph.core as og import omni.graph.tools as ogt import omni.kit import omni.usd # ============================================================================================================== class OmniGraphTestConfiguration: """Class to manage testing configuration parameters as a context manager that brackets a test run. You can either use it around a single test to modify configuration for just that test: .. code-block:: python import omni.graph.core.tests as ogts class TestRun(ogts.OmniGraphTestCase): '''By default the tests in this class will clear the scene on start and finish of the test''' async def test_without_clearing(self): async with ogts.OmniGraphTestConfiguration(clear_on_start=False): run_my_test() # Before this particular test the scene will not be cleared before starting See :py:func:`construct_test_class` for a way of applying it to every test in the test case. .. code-block:: python class TestRun(ogts.construct_test_class(clear_on_start=True)): async def test_without_clearing(self): run_my_test() If you can't change your base class you can still use it by adding it to the test case setUp/tearDown .. code-block:: python class TestRun(omni.kit.test.AsyncTestCase): async def setUp(self): self.configuration = ogts.OmniGraphTestConfiguration(clear_on_start=True) await self.configuration.__enter__() async def tearDown(self): await self.configuration.__exit__() async def test_without_clearing(self): run_my_test() It also has the ability to include user-defined contexts as part of the test configuration, which will be unwound in the order added using the standard *contextlib.{A}ExitStack()* functionality. .. code-block:: python @contextmanager def my_context(): resource = acquire_my_resource() try: yield 1 finally: release_my_resource(resource) @asynccontextmanager async def my_async_context(): resource = await acquire_my_async_resource() try: yield 1 finally: await release_my_async_resource(resource) my_configuration = OmniGraphTestConfiguration(contexts=[my_context], async_contexts=[my_async_context]) MyCustomClass = ogts.construct_test_class(configuration=my_configuration) class TestRun(MyCustomClass): async def test_without_clearing(self): run_my_test() """ def __init__(self, **kwargs): """Construct the stack objects that will hold the test contexts Args: clear_on_start (bool=False): Clear the scene before the test starts clear_on_finish (bool=False): Clear the scene after the test ends settings (dict=None): Dictionary of settingName:value to set while the test runs and restore after contexts (list=None): List of contextmanager functions or decorated classes to wrap the test runs async_contexts (list=None): List of asynccontextmanager functions or decorated classes to wrap the test runs extensions_enabled (list=None): List of the names of extensions to temporarily enable for the test extensions_disabled (list=None): List of the names of extensions to temporarily disable for the test Note: Be careful when using the extensions_{en,dis}abled options to ensure that you do not inadvertently force a hot reload of the extension containing the test. """ self.stack = ExitStack() self.async_stack = AsyncExitStack() self.__kwargs = dict(kwargs) # -------------------------------------------------------------------------------------------------------------- def __set_up_stack(self): """Define the parts of the ExitStack requested by the current keyword args""" @contextmanager def __enable_extensions(extensions: list[str]): manager = omni.kit.app.get_app().get_extension_manager() try: for name in extensions: manager.set_extension_enabled_immediate(name, True) yield True finally: pass @contextmanager def __disable_extensions(extensions: list[str]): manager = omni.kit.app.get_app().get_extension_manager() try: for name in extensions: manager.set_extension_enabled_immediate(name, False) yield True finally: pass for key, value in self.__kwargs.items(): if key == "settings": for setting, temporary_value in value.items(): self.stack.enter_context(og.Settings.temporary(setting, temporary_value)) elif key == "extensions_enabled": self.stack.enter_context(__enable_extensions(value)) elif key == "extensions_disabled": self.stack.enter_context(__disable_extensions(value)) elif key == "contexts": if not isinstance(value, list): value = [value] for context in value: self.stack.enter_context(context()) # -------------------------------------------------------------------------------------------------------------- async def __set_up_async_stack(self): """Define the parts of the AsyncExitStack requested by the current keyword args""" @asynccontextmanager async def __clear_scene_on_enter(): try: yield await omni.usd.get_context().new_stage_async() finally: pass @asynccontextmanager async def __clear_scene_on_exit(): try: yield None finally: await omni.usd.get_context().new_stage_async() for key, value in self.__kwargs.items(): if key == "clear_on_start" and value: await self.async_stack.enter_async_context(__clear_scene_on_enter()) if key == "clear_on_finish" and value: await self.async_stack.enter_async_context(__clear_scene_on_exit()) if key == "async_contexts": if not isinstance(value, list): value = [value] for context in value: await self.async_stack.enter_async_context(context()) # -------------------------------------------------------------------------------------------------------------- def __enter__(self): """When used as a context manager this class calls this at the start of a 'with' clause""" self.__set_up_stack() asyncio.ensure_future(self.__set_up_async_stack()) self.stack.__enter__() asyncio.ensure_future(self.async_stack.__aenter__()) def __exit__(self, exc_type=None, exc_value=None, exc_tb=None): """When used as a context manager this class calls this at the end of a 'with' clause""" self.stack.__exit__(exc_type, exc_value, exc_tb) asyncio.ensure_future(self.async_stack.__aexit__(exc_type, exc_value, exc_tb)) # -------------------------------------------------------------------------------------------------------------- async def __aenter__(self): """When used as an async context manager this class calls this at the start of a 'with' clause""" self.__set_up_stack() await self.__set_up_async_stack() self.stack.__enter__() await self.async_stack.__aenter__() async def __aexit__(self, exc_type=None, exc_value=None, exc_tb=None): """When used as an async context manager this class calls this at the end of a 'with' clause""" self.stack.__exit__(exc_type, exc_value, exc_tb) await self.async_stack.__aexit__(exc_type, exc_value, exc_tb) # ============================================================================================================== def construct_test_class(**kwargs): """Construct a new test case base class that configures the test in a predictable way. You can use the same parameters as :py:class:`OmniGraphTestConfiguration` to configure your test class, or you can construct one and pass it in as an argument Args: configuration (OmniGraphTestConfiguration): Full configuration definition deprecated (str | tuple[str, DeprecationLevel]): Used when this instantiation of the class has been deprecated base_class (object): Alternative base class for the test case, defaults to omni.kit.test.AsyncTestCase Other arguments can be seen in the parameters to :py:func:`OmniGraphTestConfiguration.setUp` Raises: TypeError if a base class was specified that is also a constructed class """ # Check to see if an alternative base class was passed in base_class = kwargs.get("base_class", omni.kit.test.AsyncTestCase) # Issue the deprecation message if specified, but continue on deprecation = kwargs.get("deprecated", None) try: configuration = kwargs["configuration"] if not isinstance(configuration, OmniGraphTestConfiguration): raise TypeError(f"configuration only accepts type OmniGraphTestConfiguration, not {type(configuration)}") except KeyError: configuration = OmniGraphTestConfiguration(**kwargs) # -------------------------------------------------------------------------------------------------------------- # Construct the customized test case base class object using the temporary setting and base class information class OmniGraphCustomTestCase(base_class): """A custom constructed test case base class that performs the prescribed setUp and tearDown actions.""" def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.__configuration = configuration self.__deprecation = deprecation async def setUp(self): """Set up the test by saving and then setting up all of the action contexts""" # Start with no test failures registered og.set_test_failure(False) if inspect.iscoroutinefunction(super().setUp): await super().setUp() else: super().setUp() if self.__deprecation is not None: if isinstance(self.__deprecation, tuple): if len(self.__deprecation) != 2: raise ValueError( "deprecation argument can only be a message or (message, level) pair" f" - saw {self.__deprecation}" ) ogt.DeprecateMessage.deprecated(self.__deprecation[0], self.__deprecation[1]) else: ogt.DeprecateMessage.deprecated(self.__deprecation) await self.__configuration.__aenter__() # noqa PLC2801 async def tearDown(self): """Complete the test by tearing down all of the action contexts""" await self.__configuration.__aexit__() if inspect.iscoroutinefunction(super().setUp): await super().tearDown() else: super().tearDown() # Recursive class definition is more complicated and can be done other ways if base_class.__name__ == "OmniGraphCustomTestCase": raise TypeError( "Recursive class definition is not supported (construct_test_class(base_class=construct_test_class(...)))" ) # Return the constructed class definition return OmniGraphCustomTestCase
omniverse-code/kit/exts/omni.graph/omni/graph/core/tests/test_node_type_forwarding.py
"""Tests that exercise the INodeTypeForwarding interface""" import omni.graph.core._unstable as ogu import omni.graph.core.tests as ogts import omni.kit.test import omni.usd # ============================================================================================================== class TestNodeTypeForwarding(omni.kit.test.AsyncTestCase): async def test_bindings(self): """Tests that the bindings for the ABI operate as expected""" interface_class = ogu.INodeTypeForwarding ogts.validate_abi_interface( interface_class, instance_methods=[ "define_forward", "remove_forward", "remove_forwarded_type", ], static_methods=[ "find_forward", "get_forwarding", ], properties=["forward_count"], ) get_interface = ogu.get_node_type_forwarding_interface self.assertIsNotNone(get_interface) interface = get_interface() self.assertIsNotNone(interface) self.assertTrue(isinstance(interface, ogu.INodeTypeForwarding)) try: # Try defining a simple forward original_forwarding = interface.forward_count replacement = ("ReplacementNodeType", 1, "omni.test.extension") original = ("ForwardedNodeType", 2) self.assertTrue(interface.define_forward(*original, *replacement)) self.assertEqual(original_forwarding + 1, interface.forward_count) all_forwarding = interface.get_forwarding() self.assertEqual(all_forwarding[original], replacement) found_forward = interface.find_forward(*original) self.assertEqual(found_forward, replacement) # Define a second forward secondary_replacement = ("SecondNodeType", 4, "omni.test.extension") secondary = ("SomeOtherNodeType", 2) self.assertTrue(interface.define_forward(*secondary, *secondary_replacement)) self.assertEqual(original_forwarding + 2, interface.forward_count) all_forwarding = interface.get_forwarding() self.assertEqual(all_forwarding[original], replacement) self.assertEqual(all_forwarding[secondary], secondary_replacement) # Define a chained forward ("ChainedNodeType", 1) -> ("ReplacementNodeType", 1) -> ("ForwardedNodeType", 2) chained_replacement = ("ChainedNodeType", 1, "omni.test.extension") chained = (replacement[0], replacement[1]) self.assertTrue(interface.define_forward(*chained, *chained_replacement)) found_forward = interface.find_forward(*chained) self.assertEqual(found_forward, chained_replacement) found_forward = interface.find_forward(*original) self.assertEqual(found_forward, chained_replacement) # Define a few forwarding for the same node type at different versions # ("ReplacementNodeType", 1) -> ("ForwardedNodeType", 2, "omni.test.extension") # ("ReplacementNodeType", 3) -> ("BetterNodeType", 1, "omni.borg.extension") # ("ReplacementNodeType", 7) -> ("SecondaryNodeType", 4, "omni.test.extension") better_replacement = ("BetterNodeType", 4, "omni.borg.extension") latest_forward = (replacement[0], replacement[1] + 2) self.assertTrue(interface.define_forward(*latest_forward, *better_replacement)) prototype_forward = (replacement[0], replacement[1] + 6) self.assertTrue(interface.define_forward(*prototype_forward, *secondary_replacement)) # What the "replacement" forward is expected to map to for the version equal to the index of the list... expected_versions = [ chained_replacement, chained_replacement, better_replacement, better_replacement, better_replacement, better_replacement, secondary_replacement, secondary_replacement, secondary_replacement, ] for index, version_to_test in enumerate(expected_versions): self.assertEqual( version_to_test, interface.find_forward(replacement[0], index + 1), f"Checking {replacement[0]}-{index + 1} maps to {version_to_test}", ) # Ensure that attempting to look up a version earlier than the first forward returns nothing early_version = (replacement[0], 0) with self.assertRaises(ValueError): interface.find_forward(*early_version) # Attempt to define a circular forward, which should not be allowed circular = (chained_replacement[0], chained_replacement[1]) with ogts.ExpectedError(): self.assertFalse(interface.define_forward(*circular, *chained_replacement)) # Attempt to define a multiple-step circular forward, which should not be allowed # ("ChainedNodeType", 1) -> ("ReplacementNodeType", 1) -> ("ForwardedNodeType", 2) -> ("ChainedNodeType", 1) with ogts.ExpectedError(): self.assertFalse(interface.define_forward(*chained, original[0], original[1], "omni.test.extension")) # Attempt to redefine the same forward, which should not be allowed with ogts.ExpectedError(): self.assertFalse(interface.define_forward(*chained, *chained_replacement)) finally: # Remove all of the forwarding, in reverse order so that earlier failures clean up after themselves self.assertTrue(interface.remove_forward(*prototype_forward)) self.assertTrue(interface.remove_forward(*latest_forward)) self.assertTrue(interface.remove_forward(*chained)) self.assertTrue(interface.remove_forward(*secondary)) self.assertTrue(interface.remove_forward(*original)) self.assertEqual(original_forwarding, interface.forward_count)
omniverse-code/kit/exts/omni.graph/omni/graph/core/tests/test_extension_unloads.py
""" Tests related to omnigraph state/api when extensions get unloaded. """ from contextlib import suppress import carb import omni.graph.core as og import omni.graph.core.tests as ogt import omni.kit.app import omni.kit.commands import omni.kit.test import omni.usd # ====================================================================== class TestExtensionUnloads(ogt.OmniGraphTestCase): # ----------------------------------------------------------------------- async def test_nodetype_when_extension_unloads(self): """Tests that nodes lose their node type when their extension unloads""" node_type = "omni.graph.examples.cpp.Simple" examples_cpp_extension = "omni.graph.examples.cpp" manager = omni.kit.app.get_app_interface().get_extension_manager() # If the extension is not found then the test cannot run examples_cpp_extension_id = None with suppress(Exception): examples_cpp_extension_id = manager.get_extension_id_by_module(examples_cpp_extension) if not examples_cpp_extension_id: carb.log_warn( f"test_nodetype_when_extension_unloads cannot run since {examples_cpp_extension} was not found" ) return examples_cpp_enabled = manager.is_extension_enabled(examples_cpp_extension) try: manager.set_extension_enabled_immediate(examples_cpp_extension, True) # create a graph with a node from the extension keys = og.Controller.Keys controller1 = og.Controller() (_, nodes, _, _) = controller1.edit( "/World/Graph", { keys.CREATE_NODES: [ ("Node", node_type), ], }, ) self.assertTrue(nodes[0].get_node_type().is_valid()) self.assertEquals(nodes[0].get_node_type().get_node_type(), node_type) # disable the extension, and validate the node type changes to a default type # the type is still valid, but is a default type manager.set_extension_enabled_immediate(examples_cpp_extension, False) self.assertTrue(nodes[0].get_node_type().is_valid()) self.assertEquals(nodes[0].get_node_type().get_node_type(), None) # re-enable the extension and validate the node type is restored manager.set_extension_enabled_immediate(examples_cpp_extension, True) self.assertTrue(nodes[0].get_node_type().is_valid()) self.assertEquals(nodes[0].get_node_type().get_node_type(), node_type) finally: manager.set_extension_enabled_immediate(examples_cpp_extension, examples_cpp_enabled)
omniverse-code/kit/exts/omni.graph/omni/graph/core/tests/expected_error.py
# -------------------------------------------------------------------------------------------------------------- class ExpectedError: """ Helper class used to prefix any pending error messages with [Expected Error] stdoutFailPatterns.exclude (defined in extension.toml) will cause these errors to be ignored when running tests. Note that it will prepend only the first error. Usage: with ExpectedError(): function_that_produced_error_output() """ def __enter__(self): # Preflush any output, otherwise it may be appended to the next statement. print("", flush=True) # Output the prefix string without a newline so that the error to be ignored will appear on # the same line. We do NOT want to flush this because that could allow output from another thread # to appear between the prefix and the error message. print("[Ignore this error/warning] ", end="", flush=False) def __exit__(self, exit_type, value, traceback): # Print a newline, to avoid actual errors being ignored. print("", flush=True)
omniverse-code/kit/exts/omni.graph/omni/graph/core/tests/test_bundle_hierarchy.py
import omni.graph.core as og import omni.graph.core.tests as ogt class BundleTestSetup(ogt.OmniGraphTestCase): async def setUp(self): """Set up test environment, to be torn down when done""" await super().setUp() self.graph = og.Controller.create_graph("/graph") self.context = self.graph.get_default_graph_context() self.factory = og.IBundleFactory.create() self.assertTrue(self.factory is not None) # bundle paths self.bundle1Name = "bundle1" self.bundle2Name = "bundle2" self.bundle3Name = "bundle3" self.bundle4Name = "bundle4" # attribute names self.attr1Name = "attr1" self.attr2Name = "attr2" # attribute types self.attr1Type = og.Type(og.BaseDataType.INT) self.attr2Type = og.Type(og.BaseDataType.FLOAT) self.bundle1 = self.factory.create_bundle(self.context, self.bundle1Name) self.assertTrue(self.bundle1.valid) # ------------------------------------------------------------------ # # FOLLOWING TESTS ARE IMPLEMENTATION DETAILS AND MUST NOT BE USED! # # ------------------------------------------------------------------ # class TestBundleHierarchyCleanup(BundleTestSetup): """This tests exercises cleanup of internals of the bundles.""" async def setUp(self): """Set up test environment, to be torn down when done""" await super().setUp() def test_recursive_child_bundle_removal(self): # create hierarchy of bundles b0 = self.bundle1 b1 = b0.create_child_bundle(self.bundle2Name) b2 = b1.create_child_bundle(self.bundle3Name) self.assertTrue(b0) self.assertTrue(b1) self.assertTrue(b2) p0 = f"{self.bundle1Name}" p1 = f"{self.bundle1Name}/{self.bundle2Name}" p2 = f"{self.bundle1Name}/{self.bundle2Name}/{self.bundle3Name}" self.assertTrue(self.factory.get_const_bundle_from_path(self.context, p0)) self.assertTrue(self.factory.get_const_bundle_from_path(self.context, p1)) self.assertTrue(self.factory.get_const_bundle_from_path(self.context, p2)) b0.clear_contents() # p0 is not removed, only the descendants will be gone self.assertTrue(self.factory.get_const_bundle_from_path(self.context, p0)) self.assertFalse(self.factory.get_const_bundle_from_path(self.context, p1)) self.assertFalse(self.factory.get_const_bundle_from_path(self.context, p2)) def test_recursive_child_bundle_metadata_removal(self): b0 = self.bundle1 b1 = b0.create_child_bundle(self.bundle2Name) # create bundle metadata b0.create_bundle_metadata(self.attr1Name, self.attr1Type) b1.create_bundle_metadata(self.attr1Name, self.attr1Type) # create bundle attributes b0.create_attribute(self.attr1Name, self.attr1Type) b1.create_attribute(self.attr1Name, self.attr1Type) # create attribute metadata b0.create_attribute_metadata(self.attr1Name, self.attr2Name, self.attr2Type) b1.create_attribute_metadata(self.attr1Name, self.attr2Name, self.attr2Type) # TODO: Investigate why passing c-string does not work. The conversion from c-string to PathC produces different ids. p0 = f"{self.bundle1Name}/__metadata__bundle__" p1 = f"{self.bundle1Name}/__metadata__bundle__/{self.attr1Name}" p2 = f"{self.bundle1Name}/{self.bundle2Name}/__metadata__bundle__" p3 = f"{self.bundle1Name}/{self.bundle2Name}/__metadata__bundle__/{self.attr1Name}" get = self.factory.get_const_bundle_from_path self.assertTrue(get(self.context, p0)) self.assertTrue(get(self.context, p1)) self.assertTrue(get(self.context, p2)) self.assertTrue(get(self.context, p3)) b0.clear_contents() self.assertFalse(get(self.context, p0)) self.assertFalse(get(self.context, p1)) self.assertFalse(get(self.context, p2)) self.assertFalse(get(self.context, p3)) def test_recursive_child_remove_with_cow(self): child_names = [self.bundle2Name, self.bundle3Name] b0 = self.bundle1 children = b0.create_child_bundles(child_names) # Copy-on-Write child bundles b1 = self.factory.create_bundle(self.context, self.bundle4Name) b1.copy_child_bundles(child_names, children) # check content get = self.factory.get_const_bundle_from_path # original bundle p0 = f"{self.bundle1Name}" p1 = f"{self.bundle1Name}/{self.bundle2Name}" p2 = f"{self.bundle1Name}/{self.bundle3Name}" self.assertTrue(get(self.context, p0)) self.assertTrue(get(self.context, p1)) self.assertTrue(get(self.context, p2)) # copied children p0 = f"{self.bundle4Name}" p1 = f"{self.bundle4Name}/{self.bundle2Name}" p2 = f"{self.bundle4Name}/{self.bundle3Name}" self.assertTrue(get(self.context, p0)) self.assertTrue(get(self.context, p1)) self.assertTrue(get(self.context, p2)) # remove shallow copies, but not the original location b1.clear_contents() # shallow children are gone self.assertTrue(get(self.context, p0)) self.assertFalse(get(self.context, p1)) self.assertFalse(get(self.context, p2)) # but original location stays intact p0 = f"{self.bundle1Name}" p1 = f"{self.bundle1Name}/{self.bundle2Name}" p2 = f"{self.bundle1Name}/{self.bundle3Name}" self.assertTrue(get(self.context, p0)) self.assertTrue(get(self.context, p1)) self.assertTrue(get(self.context, p2))
omniverse-code/kit/exts/omni.graph/omni/graph/core/tests/validation.py
"""Support for validation of content""" import inspect from enum import Enum # ============================================================================================================== class _FunctionType(Enum): """Enumeration to make an easy tag type for function type definitions""" FUNCTION = "function" """Type is an untethered function""" STATIC = "staticmethod" """Type is a static method of a class""" CLASS = "classmethod" """Type is a class method (with cls) of a class""" INSTANCE = "instancemethod" """Type is an instance method (with self) of a class""" NOT_A_FUNCTION = "unknown" """Type is not a recognized function type""" # ============================================================================================================== def _get_pybind_function_type(func: any) -> _FunctionType: """Check to see if the object is a function type of some kind. The way to check if a function from a pybind interface is static or not is quite different from how you would check regular functions. The regular methods are instancemethod types, as expected, but the static methods are classified as builtin methods. The parent class is always PyCapsule so the assumption has to be made that anything passed in here already belongs to the interface being tested. Args: func (any): The object to inspect Returns: _FunctionType|None: The type of function @p func is or None if it is not a function """ if not inspect.isroutine(func): return None function_type = type(func) if func.__name__ == func.__qualname__ or ".<locals>" in func.__qualname__: return _FunctionType.FUNCTION if function_type.__name__ == "builtin_function_or_method": return _FunctionType.STATIC if function_type.__name__ == "instancemethod": return _FunctionType.INSTANCE return _FunctionType.CLASS # ============================================================================================================== def validate_abi_interface( interface: any, instance_methods: list[str] = None, static_methods: list[str] = None, class_methods: list[str] = None, properties: list[str] = None, constants: list[tuple[str, any]] = None, ): """Validate an ABI interface's expected contents Args: interface (any): The interface object to validate instance_methods (list[str]): Names of interface members expected to be regular object functions static_methods (list[str]): Names of interface members expected to be static object functions class_methods (list[str]): Names of interface members expected to be class level functions properties (list[str]): Names of interface members expected to be object properties constants (list[str]): Names and types of interface members expected to be constant object values Raises: ValueError: if the interface was not consistent with the expected contents """ # Convert members to forms easier to compare actual_members = {function_name for function_name in dir(interface) if not function_name.startswith("_")} expected_instance_method_names = set(instance_methods or []) expected_static_method_names = set(static_methods or []) expected_class_method_names = set(class_methods or []) expected_property_names = set(properties or []) expected_constant_definitions = set(constants or []) expected_members = ( expected_instance_method_names.union(expected_property_names) .union(expected_static_method_names) .union(expected_class_method_names) .union(name for (name, _) in expected_constant_definitions) ) unexpected = actual_members - expected_members not_found = expected_members - actual_members errors = [] if unexpected: errors.append(f"Unexpected interface members found - {unexpected}") if not_found: errors.append(f"Expected interface members not found - {not_found}") def _validate_function_type(function_names: list[str], expected_type: _FunctionType): """Check that a list of function names have the given type, adding to 'errors' if not""" for function_name in function_names: function = getattr(interface, function_name, None) if not callable(function): errors.append(f"Expected function {function_name} was not a callable function, it was {type(function)}") return function_type = _get_pybind_function_type(function) if function_type != expected_type: errors.append(f"Expected function {function_name} to be {expected_type.value}, it was {function_type}") # Validate the expected functions _validate_function_type(expected_instance_method_names, _FunctionType.INSTANCE) _validate_function_type(expected_class_method_names, _FunctionType.CLASS) _validate_function_type(expected_static_method_names, _FunctionType.STATIC) # Validate the expected properties for property_name in expected_property_names: property_member = getattr(interface, property_name, None) if not isinstance(property_member, property): errors.append(f"Expected property {property_name} was not a property, it was {type(property_member)}") # The constants are already known to be present, now their types must be checked for constant_name, constant_type in expected_constant_definitions: constant_member = getattr(interface, constant_name, None) if not isinstance(constant_member, constant_type): errors.append( f"Expected constant {constant_name} to be type {constant_type}, it was {type(constant_member)}" ) # Raise an exception if any errors were found if errors: formatted_errors = "\n ".join(errors) raise ValueError(f"Errors with interface {interface}\n {formatted_errors}")
omniverse-code/kit/exts/omni.graph/omni/graph/core/tests/test_bundles.py
import omni.core as oc import omni.graph.core as og import omni.graph.core.tests as ogt class BundleTestCase(ogt.OmniGraphTestCase): async def setUp(self): """Set up test environment, to be torn down when done""" await super().setUp() self.graph = og.Controller.create_graph("/graph") self.context = self.graph.get_default_graph_context() self.factory = og.IBundleFactory.create() self.assertTrue(self.factory is not None) # bundle paths self.bundle1Name = "bundle1" self.bundle2Name = "bundle2" self.bundle3Name = "bundle3" self.bundle4Name = "bundle4" self.bundle5Name = "bundle5" # attribute names self.attr1Name = "attr1" self.attr2Name = "attr2" self.attr3Name = "attr3" self.attr4Name = "attr4" # attribute types self.attr1Type = og.Type(og.BaseDataType.INT) self.attr2Type = og.Type(og.BaseDataType.FLOAT) self.attr3Type = og.Type(og.BaseDataType.DOUBLE, 1, 1) self.attr4Type = og.Type(og.BaseDataType.BOOL, 1, 1) self.bundle1 = self.factory.create_bundle(self.context, self.bundle1Name) self.assertTrue(self.bundle1.valid) async def test_create_bundle(self): # Check bundle1 does not have a parent bundle. parent1 = self.bundle1.get_parent_bundle() self.assertFalse(parent1.valid) # Check bundle path. self.assertEqual(self.bundle1.get_path(), self.bundle1Name) # Test state of attributes. self.assertEqual(self.bundle1.get_attribute_count(), 0) self.assertEqual(len(self.bundle1.get_attribute_names()), 0) self.assertEqual(len(self.bundle1.get_attribute_types()), 0) self.assertEqual(len(self.bundle1.get_attributes()), 0) # Test state of child bundles. self.assertEqual(self.bundle1.get_child_bundle_count(), 0) self.assertEqual(len(self.bundle1.get_child_bundles()), 0) async def test_create_child_bundle(self): # Create bundle hierarchy: bundle1/bundle2/bundle3. bundle2 = self.bundle1.create_child_bundle(self.bundle2Name) self.assertTrue(bundle2.valid) self.assertEqual(bundle2.get_name(), self.bundle2Name) # Check number of children. self.assertEqual(self.bundle1.get_child_bundle_count(), 1) self.assertEqual(bundle2.get_child_bundle_count(), 0) # leaf, no children self.assertEqual(len(self.bundle1.get_child_bundles()), 1) self.assertEqual(len(bundle2.get_child_bundles()), 0) async def test_create_child_bundles(self): # Create bundle hierarchy: bundle1/bundle2/bundle3. bundle_paths = [self.bundle2Name, self.bundle3Name] self.bundle1.create_child_bundles(bundle_paths) self.assertEqual(self.bundle1.get_child_bundle_count(), 2) async def test_bundle_parent(self): # Create hierarchy: bundle1/bundle2/bundle3. bundle2 = self.bundle1.create_child_bundle(self.bundle2Name) self.assertTrue(bundle2.valid) # Check children paths. self.assertEqual(bundle2.get_path(), "/".join([self.bundle1Name, self.bundle2Name])) # Check parents paths. bundle2_parent = bundle2.get_parent_bundle() self.assertTrue(bundle2_parent.valid) self.assertEqual(bundle2_parent.get_path(), self.bundle1.get_path()) async def test_remove_child_bundle(self): # Create hierarchy: bundle1/bundle2/bundle3. bundle2 = self.bundle1.create_child_bundle(self.bundle2Name) self.assertTrue(bundle2.valid) bundle3 = bundle2.create_child_bundle(self.bundle3Name) self.assertTrue(bundle3.valid) # We can only remove intermediate children, remove children from bundle1 must fail. # Disabled because of: OM-48629. Re-enable after OM-48828 is solved. # with ExpectedError(): # self.assertEqual(self.bundle1.remove_all_child_bundles(), 0) # remove bundle2 from bundle1 # bundle3 is not an intermediate child of bundle1. self.assertFalse(self.bundle1.remove_child_bundle(bundle3)) self.assertEqual(bundle2.remove_child_bundle(bundle3), oc.Result.SUCCESS) self.assertEqual(self.bundle1.remove_child_bundle(bundle2), oc.Result.SUCCESS) async def test_remove_child_bundles(self): # Create bundle hierarchy. bundle2 = self.bundle1.create_child_bundle(self.bundle2Name) self.assertTrue(bundle2.valid) bundle3 = self.bundle1.create_child_bundle(self.bundle3Name) self.assertTrue(bundle3.valid) # Get child bundles. bundles = self.bundle1.get_child_bundles() self.assertEqual(len(bundles), 2) # Remove all child bundles that are in the array. self.bundle1.remove_child_bundles(bundles) self.assertEqual(self.bundle1.get_child_bundle_count(), 0) async def test_remove_child_bundles_by_name(self): _ = self.bundle1.create_child_bundle(self.bundle2Name) _ = self.bundle1.create_child_bundle(self.bundle3Name) _ = self.bundle1.create_child_bundle(self.bundle4Name) self.bundle1.remove_child_bundles_by_name([self.bundle2Name, self.bundle4Name]) self.assertEqual(self.bundle1.get_child_bundle_count(), 1) children = self.bundle1.get_child_bundles() self.assertEqual(len(children), 1) self.assertEqual(children[0].get_path(), "{}/{}".format(self.bundle1Name, self.bundle3Name)) async def test_copy_child_bundle(self): child = self.bundle1.create_child_bundle("child") new_bundle = self.factory.create_bundle(self.context, "new_bundle") new_bundle.copy_child_bundle(child) self.assertEqual(new_bundle.get_child_bundle_count(), 1) new_child = new_bundle.get_child_bundle_by_name("child") self.assertTrue(new_child.valid) async def test_copy_child_bundle_with_name(self): child = self.bundle1.create_child_bundle("child") new_bundle = self.factory.create_bundle(self.context, "new_bundle") new_bundle.copy_child_bundle(child, name="foo") self.assertEqual(new_bundle.get_child_bundle_count(), 1) new_child = new_bundle.get_child_bundle_by_name("child") self.assertFalse(new_child.valid) new_child = new_bundle.get_child_bundle_by_name("foo") self.assertTrue(new_child.valid) async def test_copy_child_bundles(self): children = self.bundle1.create_child_bundles(["childA", "childB"]) new_bundle = self.factory.create_bundle(self.context, "new_bundle") new_bundle.copy_child_bundles(children) self.assertEqual(new_bundle.get_child_bundle_count(), 2) new_children = new_bundle.get_child_bundles_by_name(["childA", "childB"]) self.assertEqual(len(new_children), 2) self.assertTrue(new_children[0].valid) self.assertTrue(new_children[1].valid) async def test_copy_child_bundles_with_names(self): children = self.bundle1.create_child_bundles(["childA", "childB"]) new_bundle = self.factory.create_bundle(self.context, "new_bundle") new_bundle.copy_child_bundles(children, names=["foo", "bar"]) self.assertEqual(new_bundle.get_child_bundle_count(), 2) new_children = new_bundle.get_child_bundles_by_name(["foo", "bar"]) self.assertEqual(len(new_children), 2) self.assertTrue(new_children[0].valid) self.assertTrue(new_children[1].valid) async def test_get_child_bundles_by_name(self): _ = self.bundle1.create_child_bundle(self.bundle2Name) _ = self.bundle1.create_child_bundle(self.bundle3Name) search = [self.bundle2Name, self.bundle3Name, self.bundle4Name] bundles = self.bundle1.get_child_bundles_by_name(search) self.assertTrue(bundles[0].valid) self.assertTrue(bundles[1].valid) self.assertFalse(bundles[2].valid) async def test_get_child_bundle_by_name(self): _ = self.bundle1.create_child_bundle(self.bundle2Name) _ = self.bundle1.create_child_bundle(self.bundle3Name) b2 = self.bundle1.get_child_bundle_by_name(self.bundle2Name) self.assertTrue(b2.valid) b3 = self.bundle1.get_child_bundle_by_name(self.bundle3Name) self.assertTrue(b3.valid) b4 = self.bundle1.get_child_bundle_by_name(self.bundle4Name) self.assertFalse(b4.valid) async def test_create_and_get_attribute(self): # Create each attribute individually. _ = self.bundle1.create_attribute(self.attr1Name, self.attr1Type) self.assertEqual(self.bundle1.get_attribute_count(), 1) attr = self.bundle1.get_attribute_by_name(self.attr1Name) self.assertFalse(attr is None) self.assertEqual(attr.get_name(), self.attr1Name) async def test_create_and_get_attributes(self): # Create attributes by providing array of names and types. names = [self.attr1Name, self.attr2Name, self.attr3Name] types = [self.attr1Type, self.attr2Type, self.attr3Type] self.bundle1.create_attributes(names, types) self.assertEqual(self.bundle1.get_attribute_count(), 3) # Get all attributes. attrs = self.bundle1.get_attributes() self.assertEqual(len(attrs), 3) attrs = {x.get_name(): x for x in attrs if x.is_valid()} self.assertEqual(len(attrs), 3) self.assertTrue(self.attr1Name in attrs) self.assertTrue(self.attr2Name in attrs) self.assertTrue(self.attr3Name in attrs) # Find existing attributes. attrs_query = [self.attr1Name, self.attr3Name] attrs = self.bundle1.get_attributes_by_name(attrs_query) self.assertEqual(len(attrs), 2) attrs = {x.get_name(): x for x in attrs if x} self.assertEqual(len(attrs), 2) self.assertTrue(self.attr1Name in attrs) self.assertTrue(self.attr3Name in attrs) self.assertTrue(attrs[self.attr1Name]) self.assertTrue(attrs[self.attr3Name]) # Attempt to find not existing attributes. attrs_query = [self.attr4Name] attrs = self.bundle1.get_attributes_by_name(attrs_query) self.assertEqual(len(attrs), 1) attrs = {x.get_name(): x for x in attrs if x} self.assertEqual(len(attrs), 0) async def test_create_array_attribute(self): # Create array attribute. attr3 = self.bundle1.create_attribute(self.attr3Name, self.attr3Type, 1000) self.assertTrue(attr3) self.assertEqual(attr3.size(), 1000) attr3 = self.bundle1.create_attribute(self.attr3Name, self.attr3Type, 0) self.assertEqual(attr3.size(), 0) async def test_create_attribute_like(self): attr1 = self.bundle1.create_attribute(self.attr1Name, self.attr1Type) # Create new bundle and create attribute like. bundle2 = self.factory.create_bundle(self.context, self.bundle2Name) like_attr1 = bundle2.create_attribute_like(attr1) self.assertTrue(like_attr1) self.assertEqual(like_attr1.get_name(), self.attr1Name) self.assertEqual(like_attr1.get_type(), self.attr1Type) async def test_create_attributes_like(self): # Create attributes in bundle1. names = [self.attr1Name, self.attr2Name] types = [self.attr1Type, self.attr2Type] attrs = self.bundle1.create_attributes(names, types) # Create bundle2 and create attributes like those from bundle1. bundle2 = self.factory.create_bundle(self.context, self.bundle2Name) like_attrs = bundle2.create_attributes_like(attrs) like_attrs = {x.get_name(): x for x in like_attrs if x} self.assertEqual(len(like_attrs), 2) self.assertTrue(self.attr1Name in like_attrs) self.assertTrue(self.attr2Name in like_attrs) async def test_remove_attributes(self): # Create attributes in bundle1. attr1 = self.bundle1.create_attribute(self.attr1Name, self.attr1Type) attr2 = self.bundle1.create_attribute(self.attr2Name, self.attr2Type) # Remove one attribute from bundle. self.assertEqual(self.bundle1.remove_attribute(attr2), oc.Result.SUCCESS) self.assertEqual(self.bundle1.get_attribute_count(), 1) # Try to remove non existing attributes. bundle2 = self.factory.create_bundle(self.context, self.bundle2Name) self.assertEqual(bundle2.remove_attributes([attr1, attr2]), 0) async def test_remove_attributes_by_name(self): _ = self.bundle1.create_attribute(self.attr1Name, self.attr1Type) _ = self.bundle1.create_attribute(self.attr2Name, self.attr2Type) _ = self.bundle1.create_attribute(self.attr3Name, self.attr3Type) self.bundle1.remove_attributes_by_name([self.attr1Name, self.attr3Name]) self.assertEqual(self.bundle1.get_attribute_count(), 1) names = self.bundle1.get_attribute_names() self.assertEqual(len(names), 1) self.assertEqual(names[0], self.attr2Name) async def test_copy_attribute(self): attr1 = self.bundle1.create_attribute(self.attr1Name, self.attr1Type) self.assertTrue(attr1) # Create bundle2 and copy attr1 from bundle1. bundle2 = self.factory.create_bundle(self.context, self.bundle2Name) cpy_attr1 = bundle2.copy_attribute(attr1) self.assertTrue(cpy_attr1) self.assertEqual(cpy_attr1.get_type(), self.attr1Type) async def test_copy_attributes(self): # Create attributes. names = [self.attr1Name, self.attr2Name] types = [self.attr1Type, self.attr2Type] src_attrs1 = self.bundle1.create_attributes(names, types) names = [self.attr3Name, self.attr4Name] types = [self.attr3Type, self.attr4Type] bundle2 = self.factory.create_bundle(self.context, self.bundle2Name) src_attrs2 = bundle2.create_attributes(names, types) # Create bundle3 and copy attributes from bundle1 and bundle2. bundle3 = self.factory.create_bundle(self.context, self.bundle3Name) src_attrs = src_attrs2 + src_attrs1 # reversed elements cpy_attrs = bundle3.copy_attributes(src_attrs) self.assertEqual(len(cpy_attrs), 4) # Check if attributes are valid. cpy_attrs = {x.get_name(): x for x in cpy_attrs if x} self.assertEqual(len(cpy_attrs), 4) # Get copied attributes by name. cpy_attr1 = bundle3.get_attribute_by_name(self.attr1Name) cpy_attr2 = bundle3.get_attribute_by_name(self.attr2Name) cpy_attr3 = bundle3.get_attribute_by_name(self.attr3Name) cpy_attr4 = bundle3.get_attribute_by_name(self.attr4Name) # Copied attributes must be valid. self.assertTrue(cpy_attr1.is_valid()) self.assertTrue(cpy_attr2.is_valid()) self.assertTrue(cpy_attr3.is_valid()) self.assertTrue(cpy_attr4.is_valid()) # Check copied attributes types. self.assertEqual(cpy_attr1.get_type(), self.attr1Type) self.assertEqual(cpy_attr2.get_type(), self.attr2Type) self.assertEqual(cpy_attr3.get_type(), self.attr3Type) self.assertEqual(cpy_attr4.get_type(), self.attr4Type) async def test_copy_attributes_override(self): # create double on bundle1 d_attr = self.bundle1.create_attribute(self.attr1Name, og.Type(og.BaseDataType.DOUBLE, 1, 1), 1000) self.assertEqual(d_attr.size(), 1000) # create bool on bundle2 bundle2 = self.factory.create_bundle(self.context, self.bundle2Name) b_attr = bundle2.create_attribute(self.attr1Name, og.Type(og.BaseDataType.BOOL, 1, 1), 10) self.assertEqual(b_attr.size(), 10) # try copy double attr = bundle2.copy_attribute(d_attr, overwrite=False) self.assertFalse(attr.is_valid()) # try copy double attr = bundle2.copy_attribute(d_attr, overwrite=True) self.assertTrue(attr.is_valid()) self.assertEqual(attr.size(), 1000) self.assertEqual(attr.get_type().base_type, self.attr3Type.base_type) async def test_get_path(self): # Create hierarchy: bundle1/bundle2/bundle3. bundle1 = self.bundle1 bundle2 = bundle1.create_child_bundle(self.bundle2Name) self.assertTrue(bundle2.valid) async def test_create_private_attribute(self): # This functionality is an implementation detail and should not be abused bundle = self.factory.create_bundle(self.context, "bundle") attrib = bundle.create_attribute("__bundle__private__attrib", og.Type(og.BaseDataType.INT)) self.assertTrue(attrib.is_valid()) self.assertEqual(bundle.get_attribute_count(), 0) async def test_target_attribute_type(self): target_type = og.Type(og.BaseDataType.RELATIONSHIP, 1, 0, og.AttributeRole.TARGET) bundle = self.bundle1 bundle.create_attribute("targets", target_type) self.assertEqual(bundle.get_attribute_count(), 1) attrib = bundle.get_attributes()[0] self.assertTrue(attrib.is_valid()) self.assertEqual(attrib.get_type().base_type, og.BaseDataType.RELATIONSHIP) self.assertEqual(attrib.get_type().role, og.AttributeRole.TARGET) class TestBundleMetadata(ogt.OmniGraphTestCase): """Test bundle metadata management""" async def setUp(self): """Set up test environment, to be torn down when done""" await super().setUp() self.graph = og.Controller.create_graph("/graph") self.context = self.graph.get_default_graph_context() self.factory = og.IBundleFactory.create() self.assertTrue(self.factory is not None) # bundle paths self.bundle1Name = "bundle1" self.bundle2Name = "bundle2" self.bundle3Name = "bundle3" self.bundle4Name = "bundle4" self.bundle5Name = "bundle5" # attribute names self.attr1Name = "attr1" self.attr2Name = "attr2" self.attr3Name = "attr3" self.attr4Name = "attr4" # attribute types self.attr1Type = og.Type(og.BaseDataType.INT) self.attr2Type = og.Type(og.BaseDataType.FLOAT) self.attr3Type = og.Type(og.BaseDataType.DOUBLE, 1, 1) self.attr4Type = og.Type(og.BaseDataType.BOOL, 1, 1) self.bundle1 = self.factory.create_bundle(self.context, self.bundle1Name) self.assertTrue(self.bundle1.valid) async def test_bundle_metadata_create(self): # check content self.assertEqual(self.bundle1.get_attribute_count(), 0) self.assertEqual(self.bundle1.get_child_bundle_count(), 0) self.assertEqual(self.bundle1.get_bundle_metadata_count(), 0) # create bundle metadata field1 = self.bundle1.create_bundle_metadata(self.attr1Name, self.attr1Type) field2 = self.bundle1.create_bundle_metadata(self.attr2Name, self.attr2Type) # check content self.assertEqual(self.bundle1.get_attribute_count(), 0) self.assertEqual(self.bundle1.get_child_bundle_count(), 0) self.assertEqual(self.bundle1.get_bundle_metadata_count(), 2) self.assertTrue(field1.is_valid()) self.assertTrue(field2.is_valid()) # create attributes self.bundle1.create_attribute(self.attr1Name, self.attr1Type) self.bundle1.create_attribute(self.attr2Name, self.attr2Type) # check content self.assertEqual(self.bundle1.get_attribute_count(), 2) self.assertEqual(self.bundle1.get_child_bundle_count(), 0) self.assertEqual(self.bundle1.get_bundle_metadata_count(), 2) # create children self.bundle1.create_child_bundle(self.bundle2Name) self.bundle1.create_child_bundle(self.bundle3Name) self.assertEqual(self.bundle1.get_attribute_count(), 2) self.assertEqual(self.bundle1.get_child_bundle_count(), 2) self.assertEqual(self.bundle1.get_bundle_metadata_count(), 2) async def test_bundle_metadata_remove_bulk(self): self.bundle1.create_attribute(self.attr1Name, self.attr1Type) self.bundle1.create_bundle_metadata([self.attr1Name, self.attr2Name], [self.attr1Type, self.attr2Type]) self.assertEqual(self.bundle1.get_attribute_count(), 1) self.assertEqual(self.bundle1.get_bundle_metadata_count(), 2) self.bundle1.remove_bundle_metadata([self.attr1Name, self.attr2Name]) self.assertEqual(self.bundle1.get_attribute_count(), 1) self.assertEqual(self.bundle1.get_bundle_metadata_count(), 0) async def test_bundle_metadata_remove_single(self): self.bundle1.create_attribute(self.attr1Name, self.attr1Type) self.bundle1.create_bundle_metadata(self.attr1Name, self.attr1Type) self.bundle1.create_bundle_metadata(self.attr2Name, self.attr2Type) self.assertEqual(self.bundle1.get_attribute_count(), 1) self.assertEqual(self.bundle1.get_bundle_metadata_count(), 2) self.bundle1.remove_bundle_metadata(self.attr1Name) self.assertEqual(self.bundle1.get_attribute_count(), 1) self.assertEqual(self.bundle1.get_bundle_metadata_count(), 1) self.bundle1.remove_bundle_metadata(self.attr2Name) self.assertEqual(self.bundle1.get_attribute_count(), 1) self.assertEqual(self.bundle1.get_bundle_metadata_count(), 0) async def test_bundle_metadata_remove_none(self): self.assertEqual(self.bundle1.get_attribute_count(), 0) self.assertEqual(self.bundle1.get_bundle_metadata_count(), 0) self.bundle1.remove_bundle_metadata(self.attr1Name) self.assertEqual(self.bundle1.get_attribute_count(), 0) self.assertEqual(self.bundle1.get_bundle_metadata_count(), 0) async def test_bundle_metadata_info(self): """ Counting number of attributes in metadata bundle. """ self.assertEqual(self.bundle1.get_bundle_metadata_count(), 0) self.assertEqual(len(self.bundle1.get_bundle_metadata_names()), 0) self.assertEqual(len(self.bundle1.get_bundle_metadata_types()), 0) # create two metadata attributes _ = self.bundle1.create_bundle_metadata(self.attr1Name, self.attr1Type) _ = self.bundle1.create_bundle_metadata(self.attr2Name, self.attr2Type) # check bundle metadata self.assertEqual(len(set(self.bundle1.get_bundle_metadata_names())), 2) self.assertEqual(len(set(self.bundle1.get_bundle_metadata_types())), 2) self.assertTrue(self.attr1Name in self.bundle1.get_bundle_metadata_names()) self.assertTrue(self.attr2Name in self.bundle1.get_bundle_metadata_names()) async def test_bundle_metadata_child_by_index(self): """ Metadata bundle can not be returned in a list of children. This test confirms that get_child_bundle does not return metadata bundle. """ # create two attributes _ = self.bundle1.create_attribute(self.attr1Name, self.attr1Type) _ = self.bundle1.create_attribute(self.attr2Name, self.attr2Type) # create children ref_paths = [self.bundle2Name, self.bundle3Name, self.bundle4Name, self.bundle5Name] for i, ref_path in enumerate(ref_paths): self.bundle1.create_child_bundle(ref_path) ref_paths[i] = "{}/{}".format(self.bundle1Name, ref_path) # get child by index unique_paths = set() for index in range(len(ref_paths)): child = self.bundle1.get_child_bundle(index) unique_paths.add(child.get_path()) self.assertTrue(child.get_path()) self.assertTrue(child.get_path() in ref_paths) self.assertEqual(len(unique_paths), 4) async def test_bundle_metadata_by_name(self): """ Get bundle metadata by name. """ # create two metadata attributes self.bundle1.create_bundle_metadata(self.attr1Name, self.attr1Type) self.bundle1.create_bundle_metadata(self.attr2Name, self.attr2Type) self.assertTrue(self.bundle1.get_bundle_metadata_count(), 2) attrs = self.bundle1.get_bundle_metadata_by_name([self.attr1Name, self.attr2Name]) self.assertEqual(len(attrs), 2) self.assertEqual(attrs[0].get_name(), self.attr1Name) self.assertEqual(attrs[1].get_name(), self.attr2Name) async def test_metadata_bundle_create_many_fields(self): self.bundle1.create_bundle_metadata([self.attr1Name, self.attr2Name], [self.attr1Type, self.attr2Type]) self.assertTrue(self.bundle1.get_bundle_metadata_count(), 2) attrs = self.bundle1.get_bundle_metadata_by_name([self.attr1Name, self.attr2Name]) self.assertEqual(len(attrs), 2) self.assertEqual(attrs[0].get_name(), self.attr1Name) self.assertEqual(attrs[1].get_name(), self.attr2Name) async def test_metadata_bundle_create_single_field(self): self.bundle1.create_bundle_metadata(self.attr1Name, self.attr1Type) self.bundle1.create_bundle_metadata(self.attr2Name, self.attr2Type) self.assertTrue(self.bundle1.get_bundle_metadata_count(), 2) attrs = self.bundle1.get_bundle_metadata_by_name([self.attr1Name, self.attr2Name]) self.assertEqual(len(attrs), 2) self.assertEqual(attrs[0].get_name(), self.attr1Name) self.assertEqual(attrs[1].get_name(), self.attr2Name) async def test_attribute_metadata_create(self): # check content self.assertEqual(self.bundle1.get_attribute_count(), 0) self.assertEqual(self.bundle1.get_child_bundle_count(), 0) self.assertEqual(self.bundle1.get_attribute_metadata_count(self.attr1Name), 0) # Create attribute metadata for not existing attribute should fail # Disabled because of: OM-48629. Re-enable after OM-48828 is solved. # field2 = self.bundle1.create_attribute_metadata(self.attr1Name, self.attr2Name, self.attr2Type) # field3 = self.bundle1.create_attribute_metadata(self.attr1Name, self.attr3Name, self.attr3Type) # self.assertFalse(field2.is_valid()) # self.assertFalse(field3.is_valid()) # check content self.assertEqual(self.bundle1.get_attribute_count(), 0) self.assertEqual(self.bundle1.get_child_bundle_count(), 0) self.assertEqual(self.bundle1.get_attribute_metadata_count(self.attr1Name), 0) # create attribute and metadata for existing attribute self.bundle1.create_attribute(self.attr1Name, self.attr1Type) field2 = self.bundle1.create_attribute_metadata(self.attr1Name, self.attr2Name, self.attr2Type) field3 = self.bundle1.create_attribute_metadata(self.attr1Name, self.attr3Name, self.attr3Type) # check content self.assertEqual(self.bundle1.get_attribute_count(), 1) self.assertEqual(self.bundle1.get_child_bundle_count(), 0) self.assertEqual(self.bundle1.get_attribute_metadata_count(self.attr1Name), 2) self.assertEqual(self.bundle1.get_attribute_metadata_count(self.attr2Name), 0) self.assertTrue(field2.is_valid()) self.assertTrue(field3.is_valid()) async def test_attribute_metadata_create_with_ns(self): # create attribute self.bundle1.create_attribute(self.attr1Name, self.attr1Type) # create metadata for attribute that contains namespace in it name = "node:type" _ = self.bundle1.create_attribute_metadata(self.attr1Name, name, self.attr2Type) self.assertEqual(self.bundle1.get_attribute_metadata_count(self.attr1Name), 1) names = self.bundle1.get_attribute_metadata_names(self.attr1Name) self.assertTrue(name in names) async def test_attribute_metadata_names_and_types(self): self.bundle1.create_attribute(self.attr1Name, self.attr1Type) _ = self.bundle1.create_attribute_metadata(self.attr1Name, self.attr2Name, self.attr2Type) _ = self.bundle1.create_attribute_metadata(self.attr1Name, self.attr3Name, self.attr3Type) names = self.bundle1.get_attribute_metadata_names(self.attr1Name) types = self.bundle1.get_attribute_metadata_types(self.attr1Name) self.assertEqual(len(names), 2) self.assertEqual(len(types), 2) self.assertTrue(self.attr2Name in names) self.assertTrue(self.attr3Name in names) async def test_attribute_metadata_by_name(self): self.bundle1.create_attribute(self.attr1Name, self.attr1Type) # not existing field1 = self.bundle1.get_attribute_metadata_by_name(self.attr1Name, self.attr2Name) self.assertFalse(field1.is_valid()) # create and query field1 = self.bundle1.create_attribute_metadata(self.attr1Name, self.attr2Name, self.attr2Type) self.assertTrue(field1.is_valid()) field1 = self.bundle1.get_attribute_metadata_by_name(self.attr1Name, self.attr2Name) self.assertTrue(field1.is_valid()) async def test_attribute_metadata_remove(self): self.bundle1.create_attribute(self.attr1Name, self.attr1Type) # create self.bundle1.create_attribute_metadata(self.attr1Name, self.attr2Name, self.attr2Type) self.bundle1.create_attribute_metadata(self.attr1Name, self.attr3Name, self.attr3Type) self.assertEqual(self.bundle1.get_attribute_metadata_count(self.attr1Name), 2) # remove single self.bundle1.remove_attribute_metadata(self.attr1Name, self.attr2Name) self.assertEqual(self.bundle1.get_attribute_metadata_count(self.attr1Name), 1) self.bundle1.remove_attribute_metadata(self.attr1Name, self.attr3Name) self.assertEqual(self.bundle1.get_attribute_metadata_count(self.attr1Name), 0) # create self.bundle1.create_attribute_metadata(self.attr1Name, self.attr2Name, self.attr2Type) self.bundle1.create_attribute_metadata(self.attr1Name, self.attr3Name, self.attr3Type) self.assertEqual(self.bundle1.get_attribute_metadata_count(self.attr1Name), 2) # remove bulk self.bundle1.remove_attribute_metadata(self.attr1Name, (self.attr2Name, self.attr3Name)) self.assertEqual(self.bundle1.get_attribute_metadata_count(self.attr1Name), 0) async def test_attribute_remove_with_metadata(self): attr1 = self.bundle1.create_attribute(self.attr1Name, self.attr1Type) self.bundle1.create_attribute_metadata(self.attr1Name, self.attr2Name, self.attr2Type) self.bundle1.create_attribute_metadata(self.attr1Name, self.attr3Name, self.attr3Type) self.assertEqual(self.bundle1.get_attribute_metadata_count(self.attr1Name), 2) # remove attribute should remove metadata self.bundle1.remove_attribute(attr1) self.assertEqual(self.bundle1.get_attribute_metadata_count(self.attr1Name), 0) async def test_bundle_array_metadata(self): met1 = self.bundle1.create_bundle_metadata(self.attr3Name, self.attr3Type, 1000) self.assertTrue(met1) self.assertEqual(met1.size(), 1000) async def test_attribute_array_metadata(self): self.bundle1.create_attribute(self.attr1Name, self.attr1Type) met1 = self.bundle1.create_attribute_metadata(self.attr1Name, self.attr3Name, self.attr3Type, 1000) self.assertTrue(met1) self.assertEqual(met1.size(), 1000) async def test_copy_attributes_with_metadata(self): attr1 = self.bundle1.create_attribute(self.attr1Name, self.attr1Type) self.bundle1.create_attribute_metadata(self.attr1Name, self.attr2Name, self.attr2Type) self.bundle1.create_attribute_metadata(self.attr1Name, self.attr3Name, self.attr3Type) self.assertTrue(attr1) # Create bundle2 and copy attr1 from bundle1 bundle2 = self.factory.create_bundle(self.context, self.bundle2Name) cpy_attr1 = bundle2.copy_attribute(attr1) self.assertTrue(cpy_attr1) self.assertEqual(cpy_attr1.get_type(), self.attr1Type) # metadata check self.assertEqual(bundle2.get_attribute_metadata_count(self.attr1Name), 2) names = bundle2.get_attribute_metadata_names(self.attr1Name) types = bundle2.get_attribute_metadata_types(self.attr1Name) self.assertEqual(len(names), 2) self.assertEqual(len(types), 2) self.assertTrue(self.attr2Name in names) self.assertTrue(self.attr3Name in names) async def test_copy_bundle(self): # create bundle metadata self.bundle1.create_bundle_metadata(self.attr2Name, self.attr2Type) self.bundle1.create_bundle_metadata(self.attr3Name, self.attr3Type) self.bundle1.create_bundle_metadata(self.attr4Name, self.attr4Type) # create attribute metadata self.bundle1.create_attribute(self.attr1Name, self.attr1Type) self.bundle1.create_attribute_metadata(self.attr1Name, self.attr2Name, self.attr2Type) self.bundle1.create_attribute_metadata(self.attr1Name, self.attr3Name, self.attr3Type) # Create bundle2 and copy attr1 from bundle1 bundle2 = self.factory.create_bundle(self.context, self.bundle2Name) bundle2.copy_bundle(self.bundle1) # bundle metadata check self.assertEqual(bundle2.get_bundle_metadata_count(), 3) names = bundle2.get_bundle_metadata_names() types = bundle2.get_bundle_metadata_names() self.assertTrue(self.attr2Name in names) self.assertTrue(self.attr3Name in names) self.assertTrue(self.attr4Name in names) self.assertEqual(len(types), 3) # attribute metadata check self.assertEqual(bundle2.get_attribute_metadata_count(self.attr1Name), 2) names = bundle2.get_attribute_metadata_names(self.attr1Name) types = bundle2.get_attribute_metadata_types(self.attr1Name) self.assertTrue(self.attr2Name in names) self.assertTrue(self.attr3Name in names) self.assertEqual(len(types), 2) async def init_for_clear_contents(self): # attributes 3 _ = self.bundle1.create_attribute(self.attr1Name, self.attr1Type) _ = self.bundle1.create_attribute(self.attr2Name, self.attr2Type) _ = self.bundle1.create_attribute(self.attr3Name, self.attr3Type) # children 2 _ = self.bundle1.create_child_bundle(self.bundle2Name) _ = self.bundle1.create_child_bundle(self.bundle3Name) # bundle metadata 4 self.bundle1.create_bundle_metadata(self.attr1Name, self.attr1Type) self.bundle1.create_bundle_metadata(self.attr2Name, self.attr2Type) self.bundle1.create_bundle_metadata(self.attr3Name, self.attr3Type) self.bundle1.create_bundle_metadata(self.attr4Name, self.attr4Type) # attr1 metadata 2 self.bundle1.create_attribute_metadata(self.attr1Name, self.attr3Name, self.attr3Type) self.bundle1.create_attribute_metadata(self.attr1Name, self.attr4Name, self.attr4Type) # attr2 metadata 1 self.bundle1.create_attribute_metadata(self.attr2Name, self.attr4Name, self.attr4Type) async def test_clear_contents(self): await self.init_for_clear_contents() self.assertEqual(self.bundle1.get_bundle_metadata_count(), 4) # metadata is not destroyed by default self.bundle1.clear_contents() # confirm bundle is clear self.assertEqual(self.bundle1.get_attribute_count(), 0) self.assertEqual(self.bundle1.get_child_bundle_count(), 0) self.assertEqual(self.bundle1.get_bundle_metadata_count(), 0) # metadata IS destroyed by default self.assertEqual(self.bundle1.get_attribute_metadata_count(self.attr1Name), 0) self.assertEqual(self.bundle1.get_attribute_metadata_count(self.attr2Name), 0) self.assertTrue(self.bundle1.valid) async def test_clear_contents_bundle_metadata(self): await self.init_for_clear_contents() self.assertEqual(self.bundle1.get_bundle_metadata_count(), 4) self.bundle1.clear_contents(bundle_metadata=True) self.assertEqual(self.bundle1.get_bundle_metadata_count(), 0) async def test_clear_contents_attributes(self): await self.init_for_clear_contents() self.assertEqual(self.bundle1.get_attribute_count(), 3) self.bundle1.clear_contents(attributes=False) self.assertEqual(self.bundle1.get_attribute_count(), 3) async def test_clear_contents_child_bundles(self): await self.init_for_clear_contents() self.assertEqual(self.bundle1.get_child_bundle_count(), 2) self.bundle1.clear_contents(child_bundles=False) self.assertEqual(self.bundle1.get_child_bundle_count(), 2) class TestBundleFactoryInterface(ogt.OmniGraphTestCase): async def setUp(self): """Set up test environment, to be torn down when done""" await super().setUp() self.graph = og.Controller.create_graph("/graph") self.context = self.graph.get_default_graph_context() self.factory = og.IBundleFactory.create() self.assertTrue(self.factory is not None) self.bundle1Name = "bundle1" self.bundle2Name = "bundle2" def test_bundle_conversion_method(self): """The factory used to allow the conversion from old Py_Bundle to new I(Const)Bundle interface. Depending on writability of Py_Bundle, IConstBundle2 or IBundle2 was returned. When Py_Bundle was removed backwards compatibility conversion methods were kept. As reported in OM-84762 factory fails to pass through IBundle2, and converts IBundle2 to IConstBundle2. Eventually this test should be removed in next release when get_bundle conversion method is hard deprecated. """ bundle1 = self.factory.create_bundle(self.context, self.bundle1Name) bundle2 = self.factory.get_bundle(bundle1.get_context(), bundle1) self.assertTrue(isinstance(bundle2, og.IBundle2))
omniverse-code/kit/exts/omni.graph/omni/graph/core/tests/test_bundle_attribute_data_access.py
import omni.graph.core as og import omni.graph.core.tests as ogt class TestBundleAttributeAccess(ogt.OmniGraphTestCase): async def setUp(self): await super().setUp() self.graph = og.Controller.create_graph("/graph") self.context = self.graph.get_default_graph_context() self.factory = og.IBundleFactory.create() self.assertTrue(self.factory is not None) self.bundle1Name = "bundle1" self.rwBundle = self.factory.create_bundle(self.context, self.bundle1Name) self.assertTrue(self.rwBundle.valid) self.attr1Name = "attr1" self.tupleType = og.Type(og.BaseDataType.INT, 2, 0) self.arrayType = og.Type(og.BaseDataType.INT, 1, 1) self.arrayTupleType = og.Type(og.BaseDataType.INT, 2, 1) async def test_tuple_write_permissions(self): attr = self.rwBundle.create_attribute(self.attr1Name, self.tupleType) with self.assertRaises(ValueError): data = attr.as_read_only().get() data[0] = 42 # writing to data will throw data = attr.get() data[0] = 42 # writing to data will not throw async def test_array_type_write_permissions(self): attr = self.rwBundle.create_attribute(self.attr1Name, self.arrayType) # GPU = False, Write = True # calling get_array will throw with self.assertRaises(ValueError): attr.as_read_only().get_array(False, True, 10) # GPU = False, Write = False # calling get_array will not throw attr.as_read_only().get_array(False, False, 10) async def test_array_of_tuple_write_permissions(self): attr = self.rwBundle.create_attribute(self.attr1Name, self.arrayTupleType) # GPU = False, Write = True # calling get_array will throw with self.assertRaises(ValueError): attr.as_read_only().get_array(False, True, 10) # GPU = False, Write = False # calling get_array will not throw attr.get_array(False, False, 10)
omniverse-code/kit/exts/omni.graph/omni/graph/core/tests/test_data_wrapper.py
"""Suite of tests to exercise the DataWrapper class as a unit.""" import omni.graph.core as og import omni.kit.test # The test needs some non-standard imports to do its thing from omni.graph.core._impl.dtypes import ( Bool, BundleOutput, Double, Double2, Double3, Double4, Float, Float2, Float3, Float4, Half, Half2, Half3, Half4, Int, Int2, Int3, Int4, Int64, Matrix2d, Matrix3d, Matrix4d, Token, UChar, UInt, UInt64, ) class TestDataWrapper(omni.kit.test.AsyncTestCase): """Wrapper for unit tests for the og.DataWrapper class""" # ---------------------------------------------------------------------- async def test_data_wrapper_creation(self): """Test creation of the DataWrapper from the raw og.Type""" # Test data that enumerates all of the OGN types. Values of the list entries are: # OGN type name # Expected dtype # Expected shape for non-gathered attributes # Expected shape for gathered attributes test_data = [ ("any", Token, None, (2,)), ("bool", Bool, None, (2,)), ("bool[]", Bool, (0,), ((2, 2))), ("bundle", BundleOutput, None, (2,)), ("colord[3]", Double3, (3,), ((2,), 3)), ("colord[3][]", Double3, (0, 3), (((2, 2)), 3)), ("colord[4]", Double4, (4,), ((2,), 4)), ("colord[4][]", Double4, (0, 4), ((2, 2), 4)), ("colorf[3]", Float3, (3,), ((2,), 3)), ("colorf[3][]", Float3, (0, 3), ((2, 2), 3)), ("colorf[4]", Float4, (4,), ((2,), 4)), ("colorf[4][]", Float4, (0, 4), ((2, 2), 4)), ("colorh[3]", Half3, (3,), ((2,), 3)), ("colorh[3][]", Half3, (0, 3), ((2, 2), 3)), ("colorh[4]", Half4, (4,), ((2,), 4)), ("colorh[4][]", Half4, (0, 4), ((2, 2), 4)), ("double", Double, None, (2,)), ("double[]", Double, (0,), ((2, 2))), ("double[2]", Double2, (2,), ((2,), 2)), ("double[2][]", Double2, (0, 2), ((2, 2), 2)), ("double[3]", Double3, (3,), ((2,), 3)), ("double[3][]", Double3, (0, 3), ((2, 2), 3)), ("double[4]", Double4, (4,), ((2,), 4)), ("double[4][]", Double4, (0, 4), ((2, 2), 4)), ("execution", UInt, None, (2,)), ("float", Float, None, (2,)), ("float[]", Float, (0,), ((2, 2))), ("float[2]", Float2, (2,), ((2,), 2)), ("float[2][]", Float2, (0, 2), ((2, 2), 2)), ("float[3]", Float3, (3,), ((2,), 3)), ("float[3][]", Float3, (0, 3), ((2, 2), 3)), ("float[4]", Float4, (4,), ((2,), 4)), ("float[4][]", Float4, (0, 4), ((2, 2), 4)), ("frame[4]", Matrix4d, (4, 4), ((2,), 4, 4)), ("frame[4][]", Matrix4d, (0, 4, 4), ((2, 2), 4, 4)), ("half", Half, None, (2,)), ("half[]", Half, (0,), ((2, 2))), ("half[2]", Half2, (2,), ((2,), 2)), ("half[2][]", Half2, (0, 2), ((2, 2), 2)), ("half[3]", Half3, (3,), ((2,), 3)), ("half[3][]", Half3, (0, 3), ((2, 2), 3)), ("half[4]", Half4, (4,), ((2,), 4)), ("half[4][]", Half4, (0, 4), ((2, 2), 4)), ("int", Int, None, (2,)), ("int[]", Int, (0,), ((2, 2))), ("int[2]", Int2, (2,), ((2,), 2)), ("int[2][]", Int2, (0, 2), ((2, 2), 2)), ("int[3]", Int3, (3,), ((2,), 3)), ("int[3][]", Int3, (0, 3), ((2, 2), 3)), ("int[4]", Int4, (4,), ((2,), 4)), ("int[4][]", Int4, (0, 4), ((2, 2), 4)), ("int64", Int64, None, (2,)), ("int64[]", Int64, (0,), ((2, 2))), ("matrixd[2]", Matrix2d, (2, 2), ((2,), 2, 2)), ("matrixd[2][]", Matrix2d, (0, 2, 2), ((2, 2), 2, 2)), ("matrixd[3]", Matrix3d, (3, 3), ((2,), 3, 3)), ("matrixd[3][]", Matrix3d, (0, 3, 3), ((2, 2), 3, 3)), ("matrixd[4]", Matrix4d, (4, 4), ((2,), 4, 4)), ("matrixd[4][]", Matrix4d, (0, 4, 4), ((2, 2), 4, 4)), ("normald[3]", Double3, (3,), ((2,), 3)), ("normald[3][]", Double3, (0, 3), (((2, 2)), 3)), ("normalf[3]", Float3, (3,), ((2,), 3)), ("normalf[3][]", Float3, (0, 3), ((2, 2), 3)), ("normalh[3]", Half3, (3,), ((2,), 3)), ("normalh[3][]", Half3, (0, 3), ((2, 2), 3)), ("objectId", UInt64, None, (2,)), ("objectId[]", UInt64, (0,), ((2, 2))), ("pointd[3]", Double3, (3,), ((2,), 3)), ("pointd[3][]", Double3, (0, 3), (((2, 2)), 3)), ("pointf[3]", Float3, (3,), ((2,), 3)), ("pointf[3][]", Float3, (0, 3), ((2, 2), 3)), ("pointh[3]", Half3, (3,), ((2,), 3)), ("pointh[3][]", Half3, (0, 3), ((2, 2), 3)), ("quatd[4]", Double4, (4,), ((2,), 4)), ("quatd[4][]", Double4, (0, 4), (((2, 2)), 4)), ("quatf[4]", Float4, (4,), ((2,), 4)), ("quatf[4][]", Float4, (0, 4), ((2, 2), 4)), ("quath[4]", Half4, (4,), ((2,), 4)), ("quath[4][]", Half4, (0, 4), ((2, 2), 4)), ("string", UChar, (0,), ((2, 2))), ("target", BundleOutput, None, (2,)), ("texcoordd[2]", Double2, (2,), ((2,), 2)), ("texcoordd[2][]", Double2, (0, 2), (((2, 2)), 2)), ("texcoordd[3]", Double3, (3,), ((2,), 3)), ("texcoordd[3][]", Double3, (0, 3), ((2, 2), 3)), ("texcoordf[2]", Float2, (2,), ((2,), 2)), ("texcoordf[2][]", Float2, (0, 2), ((2, 2), 2)), ("texcoordf[3]", Float3, (3,), ((2,), 3)), ("texcoordf[3][]", Float3, (0, 3), ((2, 2), 3)), ("texcoordh[2]", Half2, (2,), ((2,), 2)), ("texcoordh[2][]", Half2, (0, 2), ((2, 2), 2)), ("texcoordh[3]", Half3, (3,), ((2,), 3)), ("texcoordh[3][]", Half3, (0, 3), ((2, 2), 3)), ("timecode", Double, None, (2,)), ("timecode[]", Double, (0,), ((2, 2))), ("token", Token, None, (2,)), ("token[]", Token, (0,), ((2, 2))), ("uchar", UChar, None, (2,)), ("uchar[]", UChar, (0,), ((2, 2))), ("uint", UInt, None, (2,)), ("uint[]", UInt, (0,), ((2, 2))), ("uint64", UInt64, None, (2,)), ("uint64[]", UInt64, (0,), ((2, 2))), ("vectord[3]", Double3, (3,), ((2,), 3)), ("vectord[3][]", Double3, (0, 3), (((2, 2)), 3)), ("vectorf[3]", Float3, (3,), ((2,), 3)), ("vectorf[3][]", Float3, (0, 3), ((2, 2), 3)), ("vectorh[3]", Half3, (3,), ((2,), 3)), ("vectorh[3][]", Half3, (0, 3), ((2, 2), 3)), ] for name, expected_dtype, expected_ungathered_shape, expected_gathered_shape in test_data: attribute_type = og.AttributeType.type_from_ogn_type_name(name) ungathered_dtype, ungathered_shape = og.data_shape_from_type(attribute_type, is_gathered=False) gathered_dtype, gathered_shape = og.data_shape_from_type(attribute_type, is_gathered=True) self.assertEqual(ungathered_dtype.__class__, expected_dtype, f"Mismatched type for {name}") self.assertEqual(ungathered_shape, expected_ungathered_shape, f"Mismatched shape for {name}") self.assertEqual(ungathered_dtype, gathered_dtype, f"Mismatched gathered type for {name}") self.assertEqual(gathered_shape, expected_gathered_shape, f"Mismatched gathered shape for {name}") # ---------------------------------------------------------------------- async def test_data_wrapper_indexing(self): """Test indexing of the DataWrapper for all of the documented supported types""" # Test data drives all of the test cases for expected index results. The data is a list of test # configurations consisting of: # Dtype of the parent wrapper # Shape of the parent wrapper # Index to be be taken to get the child # Expected Dtype of the child wrapper (None means to expect an exception raised) # Expected shape of the child wrapper # Expected memory location offset of the child at index 1 from the parent test_data = [ [Float, None, 1, None, None, 0], # Single value [Float, (3,), 1, Float, None, Float.size], # Array of 3 simple values [Float3, (3,), 1, Float, None, Float.size], # Tuple of 3 simple values [Float3, (2, 3), 1, Float3, (3,), Float3.size], # Array of 2 triple values [Matrix2d, (2, 2), 1, Double2, (2,), Double2.size], # A 2x2 matrix [Matrix2d, (3, 2, 2), 1, Matrix2d, (2, 2), Matrix2d.size], # An array of 3 2x2 matrixes [Float3, (3,), -1, None, None, 0], # Index too low [Float3, (3, 3), -1, None, None, 0], [Float3, ((3,), 3), -1, None, None, 0], [Float3, ((3, 4), 3), -1, None, None, 0], [Float, (3,), -1, None, None, 0], [Float, ((3,), 3), -1, None, None, 0], [Float, ((3, 4), 3), -1, None, None, 0], [Matrix2d, (2, 2), -1, None, None, 0], [Matrix2d, (3, 2, 2), -1, None, None, 0], [Matrix2d, ((3,), 2, 2), -1, None, None, 0], [Matrix2d, ((3, 4), 2, 2), -1, None, None, 0], [Float3, (3,), 4, None, None, 0], # Index too high [Float3, (3, 3), 4, None, None, 0], [Float3, ((3,), 3), 4, None, None, 0], [Float3, ((3, 4), 3), 4, None, None, 0], [Float, (3,), 4, None, None, 0], [Float, ((3,), 3), 4, None, None, 0], [Float, ((3, 4), 3), 4, None, None, 0], [Matrix2d, (2, 2), 4, None, None, 0], [Matrix2d, (3, 2, 2), 4, None, None, 0], [Matrix2d, ((3,), 2, 2), 4, None, None, 0], [Matrix2d, ((3, 4), 2, 2), 4, None, None, 0], [Float, (3, 3), 1, None, None, 0], # Too many levels of array [Float4, (3,), 1, None, None, 0], # Mismatched shape size for tuple [Float4, (3, 3), 1, None, None, 0], # Mismatched shape size for tuple array [Matrix2d, (3, 3), 1, None, None, 0], # Mismatched shape size for matrix [Matrix2d, (2, 3, 3), 1, None, None, 0], # Mismatched shape size for matrix array ] for parent_dtype, parent_shape, child_index, child_dtype, child_shape, child_offset in test_data: if child_dtype is None: with self.assertRaises(ValueError): parent_wrapper = og.DataWrapper(0, parent_dtype, parent_shape, og.Device.cuda) _ = parent_wrapper[child_index] else: parent_wrapper = og.DataWrapper(0, parent_dtype, parent_shape, og.Device.cuda) child_wrapper = parent_wrapper[child_index] self.assertEqual(child_wrapper.dtype.tuple_count, child_dtype.tuple_count) self.assertEqual(child_wrapper.dtype.base_type, child_dtype.base_type) self.assertEqual(child_wrapper.shape, child_shape) self.assertEqual(child_wrapper.memory, child_offset)
omniverse-code/kit/exts/omni.graph/omni/graph/core/data/ExampleThreeDeformersDirtyPush.usda
#usda 1.0 def "World" { def Mesh "inputGrid" { uniform bool doubleSided = 1 int[] faceVertexCounts = [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 1, 33, 0, 33, 32, 1, 2, 34, 1, 34, 33, 2, 3, 35, 2, 35, 34, 3, 4, 36, 3, 36, 35, 4, 5, 37, 4, 37, 36, 5, 6, 38, 5, 38, 37, 6, 7, 39, 6, 39, 38, 7, 8, 40, 7, 40, 39, 8, 9, 41, 8, 41, 40, 9, 10, 42, 9, 42, 41, 10, 11, 43, 10, 43, 42, 11, 12, 44, 11, 44, 43, 12, 13, 45, 12, 45, 44, 13, 14, 46, 13, 46, 45, 14, 15, 47, 14, 47, 46, 15, 16, 48, 15, 48, 47, 16, 17, 49, 16, 49, 48, 17, 18, 50, 17, 50, 49, 18, 19, 51, 18, 51, 50, 19, 20, 52, 19, 52, 51, 20, 21, 53, 20, 53, 52, 21, 22, 54, 21, 54, 53, 22, 23, 55, 22, 55, 54, 23, 24, 56, 23, 56, 55, 24, 25, 57, 24, 57, 56, 25, 26, 58, 25, 58, 57, 26, 27, 59, 26, 59, 58, 27, 28, 60, 27, 60, 59, 28, 29, 61, 28, 61, 60, 29, 30, 62, 29, 62, 61, 30, 31, 63, 30, 63, 62, 32, 33, 65, 32, 65, 64, 33, 34, 66, 33, 66, 65, 34, 35, 67, 34, 67, 66, 35, 36, 68, 35, 68, 67, 36, 37, 69, 36, 69, 68, 37, 38, 70, 37, 70, 69, 38, 39, 71, 38, 71, 70, 39, 40, 72, 39, 72, 71, 40, 41, 73, 40, 73, 72, 41, 42, 74, 41, 74, 73, 42, 43, 75, 42, 75, 74, 43, 44, 76, 43, 76, 75, 44, 45, 77, 44, 77, 76, 45, 46, 78, 45, 78, 77, 46, 47, 79, 46, 79, 78, 47, 48, 80, 47, 80, 79, 48, 49, 81, 48, 81, 80, 49, 50, 82, 49, 82, 81, 50, 51, 83, 50, 83, 82, 51, 52, 84, 51, 84, 83, 52, 53, 85, 52, 85, 84, 53, 54, 86, 53, 86, 85, 54, 55, 87, 54, 87, 86, 55, 56, 88, 55, 88, 87, 56, 57, 89, 56, 89, 88, 57, 58, 90, 57, 90, 89, 58, 59, 91, 58, 91, 90, 59, 60, 92, 59, 92, 91, 60, 61, 93, 60, 93, 92, 61, 62, 94, 61, 94, 93, 62, 63, 95, 62, 95, 94, 64, 65, 97, 64, 97, 96, 65, 66, 98, 65, 98, 97, 66, 67, 99, 66, 99, 98, 67, 68, 100, 67, 100, 99, 68, 69, 101, 68, 101, 100, 69, 70, 102, 69, 102, 101, 70, 71, 103, 70, 103, 102, 71, 72, 104, 71, 104, 103, 72, 73, 105, 72, 105, 104, 73, 74, 106, 73, 106, 105, 74, 75, 107, 74, 107, 106, 75, 76, 108, 75, 108, 107, 76, 77, 109, 76, 109, 108, 77, 78, 110, 77, 110, 109, 78, 79, 111, 78, 111, 110, 79, 80, 112, 79, 112, 111, 80, 81, 113, 80, 113, 112, 81, 82, 114, 81, 114, 113, 82, 83, 115, 82, 115, 114, 83, 84, 116, 83, 116, 115, 84, 85, 117, 84, 117, 116, 85, 86, 118, 85, 118, 117, 86, 87, 119, 86, 119, 118, 87, 88, 120, 87, 120, 119, 88, 89, 121, 88, 121, 120, 89, 90, 122, 89, 122, 121, 90, 91, 123, 90, 123, 122, 91, 92, 124, 91, 124, 123, 92, 93, 125, 92, 125, 124, 93, 94, 126, 93, 126, 125, 94, 95, 127, 94, 127, 126, 96, 97, 129, 96, 129, 128, 97, 98, 130, 97, 130, 129, 98, 99, 131, 98, 131, 130, 99, 100, 132, 99, 132, 131, 100, 101, 133, 100, 133, 132, 101, 102, 134, 101, 134, 133, 102, 103, 135, 102, 135, 134, 103, 104, 136, 103, 136, 135, 104, 105, 137, 104, 137, 136, 105, 106, 138, 105, 138, 137, 106, 107, 139, 106, 139, 138, 107, 108, 140, 107, 140, 139, 108, 109, 141, 108, 141, 140, 109, 110, 142, 109, 142, 141, 110, 111, 143, 110, 143, 142, 111, 112, 144, 111, 144, 143, 112, 113, 145, 112, 145, 144, 113, 114, 146, 113, 146, 145, 114, 115, 147, 114, 147, 146, 115, 116, 148, 115, 148, 147, 116, 117, 149, 116, 149, 148, 117, 118, 150, 117, 150, 149, 118, 119, 151, 118, 151, 150, 119, 120, 152, 119, 152, 151, 120, 121, 153, 120, 153, 152, 121, 122, 154, 121, 154, 153, 122, 123, 155, 122, 155, 154, 123, 124, 156, 123, 156, 155, 124, 125, 157, 124, 157, 156, 125, 126, 158, 125, 158, 157, 126, 127, 159, 126, 159, 158, 128, 129, 161, 128, 161, 160, 129, 130, 162, 129, 162, 161, 130, 131, 163, 130, 163, 162, 131, 132, 164, 131, 164, 163, 132, 133, 165, 132, 165, 164, 133, 134, 166, 133, 166, 165, 134, 135, 167, 134, 167, 166, 135, 136, 168, 135, 168, 167, 136, 137, 169, 136, 169, 168, 137, 138, 170, 137, 170, 169, 138, 139, 171, 138, 171, 170, 139, 140, 172, 139, 172, 171, 140, 141, 173, 140, 173, 172, 141, 142, 174, 141, 174, 173, 142, 143, 175, 142, 175, 174, 143, 144, 176, 143, 176, 175, 144, 145, 177, 144, 177, 176, 145, 146, 178, 145, 178, 177, 146, 147, 179, 146, 179, 178, 147, 148, 180, 147, 180, 179, 148, 149, 181, 148, 181, 180, 149, 150, 182, 149, 182, 181, 150, 151, 183, 150, 183, 182, 151, 152, 184, 151, 184, 183, 152, 153, 185, 152, 185, 184, 153, 154, 186, 153, 186, 185, 154, 155, 187, 154, 187, 186, 155, 156, 188, 155, 188, 187, 156, 157, 189, 156, 189, 188, 157, 158, 190, 157, 190, 189, 158, 159, 191, 158, 191, 190, 160, 161, 193, 160, 193, 192, 161, 162, 194, 161, 194, 193, 162, 163, 195, 162, 195, 194, 163, 164, 196, 163, 196, 195, 164, 165, 197, 164, 197, 196, 165, 166, 198, 165, 198, 197, 166, 167, 199, 166, 199, 198, 167, 168, 200, 167, 200, 199, 168, 169, 201, 168, 201, 200, 169, 170, 202, 169, 202, 201, 170, 171, 203, 170, 203, 202, 171, 172, 204, 171, 204, 203, 172, 173, 205, 172, 205, 204, 173, 174, 206, 173, 206, 205, 174, 175, 207, 174, 207, 206, 175, 176, 208, 175, 208, 207, 176, 177, 209, 176, 209, 208, 177, 178, 210, 177, 210, 209, 178, 179, 211, 178, 211, 210, 179, 180, 212, 179, 212, 211, 180, 181, 213, 180, 213, 212, 181, 182, 214, 181, 214, 213, 182, 183, 215, 182, 215, 214, 183, 184, 216, 183, 216, 215, 184, 185, 217, 184, 217, 216, 185, 186, 218, 185, 218, 217, 186, 187, 219, 186, 219, 218, 187, 188, 220, 187, 220, 219, 188, 189, 221, 188, 221, 220, 189, 190, 222, 189, 222, 221, 190, 191, 223, 190, 223, 222, 192, 193, 225, 192, 225, 224, 193, 194, 226, 193, 226, 225, 194, 195, 227, 194, 227, 226, 195, 196, 228, 195, 228, 227, 196, 197, 229, 196, 229, 228, 197, 198, 230, 197, 230, 229, 198, 199, 231, 198, 231, 230, 199, 200, 232, 199, 232, 231, 200, 201, 233, 200, 233, 232, 201, 202, 234, 201, 234, 233, 202, 203, 235, 202, 235, 234, 203, 204, 236, 203, 236, 235, 204, 205, 237, 204, 237, 236, 205, 206, 238, 205, 238, 237, 206, 207, 239, 206, 239, 238, 207, 208, 240, 207, 240, 239, 208, 209, 241, 208, 241, 240, 209, 210, 242, 209, 242, 241, 210, 211, 243, 210, 243, 242, 211, 212, 244, 211, 244, 243, 212, 213, 245, 212, 245, 244, 213, 214, 246, 213, 246, 245, 214, 215, 247, 214, 247, 246, 215, 216, 248, 215, 248, 247, 216, 217, 249, 216, 249, 248, 217, 218, 250, 217, 250, 249, 218, 219, 251, 218, 251, 250, 219, 220, 252, 219, 252, 251, 220, 221, 253, 220, 253, 252, 221, 222, 254, 221, 254, 253, 222, 223, 255, 222, 255, 254, 224, 225, 257, 224, 257, 256, 225, 226, 258, 225, 258, 257, 226, 227, 259, 226, 259, 258, 227, 228, 260, 227, 260, 259, 228, 229, 261, 228, 261, 260, 229, 230, 262, 229, 262, 261, 230, 231, 263, 230, 263, 262, 231, 232, 264, 231, 264, 263, 232, 233, 265, 232, 265, 264, 233, 234, 266, 233, 266, 265, 234, 235, 267, 234, 267, 266, 235, 236, 268, 235, 268, 267, 236, 237, 269, 236, 269, 268, 237, 238, 270, 237, 270, 269, 238, 239, 271, 238, 271, 270, 239, 240, 272, 239, 272, 271, 240, 241, 273, 240, 273, 272, 241, 242, 274, 241, 274, 273, 242, 243, 275, 242, 275, 274, 243, 244, 276, 243, 276, 275, 244, 245, 277, 244, 277, 276, 245, 246, 278, 245, 278, 277, 246, 247, 279, 246, 279, 278, 247, 248, 280, 247, 280, 279, 248, 249, 281, 248, 281, 280, 249, 250, 282, 249, 282, 281, 250, 251, 283, 250, 283, 282, 251, 252, 284, 251, 284, 283, 252, 253, 285, 252, 285, 284, 253, 254, 286, 253, 286, 285, 254, 255, 287, 254, 287, 286, 256, 257, 289, 256, 289, 288, 257, 258, 290, 257, 290, 289, 258, 259, 291, 258, 291, 290, 259, 260, 292, 259, 292, 291, 260, 261, 293, 260, 293, 292, 261, 262, 294, 261, 294, 293, 262, 263, 295, 262, 295, 294, 263, 264, 296, 263, 296, 295, 264, 265, 297, 264, 297, 296, 265, 266, 298, 265, 298, 297, 266, 267, 299, 266, 299, 298, 267, 268, 300, 267, 300, 299, 268, 269, 301, 268, 301, 300, 269, 270, 302, 269, 302, 301, 270, 271, 303, 270, 303, 302, 271, 272, 304, 271, 304, 303, 272, 273, 305, 272, 305, 304, 273, 274, 306, 273, 306, 305, 274, 275, 307, 274, 307, 306, 275, 276, 308, 275, 308, 307, 276, 277, 309, 276, 309, 308, 277, 278, 310, 277, 310, 309, 278, 279, 311, 278, 311, 310, 279, 280, 312, 279, 312, 311, 280, 281, 313, 280, 313, 312, 281, 282, 314, 281, 314, 313, 282, 283, 315, 282, 315, 314, 283, 284, 316, 283, 316, 315, 284, 285, 317, 284, 317, 316, 285, 286, 318, 285, 318, 317, 286, 287, 319, 286, 319, 318, 288, 289, 321, 288, 321, 320, 289, 290, 322, 289, 322, 321, 290, 291, 323, 290, 323, 322, 291, 292, 324, 291, 324, 323, 292, 293, 325, 292, 325, 324, 293, 294, 326, 293, 326, 325, 294, 295, 327, 294, 327, 326, 295, 296, 328, 295, 328, 327, 296, 297, 329, 296, 329, 328, 297, 298, 330, 297, 330, 329, 298, 299, 331, 298, 331, 330, 299, 300, 332, 299, 332, 331, 300, 301, 333, 300, 333, 332, 301, 302, 334, 301, 334, 333, 302, 303, 335, 302, 335, 334, 303, 304, 336, 303, 336, 335, 304, 305, 337, 304, 337, 336, 305, 306, 338, 305, 338, 337, 306, 307, 339, 306, 339, 338, 307, 308, 340, 307, 340, 339, 308, 309, 341, 308, 341, 340, 309, 310, 342, 309, 342, 341, 310, 311, 343, 310, 343, 342, 311, 312, 344, 311, 344, 343, 312, 313, 345, 312, 345, 344, 313, 314, 346, 313, 346, 345, 314, 315, 347, 314, 347, 346, 315, 316, 348, 315, 348, 347, 316, 317, 349, 316, 349, 348, 317, 318, 350, 317, 350, 349, 318, 319, 351, 318, 351, 350, 320, 321, 353, 320, 353, 352, 321, 322, 354, 321, 354, 353, 322, 323, 355, 322, 355, 354, 323, 324, 356, 323, 356, 355, 324, 325, 357, 324, 357, 356, 325, 326, 358, 325, 358, 357, 326, 327, 359, 326, 359, 358, 327, 328, 360, 327, 360, 359, 328, 329, 361, 328, 361, 360, 329, 330, 362, 329, 362, 361, 330, 331, 363, 330, 363, 362, 331, 332, 364, 331, 364, 363, 332, 333, 365, 332, 365, 364, 333, 334, 366, 333, 366, 365, 334, 335, 367, 334, 367, 366, 335, 336, 368, 335, 368, 367, 336, 337, 369, 336, 369, 368, 337, 338, 370, 337, 370, 369, 338, 339, 371, 338, 371, 370, 339, 340, 372, 339, 372, 371, 340, 341, 373, 340, 373, 372, 341, 342, 374, 341, 374, 373, 342, 343, 375, 342, 375, 374, 343, 344, 376, 343, 376, 375, 344, 345, 377, 344, 377, 376, 345, 346, 378, 345, 378, 377, 346, 347, 379, 346, 379, 378, 347, 348, 380, 347, 380, 379, 348, 349, 381, 348, 381, 380, 349, 350, 382, 349, 382, 381, 350, 351, 383, 350, 383, 382, 352, 353, 385, 352, 385, 384, 353, 354, 386, 353, 386, 385, 354, 355, 387, 354, 387, 386, 355, 356, 388, 355, 388, 387, 356, 357, 389, 356, 389, 388, 357, 358, 390, 357, 390, 389, 358, 359, 391, 358, 391, 390, 359, 360, 392, 359, 392, 391, 360, 361, 393, 360, 393, 392, 361, 362, 394, 361, 394, 393, 362, 363, 395, 362, 395, 394, 363, 364, 396, 363, 396, 395, 364, 365, 397, 364, 397, 396, 365, 366, 398, 365, 398, 397, 366, 367, 399, 366, 399, 398, 367, 368, 400, 367, 400, 399, 368, 369, 401, 368, 401, 400, 369, 370, 402, 369, 402, 401, 370, 371, 403, 370, 403, 402, 371, 372, 404, 371, 404, 403, 372, 373, 405, 372, 405, 404, 373, 374, 406, 373, 406, 405, 374, 375, 407, 374, 407, 406, 375, 376, 408, 375, 408, 407, 376, 377, 409, 376, 409, 408, 377, 378, 410, 377, 410, 409, 378, 379, 411, 378, 411, 410, 379, 380, 412, 379, 412, 411, 380, 381, 413, 380, 413, 412, 381, 382, 414, 381, 414, 413, 382, 383, 415, 382, 415, 414, 384, 385, 417, 384, 417, 416, 385, 386, 418, 385, 418, 417, 386, 387, 419, 386, 419, 418, 387, 388, 420, 387, 420, 419, 388, 389, 421, 388, 421, 420, 389, 390, 422, 389, 422, 421, 390, 391, 423, 390, 423, 422, 391, 392, 424, 391, 424, 423, 392, 393, 425, 392, 425, 424, 393, 394, 426, 393, 426, 425, 394, 395, 427, 394, 427, 426, 395, 396, 428, 395, 428, 427, 396, 397, 429, 396, 429, 428, 397, 398, 430, 397, 430, 429, 398, 399, 431, 398, 431, 430, 399, 400, 432, 399, 432, 431, 400, 401, 433, 400, 433, 432, 401, 402, 434, 401, 434, 433, 402, 403, 435, 402, 435, 434, 403, 404, 436, 403, 436, 435, 404, 405, 437, 404, 437, 436, 405, 406, 438, 405, 438, 437, 406, 407, 439, 406, 439, 438, 407, 408, 440, 407, 440, 439, 408, 409, 441, 408, 441, 440, 409, 410, 442, 409, 442, 441, 410, 411, 443, 410, 443, 442, 411, 412, 444, 411, 444, 443, 412, 413, 445, 412, 445, 444, 413, 414, 446, 413, 446, 445, 414, 415, 447, 414, 447, 446, 416, 417, 449, 416, 449, 448, 417, 418, 450, 417, 450, 449, 418, 419, 451, 418, 451, 450, 419, 420, 452, 419, 452, 451, 420, 421, 453, 420, 453, 452, 421, 422, 454, 421, 454, 453, 422, 423, 455, 422, 455, 454, 423, 424, 456, 423, 456, 455, 424, 425, 457, 424, 457, 456, 425, 426, 458, 425, 458, 457, 426, 427, 459, 426, 459, 458, 427, 428, 460, 427, 460, 459, 428, 429, 461, 428, 461, 460, 429, 430, 462, 429, 462, 461, 430, 431, 463, 430, 463, 462, 431, 432, 464, 431, 464, 463, 432, 433, 465, 432, 465, 464, 433, 434, 466, 433, 466, 465, 434, 435, 467, 434, 467, 466, 435, 436, 468, 435, 468, 467, 436, 437, 469, 436, 469, 468, 437, 438, 470, 437, 470, 469, 438, 439, 471, 438, 471, 470, 439, 440, 472, 439, 472, 471, 440, 441, 473, 440, 473, 472, 441, 442, 474, 441, 474, 473, 442, 443, 475, 442, 475, 474, 443, 444, 476, 443, 476, 475, 444, 445, 477, 444, 477, 476, 445, 446, 478, 445, 478, 477, 446, 447, 479, 446, 479, 478, 448, 449, 481, 448, 481, 480, 449, 450, 482, 449, 482, 481, 450, 451, 483, 450, 483, 482, 451, 452, 484, 451, 484, 483, 452, 453, 485, 452, 485, 484, 453, 454, 486, 453, 486, 485, 454, 455, 487, 454, 487, 486, 455, 456, 488, 455, 488, 487, 456, 457, 489, 456, 489, 488, 457, 458, 490, 457, 490, 489, 458, 459, 491, 458, 491, 490, 459, 460, 492, 459, 492, 491, 460, 461, 493, 460, 493, 492, 461, 462, 494, 461, 494, 493, 462, 463, 495, 462, 495, 494, 463, 464, 496, 463, 496, 495, 464, 465, 497, 464, 497, 496, 465, 466, 498, 465, 498, 497, 466, 467, 499, 466, 499, 498, 467, 468, 500, 467, 500, 499, 468, 469, 501, 468, 501, 500, 469, 470, 502, 469, 502, 501, 470, 471, 503, 470, 503, 502, 471, 472, 504, 471, 504, 503, 472, 473, 505, 472, 505, 504, 473, 474, 506, 473, 506, 505, 474, 475, 507, 474, 507, 506, 475, 476, 508, 475, 508, 507, 476, 477, 509, 476, 509, 508, 477, 478, 510, 477, 510, 509, 478, 479, 511, 478, 511, 510, 480, 481, 513, 480, 513, 512, 481, 482, 514, 481, 514, 513, 482, 483, 515, 482, 515, 514, 483, 484, 516, 483, 516, 515, 484, 485, 517, 484, 517, 516, 485, 486, 518, 485, 518, 517, 486, 487, 519, 486, 519, 518, 487, 488, 520, 487, 520, 519, 488, 489, 521, 488, 521, 520, 489, 490, 522, 489, 522, 521, 490, 491, 523, 490, 523, 522, 491, 492, 524, 491, 524, 523, 492, 493, 525, 492, 525, 524, 493, 494, 526, 493, 526, 525, 494, 495, 527, 494, 527, 526, 495, 496, 528, 495, 528, 527, 496, 497, 529, 496, 529, 528, 497, 498, 530, 497, 530, 529, 498, 499, 531, 498, 531, 530, 499, 500, 532, 499, 532, 531, 500, 501, 533, 500, 533, 532, 501, 502, 534, 501, 534, 533, 502, 503, 535, 502, 535, 534, 503, 504, 536, 503, 536, 535, 504, 505, 537, 504, 537, 536, 505, 506, 538, 505, 538, 537, 506, 507, 539, 506, 539, 538, 507, 508, 540, 507, 540, 539, 508, 509, 541, 508, 541, 540, 509, 510, 542, 509, 542, 541, 510, 511, 543, 510, 543, 542, 512, 513, 545, 512, 545, 544, 513, 514, 546, 513, 546, 545, 514, 515, 547, 514, 547, 546, 515, 516, 548, 515, 548, 547, 516, 517, 549, 516, 549, 548, 517, 518, 550, 517, 550, 549, 518, 519, 551, 518, 551, 550, 519, 520, 552, 519, 552, 551, 520, 521, 553, 520, 553, 552, 521, 522, 554, 521, 554, 553, 522, 523, 555, 522, 555, 554, 523, 524, 556, 523, 556, 555, 524, 525, 557, 524, 557, 556, 525, 526, 558, 525, 558, 557, 526, 527, 559, 526, 559, 558, 527, 528, 560, 527, 560, 559, 528, 529, 561, 528, 561, 560, 529, 530, 562, 529, 562, 561, 530, 531, 563, 530, 563, 562, 531, 532, 564, 531, 564, 563, 532, 533, 565, 532, 565, 564, 533, 534, 566, 533, 566, 565, 534, 535, 567, 534, 567, 566, 535, 536, 568, 535, 568, 567, 536, 537, 569, 536, 569, 568, 537, 538, 570, 537, 570, 569, 538, 539, 571, 538, 571, 570, 539, 540, 572, 539, 572, 571, 540, 541, 573, 540, 573, 572, 541, 542, 574, 541, 574, 573, 542, 543, 575, 542, 575, 574, 544, 545, 577, 544, 577, 576, 545, 546, 578, 545, 578, 577, 546, 547, 579, 546, 579, 578, 547, 548, 580, 547, 580, 579, 548, 549, 581, 548, 581, 580, 549, 550, 582, 549, 582, 581, 550, 551, 583, 550, 583, 582, 551, 552, 584, 551, 584, 583, 552, 553, 585, 552, 585, 584, 553, 554, 586, 553, 586, 585, 554, 555, 587, 554, 587, 586, 555, 556, 588, 555, 588, 587, 556, 557, 589, 556, 589, 588, 557, 558, 590, 557, 590, 589, 558, 559, 591, 558, 591, 590, 559, 560, 592, 559, 592, 591, 560, 561, 593, 560, 593, 592, 561, 562, 594, 561, 594, 593, 562, 563, 595, 562, 595, 594, 563, 564, 596, 563, 596, 595, 564, 565, 597, 564, 597, 596, 565, 566, 598, 565, 598, 597, 566, 567, 599, 566, 599, 598, 567, 568, 600, 567, 600, 599, 568, 569, 601, 568, 601, 600, 569, 570, 602, 569, 602, 601, 570, 571, 603, 570, 603, 602, 571, 572, 604, 571, 604, 603, 572, 573, 605, 572, 605, 604, 573, 574, 606, 573, 606, 605, 574, 575, 607, 574, 607, 606, 576, 577, 609, 576, 609, 608, 577, 578, 610, 577, 610, 609, 578, 579, 611, 578, 611, 610, 579, 580, 612, 579, 612, 611, 580, 581, 613, 580, 613, 612, 581, 582, 614, 581, 614, 613, 582, 583, 615, 582, 615, 614, 583, 584, 616, 583, 616, 615, 584, 585, 617, 584, 617, 616, 585, 586, 618, 585, 618, 617, 586, 587, 619, 586, 619, 618, 587, 588, 620, 587, 620, 619, 588, 589, 621, 588, 621, 620, 589, 590, 622, 589, 622, 621, 590, 591, 623, 590, 623, 622, 591, 592, 624, 591, 624, 623, 592, 593, 625, 592, 625, 624, 593, 594, 626, 593, 626, 625, 594, 595, 627, 594, 627, 626, 595, 596, 628, 595, 628, 627, 596, 597, 629, 596, 629, 628, 597, 598, 630, 597, 630, 629, 598, 599, 631, 598, 631, 630, 599, 600, 632, 599, 632, 631, 600, 601, 633, 600, 633, 632, 601, 602, 634, 601, 634, 633, 602, 603, 635, 602, 635, 634, 603, 604, 636, 603, 636, 635, 604, 605, 637, 604, 637, 636, 605, 606, 638, 605, 638, 637, 606, 607, 639, 606, 639, 638, 608, 609, 641, 608, 641, 640, 609, 610, 642, 609, 642, 641, 610, 611, 643, 610, 643, 642, 611, 612, 644, 611, 644, 643, 612, 613, 645, 612, 645, 644, 613, 614, 646, 613, 646, 645, 614, 615, 647, 614, 647, 646, 615, 616, 648, 615, 648, 647, 616, 617, 649, 616, 649, 648, 617, 618, 650, 617, 650, 649, 618, 619, 651, 618, 651, 650, 619, 620, 652, 619, 652, 651, 620, 621, 653, 620, 653, 652, 621, 622, 654, 621, 654, 653, 622, 623, 655, 622, 655, 654, 623, 624, 656, 623, 656, 655, 624, 625, 657, 624, 657, 656, 625, 626, 658, 625, 658, 657, 626, 627, 659, 626, 659, 658, 627, 628, 660, 627, 660, 659, 628, 629, 661, 628, 661, 660, 629, 630, 662, 629, 662, 661, 630, 631, 663, 630, 663, 662, 631, 632, 664, 631, 664, 663, 632, 633, 665, 632, 665, 664, 633, 634, 666, 633, 666, 665, 634, 635, 667, 634, 667, 666, 635, 636, 668, 635, 668, 667, 636, 637, 669, 636, 669, 668, 637, 638, 670, 637, 670, 669, 638, 639, 671, 638, 671, 670, 640, 641, 673, 640, 673, 672, 641, 642, 674, 641, 674, 673, 642, 643, 675, 642, 675, 674, 643, 644, 676, 643, 676, 675, 644, 645, 677, 644, 677, 676, 645, 646, 678, 645, 678, 677, 646, 647, 679, 646, 679, 678, 647, 648, 680, 647, 680, 679, 648, 649, 681, 648, 681, 680, 649, 650, 682, 649, 682, 681, 650, 651, 683, 650, 683, 682, 651, 652, 684, 651, 684, 683, 652, 653, 685, 652, 685, 684, 653, 654, 686, 653, 686, 685, 654, 655, 687, 654, 687, 686, 655, 656, 688, 655, 688, 687, 656, 657, 689, 656, 689, 688, 657, 658, 690, 657, 690, 689, 658, 659, 691, 658, 691, 690, 659, 660, 692, 659, 692, 691, 660, 661, 693, 660, 693, 692, 661, 662, 694, 661, 694, 693, 662, 663, 695, 662, 695, 694, 663, 664, 696, 663, 696, 695, 664, 665, 697, 664, 697, 696, 665, 666, 698, 665, 698, 697, 666, 667, 699, 666, 699, 698, 667, 668, 700, 667, 700, 699, 668, 669, 701, 668, 701, 700, 669, 670, 702, 669, 702, 701, 670, 671, 703, 670, 703, 702, 672, 673, 705, 672, 705, 704, 673, 674, 706, 673, 706, 705, 674, 675, 707, 674, 707, 706, 675, 676, 708, 675, 708, 707, 676, 677, 709, 676, 709, 708, 677, 678, 710, 677, 710, 709, 678, 679, 711, 678, 711, 710, 679, 680, 712, 679, 712, 711, 680, 681, 713, 680, 713, 712, 681, 682, 714, 681, 714, 713, 682, 683, 715, 682, 715, 714, 683, 684, 716, 683, 716, 715, 684, 685, 717, 684, 717, 716, 685, 686, 718, 685, 718, 717, 686, 687, 719, 686, 719, 718, 687, 688, 720, 687, 720, 719, 688, 689, 721, 688, 721, 720, 689, 690, 722, 689, 722, 721, 690, 691, 723, 690, 723, 722, 691, 692, 724, 691, 724, 723, 692, 693, 725, 692, 725, 724, 693, 694, 726, 693, 726, 725, 694, 695, 727, 694, 727, 726, 695, 696, 728, 695, 728, 727, 696, 697, 729, 696, 729, 728, 697, 698, 730, 697, 730, 729, 698, 699, 731, 698, 731, 730, 699, 700, 732, 699, 732, 731, 700, 701, 733, 700, 733, 732, 701, 702, 734, 701, 734, 733, 702, 703, 735, 702, 735, 734, 704, 705, 737, 704, 737, 736, 705, 706, 738, 705, 738, 737, 706, 707, 739, 706, 739, 738, 707, 708, 740, 707, 740, 739, 708, 709, 741, 708, 741, 740, 709, 710, 742, 709, 742, 741, 710, 711, 743, 710, 743, 742, 711, 712, 744, 711, 744, 743, 712, 713, 745, 712, 745, 744, 713, 714, 746, 713, 746, 745, 714, 715, 747, 714, 747, 746, 715, 716, 748, 715, 748, 747, 716, 717, 749, 716, 749, 748, 717, 718, 750, 717, 750, 749, 718, 719, 751, 718, 751, 750, 719, 720, 752, 719, 752, 751, 720, 721, 753, 720, 753, 752, 721, 722, 754, 721, 754, 753, 722, 723, 755, 722, 755, 754, 723, 724, 756, 723, 756, 755, 724, 725, 757, 724, 757, 756, 725, 726, 758, 725, 758, 757, 726, 727, 759, 726, 759, 758, 727, 728, 760, 727, 760, 759, 728, 729, 761, 728, 761, 760, 729, 730, 762, 729, 762, 761, 730, 731, 763, 730, 763, 762, 731, 732, 764, 731, 764, 763, 732, 733, 765, 732, 765, 764, 733, 734, 766, 733, 766, 765, 734, 735, 767, 734, 767, 766, 736, 737, 769, 736, 769, 768, 737, 738, 770, 737, 770, 769, 738, 739, 771, 738, 771, 770, 739, 740, 772, 739, 772, 771, 740, 741, 773, 740, 773, 772, 741, 742, 774, 741, 774, 773, 742, 743, 775, 742, 775, 774, 743, 744, 776, 743, 776, 775, 744, 745, 777, 744, 777, 776, 745, 746, 778, 745, 778, 777, 746, 747, 779, 746, 779, 778, 747, 748, 780, 747, 780, 779, 748, 749, 781, 748, 781, 780, 749, 750, 782, 749, 782, 781, 750, 751, 783, 750, 783, 782, 751, 752, 784, 751, 784, 783, 752, 753, 785, 752, 785, 784, 753, 754, 786, 753, 786, 785, 754, 755, 787, 754, 787, 786, 755, 756, 788, 755, 788, 787, 756, 757, 789, 756, 789, 788, 757, 758, 790, 757, 790, 789, 758, 759, 791, 758, 791, 790, 759, 760, 792, 759, 792, 791, 760, 761, 793, 760, 793, 792, 761, 762, 794, 761, 794, 793, 762, 763, 795, 762, 795, 794, 763, 764, 796, 763, 796, 795, 764, 765, 797, 764, 797, 796, 765, 766, 798, 765, 798, 797, 766, 767, 799, 766, 799, 798, 768, 769, 801, 768, 801, 800, 769, 770, 802, 769, 802, 801, 770, 771, 803, 770, 803, 802, 771, 772, 804, 771, 804, 803, 772, 773, 805, 772, 805, 804, 773, 774, 806, 773, 806, 805, 774, 775, 807, 774, 807, 806, 775, 776, 808, 775, 808, 807, 776, 777, 809, 776, 809, 808, 777, 778, 810, 777, 810, 809, 778, 779, 811, 778, 811, 810, 779, 780, 812, 779, 812, 811, 780, 781, 813, 780, 813, 812, 781, 782, 814, 781, 814, 813, 782, 783, 815, 782, 815, 814, 783, 784, 816, 783, 816, 815, 784, 785, 817, 784, 817, 816, 785, 786, 818, 785, 818, 817, 786, 787, 819, 786, 819, 818, 787, 788, 820, 787, 820, 819, 788, 789, 821, 788, 821, 820, 789, 790, 822, 789, 822, 821, 790, 791, 823, 790, 823, 822, 791, 792, 824, 791, 824, 823, 792, 793, 825, 792, 825, 824, 793, 794, 826, 793, 826, 825, 794, 795, 827, 794, 827, 826, 795, 796, 828, 795, 828, 827, 796, 797, 829, 796, 829, 828, 797, 798, 830, 797, 830, 829, 798, 799, 831, 798, 831, 830, 800, 801, 833, 800, 833, 832, 801, 802, 834, 801, 834, 833, 802, 803, 835, 802, 835, 834, 803, 804, 836, 803, 836, 835, 804, 805, 837, 804, 837, 836, 805, 806, 838, 805, 838, 837, 806, 807, 839, 806, 839, 838, 807, 808, 840, 807, 840, 839, 808, 809, 841, 808, 841, 840, 809, 810, 842, 809, 842, 841, 810, 811, 843, 810, 843, 842, 811, 812, 844, 811, 844, 843, 812, 813, 845, 812, 845, 844, 813, 814, 846, 813, 846, 845, 814, 815, 847, 814, 847, 846, 815, 816, 848, 815, 848, 847, 816, 817, 849, 816, 849, 848, 817, 818, 850, 817, 850, 849, 818, 819, 851, 818, 851, 850, 819, 820, 852, 819, 852, 851, 820, 821, 853, 820, 853, 852, 821, 822, 854, 821, 854, 853, 822, 823, 855, 822, 855, 854, 823, 824, 856, 823, 856, 855, 824, 825, 857, 824, 857, 856, 825, 826, 858, 825, 858, 857, 826, 827, 859, 826, 859, 858, 827, 828, 860, 827, 860, 859, 828, 829, 861, 828, 861, 860, 829, 830, 862, 829, 862, 861, 830, 831, 863, 830, 863, 862, 832, 833, 865, 832, 865, 864, 833, 834, 866, 833, 866, 865, 834, 835, 867, 834, 867, 866, 835, 836, 868, 835, 868, 867, 836, 837, 869, 836, 869, 868, 837, 838, 870, 837, 870, 869, 838, 839, 871, 838, 871, 870, 839, 840, 872, 839, 872, 871, 840, 841, 873, 840, 873, 872, 841, 842, 874, 841, 874, 873, 842, 843, 875, 842, 875, 874, 843, 844, 876, 843, 876, 875, 844, 845, 877, 844, 877, 876, 845, 846, 878, 845, 878, 877, 846, 847, 879, 846, 879, 878, 847, 848, 880, 847, 880, 879, 848, 849, 881, 848, 881, 880, 849, 850, 882, 849, 882, 881, 850, 851, 883, 850, 883, 882, 851, 852, 884, 851, 884, 883, 852, 853, 885, 852, 885, 884, 853, 854, 886, 853, 886, 885, 854, 855, 887, 854, 887, 886, 855, 856, 888, 855, 888, 887, 856, 857, 889, 856, 889, 888, 857, 858, 890, 857, 890, 889, 858, 859, 891, 858, 891, 890, 859, 860, 892, 859, 892, 891, 860, 861, 893, 860, 893, 892, 861, 862, 894, 861, 894, 893, 862, 863, 895, 862, 895, 894, 864, 865, 897, 864, 897, 896, 865, 866, 898, 865, 898, 897, 866, 867, 899, 866, 899, 898, 867, 868, 900, 867, 900, 899, 868, 869, 901, 868, 901, 900, 869, 870, 902, 869, 902, 901, 870, 871, 903, 870, 903, 902, 871, 872, 904, 871, 904, 903, 872, 873, 905, 872, 905, 904, 873, 874, 906, 873, 906, 905, 874, 875, 907, 874, 907, 906, 875, 876, 908, 875, 908, 907, 876, 877, 909, 876, 909, 908, 877, 878, 910, 877, 910, 909, 878, 879, 911, 878, 911, 910, 879, 880, 912, 879, 912, 911, 880, 881, 913, 880, 913, 912, 881, 882, 914, 881, 914, 913, 882, 883, 915, 882, 915, 914, 883, 884, 916, 883, 916, 915, 884, 885, 917, 884, 917, 916, 885, 886, 918, 885, 918, 917, 886, 887, 919, 886, 919, 918, 887, 888, 920, 887, 920, 919, 888, 889, 921, 888, 921, 920, 889, 890, 922, 889, 922, 921, 890, 891, 923, 890, 923, 922, 891, 892, 924, 891, 924, 923, 892, 893, 925, 892, 925, 924, 893, 894, 926, 893, 926, 925, 894, 895, 927, 894, 927, 926, 896, 897, 929, 896, 929, 928, 897, 898, 930, 897, 930, 929, 898, 899, 931, 898, 931, 930, 899, 900, 932, 899, 932, 931, 900, 901, 933, 900, 933, 932, 901, 902, 934, 901, 934, 933, 902, 903, 935, 902, 935, 934, 903, 904, 936, 903, 936, 935, 904, 905, 937, 904, 937, 936, 905, 906, 938, 905, 938, 937, 906, 907, 939, 906, 939, 938, 907, 908, 940, 907, 940, 939, 908, 909, 941, 908, 941, 940, 909, 910, 942, 909, 942, 941, 910, 911, 943, 910, 943, 942, 911, 912, 944, 911, 944, 943, 912, 913, 945, 912, 945, 944, 913, 914, 946, 913, 946, 945, 914, 915, 947, 914, 947, 946, 915, 916, 948, 915, 948, 947, 916, 917, 949, 916, 949, 948, 917, 918, 950, 917, 950, 949, 918, 919, 951, 918, 951, 950, 919, 920, 952, 919, 952, 951, 920, 921, 953, 920, 953, 952, 921, 922, 954, 921, 954, 953, 922, 923, 955, 922, 955, 954, 923, 924, 956, 923, 956, 955, 924, 925, 957, 924, 957, 956, 925, 926, 958, 925, 958, 957, 926, 927, 959, 926, 959, 958, 928, 929, 961, 928, 961, 960, 929, 930, 962, 929, 962, 961, 930, 931, 963, 930, 963, 962, 931, 932, 964, 931, 964, 963, 932, 933, 965, 932, 965, 964, 933, 934, 966, 933, 966, 965, 934, 935, 967, 934, 967, 966, 935, 936, 968, 935, 968, 967, 936, 937, 969, 936, 969, 968, 937, 938, 970, 937, 970, 969, 938, 939, 971, 938, 971, 970, 939, 940, 972, 939, 972, 971, 940, 941, 973, 940, 973, 972, 941, 942, 974, 941, 974, 973, 942, 943, 975, 942, 975, 974, 943, 944, 976, 943, 976, 975, 944, 945, 977, 944, 977, 976, 945, 946, 978, 945, 978, 977, 946, 947, 979, 946, 979, 978, 947, 948, 980, 947, 980, 979, 948, 949, 981, 948, 981, 980, 949, 950, 982, 949, 982, 981, 950, 951, 983, 950, 983, 982, 951, 952, 984, 951, 984, 983, 952, 953, 985, 952, 985, 984, 953, 954, 986, 953, 986, 985, 954, 955, 987, 954, 987, 986, 955, 956, 988, 955, 988, 987, 956, 957, 989, 956, 989, 988, 957, 958, 990, 957, 990, 989, 958, 959, 991, 958, 991, 990, 960, 961, 993, 960, 993, 992, 961, 962, 994, 961, 994, 993, 962, 963, 995, 962, 995, 994, 963, 964, 996, 963, 996, 995, 964, 965, 997, 964, 997, 996, 965, 966, 998, 965, 998, 997, 966, 967, 999, 966, 999, 998, 967, 968, 1000, 967, 1000, 999, 968, 969, 1001, 968, 1001, 1000, 969, 970, 1002, 969, 1002, 1001, 970, 971, 1003, 970, 1003, 1002, 971, 972, 1004, 971, 1004, 1003, 972, 973, 1005, 972, 1005, 1004, 973, 974, 1006, 973, 1006, 1005, 974, 975, 1007, 974, 1007, 1006, 975, 976, 1008, 975, 1008, 1007, 976, 977, 1009, 976, 1009, 1008, 977, 978, 1010, 977, 1010, 1009, 978, 979, 1011, 978, 1011, 1010, 979, 980, 1012, 979, 1012, 1011, 980, 981, 1013, 980, 1013, 1012, 981, 982, 1014, 981, 1014, 1013, 982, 983, 1015, 982, 1015, 1014, 983, 984, 1016, 983, 1016, 1015, 984, 985, 1017, 984, 1017, 1016, 985, 986, 1018, 985, 1018, 1017, 986, 987, 1019, 986, 1019, 1018, 987, 988, 1020, 987, 1020, 1019, 988, 989, 1021, 988, 1021, 1020, 989, 990, 1022, 989, 1022, 1021, 990, 991, 1023, 990, 1023, 1022] point3f[] points = [(0, 0, 20), (20, 0, 20), (40, 0, 20), (60, 0, 20), (80, 0, 20), (100, 0, 20), (120, 0, 20), (140, 0, 20), (160, 0, 20), (180, 0, 20), (200, 0, 20), (220, 0, 20), (240, 0, 20), (260, 0, 20), (280, 0, 20), (300, 0, 20), (320, 0, 20), (340, 0, 20), (360, 0, 20), (380, 0, 20), (400, 0, 20), (420, 0, 20), (440, 0, 20), (460, 0, 20), (480, 0, 20), (500, 0, 20), (520, 0, 20), (540, 0, 20), (560, 0, 20), (580, 0, 20), (600, 0, 20), (620, 0, 20), (0, 20, 20), (20, 20, 20), (40, 20, 20), (60, 20, 20), (80, 20, 20), (100, 20, 20), (120, 20, 20), (140, 20, 20), (160, 20, 20), (180, 20, 20), (200, 20, 20), (220, 20, 20), (240, 20, 20), (260, 20, 20), (280, 20, 20), (300, 20, 20), (320, 20, 20), (340, 20, 20), (360, 20, 20), (380, 20, 20), (400, 20, 20), (420, 20, 20), (440, 20, 20), (460, 20, 20), (480, 20, 20), (500, 20, 20), (520, 20, 20), (540, 20, 20), (560, 20, 20), (580, 20, 20), (600, 20, 20), (620, 20, 20), (0, 40, 20), (20, 40, 20), (40, 40, 20), (60, 40, 20), (80, 40, 20), (100, 40, 20), (120, 40, 20), (140, 40, 20), (160, 40, 20), (180, 40, 20), (200, 40, 20), (220, 40, 20), (240, 40, 20), (260, 40, 20), (280, 40, 20), (300, 40, 20), (320, 40, 20), (340, 40, 20), (360, 40, 20), (380, 40, 20), (400, 40, 20), (420, 40, 20), (440, 40, 20), (460, 40, 20), (480, 40, 20), (500, 40, 20), (520, 40, 20), (540, 40, 20), (560, 40, 20), (580, 40, 20), (600, 40, 20), (620, 40, 20), (0, 60, 20), (20, 60, 20), (40, 60, 20), (60, 60, 20), (80, 60, 20), (100, 60, 20), (120, 60, 20), (140, 60, 20), (160, 60, 20), (180, 60, 20), (200, 60, 20), (220, 60, 20), (240, 60, 20), (260, 60, 20), (280, 60, 20), (300, 60, 20), (320, 60, 20), (340, 60, 20), (360, 60, 20), (380, 60, 20), (400, 60, 20), (420, 60, 20), (440, 60, 20), (460, 60, 20), (480, 60, 20), (500, 60, 20), (520, 60, 20), (540, 60, 20), (560, 60, 20), (580, 60, 20), (600, 60, 20), (620, 60, 20), (0, 80, 20), (20, 80, 20), (40, 80, 20), (60, 80, 20), (80, 80, 20), (100, 80, 20), (120, 80, 20), (140, 80, 20), (160, 80, 20), (180, 80, 20), (200, 80, 20), (220, 80, 20), (240, 80, 20), (260, 80, 20), (280, 80, 20), (300, 80, 20), (320, 80, 20), (340, 80, 20), (360, 80, 20), (380, 80, 20), (400, 80, 20), (420, 80, 20), (440, 80, 20), (460, 80, 20), (480, 80, 20), (500, 80, 20), (520, 80, 20), (540, 80, 20), (560, 80, 20), (580, 80, 20), (600, 80, 20), (620, 80, 20), (0, 100, 20), (20, 100, 20), (40, 100, 20), (60, 100, 20), (80, 100, 20), (100, 100, 20), (120, 100, 20), (140, 100, 20), (160, 100, 20), (180, 100, 20), (200, 100, 20), (220, 100, 20), (240, 100, 20), (260, 100, 20), (280, 100, 20), (300, 100, 20), (320, 100, 20), (340, 100, 20), (360, 100, 20), (380, 100, 20), (400, 100, 20), (420, 100, 20), (440, 100, 20), (460, 100, 20), (480, 100, 20), (500, 100, 20), (520, 100, 20), (540, 100, 20), (560, 100, 20), (580, 100, 20), (600, 100, 20), (620, 100, 20), (0, 120, 20), (20, 120, 20), (40, 120, 20), (60, 120, 20), (80, 120, 20), (100, 120, 20), (120, 120, 20), (140, 120, 20), (160, 120, 20), (180, 120, 20), (200, 120, 20), (220, 120, 20), (240, 120, 20), (260, 120, 20), (280, 120, 20), (300, 120, 20), (320, 120, 20), (340, 120, 20), (360, 120, 20), (380, 120, 20), (400, 120, 20), (420, 120, 20), (440, 120, 20), (460, 120, 20), (480, 120, 20), (500, 120, 20), (520, 120, 20), (540, 120, 20), (560, 120, 20), (580, 120, 20), (600, 120, 20), (620, 120, 20), (0, 140, 20), (20, 140, 20), (40, 140, 20), (60, 140, 20), (80, 140, 20), (100, 140, 20), (120, 140, 20), (140, 140, 20), (160, 140, 20), (180, 140, 20), (200, 140, 20), (220, 140, 20), (240, 140, 20), (260, 140, 20), (280, 140, 20), (300, 140, 20), (320, 140, 20), (340, 140, 20), (360, 140, 20), (380, 140, 20), (400, 140, 20), (420, 140, 20), (440, 140, 20), (460, 140, 20), (480, 140, 20), (500, 140, 20), (520, 140, 20), (540, 140, 20), (560, 140, 20), (580, 140, 20), (600, 140, 20), (620, 140, 20), (0, 160, 20), (20, 160, 20), (40, 160, 20), (60, 160, 20), (80, 160, 20), (100, 160, 20), (120, 160, 20), (140, 160, 20), (160, 160, 20), (180, 160, 20), (200, 160, 20), (220, 160, 20), (240, 160, 20), (260, 160, 20), (280, 160, 20), (300, 160, 20), (320, 160, 20), (340, 160, 20), (360, 160, 20), (380, 160, 20), (400, 160, 20), (420, 160, 20), (440, 160, 20), (460, 160, 20), (480, 160, 20), (500, 160, 20), (520, 160, 20), (540, 160, 20), (560, 160, 20), (580, 160, 20), (600, 160, 20), (620, 160, 20), (0, 180, 20), (20, 180, 20), (40, 180, 20), (60, 180, 20), (80, 180, 20), (100, 180, 20), (120, 180, 20), (140, 180, 20), (160, 180, 20), (180, 180, 20), (200, 180, 20), (220, 180, 20), (240, 180, 20), (260, 180, 20), (280, 180, 20), (300, 180, 20), (320, 180, 20), (340, 180, 20), (360, 180, 20), (380, 180, 20), (400, 180, 20), (420, 180, 20), (440, 180, 20), (460, 180, 20), (480, 180, 20), (500, 180, 20), (520, 180, 20), (540, 180, 20), (560, 180, 20), (580, 180, 20), (600, 180, 20), (620, 180, 20), (0, 200, 20), (20, 200, 20), (40, 200, 20), (60, 200, 20), (80, 200, 20), (100, 200, 20), (120, 200, 20), (140, 200, 20), (160, 200, 20), (180, 200, 20), (200, 200, 20), (220, 200, 20), (240, 200, 20), (260, 200, 20), (280, 200, 20), (300, 200, 20), (320, 200, 20), (340, 200, 20), (360, 200, 20), (380, 200, 20), (400, 200, 20), (420, 200, 20), (440, 200, 20), (460, 200, 20), (480, 200, 20), (500, 200, 20), (520, 200, 20), (540, 200, 20), (560, 200, 20), (580, 200, 20), (600, 200, 20), (620, 200, 20), (0, 220, 20), (20, 220, 20), (40, 220, 20), (60, 220, 20), (80, 220, 20), (100, 220, 20), (120, 220, 20), (140, 220, 20), (160, 220, 20), (180, 220, 20), (200, 220, 20), (220, 220, 20), (240, 220, 20), (260, 220, 20), (280, 220, 20), (300, 220, 20), (320, 220, 20), (340, 220, 20), (360, 220, 20), (380, 220, 20), (400, 220, 20), (420, 220, 20), (440, 220, 20), (460, 220, 20), (480, 220, 20), (500, 220, 20), (520, 220, 20), (540, 220, 20), (560, 220, 20), (580, 220, 20), (600, 220, 20), (620, 220, 20), (0, 240, 20), (20, 240, 20), (40, 240, 20), (60, 240, 20), (80, 240, 20), (100, 240, 20), (120, 240, 20), (140, 240, 20), (160, 240, 20), (180, 240, 20), (200, 240, 20), (220, 240, 20), (240, 240, 20), (260, 240, 20), (280, 240, 20), (300, 240, 20), (320, 240, 20), (340, 240, 20), (360, 240, 20), (380, 240, 20), (400, 240, 20), (420, 240, 20), (440, 240, 20), (460, 240, 20), (480, 240, 20), (500, 240, 20), (520, 240, 20), (540, 240, 20), (560, 240, 20), (580, 240, 20), (600, 240, 20), (620, 240, 20), (0, 260, 20), (20, 260, 20), (40, 260, 20), (60, 260, 20), (80, 260, 20), (100, 260, 20), (120, 260, 20), (140, 260, 20), (160, 260, 20), (180, 260, 20), (200, 260, 20), (220, 260, 20), (240, 260, 20), (260, 260, 20), (280, 260, 20), (300, 260, 20), (320, 260, 20), (340, 260, 20), (360, 260, 20), (380, 260, 20), (400, 260, 20), (420, 260, 20), (440, 260, 20), (460, 260, 20), (480, 260, 20), (500, 260, 20), (520, 260, 20), (540, 260, 20), (560, 260, 20), (580, 260, 20), (600, 260, 20), (620, 260, 20), (0, 280, 20), (20, 280, 20), (40, 280, 20), (60, 280, 20), (80, 280, 20), (100, 280, 20), (120, 280, 20), (140, 280, 20), (160, 280, 20), (180, 280, 20), (200, 280, 20), (220, 280, 20), (240, 280, 20), (260, 280, 20), (280, 280, 20), (300, 280, 20), (320, 280, 20), (340, 280, 20), (360, 280, 20), (380, 280, 20), (400, 280, 20), (420, 280, 20), (440, 280, 20), (460, 280, 20), (480, 280, 20), (500, 280, 20), (520, 280, 20), (540, 280, 20), (560, 280, 20), (580, 280, 20), (600, 280, 20), (620, 280, 20), (0, 300, 20), (20, 300, 20), (40, 300, 20), (60, 300, 20), (80, 300, 20), (100, 300, 20), (120, 300, 20), (140, 300, 20), (160, 300, 20), (180, 300, 20), (200, 300, 20), (220, 300, 20), (240, 300, 20), (260, 300, 20), (280, 300, 20), (300, 300, 20), (320, 300, 20), (340, 300, 20), (360, 300, 20), (380, 300, 20), (400, 300, 20), (420, 300, 20), (440, 300, 20), (460, 300, 20), (480, 300, 20), (500, 300, 20), (520, 300, 20), (540, 300, 20), (560, 300, 20), (580, 300, 20), (600, 300, 20), (620, 300, 20), (0, 320, 20), (20, 320, 20), (40, 320, 20), (60, 320, 20), (80, 320, 20), (100, 320, 20), (120, 320, 20), (140, 320, 20), (160, 320, 20), (180, 320, 20), (200, 320, 20), (220, 320, 20), (240, 320, 20), (260, 320, 20), (280, 320, 20), (300, 320, 20), (320, 320, 20), (340, 320, 20), (360, 320, 20), (380, 320, 20), (400, 320, 20), (420, 320, 20), (440, 320, 20), (460, 320, 20), (480, 320, 20), (500, 320, 20), (520, 320, 20), (540, 320, 20), (560, 320, 20), (580, 320, 20), (600, 320, 20), (620, 320, 20), (0, 340, 20), (20, 340, 20), (40, 340, 20), (60, 340, 20), (80, 340, 20), (100, 340, 20), (120, 340, 20), (140, 340, 20), (160, 340, 20), (180, 340, 20), (200, 340, 20), (220, 340, 20), (240, 340, 20), (260, 340, 20), (280, 340, 20), (300, 340, 20), (320, 340, 20), (340, 340, 20), (360, 340, 20), (380, 340, 20), (400, 340, 20), (420, 340, 20), (440, 340, 20), (460, 340, 20), (480, 340, 20), (500, 340, 20), (520, 340, 20), (540, 340, 20), (560, 340, 20), (580, 340, 20), (600, 340, 20), (620, 340, 20), (0, 360, 20), (20, 360, 20), (40, 360, 20), (60, 360, 20), (80, 360, 20), (100, 360, 20), (120, 360, 20), (140, 360, 20), (160, 360, 20), (180, 360, 20), (200, 360, 20), (220, 360, 20), (240, 360, 20), (260, 360, 20), (280, 360, 20), (300, 360, 20), (320, 360, 20), (340, 360, 20), (360, 360, 20), (380, 360, 20), (400, 360, 20), (420, 360, 20), (440, 360, 20), (460, 360, 20), (480, 360, 20), (500, 360, 20), (520, 360, 20), (540, 360, 20), (560, 360, 20), (580, 360, 20), (600, 360, 20), (620, 360, 20), (0, 380, 20), (20, 380, 20), (40, 380, 20), (60, 380, 20), (80, 380, 20), (100, 380, 20), (120, 380, 20), (140, 380, 20), (160, 380, 20), (180, 380, 20), (200, 380, 20), (220, 380, 20), (240, 380, 20), (260, 380, 20), (280, 380, 20), (300, 380, 20), (320, 380, 20), (340, 380, 20), (360, 380, 20), (380, 380, 20), (400, 380, 20), (420, 380, 20), (440, 380, 20), (460, 380, 20), (480, 380, 20), (500, 380, 20), (520, 380, 20), (540, 380, 20), (560, 380, 20), (580, 380, 20), (600, 380, 20), (620, 380, 20), (0, 400, 20), (20, 400, 20), (40, 400, 20), (60, 400, 20), (80, 400, 20), (100, 400, 20), (120, 400, 20), (140, 400, 20), (160, 400, 20), (180, 400, 20), (200, 400, 20), (220, 400, 20), (240, 400, 20), (260, 400, 20), (280, 400, 20), (300, 400, 20), (320, 400, 20), (340, 400, 20), (360, 400, 20), (380, 400, 20), (400, 400, 20), (420, 400, 20), (440, 400, 20), (460, 400, 20), (480, 400, 20), (500, 400, 20), (520, 400, 20), (540, 400, 20), (560, 400, 20), (580, 400, 20), (600, 400, 20), (620, 400, 20), (0, 420, 20), (20, 420, 20), (40, 420, 20), (60, 420, 20), (80, 420, 20), (100, 420, 20), (120, 420, 20), (140, 420, 20), (160, 420, 20), (180, 420, 20), (200, 420, 20), (220, 420, 20), (240, 420, 20), (260, 420, 20), (280, 420, 20), (300, 420, 20), (320, 420, 20), (340, 420, 20), (360, 420, 20), (380, 420, 20), (400, 420, 20), (420, 420, 20), (440, 420, 20), (460, 420, 20), (480, 420, 20), (500, 420, 20), (520, 420, 20), (540, 420, 20), (560, 420, 20), (580, 420, 20), (600, 420, 20), (620, 420, 20), (0, 440, 20), (20, 440, 20), (40, 440, 20), (60, 440, 20), (80, 440, 20), (100, 440, 20), (120, 440, 20), (140, 440, 20), (160, 440, 20), (180, 440, 20), (200, 440, 20), (220, 440, 20), (240, 440, 20), (260, 440, 20), (280, 440, 20), (300, 440, 20), (320, 440, 20), (340, 440, 20), (360, 440, 20), (380, 440, 20), (400, 440, 20), (420, 440, 20), (440, 440, 20), (460, 440, 20), (480, 440, 20), (500, 440, 20), (520, 440, 20), (540, 440, 20), (560, 440, 20), (580, 440, 20), (600, 440, 20), (620, 440, 20), (0, 460, 20), (20, 460, 20), (40, 460, 20), (60, 460, 20), (80, 460, 20), (100, 460, 20), (120, 460, 20), (140, 460, 20), (160, 460, 20), (180, 460, 20), (200, 460, 20), (220, 460, 20), (240, 460, 20), (260, 460, 20), (280, 460, 20), (300, 460, 20), (320, 460, 20), (340, 460, 20), (360, 460, 20), (380, 460, 20), (400, 460, 20), (420, 460, 20), (440, 460, 20), (460, 460, 20), (480, 460, 20), (500, 460, 20), (520, 460, 20), (540, 460, 20), (560, 460, 20), (580, 460, 20), (600, 460, 20), (620, 460, 20), (0, 480, 20), (20, 480, 20), (40, 480, 20), (60, 480, 20), (80, 480, 20), (100, 480, 20), (120, 480, 20), (140, 480, 20), (160, 480, 20), (180, 480, 20), (200, 480, 20), (220, 480, 20), (240, 480, 20), (260, 480, 20), (280, 480, 20), (300, 480, 20), (320, 480, 20), (340, 480, 20), (360, 480, 20), (380, 480, 20), (400, 480, 20), (420, 480, 20), (440, 480, 20), (460, 480, 20), (480, 480, 20), (500, 480, 20), (520, 480, 20), (540, 480, 20), (560, 480, 20), (580, 480, 20), (600, 480, 20), (620, 480, 20), (0, 500, 20), (20, 500, 20), (40, 500, 20), (60, 500, 20), (80, 500, 20), (100, 500, 20), (120, 500, 20), (140, 500, 20), (160, 500, 20), (180, 500, 20), (200, 500, 20), (220, 500, 20), (240, 500, 20), (260, 500, 20), (280, 500, 20), (300, 500, 20), (320, 500, 20), (340, 500, 20), (360, 500, 20), (380, 500, 20), (400, 500, 20), (420, 500, 20), (440, 500, 20), (460, 500, 20), (480, 500, 20), (500, 500, 20), (520, 500, 20), (540, 500, 20), (560, 500, 20), (580, 500, 20), (600, 500, 20), (620, 500, 20), (0, 520, 20), (20, 520, 20), (40, 520, 20), (60, 520, 20), (80, 520, 20), (100, 520, 20), (120, 520, 20), (140, 520, 20), (160, 520, 20), (180, 520, 20), (200, 520, 20), (220, 520, 20), (240, 520, 20), (260, 520, 20), (280, 520, 20), (300, 520, 20), (320, 520, 20), (340, 520, 20), (360, 520, 20), (380, 520, 20), (400, 520, 20), (420, 520, 20), (440, 520, 20), (460, 520, 20), (480, 520, 20), (500, 520, 20), (520, 520, 20), (540, 520, 20), (560, 520, 20), (580, 520, 20), (600, 520, 20), (620, 520, 20), (0, 540, 20), (20, 540, 20), (40, 540, 20), (60, 540, 20), (80, 540, 20), (100, 540, 20), (120, 540, 20), (140, 540, 20), (160, 540, 20), (180, 540, 20), (200, 540, 20), (220, 540, 20), (240, 540, 20), (260, 540, 20), (280, 540, 20), (300, 540, 20), (320, 540, 20), (340, 540, 20), (360, 540, 20), (380, 540, 20), (400, 540, 20), (420, 540, 20), (440, 540, 20), (460, 540, 20), (480, 540, 20), (500, 540, 20), (520, 540, 20), (540, 540, 20), (560, 540, 20), (580, 540, 20), (600, 540, 20), (620, 540, 20), (0, 560, 20), (20, 560, 20), (40, 560, 20), (60, 560, 20), (80, 560, 20), (100, 560, 20), (120, 560, 20), (140, 560, 20), (160, 560, 20), (180, 560, 20), (200, 560, 20), (220, 560, 20), (240, 560, 20), (260, 560, 20), (280, 560, 20), (300, 560, 20), (320, 560, 20), (340, 560, 20), (360, 560, 20), (380, 560, 20), (400, 560, 20), (420, 560, 20), (440, 560, 20), (460, 560, 20), (480, 560, 20), (500, 560, 20), (520, 560, 20), (540, 560, 20), (560, 560, 20), (580, 560, 20), (600, 560, 20), (620, 560, 20), (0, 580, 20), (20, 580, 20), (40, 580, 20), (60, 580, 20), (80, 580, 20), (100, 580, 20), (120, 580, 20), (140, 580, 20), (160, 580, 20), (180, 580, 20), (200, 580, 20), (220, 580, 20), (240, 580, 20), (260, 580, 20), (280, 580, 20), (300, 580, 20), (320, 580, 20), (340, 580, 20), (360, 580, 20), (380, 580, 20), (400, 580, 20), (420, 580, 20), (440, 580, 20), (460, 580, 20), (480, 580, 20), (500, 580, 20), (520, 580, 20), (540, 580, 20), (560, 580, 20), (580, 580, 20), (600, 580, 20), (620, 580, 20), (0, 600, 20), (20, 600, 20), (40, 600, 20), (60, 600, 20), (80, 600, 20), (100, 600, 20), (120, 600, 20), (140, 600, 20), (160, 600, 20), (180, 600, 20), (200, 600, 20), (220, 600, 20), (240, 600, 20), (260, 600, 20), (280, 600, 20), (300, 600, 20), (320, 600, 20), (340, 600, 20), (360, 600, 20), (380, 600, 20), (400, 600, 20), (420, 600, 20), (440, 600, 20), (460, 600, 20), (480, 600, 20), (500, 600, 20), (520, 600, 20), (540, 600, 20), (560, 600, 20), (580, 600, 20), (600, 600, 20), (620, 600, 20), (0, 620, 20), (20, 620, 20), (40, 620, 20), (60, 620, 20), (80, 620, 20), (100, 620, 20), (120, 620, 20), (140, 620, 20), (160, 620, 20), (180, 620, 20), (200, 620, 20), (220, 620, 20), (240, 620, 20), (260, 620, 20), (280, 620, 20), (300, 620, 20), (320, 620, 20), (340, 620, 20), (360, 620, 20), (380, 620, 20), (400, 620, 20), (420, 620, 20), (440, 620, 20), (460, 620, 20), (480, 620, 20), (500, 620, 20), (520, 620, 20), (540, 620, 20), (560, 620, 20), (580, 620, 20), (600, 620, 20), (620, 620, 20)] color3f[] primvars:displayColor = [(0.2784314, 0.64705884, 1)] } def Mesh "outputGrid" { uniform bool doubleSided = 1 int[] faceVertexCounts = [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 1, 33, 0, 33, 32, 1, 2, 34, 1, 34, 33, 2, 3, 35, 2, 35, 34, 3, 4, 36, 3, 36, 35, 4, 5, 37, 4, 37, 36, 5, 6, 38, 5, 38, 37, 6, 7, 39, 6, 39, 38, 7, 8, 40, 7, 40, 39, 8, 9, 41, 8, 41, 40, 9, 10, 42, 9, 42, 41, 10, 11, 43, 10, 43, 42, 11, 12, 44, 11, 44, 43, 12, 13, 45, 12, 45, 44, 13, 14, 46, 13, 46, 45, 14, 15, 47, 14, 47, 46, 15, 16, 48, 15, 48, 47, 16, 17, 49, 16, 49, 48, 17, 18, 50, 17, 50, 49, 18, 19, 51, 18, 51, 50, 19, 20, 52, 19, 52, 51, 20, 21, 53, 20, 53, 52, 21, 22, 54, 21, 54, 53, 22, 23, 55, 22, 55, 54, 23, 24, 56, 23, 56, 55, 24, 25, 57, 24, 57, 56, 25, 26, 58, 25, 58, 57, 26, 27, 59, 26, 59, 58, 27, 28, 60, 27, 60, 59, 28, 29, 61, 28, 61, 60, 29, 30, 62, 29, 62, 61, 30, 31, 63, 30, 63, 62, 32, 33, 65, 32, 65, 64, 33, 34, 66, 33, 66, 65, 34, 35, 67, 34, 67, 66, 35, 36, 68, 35, 68, 67, 36, 37, 69, 36, 69, 68, 37, 38, 70, 37, 70, 69, 38, 39, 71, 38, 71, 70, 39, 40, 72, 39, 72, 71, 40, 41, 73, 40, 73, 72, 41, 42, 74, 41, 74, 73, 42, 43, 75, 42, 75, 74, 43, 44, 76, 43, 76, 75, 44, 45, 77, 44, 77, 76, 45, 46, 78, 45, 78, 77, 46, 47, 79, 46, 79, 78, 47, 48, 80, 47, 80, 79, 48, 49, 81, 48, 81, 80, 49, 50, 82, 49, 82, 81, 50, 51, 83, 50, 83, 82, 51, 52, 84, 51, 84, 83, 52, 53, 85, 52, 85, 84, 53, 54, 86, 53, 86, 85, 54, 55, 87, 54, 87, 86, 55, 56, 88, 55, 88, 87, 56, 57, 89, 56, 89, 88, 57, 58, 90, 57, 90, 89, 58, 59, 91, 58, 91, 90, 59, 60, 92, 59, 92, 91, 60, 61, 93, 60, 93, 92, 61, 62, 94, 61, 94, 93, 62, 63, 95, 62, 95, 94, 64, 65, 97, 64, 97, 96, 65, 66, 98, 65, 98, 97, 66, 67, 99, 66, 99, 98, 67, 68, 100, 67, 100, 99, 68, 69, 101, 68, 101, 100, 69, 70, 102, 69, 102, 101, 70, 71, 103, 70, 103, 102, 71, 72, 104, 71, 104, 103, 72, 73, 105, 72, 105, 104, 73, 74, 106, 73, 106, 105, 74, 75, 107, 74, 107, 106, 75, 76, 108, 75, 108, 107, 76, 77, 109, 76, 109, 108, 77, 78, 110, 77, 110, 109, 78, 79, 111, 78, 111, 110, 79, 80, 112, 79, 112, 111, 80, 81, 113, 80, 113, 112, 81, 82, 114, 81, 114, 113, 82, 83, 115, 82, 115, 114, 83, 84, 116, 83, 116, 115, 84, 85, 117, 84, 117, 116, 85, 86, 118, 85, 118, 117, 86, 87, 119, 86, 119, 118, 87, 88, 120, 87, 120, 119, 88, 89, 121, 88, 121, 120, 89, 90, 122, 89, 122, 121, 90, 91, 123, 90, 123, 122, 91, 92, 124, 91, 124, 123, 92, 93, 125, 92, 125, 124, 93, 94, 126, 93, 126, 125, 94, 95, 127, 94, 127, 126, 96, 97, 129, 96, 129, 128, 97, 98, 130, 97, 130, 129, 98, 99, 131, 98, 131, 130, 99, 100, 132, 99, 132, 131, 100, 101, 133, 100, 133, 132, 101, 102, 134, 101, 134, 133, 102, 103, 135, 102, 135, 134, 103, 104, 136, 103, 136, 135, 104, 105, 137, 104, 137, 136, 105, 106, 138, 105, 138, 137, 106, 107, 139, 106, 139, 138, 107, 108, 140, 107, 140, 139, 108, 109, 141, 108, 141, 140, 109, 110, 142, 109, 142, 141, 110, 111, 143, 110, 143, 142, 111, 112, 144, 111, 144, 143, 112, 113, 145, 112, 145, 144, 113, 114, 146, 113, 146, 145, 114, 115, 147, 114, 147, 146, 115, 116, 148, 115, 148, 147, 116, 117, 149, 116, 149, 148, 117, 118, 150, 117, 150, 149, 118, 119, 151, 118, 151, 150, 119, 120, 152, 119, 152, 151, 120, 121, 153, 120, 153, 152, 121, 122, 154, 121, 154, 153, 122, 123, 155, 122, 155, 154, 123, 124, 156, 123, 156, 155, 124, 125, 157, 124, 157, 156, 125, 126, 158, 125, 158, 157, 126, 127, 159, 126, 159, 158, 128, 129, 161, 128, 161, 160, 129, 130, 162, 129, 162, 161, 130, 131, 163, 130, 163, 162, 131, 132, 164, 131, 164, 163, 132, 133, 165, 132, 165, 164, 133, 134, 166, 133, 166, 165, 134, 135, 167, 134, 167, 166, 135, 136, 168, 135, 168, 167, 136, 137, 169, 136, 169, 168, 137, 138, 170, 137, 170, 169, 138, 139, 171, 138, 171, 170, 139, 140, 172, 139, 172, 171, 140, 141, 173, 140, 173, 172, 141, 142, 174, 141, 174, 173, 142, 143, 175, 142, 175, 174, 143, 144, 176, 143, 176, 175, 144, 145, 177, 144, 177, 176, 145, 146, 178, 145, 178, 177, 146, 147, 179, 146, 179, 178, 147, 148, 180, 147, 180, 179, 148, 149, 181, 148, 181, 180, 149, 150, 182, 149, 182, 181, 150, 151, 183, 150, 183, 182, 151, 152, 184, 151, 184, 183, 152, 153, 185, 152, 185, 184, 153, 154, 186, 153, 186, 185, 154, 155, 187, 154, 187, 186, 155, 156, 188, 155, 188, 187, 156, 157, 189, 156, 189, 188, 157, 158, 190, 157, 190, 189, 158, 159, 191, 158, 191, 190, 160, 161, 193, 160, 193, 192, 161, 162, 194, 161, 194, 193, 162, 163, 195, 162, 195, 194, 163, 164, 196, 163, 196, 195, 164, 165, 197, 164, 197, 196, 165, 166, 198, 165, 198, 197, 166, 167, 199, 166, 199, 198, 167, 168, 200, 167, 200, 199, 168, 169, 201, 168, 201, 200, 169, 170, 202, 169, 202, 201, 170, 171, 203, 170, 203, 202, 171, 172, 204, 171, 204, 203, 172, 173, 205, 172, 205, 204, 173, 174, 206, 173, 206, 205, 174, 175, 207, 174, 207, 206, 175, 176, 208, 175, 208, 207, 176, 177, 209, 176, 209, 208, 177, 178, 210, 177, 210, 209, 178, 179, 211, 178, 211, 210, 179, 180, 212, 179, 212, 211, 180, 181, 213, 180, 213, 212, 181, 182, 214, 181, 214, 213, 182, 183, 215, 182, 215, 214, 183, 184, 216, 183, 216, 215, 184, 185, 217, 184, 217, 216, 185, 186, 218, 185, 218, 217, 186, 187, 219, 186, 219, 218, 187, 188, 220, 187, 220, 219, 188, 189, 221, 188, 221, 220, 189, 190, 222, 189, 222, 221, 190, 191, 223, 190, 223, 222, 192, 193, 225, 192, 225, 224, 193, 194, 226, 193, 226, 225, 194, 195, 227, 194, 227, 226, 195, 196, 228, 195, 228, 227, 196, 197, 229, 196, 229, 228, 197, 198, 230, 197, 230, 229, 198, 199, 231, 198, 231, 230, 199, 200, 232, 199, 232, 231, 200, 201, 233, 200, 233, 232, 201, 202, 234, 201, 234, 233, 202, 203, 235, 202, 235, 234, 203, 204, 236, 203, 236, 235, 204, 205, 237, 204, 237, 236, 205, 206, 238, 205, 238, 237, 206, 207, 239, 206, 239, 238, 207, 208, 240, 207, 240, 239, 208, 209, 241, 208, 241, 240, 209, 210, 242, 209, 242, 241, 210, 211, 243, 210, 243, 242, 211, 212, 244, 211, 244, 243, 212, 213, 245, 212, 245, 244, 213, 214, 246, 213, 246, 245, 214, 215, 247, 214, 247, 246, 215, 216, 248, 215, 248, 247, 216, 217, 249, 216, 249, 248, 217, 218, 250, 217, 250, 249, 218, 219, 251, 218, 251, 250, 219, 220, 252, 219, 252, 251, 220, 221, 253, 220, 253, 252, 221, 222, 254, 221, 254, 253, 222, 223, 255, 222, 255, 254, 224, 225, 257, 224, 257, 256, 225, 226, 258, 225, 258, 257, 226, 227, 259, 226, 259, 258, 227, 228, 260, 227, 260, 259, 228, 229, 261, 228, 261, 260, 229, 230, 262, 229, 262, 261, 230, 231, 263, 230, 263, 262, 231, 232, 264, 231, 264, 263, 232, 233, 265, 232, 265, 264, 233, 234, 266, 233, 266, 265, 234, 235, 267, 234, 267, 266, 235, 236, 268, 235, 268, 267, 236, 237, 269, 236, 269, 268, 237, 238, 270, 237, 270, 269, 238, 239, 271, 238, 271, 270, 239, 240, 272, 239, 272, 271, 240, 241, 273, 240, 273, 272, 241, 242, 274, 241, 274, 273, 242, 243, 275, 242, 275, 274, 243, 244, 276, 243, 276, 275, 244, 245, 277, 244, 277, 276, 245, 246, 278, 245, 278, 277, 246, 247, 279, 246, 279, 278, 247, 248, 280, 247, 280, 279, 248, 249, 281, 248, 281, 280, 249, 250, 282, 249, 282, 281, 250, 251, 283, 250, 283, 282, 251, 252, 284, 251, 284, 283, 252, 253, 285, 252, 285, 284, 253, 254, 286, 253, 286, 285, 254, 255, 287, 254, 287, 286, 256, 257, 289, 256, 289, 288, 257, 258, 290, 257, 290, 289, 258, 259, 291, 258, 291, 290, 259, 260, 292, 259, 292, 291, 260, 261, 293, 260, 293, 292, 261, 262, 294, 261, 294, 293, 262, 263, 295, 262, 295, 294, 263, 264, 296, 263, 296, 295, 264, 265, 297, 264, 297, 296, 265, 266, 298, 265, 298, 297, 266, 267, 299, 266, 299, 298, 267, 268, 300, 267, 300, 299, 268, 269, 301, 268, 301, 300, 269, 270, 302, 269, 302, 301, 270, 271, 303, 270, 303, 302, 271, 272, 304, 271, 304, 303, 272, 273, 305, 272, 305, 304, 273, 274, 306, 273, 306, 305, 274, 275, 307, 274, 307, 306, 275, 276, 308, 275, 308, 307, 276, 277, 309, 276, 309, 308, 277, 278, 310, 277, 310, 309, 278, 279, 311, 278, 311, 310, 279, 280, 312, 279, 312, 311, 280, 281, 313, 280, 313, 312, 281, 282, 314, 281, 314, 313, 282, 283, 315, 282, 315, 314, 283, 284, 316, 283, 316, 315, 284, 285, 317, 284, 317, 316, 285, 286, 318, 285, 318, 317, 286, 287, 319, 286, 319, 318, 288, 289, 321, 288, 321, 320, 289, 290, 322, 289, 322, 321, 290, 291, 323, 290, 323, 322, 291, 292, 324, 291, 324, 323, 292, 293, 325, 292, 325, 324, 293, 294, 326, 293, 326, 325, 294, 295, 327, 294, 327, 326, 295, 296, 328, 295, 328, 327, 296, 297, 329, 296, 329, 328, 297, 298, 330, 297, 330, 329, 298, 299, 331, 298, 331, 330, 299, 300, 332, 299, 332, 331, 300, 301, 333, 300, 333, 332, 301, 302, 334, 301, 334, 333, 302, 303, 335, 302, 335, 334, 303, 304, 336, 303, 336, 335, 304, 305, 337, 304, 337, 336, 305, 306, 338, 305, 338, 337, 306, 307, 339, 306, 339, 338, 307, 308, 340, 307, 340, 339, 308, 309, 341, 308, 341, 340, 309, 310, 342, 309, 342, 341, 310, 311, 343, 310, 343, 342, 311, 312, 344, 311, 344, 343, 312, 313, 345, 312, 345, 344, 313, 314, 346, 313, 346, 345, 314, 315, 347, 314, 347, 346, 315, 316, 348, 315, 348, 347, 316, 317, 349, 316, 349, 348, 317, 318, 350, 317, 350, 349, 318, 319, 351, 318, 351, 350, 320, 321, 353, 320, 353, 352, 321, 322, 354, 321, 354, 353, 322, 323, 355, 322, 355, 354, 323, 324, 356, 323, 356, 355, 324, 325, 357, 324, 357, 356, 325, 326, 358, 325, 358, 357, 326, 327, 359, 326, 359, 358, 327, 328, 360, 327, 360, 359, 328, 329, 361, 328, 361, 360, 329, 330, 362, 329, 362, 361, 330, 331, 363, 330, 363, 362, 331, 332, 364, 331, 364, 363, 332, 333, 365, 332, 365, 364, 333, 334, 366, 333, 366, 365, 334, 335, 367, 334, 367, 366, 335, 336, 368, 335, 368, 367, 336, 337, 369, 336, 369, 368, 337, 338, 370, 337, 370, 369, 338, 339, 371, 338, 371, 370, 339, 340, 372, 339, 372, 371, 340, 341, 373, 340, 373, 372, 341, 342, 374, 341, 374, 373, 342, 343, 375, 342, 375, 374, 343, 344, 376, 343, 376, 375, 344, 345, 377, 344, 377, 376, 345, 346, 378, 345, 378, 377, 346, 347, 379, 346, 379, 378, 347, 348, 380, 347, 380, 379, 348, 349, 381, 348, 381, 380, 349, 350, 382, 349, 382, 381, 350, 351, 383, 350, 383, 382, 352, 353, 385, 352, 385, 384, 353, 354, 386, 353, 386, 385, 354, 355, 387, 354, 387, 386, 355, 356, 388, 355, 388, 387, 356, 357, 389, 356, 389, 388, 357, 358, 390, 357, 390, 389, 358, 359, 391, 358, 391, 390, 359, 360, 392, 359, 392, 391, 360, 361, 393, 360, 393, 392, 361, 362, 394, 361, 394, 393, 362, 363, 395, 362, 395, 394, 363, 364, 396, 363, 396, 395, 364, 365, 397, 364, 397, 396, 365, 366, 398, 365, 398, 397, 366, 367, 399, 366, 399, 398, 367, 368, 400, 367, 400, 399, 368, 369, 401, 368, 401, 400, 369, 370, 402, 369, 402, 401, 370, 371, 403, 370, 403, 402, 371, 372, 404, 371, 404, 403, 372, 373, 405, 372, 405, 404, 373, 374, 406, 373, 406, 405, 374, 375, 407, 374, 407, 406, 375, 376, 408, 375, 408, 407, 376, 377, 409, 376, 409, 408, 377, 378, 410, 377, 410, 409, 378, 379, 411, 378, 411, 410, 379, 380, 412, 379, 412, 411, 380, 381, 413, 380, 413, 412, 381, 382, 414, 381, 414, 413, 382, 383, 415, 382, 415, 414, 384, 385, 417, 384, 417, 416, 385, 386, 418, 385, 418, 417, 386, 387, 419, 386, 419, 418, 387, 388, 420, 387, 420, 419, 388, 389, 421, 388, 421, 420, 389, 390, 422, 389, 422, 421, 390, 391, 423, 390, 423, 422, 391, 392, 424, 391, 424, 423, 392, 393, 425, 392, 425, 424, 393, 394, 426, 393, 426, 425, 394, 395, 427, 394, 427, 426, 395, 396, 428, 395, 428, 427, 396, 397, 429, 396, 429, 428, 397, 398, 430, 397, 430, 429, 398, 399, 431, 398, 431, 430, 399, 400, 432, 399, 432, 431, 400, 401, 433, 400, 433, 432, 401, 402, 434, 401, 434, 433, 402, 403, 435, 402, 435, 434, 403, 404, 436, 403, 436, 435, 404, 405, 437, 404, 437, 436, 405, 406, 438, 405, 438, 437, 406, 407, 439, 406, 439, 438, 407, 408, 440, 407, 440, 439, 408, 409, 441, 408, 441, 440, 409, 410, 442, 409, 442, 441, 410, 411, 443, 410, 443, 442, 411, 412, 444, 411, 444, 443, 412, 413, 445, 412, 445, 444, 413, 414, 446, 413, 446, 445, 414, 415, 447, 414, 447, 446, 416, 417, 449, 416, 449, 448, 417, 418, 450, 417, 450, 449, 418, 419, 451, 418, 451, 450, 419, 420, 452, 419, 452, 451, 420, 421, 453, 420, 453, 452, 421, 422, 454, 421, 454, 453, 422, 423, 455, 422, 455, 454, 423, 424, 456, 423, 456, 455, 424, 425, 457, 424, 457, 456, 425, 426, 458, 425, 458, 457, 426, 427, 459, 426, 459, 458, 427, 428, 460, 427, 460, 459, 428, 429, 461, 428, 461, 460, 429, 430, 462, 429, 462, 461, 430, 431, 463, 430, 463, 462, 431, 432, 464, 431, 464, 463, 432, 433, 465, 432, 465, 464, 433, 434, 466, 433, 466, 465, 434, 435, 467, 434, 467, 466, 435, 436, 468, 435, 468, 467, 436, 437, 469, 436, 469, 468, 437, 438, 470, 437, 470, 469, 438, 439, 471, 438, 471, 470, 439, 440, 472, 439, 472, 471, 440, 441, 473, 440, 473, 472, 441, 442, 474, 441, 474, 473, 442, 443, 475, 442, 475, 474, 443, 444, 476, 443, 476, 475, 444, 445, 477, 444, 477, 476, 445, 446, 478, 445, 478, 477, 446, 447, 479, 446, 479, 478, 448, 449, 481, 448, 481, 480, 449, 450, 482, 449, 482, 481, 450, 451, 483, 450, 483, 482, 451, 452, 484, 451, 484, 483, 452, 453, 485, 452, 485, 484, 453, 454, 486, 453, 486, 485, 454, 455, 487, 454, 487, 486, 455, 456, 488, 455, 488, 487, 456, 457, 489, 456, 489, 488, 457, 458, 490, 457, 490, 489, 458, 459, 491, 458, 491, 490, 459, 460, 492, 459, 492, 491, 460, 461, 493, 460, 493, 492, 461, 462, 494, 461, 494, 493, 462, 463, 495, 462, 495, 494, 463, 464, 496, 463, 496, 495, 464, 465, 497, 464, 497, 496, 465, 466, 498, 465, 498, 497, 466, 467, 499, 466, 499, 498, 467, 468, 500, 467, 500, 499, 468, 469, 501, 468, 501, 500, 469, 470, 502, 469, 502, 501, 470, 471, 503, 470, 503, 502, 471, 472, 504, 471, 504, 503, 472, 473, 505, 472, 505, 504, 473, 474, 506, 473, 506, 505, 474, 475, 507, 474, 507, 506, 475, 476, 508, 475, 508, 507, 476, 477, 509, 476, 509, 508, 477, 478, 510, 477, 510, 509, 478, 479, 511, 478, 511, 510, 480, 481, 513, 480, 513, 512, 481, 482, 514, 481, 514, 513, 482, 483, 515, 482, 515, 514, 483, 484, 516, 483, 516, 515, 484, 485, 517, 484, 517, 516, 485, 486, 518, 485, 518, 517, 486, 487, 519, 486, 519, 518, 487, 488, 520, 487, 520, 519, 488, 489, 521, 488, 521, 520, 489, 490, 522, 489, 522, 521, 490, 491, 523, 490, 523, 522, 491, 492, 524, 491, 524, 523, 492, 493, 525, 492, 525, 524, 493, 494, 526, 493, 526, 525, 494, 495, 527, 494, 527, 526, 495, 496, 528, 495, 528, 527, 496, 497, 529, 496, 529, 528, 497, 498, 530, 497, 530, 529, 498, 499, 531, 498, 531, 530, 499, 500, 532, 499, 532, 531, 500, 501, 533, 500, 533, 532, 501, 502, 534, 501, 534, 533, 502, 503, 535, 502, 535, 534, 503, 504, 536, 503, 536, 535, 504, 505, 537, 504, 537, 536, 505, 506, 538, 505, 538, 537, 506, 507, 539, 506, 539, 538, 507, 508, 540, 507, 540, 539, 508, 509, 541, 508, 541, 540, 509, 510, 542, 509, 542, 541, 510, 511, 543, 510, 543, 542, 512, 513, 545, 512, 545, 544, 513, 514, 546, 513, 546, 545, 514, 515, 547, 514, 547, 546, 515, 516, 548, 515, 548, 547, 516, 517, 549, 516, 549, 548, 517, 518, 550, 517, 550, 549, 518, 519, 551, 518, 551, 550, 519, 520, 552, 519, 552, 551, 520, 521, 553, 520, 553, 552, 521, 522, 554, 521, 554, 553, 522, 523, 555, 522, 555, 554, 523, 524, 556, 523, 556, 555, 524, 525, 557, 524, 557, 556, 525, 526, 558, 525, 558, 557, 526, 527, 559, 526, 559, 558, 527, 528, 560, 527, 560, 559, 528, 529, 561, 528, 561, 560, 529, 530, 562, 529, 562, 561, 530, 531, 563, 530, 563, 562, 531, 532, 564, 531, 564, 563, 532, 533, 565, 532, 565, 564, 533, 534, 566, 533, 566, 565, 534, 535, 567, 534, 567, 566, 535, 536, 568, 535, 568, 567, 536, 537, 569, 536, 569, 568, 537, 538, 570, 537, 570, 569, 538, 539, 571, 538, 571, 570, 539, 540, 572, 539, 572, 571, 540, 541, 573, 540, 573, 572, 541, 542, 574, 541, 574, 573, 542, 543, 575, 542, 575, 574, 544, 545, 577, 544, 577, 576, 545, 546, 578, 545, 578, 577, 546, 547, 579, 546, 579, 578, 547, 548, 580, 547, 580, 579, 548, 549, 581, 548, 581, 580, 549, 550, 582, 549, 582, 581, 550, 551, 583, 550, 583, 582, 551, 552, 584, 551, 584, 583, 552, 553, 585, 552, 585, 584, 553, 554, 586, 553, 586, 585, 554, 555, 587, 554, 587, 586, 555, 556, 588, 555, 588, 587, 556, 557, 589, 556, 589, 588, 557, 558, 590, 557, 590, 589, 558, 559, 591, 558, 591, 590, 559, 560, 592, 559, 592, 591, 560, 561, 593, 560, 593, 592, 561, 562, 594, 561, 594, 593, 562, 563, 595, 562, 595, 594, 563, 564, 596, 563, 596, 595, 564, 565, 597, 564, 597, 596, 565, 566, 598, 565, 598, 597, 566, 567, 599, 566, 599, 598, 567, 568, 600, 567, 600, 599, 568, 569, 601, 568, 601, 600, 569, 570, 602, 569, 602, 601, 570, 571, 603, 570, 603, 602, 571, 572, 604, 571, 604, 603, 572, 573, 605, 572, 605, 604, 573, 574, 606, 573, 606, 605, 574, 575, 607, 574, 607, 606, 576, 577, 609, 576, 609, 608, 577, 578, 610, 577, 610, 609, 578, 579, 611, 578, 611, 610, 579, 580, 612, 579, 612, 611, 580, 581, 613, 580, 613, 612, 581, 582, 614, 581, 614, 613, 582, 583, 615, 582, 615, 614, 583, 584, 616, 583, 616, 615, 584, 585, 617, 584, 617, 616, 585, 586, 618, 585, 618, 617, 586, 587, 619, 586, 619, 618, 587, 588, 620, 587, 620, 619, 588, 589, 621, 588, 621, 620, 589, 590, 622, 589, 622, 621, 590, 591, 623, 590, 623, 622, 591, 592, 624, 591, 624, 623, 592, 593, 625, 592, 625, 624, 593, 594, 626, 593, 626, 625, 594, 595, 627, 594, 627, 626, 595, 596, 628, 595, 628, 627, 596, 597, 629, 596, 629, 628, 597, 598, 630, 597, 630, 629, 598, 599, 631, 598, 631, 630, 599, 600, 632, 599, 632, 631, 600, 601, 633, 600, 633, 632, 601, 602, 634, 601, 634, 633, 602, 603, 635, 602, 635, 634, 603, 604, 636, 603, 636, 635, 604, 605, 637, 604, 637, 636, 605, 606, 638, 605, 638, 637, 606, 607, 639, 606, 639, 638, 608, 609, 641, 608, 641, 640, 609, 610, 642, 609, 642, 641, 610, 611, 643, 610, 643, 642, 611, 612, 644, 611, 644, 643, 612, 613, 645, 612, 645, 644, 613, 614, 646, 613, 646, 645, 614, 615, 647, 614, 647, 646, 615, 616, 648, 615, 648, 647, 616, 617, 649, 616, 649, 648, 617, 618, 650, 617, 650, 649, 618, 619, 651, 618, 651, 650, 619, 620, 652, 619, 652, 651, 620, 621, 653, 620, 653, 652, 621, 622, 654, 621, 654, 653, 622, 623, 655, 622, 655, 654, 623, 624, 656, 623, 656, 655, 624, 625, 657, 624, 657, 656, 625, 626, 658, 625, 658, 657, 626, 627, 659, 626, 659, 658, 627, 628, 660, 627, 660, 659, 628, 629, 661, 628, 661, 660, 629, 630, 662, 629, 662, 661, 630, 631, 663, 630, 663, 662, 631, 632, 664, 631, 664, 663, 632, 633, 665, 632, 665, 664, 633, 634, 666, 633, 666, 665, 634, 635, 667, 634, 667, 666, 635, 636, 668, 635, 668, 667, 636, 637, 669, 636, 669, 668, 637, 638, 670, 637, 670, 669, 638, 639, 671, 638, 671, 670, 640, 641, 673, 640, 673, 672, 641, 642, 674, 641, 674, 673, 642, 643, 675, 642, 675, 674, 643, 644, 676, 643, 676, 675, 644, 645, 677, 644, 677, 676, 645, 646, 678, 645, 678, 677, 646, 647, 679, 646, 679, 678, 647, 648, 680, 647, 680, 679, 648, 649, 681, 648, 681, 680, 649, 650, 682, 649, 682, 681, 650, 651, 683, 650, 683, 682, 651, 652, 684, 651, 684, 683, 652, 653, 685, 652, 685, 684, 653, 654, 686, 653, 686, 685, 654, 655, 687, 654, 687, 686, 655, 656, 688, 655, 688, 687, 656, 657, 689, 656, 689, 688, 657, 658, 690, 657, 690, 689, 658, 659, 691, 658, 691, 690, 659, 660, 692, 659, 692, 691, 660, 661, 693, 660, 693, 692, 661, 662, 694, 661, 694, 693, 662, 663, 695, 662, 695, 694, 663, 664, 696, 663, 696, 695, 664, 665, 697, 664, 697, 696, 665, 666, 698, 665, 698, 697, 666, 667, 699, 666, 699, 698, 667, 668, 700, 667, 700, 699, 668, 669, 701, 668, 701, 700, 669, 670, 702, 669, 702, 701, 670, 671, 703, 670, 703, 702, 672, 673, 705, 672, 705, 704, 673, 674, 706, 673, 706, 705, 674, 675, 707, 674, 707, 706, 675, 676, 708, 675, 708, 707, 676, 677, 709, 676, 709, 708, 677, 678, 710, 677, 710, 709, 678, 679, 711, 678, 711, 710, 679, 680, 712, 679, 712, 711, 680, 681, 713, 680, 713, 712, 681, 682, 714, 681, 714, 713, 682, 683, 715, 682, 715, 714, 683, 684, 716, 683, 716, 715, 684, 685, 717, 684, 717, 716, 685, 686, 718, 685, 718, 717, 686, 687, 719, 686, 719, 718, 687, 688, 720, 687, 720, 719, 688, 689, 721, 688, 721, 720, 689, 690, 722, 689, 722, 721, 690, 691, 723, 690, 723, 722, 691, 692, 724, 691, 724, 723, 692, 693, 725, 692, 725, 724, 693, 694, 726, 693, 726, 725, 694, 695, 727, 694, 727, 726, 695, 696, 728, 695, 728, 727, 696, 697, 729, 696, 729, 728, 697, 698, 730, 697, 730, 729, 698, 699, 731, 698, 731, 730, 699, 700, 732, 699, 732, 731, 700, 701, 733, 700, 733, 732, 701, 702, 734, 701, 734, 733, 702, 703, 735, 702, 735, 734, 704, 705, 737, 704, 737, 736, 705, 706, 738, 705, 738, 737, 706, 707, 739, 706, 739, 738, 707, 708, 740, 707, 740, 739, 708, 709, 741, 708, 741, 740, 709, 710, 742, 709, 742, 741, 710, 711, 743, 710, 743, 742, 711, 712, 744, 711, 744, 743, 712, 713, 745, 712, 745, 744, 713, 714, 746, 713, 746, 745, 714, 715, 747, 714, 747, 746, 715, 716, 748, 715, 748, 747, 716, 717, 749, 716, 749, 748, 717, 718, 750, 717, 750, 749, 718, 719, 751, 718, 751, 750, 719, 720, 752, 719, 752, 751, 720, 721, 753, 720, 753, 752, 721, 722, 754, 721, 754, 753, 722, 723, 755, 722, 755, 754, 723, 724, 756, 723, 756, 755, 724, 725, 757, 724, 757, 756, 725, 726, 758, 725, 758, 757, 726, 727, 759, 726, 759, 758, 727, 728, 760, 727, 760, 759, 728, 729, 761, 728, 761, 760, 729, 730, 762, 729, 762, 761, 730, 731, 763, 730, 763, 762, 731, 732, 764, 731, 764, 763, 732, 733, 765, 732, 765, 764, 733, 734, 766, 733, 766, 765, 734, 735, 767, 734, 767, 766, 736, 737, 769, 736, 769, 768, 737, 738, 770, 737, 770, 769, 738, 739, 771, 738, 771, 770, 739, 740, 772, 739, 772, 771, 740, 741, 773, 740, 773, 772, 741, 742, 774, 741, 774, 773, 742, 743, 775, 742, 775, 774, 743, 744, 776, 743, 776, 775, 744, 745, 777, 744, 777, 776, 745, 746, 778, 745, 778, 777, 746, 747, 779, 746, 779, 778, 747, 748, 780, 747, 780, 779, 748, 749, 781, 748, 781, 780, 749, 750, 782, 749, 782, 781, 750, 751, 783, 750, 783, 782, 751, 752, 784, 751, 784, 783, 752, 753, 785, 752, 785, 784, 753, 754, 786, 753, 786, 785, 754, 755, 787, 754, 787, 786, 755, 756, 788, 755, 788, 787, 756, 757, 789, 756, 789, 788, 757, 758, 790, 757, 790, 789, 758, 759, 791, 758, 791, 790, 759, 760, 792, 759, 792, 791, 760, 761, 793, 760, 793, 792, 761, 762, 794, 761, 794, 793, 762, 763, 795, 762, 795, 794, 763, 764, 796, 763, 796, 795, 764, 765, 797, 764, 797, 796, 765, 766, 798, 765, 798, 797, 766, 767, 799, 766, 799, 798, 768, 769, 801, 768, 801, 800, 769, 770, 802, 769, 802, 801, 770, 771, 803, 770, 803, 802, 771, 772, 804, 771, 804, 803, 772, 773, 805, 772, 805, 804, 773, 774, 806, 773, 806, 805, 774, 775, 807, 774, 807, 806, 775, 776, 808, 775, 808, 807, 776, 777, 809, 776, 809, 808, 777, 778, 810, 777, 810, 809, 778, 779, 811, 778, 811, 810, 779, 780, 812, 779, 812, 811, 780, 781, 813, 780, 813, 812, 781, 782, 814, 781, 814, 813, 782, 783, 815, 782, 815, 814, 783, 784, 816, 783, 816, 815, 784, 785, 817, 784, 817, 816, 785, 786, 818, 785, 818, 817, 786, 787, 819, 786, 819, 818, 787, 788, 820, 787, 820, 819, 788, 789, 821, 788, 821, 820, 789, 790, 822, 789, 822, 821, 790, 791, 823, 790, 823, 822, 791, 792, 824, 791, 824, 823, 792, 793, 825, 792, 825, 824, 793, 794, 826, 793, 826, 825, 794, 795, 827, 794, 827, 826, 795, 796, 828, 795, 828, 827, 796, 797, 829, 796, 829, 828, 797, 798, 830, 797, 830, 829, 798, 799, 831, 798, 831, 830, 800, 801, 833, 800, 833, 832, 801, 802, 834, 801, 834, 833, 802, 803, 835, 802, 835, 834, 803, 804, 836, 803, 836, 835, 804, 805, 837, 804, 837, 836, 805, 806, 838, 805, 838, 837, 806, 807, 839, 806, 839, 838, 807, 808, 840, 807, 840, 839, 808, 809, 841, 808, 841, 840, 809, 810, 842, 809, 842, 841, 810, 811, 843, 810, 843, 842, 811, 812, 844, 811, 844, 843, 812, 813, 845, 812, 845, 844, 813, 814, 846, 813, 846, 845, 814, 815, 847, 814, 847, 846, 815, 816, 848, 815, 848, 847, 816, 817, 849, 816, 849, 848, 817, 818, 850, 817, 850, 849, 818, 819, 851, 818, 851, 850, 819, 820, 852, 819, 852, 851, 820, 821, 853, 820, 853, 852, 821, 822, 854, 821, 854, 853, 822, 823, 855, 822, 855, 854, 823, 824, 856, 823, 856, 855, 824, 825, 857, 824, 857, 856, 825, 826, 858, 825, 858, 857, 826, 827, 859, 826, 859, 858, 827, 828, 860, 827, 860, 859, 828, 829, 861, 828, 861, 860, 829, 830, 862, 829, 862, 861, 830, 831, 863, 830, 863, 862, 832, 833, 865, 832, 865, 864, 833, 834, 866, 833, 866, 865, 834, 835, 867, 834, 867, 866, 835, 836, 868, 835, 868, 867, 836, 837, 869, 836, 869, 868, 837, 838, 870, 837, 870, 869, 838, 839, 871, 838, 871, 870, 839, 840, 872, 839, 872, 871, 840, 841, 873, 840, 873, 872, 841, 842, 874, 841, 874, 873, 842, 843, 875, 842, 875, 874, 843, 844, 876, 843, 876, 875, 844, 845, 877, 844, 877, 876, 845, 846, 878, 845, 878, 877, 846, 847, 879, 846, 879, 878, 847, 848, 880, 847, 880, 879, 848, 849, 881, 848, 881, 880, 849, 850, 882, 849, 882, 881, 850, 851, 883, 850, 883, 882, 851, 852, 884, 851, 884, 883, 852, 853, 885, 852, 885, 884, 853, 854, 886, 853, 886, 885, 854, 855, 887, 854, 887, 886, 855, 856, 888, 855, 888, 887, 856, 857, 889, 856, 889, 888, 857, 858, 890, 857, 890, 889, 858, 859, 891, 858, 891, 890, 859, 860, 892, 859, 892, 891, 860, 861, 893, 860, 893, 892, 861, 862, 894, 861, 894, 893, 862, 863, 895, 862, 895, 894, 864, 865, 897, 864, 897, 896, 865, 866, 898, 865, 898, 897, 866, 867, 899, 866, 899, 898, 867, 868, 900, 867, 900, 899, 868, 869, 901, 868, 901, 900, 869, 870, 902, 869, 902, 901, 870, 871, 903, 870, 903, 902, 871, 872, 904, 871, 904, 903, 872, 873, 905, 872, 905, 904, 873, 874, 906, 873, 906, 905, 874, 875, 907, 874, 907, 906, 875, 876, 908, 875, 908, 907, 876, 877, 909, 876, 909, 908, 877, 878, 910, 877, 910, 909, 878, 879, 911, 878, 911, 910, 879, 880, 912, 879, 912, 911, 880, 881, 913, 880, 913, 912, 881, 882, 914, 881, 914, 913, 882, 883, 915, 882, 915, 914, 883, 884, 916, 883, 916, 915, 884, 885, 917, 884, 917, 916, 885, 886, 918, 885, 918, 917, 886, 887, 919, 886, 919, 918, 887, 888, 920, 887, 920, 919, 888, 889, 921, 888, 921, 920, 889, 890, 922, 889, 922, 921, 890, 891, 923, 890, 923, 922, 891, 892, 924, 891, 924, 923, 892, 893, 925, 892, 925, 924, 893, 894, 926, 893, 926, 925, 894, 895, 927, 894, 927, 926, 896, 897, 929, 896, 929, 928, 897, 898, 930, 897, 930, 929, 898, 899, 931, 898, 931, 930, 899, 900, 932, 899, 932, 931, 900, 901, 933, 900, 933, 932, 901, 902, 934, 901, 934, 933, 902, 903, 935, 902, 935, 934, 903, 904, 936, 903, 936, 935, 904, 905, 937, 904, 937, 936, 905, 906, 938, 905, 938, 937, 906, 907, 939, 906, 939, 938, 907, 908, 940, 907, 940, 939, 908, 909, 941, 908, 941, 940, 909, 910, 942, 909, 942, 941, 910, 911, 943, 910, 943, 942, 911, 912, 944, 911, 944, 943, 912, 913, 945, 912, 945, 944, 913, 914, 946, 913, 946, 945, 914, 915, 947, 914, 947, 946, 915, 916, 948, 915, 948, 947, 916, 917, 949, 916, 949, 948, 917, 918, 950, 917, 950, 949, 918, 919, 951, 918, 951, 950, 919, 920, 952, 919, 952, 951, 920, 921, 953, 920, 953, 952, 921, 922, 954, 921, 954, 953, 922, 923, 955, 922, 955, 954, 923, 924, 956, 923, 956, 955, 924, 925, 957, 924, 957, 956, 925, 926, 958, 925, 958, 957, 926, 927, 959, 926, 959, 958, 928, 929, 961, 928, 961, 960, 929, 930, 962, 929, 962, 961, 930, 931, 963, 930, 963, 962, 931, 932, 964, 931, 964, 963, 932, 933, 965, 932, 965, 964, 933, 934, 966, 933, 966, 965, 934, 935, 967, 934, 967, 966, 935, 936, 968, 935, 968, 967, 936, 937, 969, 936, 969, 968, 937, 938, 970, 937, 970, 969, 938, 939, 971, 938, 971, 970, 939, 940, 972, 939, 972, 971, 940, 941, 973, 940, 973, 972, 941, 942, 974, 941, 974, 973, 942, 943, 975, 942, 975, 974, 943, 944, 976, 943, 976, 975, 944, 945, 977, 944, 977, 976, 945, 946, 978, 945, 978, 977, 946, 947, 979, 946, 979, 978, 947, 948, 980, 947, 980, 979, 948, 949, 981, 948, 981, 980, 949, 950, 982, 949, 982, 981, 950, 951, 983, 950, 983, 982, 951, 952, 984, 951, 984, 983, 952, 953, 985, 952, 985, 984, 953, 954, 986, 953, 986, 985, 954, 955, 987, 954, 987, 986, 955, 956, 988, 955, 988, 987, 956, 957, 989, 956, 989, 988, 957, 958, 990, 957, 990, 989, 958, 959, 991, 958, 991, 990, 960, 961, 993, 960, 993, 992, 961, 962, 994, 961, 994, 993, 962, 963, 995, 962, 995, 994, 963, 964, 996, 963, 996, 995, 964, 965, 997, 964, 997, 996, 965, 966, 998, 965, 998, 997, 966, 967, 999, 966, 999, 998, 967, 968, 1000, 967, 1000, 999, 968, 969, 1001, 968, 1001, 1000, 969, 970, 1002, 969, 1002, 1001, 970, 971, 1003, 970, 1003, 1002, 971, 972, 1004, 971, 1004, 1003, 972, 973, 1005, 972, 1005, 1004, 973, 974, 1006, 973, 1006, 1005, 974, 975, 1007, 974, 1007, 1006, 975, 976, 1008, 975, 1008, 1007, 976, 977, 1009, 976, 1009, 1008, 977, 978, 1010, 977, 1010, 1009, 978, 979, 1011, 978, 1011, 1010, 979, 980, 1012, 979, 1012, 1011, 980, 981, 1013, 980, 1013, 1012, 981, 982, 1014, 981, 1014, 1013, 982, 983, 1015, 982, 1015, 1014, 983, 984, 1016, 983, 1016, 1015, 984, 985, 1017, 984, 1017, 1016, 985, 986, 1018, 985, 1018, 1017, 986, 987, 1019, 986, 1019, 1018, 987, 988, 1020, 987, 1020, 1019, 988, 989, 1021, 988, 1021, 1020, 989, 990, 1022, 989, 1022, 1021, 990, 991, 1023, 990, 1023, 1022] point3f[] points = [(0, 0, -8.03668), (20, 0, -42.435413), (40, 0, -196.9681), (60, 0, 10), (80, 0, -115.08344), (100, 0, -149.48218), (120, 0, 10), (140, 0, -176.38777), (160, 0, -79.910095), (180, 0, 10), (200, 0, -207.20355), (220, 0, -9.978674), (240, 0, -40.231514), (260, 0, -197.90723), (280, 0, 10), (300, 0, -112.868164), (320, 0, -151.402), (340, 0, 10), (360, 0, -174.8529), (380, 0, -82.211075), (400, 0, 10), (420, 0, -206.82843), (440, 0, -11.9422245), (460, 0, -38.039684), (480, 0, -198.80902), (500, 0, 10), (520, 0, -110.64218), (540, 0, -153.29907), (560, 0, 10), (580, 0, -173.28796), (600, 0, -84.51098), (620, 0, 10), (0, 20, -27.724184), (20, 20, -62.122917), (40, 20, -216.65561), (60, 20, 10), (80, 20, -134.77095), (100, 20, -169.16968), (120, 20, 10), (140, 20, -196.07527), (160, 20, -99.597595), (180, 20, 0.685668), (200, 20, -226.89104), (220, 20, -29.66618), (240, 20, -59.91902), (260, 20, -217.59473), (280, 20, 10), (300, 20, -132.55566), (320, 20, -171.08951), (340, 20, 10), (360, 20, -194.54044), (380, 20, -101.898575), (400, 20, 2.1588554), (420, 20, -226.51595), (440, 20, -31.629728), (460, 20, -57.72719), (480, 20, -218.49654), (500, 20, 10), (520, 20, -130.32968), (540, 20, -172.98657), (560, 20, 10), (580, 20, -192.97545), (600, 20, -104.19848), (620, 20, 3.600522), (0, 40, -37.97628), (20, 40, -72.375015), (40, 40, -226.90768), (60, 40, 9.509638), (80, 40, -145.02304), (100, 40, -179.42178), (120, 40, 10), (140, 40, -206.32735), (160, 40, -109.849686), (180, 40, -9.566425), (200, 40, -237.14314), (220, 40, -39.91827), (240, 40, -70.171104), (260, 40, -227.84682), (280, 40, 8.533462), (300, 40, -142.80777), (320, 40, -181.34161), (340, 40, 10), (360, 40, -204.79251), (380, 40, -112.15067), (400, 40, -8.093237), (420, 40, -236.76805), (440, 40, -41.88182), (460, 40, -67.97928), (480, 40, -228.74863), (500, 40, 7.52054), (520, 40, -140.58179), (540, 40, -183.23866), (560, 40, 10), (580, 40, -203.22755), (600, 40, -114.45057), (620, 40, -6.6515713), (0, 60, -37.97628), (20, 60, -72.375015), (40, 60, -226.90768), (60, 60, 9.509638), (80, 60, -145.02304), (100, 60, -179.42178), (120, 60, 10), (140, 60, -206.32735), (160, 60, -109.849686), (180, 60, -9.566425), (200, 60, -237.14314), (220, 60, -39.91827), (240, 60, -70.171104), (260, 60, -227.84682), (280, 60, 8.533462), (300, 60, -142.80777), (320, 60, -181.34161), (340, 60, 10), (360, 60, -204.79251), (380, 60, -112.15067), (400, 60, -8.093237), (420, 60, -236.76805), (440, 60, -41.88182), (460, 60, -67.97928), (480, 60, -228.74863), (500, 60, 7.52054), (520, 60, -140.58179), (540, 60, -183.23866), (560, 60, 10), (580, 60, -203.22755), (600, 60, -114.45057), (620, 60, -6.6515713), (0, 80, -27.724184), (20, 80, -62.122917), (40, 80, -216.65561), (60, 80, 10), (80, 80, -134.77095), (100, 80, -169.16968), (120, 80, 10), (140, 80, -196.07527), (160, 80, -99.597595), (180, 80, 0.685668), (200, 80, -226.89104), (220, 80, -29.66618), (240, 80, -59.91902), (260, 80, -217.59473), (280, 80, 10), (300, 80, -132.55566), (320, 80, -171.08951), (340, 80, 10), (360, 80, -194.54044), (380, 80, -101.898575), (400, 80, 2.1588554), (420, 80, -226.51595), (440, 80, -31.629728), (460, 80, -57.72719), (480, 80, -218.49654), (500, 80, 10), (520, 80, -130.32968), (540, 80, -172.98657), (560, 80, 10), (580, 80, -192.97545), (600, 80, -104.19848), (620, 80, 3.600522), (0, 100, -8.03668), (20, 100, -42.435413), (40, 100, -196.9681), (60, 100, 10), (80, 100, -115.08344), (100, 100, -149.48218), (120, 100, 10), (140, 100, -176.38777), (160, 100, -79.910095), (180, 100, 10), (200, 100, -207.20355), (220, 100, -9.978674), (240, 100, -40.231514), (260, 100, -197.90723), (280, 100, 10), (300, 100, -112.868164), (320, 100, -151.402), (340, 100, 10), (360, 100, -174.8529), (380, 100, -82.211075), (400, 100, 10), (420, 100, -206.82843), (440, 100, -11.9422245), (460, 100, -38.039684), (480, 100, -198.80902), (500, 100, 10), (520, 100, -110.64218), (540, 100, -153.29907), (560, 100, 10), (580, 100, -173.28796), (600, 100, -84.51098), (620, 100, 10), (0, 120, 10), (20, 120, -14.88079), (40, 120, -169.41347), (60, 120, 10), (80, 120, -87.528824), (100, 120, -121.92755), (120, 120, 10), (140, 120, -148.83316), (160, 120, -52.35547), (180, 120, 10), (200, 120, -179.64891), (220, 120, 10), (240, 120, -12.676889), (260, 120, -170.3526), (280, 120, 10), (300, 120, -85.31354), (320, 120, -123.847374), (340, 120, 10), (360, 120, -147.2983), (380, 120, -54.65645), (400, 120, 10), (420, 120, -179.27382), (440, 120, 10), (460, 120, -10.485061), (480, 120, -171.25441), (500, 120, 10), (520, 120, -83.08756), (540, 120, -125.744446), (560, 120, 10), (580, 120, -145.73334), (600, 120, -56.956352), (620, 120, 10), (0, 140, 10), (20, 140, 10), (40, 140, -136.18672), (60, 140, 10), (80, 140, -54.30206), (100, 140, -88.7008), (120, 140, 10), (140, 140, -115.60639), (160, 140, -19.12872), (180, 140, 10), (200, 140, -146.42215), (220, 140, 10), (240, 140, 10), (260, 140, -137.12585), (280, 140, 10), (300, 140, -52.08678), (320, 140, -90.62062), (340, 140, 10), (360, 140, -114.07153), (380, 140, -21.429697), (400, 140, 10), (420, 140, -146.04706), (440, 140, 10), (460, 140, 10), (480, 140, -138.02765), (500, 140, 10), (520, 140, -49.86081), (540, 140, -92.51769), (560, 140, 10), (580, 140, -112.50658), (600, 140, -23.729595), (620, 140, 10), (0, 160, 10), (20, 160, 10), (40, 160, -99.93464), (60, 160, 10), (80, 160, -18.049992), (100, 160, -52.448727), (120, 160, 10), (140, 160, -79.35432), (160, 160, 10), (180, 160, 10), (200, 160, -110.170074), (220, 160, 10), (240, 160, 10), (260, 160, -100.87378), (280, 160, 10), (300, 160, -15.834709), (320, 160, -54.368557), (340, 160, 10), (360, 160, -77.819466), (380, 160, 10), (400, 160, 10), (420, 160, -109.79499), (440, 160, 10), (460, 160, 10), (480, 160, -101.77558), (500, 160, 10), (520, 160, -13.608737), (540, 160, -56.265625), (560, 160, 10), (580, 160, -76.2545), (600, 160, 10), (620, 160, 10), (0, 180, 10), (20, 180, 10), (40, 180, -63.545082), (60, 180, 10), (80, 180, 10), (100, 180, -16.059166), (120, 180, 10), (140, 180, -42.96476), (160, 180, 10), (180, 180, 10), (200, 180, -73.78053), (220, 180, 10), (240, 180, 10), (260, 180, -64.48422), (280, 180, 10), (300, 180, 10), (320, 180, -17.979), (340, 180, 10), (360, 180, -41.42991), (380, 180, 10), (400, 180, 10), (420, 180, -73.40543), (440, 180, 10), (460, 180, 10), (480, 180, -65.38602), (500, 180, 10), (520, 180, 10), (540, 180, -19.876066), (560, 180, 10), (580, 180, -39.864944), (600, 180, 10), (620, 180, 10), (0, 200, 10), (20, 200, 10), (40, 200, -29.91681), (60, 200, 10), (80, 200, 10), (100, 200, 10), (120, 200, 10), (140, 200, -9.336485), (160, 200, 10), (180, 200, 10), (200, 200, -40.152256), (220, 200, 10), (240, 200, 10), (260, 200, -30.855946), (280, 200, 10), (300, 200, 10), (320, 200, 10), (340, 200, 10), (360, 200, -7.801634), (380, 200, 10), (400, 200, 10), (420, 200, -39.77716), (440, 200, 10), (460, 200, 10), (480, 200, -31.757744), (500, 200, 10), (520, 200, 10), (540, 200, 10), (560, 200, 10), (580, 200, -6.2366714), (600, 200, 10), (620, 200, 10), (0, 220, 10), (20, 220, 10), (40, 220, -1.7286196), (60, 220, 10), (80, 220, 10), (100, 220, 10), (120, 220, 10), (140, 220, 10), (160, 220, 10), (180, 220, 10), (200, 220, -11.964067), (220, 220, 10), (240, 220, 10), (260, 220, -2.667758), (280, 220, 10), (300, 220, 10), (320, 220, 10), (340, 220, 10), (360, 220, 10), (380, 220, 10), (400, 220, 10), (420, 220, -11.588972), (440, 220, 10), (460, 220, 10), (480, 220, -3.5695572), (500, 220, 10), (520, 220, 10), (540, 220, 10), (560, 220, 10), (580, 220, 10), (600, 220, 10), (620, 220, 10), (0, 240, 10), (20, 240, 10), (40, 240, 10), (60, 240, 10), (80, 240, 10), (100, 240, 10), (120, 240, 10), (140, 240, 10), (160, 240, 10), (180, 240, 10), (200, 240, 8.538576), (220, 240, 10), (240, 240, 10), (260, 240, 10), (280, 240, 10), (300, 240, 10), (320, 240, 10), (340, 240, 10), (360, 240, 10), (380, 240, 10), (400, 240, 10), (420, 240, 8.91367), (440, 240, 10), (460, 240, 10), (480, 240, 10), (500, 240, 10), (520, 240, 10), (540, 240, 10), (560, 240, 10), (580, 240, 10), (600, 240, 10), (620, 240, 10), (0, 260, 10), (20, 260, 10), (40, 260, 10), (60, 260, 10), (80, 260, 10), (100, 260, 10), (120, 260, 10), (140, 260, 10), (160, 260, 10), (180, 260, 10), (200, 260, 10), (220, 260, 10), (240, 260, 10), (260, 260, 10), (280, 260, 10), (300, 260, 10), (320, 260, 10), (340, 260, 10), (360, 260, 10), (380, 260, 10), (400, 260, 10), (420, 260, 10), (440, 260, 10), (460, 260, 10), (480, 260, 10), (500, 260, 10), (520, 260, 10), (540, 260, 10), (560, 260, 10), (580, 260, 10), (600, 260, 10), (620, 260, 10), (0, 280, 10), (20, 280, 10), (40, 280, 10), (60, 280, 10), (80, 280, 10), (100, 280, 10), (120, 280, 10), (140, 280, 10), (160, 280, 10), (180, 280, 10), (200, 280, 10), (220, 280, 10), (240, 280, 10), (260, 280, 10), (280, 280, 10), (300, 280, 10), (320, 280, 10), (340, 280, 10), (360, 280, 10), (380, 280, 10), (400, 280, 10), (420, 280, 10), (440, 280, 10), (460, 280, 10), (480, 280, 10), (500, 280, 10), (520, 280, 10), (540, 280, 10), (560, 280, 10), (580, 280, 10), (600, 280, 10), (620, 280, 10), (0, 300, 10), (20, 300, 10), (40, 300, 10), (60, 300, 10), (80, 300, 10), (100, 300, 10), (120, 300, 10), (140, 300, 10), (160, 300, 10), (180, 300, 10), (200, 300, 10), (220, 300, 10), (240, 300, 10), (260, 300, 10), (280, 300, 10), (300, 300, 10), (320, 300, 10), (340, 300, 10), (360, 300, 10), (380, 300, 10), (400, 300, 10), (420, 300, 10), (440, 300, 10), (460, 300, 10), (480, 300, 10), (500, 300, 10), (520, 300, 10), (540, 300, 10), (560, 300, 10), (580, 300, 10), (600, 300, 10), (620, 300, 10), (0, 320, 10), (20, 320, 10), (40, 320, 2.7605104), (60, 320, 10), (80, 320, 10), (100, 320, 10), (120, 320, 10), (140, 320, 10), (160, 320, 10), (180, 320, 10), (200, 320, -7.4749374), (220, 320, 10), (240, 320, 10), (260, 320, 1.821372), (280, 320, 10), (300, 320, 10), (320, 320, 10), (340, 320, 10), (360, 320, 10), (380, 320, 10), (400, 320, 10), (420, 320, -7.099843), (440, 320, 10), (460, 320, 10), (480, 320, 0.91957474), (500, 320, 10), (520, 320, 10), (540, 320, 10), (560, 320, 10), (580, 320, 10), (600, 320, 10), (620, 320, 10), (0, 340, 10), (20, 340, 10), (40, 340, -24.14112), (60, 340, 10), (80, 340, 10), (100, 340, 10), (120, 340, 10), (140, 340, -3.5607986), (160, 340, 10), (180, 340, 10), (200, 340, -34.37657), (220, 340, 10), (240, 340, 10), (260, 340, -25.080261), (280, 340, 10), (300, 340, 10), (320, 340, 10), (340, 340, 10), (360, 340, -2.0259485), (380, 340, 10), (400, 340, 10), (420, 340, -34.001476), (440, 340, 10), (460, 340, 10), (480, 340, -25.98206), (500, 340, 10), (520, 340, 10), (540, 340, 10), (560, 340, 10), (580, 340, -0.46098614), (600, 340, 10), (620, 340, 10), (0, 360, 10), (20, 360, 10), (40, 360, -56.942932), (60, 360, 10), (80, 360, 10), (100, 360, -9.457015), (120, 360, 10), (140, 360, -36.36261), (160, 360, 10), (180, 360, 10), (200, 360, -67.17838), (220, 360, 10), (240, 360, 10), (260, 360, -57.88207), (280, 360, 10), (300, 360, 10), (320, 360, -11.376846), (340, 360, 10), (360, 360, -34.82776), (380, 360, 10), (400, 360, 10), (420, 360, -66.80328), (440, 360, 10), (460, 360, 10), (480, 360, -58.783867), (500, 360, 10), (520, 360, 10), (540, 360, -13.273915), (560, 360, 10), (580, 360, -33.262794), (600, 360, 10), (620, 360, 10), (0, 380, 10), (20, 380, 10), (40, 380, -93.03195), (60, 380, 10), (80, 380, -11.147299), (100, 380, -45.54603), (120, 380, 10), (140, 380, -72.45163), (160, 380, 10), (180, 380, 10), (200, 380, -103.267395), (220, 380, 10), (240, 380, 10), (260, 380, -93.971085), (280, 380, 10), (300, 380, -8.932016), (320, 380, -47.46587), (340, 380, 10), (360, 380, -70.91676), (380, 380, 10), (400, 380, 10), (420, 380, -102.8923), (440, 380, 10), (460, 380, 10), (480, 380, -94.87288), (500, 380, 10), (520, 380, -6.7060432), (540, 380, -49.36293), (560, 380, 10), (580, 380, -69.351814), (600, 380, 10), (620, 380, 10), (0, 400, 10), (20, 400, 10), (40, 400, -129.53333), (60, 400, 10), (80, 400, -47.64869), (100, 400, -82.047424), (120, 400, 10), (140, 400, -108.95302), (160, 400, -12.475346), (180, 400, 10), (200, 400, -139.7688), (220, 400, 10), (240, 400, 10), (260, 400, -130.47247), (280, 400, 10), (300, 400, -45.43341), (320, 400, -83.967255), (340, 400, 10), (360, 400, -107.41817), (380, 400, -14.776326), (400, 400, 10), (420, 400, -139.39369), (440, 400, 10), (460, 400, 10), (480, 400, -131.37427), (500, 400, 10), (520, 400, -43.20743), (540, 400, -85.86433), (560, 400, 10), (580, 400, -105.8532), (600, 400, -17.076225), (620, 400, 10), (0, 420, 10), (20, 420, -9.006751), (40, 420, -163.53943), (60, 420, 10), (80, 420, -81.65478), (100, 420, -116.05352), (120, 420, 10), (140, 420, -142.9591), (160, 420, -46.481434), (180, 420, 10), (200, 420, -173.77489), (220, 420, 10), (240, 420, -6.80285), (260, 420, -164.47858), (280, 420, 10), (300, 420, -79.43948), (320, 420, -117.97334), (340, 420, 10), (360, 420, -141.42426), (380, 420, -48.78241), (400, 420, 10), (420, 420, -173.3998), (440, 420, 10), (460, 420, -4.611023), (480, 420, -165.38037), (500, 420, 10), (520, 420, -77.213524), (540, 420, -119.87042), (560, 420, 10), (580, 420, -139.8593), (600, 420, -51.082314), (620, 420, 10), (0, 440, -3.4098883), (20, 440, -37.80862), (40, 440, -192.34131), (60, 440, 10), (80, 440, -110.45664), (100, 440, -144.8554), (120, 440, 10), (140, 440, -171.76097), (160, 440, -75.2833), (180, 440, 10), (200, 440, -202.57675), (220, 440, -5.351882), (240, 440, -35.60472), (260, 440, -193.28044), (280, 440, 10), (300, 440, -108.24136), (320, 440, -146.7752), (340, 440, 10), (360, 440, -170.22612), (380, 440, -77.58428), (400, 440, 10), (420, 440, -202.20166), (440, 440, -7.3154325), (460, 440, -33.412895), (480, 440, -194.18222), (500, 440, 10), (520, 440, -106.01539), (540, 440, -148.67229), (560, 440, 10), (580, 440, -168.66116), (600, 440, -79.88418), (620, 440, 10), (0, 460, -24.713207), (20, 460, -59.111942), (40, 460, -213.6446), (60, 460, 10), (80, 460, -131.75998), (100, 460, -166.1587), (120, 460, 10), (140, 460, -193.06429), (160, 460, -96.586624), (180, 460, 3.696642), (200, 460, -223.88007), (220, 460, -26.655205), (240, 460, -56.90804), (260, 460, -214.58377), (280, 460, 10), (300, 460, -129.5447), (320, 460, -168.07854), (340, 460, 10), (360, 460, -191.52945), (380, 460, -98.8876), (400, 460, 5.1698313), (420, 460, -223.50497), (440, 460, -28.618752), (460, 460, -54.716213), (480, 460, -215.48555), (500, 460, 10), (520, 460, -127.31872), (540, 460, -169.97562), (560, 460, 10), (580, 460, -189.96448), (600, 460, -101.18751), (620, 460, 6.611497), (0, 480, -36.82097), (20, 480, -71.219696), (40, 480, -225.75238), (60, 480, 10), (80, 480, -143.86772), (100, 480, -178.26646), (120, 480, 10), (140, 480, -205.17206), (160, 480, -108.69438), (180, 480, -8.411116), (200, 480, -235.98784), (220, 480, -38.762962), (240, 480, -69.0158), (260, 480, -226.69153), (280, 480, 9.68877), (300, 480, -141.65244), (320, 480, -180.1863), (340, 480, 10), (360, 480, -203.63719), (380, 480, -110.99537), (400, 480, -6.937928), (420, 480, -235.61273), (440, 480, -40.726517), (460, 480, -66.823975), (480, 480, -227.5933), (500, 480, 8.675849), (520, 480, -139.42647), (540, 480, -182.08337), (560, 480, 10), (580, 480, -202.07224), (600, 480, -113.295265), (620, 480, -5.4962616), (0, 500, -38.768673), (20, 500, -73.167404), (40, 500, -227.70009), (60, 500, 8.717241), (80, 500, -145.81544), (100, 500, -180.21416), (120, 500, 10), (140, 500, -207.11975), (160, 500, -110.6421), (180, 500, -10.358822), (200, 500, -237.93552), (220, 500, -40.710667), (240, 500, -70.96351), (260, 500, -228.63922), (280, 500, 7.741065), (300, 500, -143.60014), (320, 500, -182.134), (340, 500, 10), (360, 500, -205.58492), (380, 500, -112.94307), (400, 500, -8.8856325), (420, 500, -237.56044), (440, 500, -42.674217), (460, 500, -68.771675), (480, 500, -229.54103), (500, 500, 6.7281437), (520, 500, -141.37418), (540, 500, -184.03107), (560, 500, 10), (580, 500, -204.01994), (600, 500, -115.242966), (620, 500, -7.443966), (0, 520, -30.40116), (20, 520, -64.79989), (40, 520, -219.33257), (60, 520, 10), (80, 520, -137.4479), (100, 520, -171.84666), (120, 520, 10), (140, 520, -198.75224), (160, 520, -102.274574), (180, 520, -1.9913044), (200, 520, -229.56802), (220, 520, -32.34315), (240, 520, -62.595993), (260, 520, -220.27173), (280, 520, 10), (300, 520, -135.23264), (320, 520, -173.7665), (340, 520, 10), (360, 520, -197.21739), (380, 520, -104.57555), (400, 520, -0.51811695), (420, 520, -229.19293), (440, 520, -34.3067), (460, 520, -60.404163), (480, 520, -221.1735), (500, 520, 10), (520, 520, -133.00665), (540, 520, -175.66357), (560, 520, 10), (580, 520, -195.65244), (600, 520, -106.87546), (620, 520, 0.92354965), (0, 540, -12.384989), (20, 540, -46.783722), (40, 540, -201.31639), (60, 540, 10), (80, 540, -119.431755), (100, 540, -153.83047), (120, 540, 10), (140, 540, -180.73608), (160, 540, -84.2584), (180, 540, 10), (200, 540, -211.55183), (220, 540, -14.326982), (240, 540, -44.57982), (260, 540, -202.25552), (280, 540, 10), (300, 540, -117.21646), (320, 540, -155.75032), (340, 540, 10), (360, 540, -179.20123), (380, 540, -86.55939), (400, 540, 10), (420, 540, -211.17674), (440, 540, -16.290531), (460, 540, -42.387993), (480, 540, -203.15735), (500, 540, 10), (520, 540, -114.990486), (540, 540, -157.64737), (560, 540, 10), (580, 540, -177.63626), (600, 540, -88.85928), (620, 540, 10), (0, 560, 10), (20, 560, -20.554047), (40, 560, -175.08673), (60, 560, 10), (80, 560, -93.20207), (100, 560, -127.6008), (120, 560, 10), (140, 560, -154.5064), (160, 560, -58.02873), (180, 560, 10), (200, 560, -185.32216), (220, 560, 10), (240, 560, -18.350147), (260, 560, -176.02586), (280, 560, 10), (300, 560, -90.986786), (320, 560, -129.52065), (340, 560, 10), (360, 560, -152.97156), (380, 560, -60.329704), (400, 560, 10), (420, 560, -184.94708), (440, 560, 9.939144), (460, 560, -16.158318), (480, 560, -176.92767), (500, 560, 10), (520, 560, -88.76081), (540, 560, -131.4177), (560, 560, 10), (580, 560, -151.40659), (600, 560, -62.62961), (620, 560, 10), (0, 580, 10), (20, 580, 10), (40, 580, -142.73299), (60, 580, 10), (80, 580, -60.848335), (100, 580, -95.24707), (120, 580, 10), (140, 580, -122.152664), (160, 580, -25.674992), (180, 580, 10), (200, 580, -152.96843), (220, 580, 10), (240, 580, 10), (260, 580, -143.67212), (280, 580, 10), (300, 580, -58.63305), (320, 580, -97.1669), (340, 580, 10), (360, 580, -120.61782), (380, 580, -27.975973), (400, 580, 10), (420, 580, -152.59332), (440, 580, 10), (460, 580, 10), (480, 580, -144.57393), (500, 580, 10), (520, 580, -56.407074), (540, 580, -99.06397), (560, 580, 10), (580, 580, -119.05285), (600, 580, -30.275871), (620, 580, 10), (0, 600, 10), (20, 600, 10), (40, 600, -106.83246), (60, 600, 10), (80, 600, -24.947815), (100, 600, -59.346546), (120, 600, 10), (140, 600, -86.25214), (160, 600, 10), (180, 600, 10), (200, 600, -117.06792), (220, 600, 10), (240, 600, 10), (260, 600, -107.77161), (280, 600, 10), (300, 600, -22.73253), (320, 600, -61.26638), (340, 600, 10), (360, 600, -84.717285), (380, 600, 7.924549), (400, 600, 10), (420, 600, -116.692825), (440, 600, 10), (460, 600, 10), (480, 600, -108.6734), (500, 600, 10), (520, 600, -20.50656), (540, 600, -63.163445), (560, 600, 10), (580, 600, -83.15233), (600, 600, 5.624651), (620, 600, 10), (0, 620, 10), (20, 620, 10), (40, 620, -70.24499), (60, 620, 10), (80, 620, 10), (100, 620, -22.759062), (120, 620, 10), (140, 620, -49.664658), (160, 620, 10), (180, 620, 10), (200, 620, -80.48042), (220, 620, 10), (240, 620, 10), (260, 620, -71.18411), (280, 620, 10), (300, 620, 10), (320, 620, -24.678896), (340, 620, 10), (360, 620, -48.1298), (380, 620, 10), (400, 620, 10), (420, 620, -80.10533), (440, 620, 10), (460, 620, 10), (480, 620, -72.085915), (500, 620, 10), (520, 620, 10), (540, 620, -26.575962), (560, 620, 10), (580, 620, -46.564846), (600, 620, 10), (620, 620, 10)] point3f[] points.connect = </World/__migratedImplicitGraph/innerPullGraph/deformer3.outputs:points> color3f[] primvars:displayColor = [(0.784314, 0.64705884, 0.1)] float3 xformOp:rotateXYZ = (0, 0, 0) float3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, -392.826889104303) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def OmniGraph "DirtyPushGraph" { token evaluator:type = "dirty_push" int2 fileFormatVersion = (1, 5) def OmniGraphNode "read_prim_attribute" { custom bool inputs:forceUSDRead = 0 custom token inputs:name = "points" custom rel inputs:prim prepend rel inputs:prim = </World/inputGrid> custom token inputs:primPath = "" custom timecode inputs:usdTimecode = -1 custom bool inputs:usePath = 0 token node:type = "omni.graph.nodes.ReadPrimAttribute" int node:typeVersion = 1 custom token outputs:value custom uint64 state:target = 0 custom timecode state:usdTimecode = -1 } def OmniGraphNode "deformer1" { float inputs:multiplier = 3 point3f[] inputs:points.connect = </World/DirtyPushGraph/read_prim_attribute.outputs:value> custom float inputs:wavelength = 50 token node:type = "omni.graph.examples.cpp.Deformer1" int node:typeVersion = 1 point3f[] outputs:points } def OmniGraphNode "deformer2" { float inputs:multiplier = 10 point3f[] inputs:points.connect = </World/DirtyPushGraph/deformer1.outputs:points> custom float inputs:wavelength = 50 token node:type = "omni.graph.examples.cpp.Deformer1" int node:typeVersion = 1 point3f[] outputs:points } def OmniGraphNode "deformer3" { point3f[] inputs:points.connect = </World/DirtyPushGraph/deformer2.outputs:points> float inputs:threshold = 10 token node:type = "omni.graph.examples.cpp.Deformer2" int node:typeVersion = 1 point3f[] outputs:points } def OmniGraphNode "outputGridWriteAttrib" ( prepend apiSchemas = ["NodeGraphNodeAPI"] ) { custom uint inputs:execIn custom token inputs:name = "points" custom rel inputs:prim prepend rel inputs:prim = </World/outputGrid> custom token inputs:primPath custom bool inputs:usdWriteBack = 1 custom bool inputs:usePath = 0 custom token inputs:value prepend token inputs:value.connect = </World/DirtyPushGraph/deformer3.outputs:points> token node:type = "omni.graph.nodes.WritePrimAttribute" int node:typeVersion = 1 custom uint outputs:execOut ( customData = { bool isExecution = 1 } ) } } }
omniverse-code/kit/exts/omni.graph/omni/graph/core/data/TestUnionTypes.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double radius = 500 double3 target = (0, 0, 0) } dictionary Perspective = { double3 position = (500.0000000000001, 500.0000000000001, 499.9999999999998) double3 target = (0, 0, 0) } dictionary Right = { double radius = 500 double3 target = (0, 0, 0) } dictionary Top = { double radius = 500 double3 target = (0, 0, 0) } string boundCamera = "/OmniverseKit_Persp" } int refinementOverrideImplVersion = 0 dictionary renderSettings = { float "rtx:post:lensDistortion:cameraFocalLength" = 18.147562 } } defaultPrim = "World" endTimeCode = 100 metersPerUnit = 0.009999999776482582 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Y" ) def Xform "World" { def DistantLight "defaultLight" ( prepend apiSchemas = ["ShapingAPI"] ) { float angle = 1 float intensity = 3000 float shaping:cone:angle = 180 float shaping:cone:softness float shaping:focus color3f shaping:focusTint asset shaping:ies:file float3 xformOp:rotateXYZ = (315, 0, 0) double3 xformOp:scale = (1, 1, 1) float3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def ComputeNode "builtin_generic_add" { custom token inputs:input_a = "union type of double3,float,double" ( customData = { string ExtendedAttributeType = "Union-->double3,float,double" } ) prepend token inputs:input_a.connect = </World/Cube.xformOp:translate> custom token inputs:input_b = "union type of double3,float,double" ( customData = { string ExtendedAttributeType = "Union-->double3,float,double" } ) prepend token inputs:input_b.connect = </World/Cone.xformOp:translate> custom token node:type = "omni.graph.nodes.Noop" custom int node:typeVersion = 1 custom token outputs:sum = "union type of numeric" ( customData = { string ExtendedAttributeType = "Union-->numeric" } ) } def ComputeGraphSettings "computegraphSettings" { custom token evaluator:type = "push" } def Cube "Cube" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double size = 100 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (-167.995136, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (169.547738, 0, 0) prepend double3 xformOp:translate.connect = </World/builtin_generic_add.outputs:sum> uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Cone "Cone" { uniform token axis = "Y" float3[] extent = [(-50, -50, -50), (50, 50, 50)] double height = 100 double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } }
omniverse-code/kit/exts/omni.graph/omni/graph/core/data/ExampleConnectionType.usda
#usda 1.0 ( doc = """Generated from Composed Stage of root layer """ ) def Xform "World" { def Xform "inputPrim" { custom float value = 0.5 } def ComputeNode "SimpleNode" { custom float input:value ( customData = { token AttributeConnectionType = "DataOnly" } ) prepend float input:value.connect = </World/inputPrim.value> custom token node:type = "omni.graph.nodes.Noop" custom int node:typeVersion = 1 custom float output:value } }
omniverse-code/kit/exts/omni.graph/omni/graph/core/data/ExampleCubeWithSettings.usda
#usda 1.0 ( doc = """Generated from Composed Stage of root layer """ ) def Xform "World" { def Xform "inputPrim" { custom float value = 0.5 def ComputeGraphSettings "graphSettings" { custom token graph:path = "/World" } } def ComputeNode "SimpleNode" { custom float input:value prepend float input:value.connect = </World/inputPrim.value> custom float multiplier = 3 custom token node:type = "omni.graph.examples.cpp.Simple" custom int node:typeVersion = 1 custom double output:value } def Cube "Cube" { prepend double size.connect = </World/SimpleNode.output:value> } }
omniverse-code/kit/exts/omni.graph/omni/graph/core/data/ExampleGridDeformerNonUSD.usda
#usda 1.0 ( doc = """Generated from Composed Stage of root layer """ ) def Xform "defaultPrim" { def Mesh "inputGrid" { uniform bool doubleSided = 1 int[] faceVertexCounts = [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 1, 33, 0, 33, 32, 1, 2, 34, 1, 34, 33, 2, 3, 35, 2, 35, 34, 3, 4, 36, 3, 36, 35, 4, 5, 37, 4, 37, 36, 5, 6, 38, 5, 38, 37, 6, 7, 39, 6, 39, 38, 7, 8, 40, 7, 40, 39, 8, 9, 41, 8, 41, 40, 9, 10, 42, 9, 42, 41, 10, 11, 43, 10, 43, 42, 11, 12, 44, 11, 44, 43, 12, 13, 45, 12, 45, 44, 13, 14, 46, 13, 46, 45, 14, 15, 47, 14, 47, 46, 15, 16, 48, 15, 48, 47, 16, 17, 49, 16, 49, 48, 17, 18, 50, 17, 50, 49, 18, 19, 51, 18, 51, 50, 19, 20, 52, 19, 52, 51, 20, 21, 53, 20, 53, 52, 21, 22, 54, 21, 54, 53, 22, 23, 55, 22, 55, 54, 23, 24, 56, 23, 56, 55, 24, 25, 57, 24, 57, 56, 25, 26, 58, 25, 58, 57, 26, 27, 59, 26, 59, 58, 27, 28, 60, 27, 60, 59, 28, 29, 61, 28, 61, 60, 29, 30, 62, 29, 62, 61, 30, 31, 63, 30, 63, 62, 32, 33, 65, 32, 65, 64, 33, 34, 66, 33, 66, 65, 34, 35, 67, 34, 67, 66, 35, 36, 68, 35, 68, 67, 36, 37, 69, 36, 69, 68, 37, 38, 70, 37, 70, 69, 38, 39, 71, 38, 71, 70, 39, 40, 72, 39, 72, 71, 40, 41, 73, 40, 73, 72, 41, 42, 74, 41, 74, 73, 42, 43, 75, 42, 75, 74, 43, 44, 76, 43, 76, 75, 44, 45, 77, 44, 77, 76, 45, 46, 78, 45, 78, 77, 46, 47, 79, 46, 79, 78, 47, 48, 80, 47, 80, 79, 48, 49, 81, 48, 81, 80, 49, 50, 82, 49, 82, 81, 50, 51, 83, 50, 83, 82, 51, 52, 84, 51, 84, 83, 52, 53, 85, 52, 85, 84, 53, 54, 86, 53, 86, 85, 54, 55, 87, 54, 87, 86, 55, 56, 88, 55, 88, 87, 56, 57, 89, 56, 89, 88, 57, 58, 90, 57, 90, 89, 58, 59, 91, 58, 91, 90, 59, 60, 92, 59, 92, 91, 60, 61, 93, 60, 93, 92, 61, 62, 94, 61, 94, 93, 62, 63, 95, 62, 95, 94, 64, 65, 97, 64, 97, 96, 65, 66, 98, 65, 98, 97, 66, 67, 99, 66, 99, 98, 67, 68, 100, 67, 100, 99, 68, 69, 101, 68, 101, 100, 69, 70, 102, 69, 102, 101, 70, 71, 103, 70, 103, 102, 71, 72, 104, 71, 104, 103, 72, 73, 105, 72, 105, 104, 73, 74, 106, 73, 106, 105, 74, 75, 107, 74, 107, 106, 75, 76, 108, 75, 108, 107, 76, 77, 109, 76, 109, 108, 77, 78, 110, 77, 110, 109, 78, 79, 111, 78, 111, 110, 79, 80, 112, 79, 112, 111, 80, 81, 113, 80, 113, 112, 81, 82, 114, 81, 114, 113, 82, 83, 115, 82, 115, 114, 83, 84, 116, 83, 116, 115, 84, 85, 117, 84, 117, 116, 85, 86, 118, 85, 118, 117, 86, 87, 119, 86, 119, 118, 87, 88, 120, 87, 120, 119, 88, 89, 121, 88, 121, 120, 89, 90, 122, 89, 122, 121, 90, 91, 123, 90, 123, 122, 91, 92, 124, 91, 124, 123, 92, 93, 125, 92, 125, 124, 93, 94, 126, 93, 126, 125, 94, 95, 127, 94, 127, 126, 96, 97, 129, 96, 129, 128, 97, 98, 130, 97, 130, 129, 98, 99, 131, 98, 131, 130, 99, 100, 132, 99, 132, 131, 100, 101, 133, 100, 133, 132, 101, 102, 134, 101, 134, 133, 102, 103, 135, 102, 135, 134, 103, 104, 136, 103, 136, 135, 104, 105, 137, 104, 137, 136, 105, 106, 138, 105, 138, 137, 106, 107, 139, 106, 139, 138, 107, 108, 140, 107, 140, 139, 108, 109, 141, 108, 141, 140, 109, 110, 142, 109, 142, 141, 110, 111, 143, 110, 143, 142, 111, 112, 144, 111, 144, 143, 112, 113, 145, 112, 145, 144, 113, 114, 146, 113, 146, 145, 114, 115, 147, 114, 147, 146, 115, 116, 148, 115, 148, 147, 116, 117, 149, 116, 149, 148, 117, 118, 150, 117, 150, 149, 118, 119, 151, 118, 151, 150, 119, 120, 152, 119, 152, 151, 120, 121, 153, 120, 153, 152, 121, 122, 154, 121, 154, 153, 122, 123, 155, 122, 155, 154, 123, 124, 156, 123, 156, 155, 124, 125, 157, 124, 157, 156, 125, 126, 158, 125, 158, 157, 126, 127, 159, 126, 159, 158, 128, 129, 161, 128, 161, 160, 129, 130, 162, 129, 162, 161, 130, 131, 163, 130, 163, 162, 131, 132, 164, 131, 164, 163, 132, 133, 165, 132, 165, 164, 133, 134, 166, 133, 166, 165, 134, 135, 167, 134, 167, 166, 135, 136, 168, 135, 168, 167, 136, 137, 169, 136, 169, 168, 137, 138, 170, 137, 170, 169, 138, 139, 171, 138, 171, 170, 139, 140, 172, 139, 172, 171, 140, 141, 173, 140, 173, 172, 141, 142, 174, 141, 174, 173, 142, 143, 175, 142, 175, 174, 143, 144, 176, 143, 176, 175, 144, 145, 177, 144, 177, 176, 145, 146, 178, 145, 178, 177, 146, 147, 179, 146, 179, 178, 147, 148, 180, 147, 180, 179, 148, 149, 181, 148, 181, 180, 149, 150, 182, 149, 182, 181, 150, 151, 183, 150, 183, 182, 151, 152, 184, 151, 184, 183, 152, 153, 185, 152, 185, 184, 153, 154, 186, 153, 186, 185, 154, 155, 187, 154, 187, 186, 155, 156, 188, 155, 188, 187, 156, 157, 189, 156, 189, 188, 157, 158, 190, 157, 190, 189, 158, 159, 191, 158, 191, 190, 160, 161, 193, 160, 193, 192, 161, 162, 194, 161, 194, 193, 162, 163, 195, 162, 195, 194, 163, 164, 196, 163, 196, 195, 164, 165, 197, 164, 197, 196, 165, 166, 198, 165, 198, 197, 166, 167, 199, 166, 199, 198, 167, 168, 200, 167, 200, 199, 168, 169, 201, 168, 201, 200, 169, 170, 202, 169, 202, 201, 170, 171, 203, 170, 203, 202, 171, 172, 204, 171, 204, 203, 172, 173, 205, 172, 205, 204, 173, 174, 206, 173, 206, 205, 174, 175, 207, 174, 207, 206, 175, 176, 208, 175, 208, 207, 176, 177, 209, 176, 209, 208, 177, 178, 210, 177, 210, 209, 178, 179, 211, 178, 211, 210, 179, 180, 212, 179, 212, 211, 180, 181, 213, 180, 213, 212, 181, 182, 214, 181, 214, 213, 182, 183, 215, 182, 215, 214, 183, 184, 216, 183, 216, 215, 184, 185, 217, 184, 217, 216, 185, 186, 218, 185, 218, 217, 186, 187, 219, 186, 219, 218, 187, 188, 220, 187, 220, 219, 188, 189, 221, 188, 221, 220, 189, 190, 222, 189, 222, 221, 190, 191, 223, 190, 223, 222, 192, 193, 225, 192, 225, 224, 193, 194, 226, 193, 226, 225, 194, 195, 227, 194, 227, 226, 195, 196, 228, 195, 228, 227, 196, 197, 229, 196, 229, 228, 197, 198, 230, 197, 230, 229, 198, 199, 231, 198, 231, 230, 199, 200, 232, 199, 232, 231, 200, 201, 233, 200, 233, 232, 201, 202, 234, 201, 234, 233, 202, 203, 235, 202, 235, 234, 203, 204, 236, 203, 236, 235, 204, 205, 237, 204, 237, 236, 205, 206, 238, 205, 238, 237, 206, 207, 239, 206, 239, 238, 207, 208, 240, 207, 240, 239, 208, 209, 241, 208, 241, 240, 209, 210, 242, 209, 242, 241, 210, 211, 243, 210, 243, 242, 211, 212, 244, 211, 244, 243, 212, 213, 245, 212, 245, 244, 213, 214, 246, 213, 246, 245, 214, 215, 247, 214, 247, 246, 215, 216, 248, 215, 248, 247, 216, 217, 249, 216, 249, 248, 217, 218, 250, 217, 250, 249, 218, 219, 251, 218, 251, 250, 219, 220, 252, 219, 252, 251, 220, 221, 253, 220, 253, 252, 221, 222, 254, 221, 254, 253, 222, 223, 255, 222, 255, 254, 224, 225, 257, 224, 257, 256, 225, 226, 258, 225, 258, 257, 226, 227, 259, 226, 259, 258, 227, 228, 260, 227, 260, 259, 228, 229, 261, 228, 261, 260, 229, 230, 262, 229, 262, 261, 230, 231, 263, 230, 263, 262, 231, 232, 264, 231, 264, 263, 232, 233, 265, 232, 265, 264, 233, 234, 266, 233, 266, 265, 234, 235, 267, 234, 267, 266, 235, 236, 268, 235, 268, 267, 236, 237, 269, 236, 269, 268, 237, 238, 270, 237, 270, 269, 238, 239, 271, 238, 271, 270, 239, 240, 272, 239, 272, 271, 240, 241, 273, 240, 273, 272, 241, 242, 274, 241, 274, 273, 242, 243, 275, 242, 275, 274, 243, 244, 276, 243, 276, 275, 244, 245, 277, 244, 277, 276, 245, 246, 278, 245, 278, 277, 246, 247, 279, 246, 279, 278, 247, 248, 280, 247, 280, 279, 248, 249, 281, 248, 281, 280, 249, 250, 282, 249, 282, 281, 250, 251, 283, 250, 283, 282, 251, 252, 284, 251, 284, 283, 252, 253, 285, 252, 285, 284, 253, 254, 286, 253, 286, 285, 254, 255, 287, 254, 287, 286, 256, 257, 289, 256, 289, 288, 257, 258, 290, 257, 290, 289, 258, 259, 291, 258, 291, 290, 259, 260, 292, 259, 292, 291, 260, 261, 293, 260, 293, 292, 261, 262, 294, 261, 294, 293, 262, 263, 295, 262, 295, 294, 263, 264, 296, 263, 296, 295, 264, 265, 297, 264, 297, 296, 265, 266, 298, 265, 298, 297, 266, 267, 299, 266, 299, 298, 267, 268, 300, 267, 300, 299, 268, 269, 301, 268, 301, 300, 269, 270, 302, 269, 302, 301, 270, 271, 303, 270, 303, 302, 271, 272, 304, 271, 304, 303, 272, 273, 305, 272, 305, 304, 273, 274, 306, 273, 306, 305, 274, 275, 307, 274, 307, 306, 275, 276, 308, 275, 308, 307, 276, 277, 309, 276, 309, 308, 277, 278, 310, 277, 310, 309, 278, 279, 311, 278, 311, 310, 279, 280, 312, 279, 312, 311, 280, 281, 313, 280, 313, 312, 281, 282, 314, 281, 314, 313, 282, 283, 315, 282, 315, 314, 283, 284, 316, 283, 316, 315, 284, 285, 317, 284, 317, 316, 285, 286, 318, 285, 318, 317, 286, 287, 319, 286, 319, 318, 288, 289, 321, 288, 321, 320, 289, 290, 322, 289, 322, 321, 290, 291, 323, 290, 323, 322, 291, 292, 324, 291, 324, 323, 292, 293, 325, 292, 325, 324, 293, 294, 326, 293, 326, 325, 294, 295, 327, 294, 327, 326, 295, 296, 328, 295, 328, 327, 296, 297, 329, 296, 329, 328, 297, 298, 330, 297, 330, 329, 298, 299, 331, 298, 331, 330, 299, 300, 332, 299, 332, 331, 300, 301, 333, 300, 333, 332, 301, 302, 334, 301, 334, 333, 302, 303, 335, 302, 335, 334, 303, 304, 336, 303, 336, 335, 304, 305, 337, 304, 337, 336, 305, 306, 338, 305, 338, 337, 306, 307, 339, 306, 339, 338, 307, 308, 340, 307, 340, 339, 308, 309, 341, 308, 341, 340, 309, 310, 342, 309, 342, 341, 310, 311, 343, 310, 343, 342, 311, 312, 344, 311, 344, 343, 312, 313, 345, 312, 345, 344, 313, 314, 346, 313, 346, 345, 314, 315, 347, 314, 347, 346, 315, 316, 348, 315, 348, 347, 316, 317, 349, 316, 349, 348, 317, 318, 350, 317, 350, 349, 318, 319, 351, 318, 351, 350, 320, 321, 353, 320, 353, 352, 321, 322, 354, 321, 354, 353, 322, 323, 355, 322, 355, 354, 323, 324, 356, 323, 356, 355, 324, 325, 357, 324, 357, 356, 325, 326, 358, 325, 358, 357, 326, 327, 359, 326, 359, 358, 327, 328, 360, 327, 360, 359, 328, 329, 361, 328, 361, 360, 329, 330, 362, 329, 362, 361, 330, 331, 363, 330, 363, 362, 331, 332, 364, 331, 364, 363, 332, 333, 365, 332, 365, 364, 333, 334, 366, 333, 366, 365, 334, 335, 367, 334, 367, 366, 335, 336, 368, 335, 368, 367, 336, 337, 369, 336, 369, 368, 337, 338, 370, 337, 370, 369, 338, 339, 371, 338, 371, 370, 339, 340, 372, 339, 372, 371, 340, 341, 373, 340, 373, 372, 341, 342, 374, 341, 374, 373, 342, 343, 375, 342, 375, 374, 343, 344, 376, 343, 376, 375, 344, 345, 377, 344, 377, 376, 345, 346, 378, 345, 378, 377, 346, 347, 379, 346, 379, 378, 347, 348, 380, 347, 380, 379, 348, 349, 381, 348, 381, 380, 349, 350, 382, 349, 382, 381, 350, 351, 383, 350, 383, 382, 352, 353, 385, 352, 385, 384, 353, 354, 386, 353, 386, 385, 354, 355, 387, 354, 387, 386, 355, 356, 388, 355, 388, 387, 356, 357, 389, 356, 389, 388, 357, 358, 390, 357, 390, 389, 358, 359, 391, 358, 391, 390, 359, 360, 392, 359, 392, 391, 360, 361, 393, 360, 393, 392, 361, 362, 394, 361, 394, 393, 362, 363, 395, 362, 395, 394, 363, 364, 396, 363, 396, 395, 364, 365, 397, 364, 397, 396, 365, 366, 398, 365, 398, 397, 366, 367, 399, 366, 399, 398, 367, 368, 400, 367, 400, 399, 368, 369, 401, 368, 401, 400, 369, 370, 402, 369, 402, 401, 370, 371, 403, 370, 403, 402, 371, 372, 404, 371, 404, 403, 372, 373, 405, 372, 405, 404, 373, 374, 406, 373, 406, 405, 374, 375, 407, 374, 407, 406, 375, 376, 408, 375, 408, 407, 376, 377, 409, 376, 409, 408, 377, 378, 410, 377, 410, 409, 378, 379, 411, 378, 411, 410, 379, 380, 412, 379, 412, 411, 380, 381, 413, 380, 413, 412, 381, 382, 414, 381, 414, 413, 382, 383, 415, 382, 415, 414, 384, 385, 417, 384, 417, 416, 385, 386, 418, 385, 418, 417, 386, 387, 419, 386, 419, 418, 387, 388, 420, 387, 420, 419, 388, 389, 421, 388, 421, 420, 389, 390, 422, 389, 422, 421, 390, 391, 423, 390, 423, 422, 391, 392, 424, 391, 424, 423, 392, 393, 425, 392, 425, 424, 393, 394, 426, 393, 426, 425, 394, 395, 427, 394, 427, 426, 395, 396, 428, 395, 428, 427, 396, 397, 429, 396, 429, 428, 397, 398, 430, 397, 430, 429, 398, 399, 431, 398, 431, 430, 399, 400, 432, 399, 432, 431, 400, 401, 433, 400, 433, 432, 401, 402, 434, 401, 434, 433, 402, 403, 435, 402, 435, 434, 403, 404, 436, 403, 436, 435, 404, 405, 437, 404, 437, 436, 405, 406, 438, 405, 438, 437, 406, 407, 439, 406, 439, 438, 407, 408, 440, 407, 440, 439, 408, 409, 441, 408, 441, 440, 409, 410, 442, 409, 442, 441, 410, 411, 443, 410, 443, 442, 411, 412, 444, 411, 444, 443, 412, 413, 445, 412, 445, 444, 413, 414, 446, 413, 446, 445, 414, 415, 447, 414, 447, 446, 416, 417, 449, 416, 449, 448, 417, 418, 450, 417, 450, 449, 418, 419, 451, 418, 451, 450, 419, 420, 452, 419, 452, 451, 420, 421, 453, 420, 453, 452, 421, 422, 454, 421, 454, 453, 422, 423, 455, 422, 455, 454, 423, 424, 456, 423, 456, 455, 424, 425, 457, 424, 457, 456, 425, 426, 458, 425, 458, 457, 426, 427, 459, 426, 459, 458, 427, 428, 460, 427, 460, 459, 428, 429, 461, 428, 461, 460, 429, 430, 462, 429, 462, 461, 430, 431, 463, 430, 463, 462, 431, 432, 464, 431, 464, 463, 432, 433, 465, 432, 465, 464, 433, 434, 466, 433, 466, 465, 434, 435, 467, 434, 467, 466, 435, 436, 468, 435, 468, 467, 436, 437, 469, 436, 469, 468, 437, 438, 470, 437, 470, 469, 438, 439, 471, 438, 471, 470, 439, 440, 472, 439, 472, 471, 440, 441, 473, 440, 473, 472, 441, 442, 474, 441, 474, 473, 442, 443, 475, 442, 475, 474, 443, 444, 476, 443, 476, 475, 444, 445, 477, 444, 477, 476, 445, 446, 478, 445, 478, 477, 446, 447, 479, 446, 479, 478, 448, 449, 481, 448, 481, 480, 449, 450, 482, 449, 482, 481, 450, 451, 483, 450, 483, 482, 451, 452, 484, 451, 484, 483, 452, 453, 485, 452, 485, 484, 453, 454, 486, 453, 486, 485, 454, 455, 487, 454, 487, 486, 455, 456, 488, 455, 488, 487, 456, 457, 489, 456, 489, 488, 457, 458, 490, 457, 490, 489, 458, 459, 491, 458, 491, 490, 459, 460, 492, 459, 492, 491, 460, 461, 493, 460, 493, 492, 461, 462, 494, 461, 494, 493, 462, 463, 495, 462, 495, 494, 463, 464, 496, 463, 496, 495, 464, 465, 497, 464, 497, 496, 465, 466, 498, 465, 498, 497, 466, 467, 499, 466, 499, 498, 467, 468, 500, 467, 500, 499, 468, 469, 501, 468, 501, 500, 469, 470, 502, 469, 502, 501, 470, 471, 503, 470, 503, 502, 471, 472, 504, 471, 504, 503, 472, 473, 505, 472, 505, 504, 473, 474, 506, 473, 506, 505, 474, 475, 507, 474, 507, 506, 475, 476, 508, 475, 508, 507, 476, 477, 509, 476, 509, 508, 477, 478, 510, 477, 510, 509, 478, 479, 511, 478, 511, 510, 480, 481, 513, 480, 513, 512, 481, 482, 514, 481, 514, 513, 482, 483, 515, 482, 515, 514, 483, 484, 516, 483, 516, 515, 484, 485, 517, 484, 517, 516, 485, 486, 518, 485, 518, 517, 486, 487, 519, 486, 519, 518, 487, 488, 520, 487, 520, 519, 488, 489, 521, 488, 521, 520, 489, 490, 522, 489, 522, 521, 490, 491, 523, 490, 523, 522, 491, 492, 524, 491, 524, 523, 492, 493, 525, 492, 525, 524, 493, 494, 526, 493, 526, 525, 494, 495, 527, 494, 527, 526, 495, 496, 528, 495, 528, 527, 496, 497, 529, 496, 529, 528, 497, 498, 530, 497, 530, 529, 498, 499, 531, 498, 531, 530, 499, 500, 532, 499, 532, 531, 500, 501, 533, 500, 533, 532, 501, 502, 534, 501, 534, 533, 502, 503, 535, 502, 535, 534, 503, 504, 536, 503, 536, 535, 504, 505, 537, 504, 537, 536, 505, 506, 538, 505, 538, 537, 506, 507, 539, 506, 539, 538, 507, 508, 540, 507, 540, 539, 508, 509, 541, 508, 541, 540, 509, 510, 542, 509, 542, 541, 510, 511, 543, 510, 543, 542, 512, 513, 545, 512, 545, 544, 513, 514, 546, 513, 546, 545, 514, 515, 547, 514, 547, 546, 515, 516, 548, 515, 548, 547, 516, 517, 549, 516, 549, 548, 517, 518, 550, 517, 550, 549, 518, 519, 551, 518, 551, 550, 519, 520, 552, 519, 552, 551, 520, 521, 553, 520, 553, 552, 521, 522, 554, 521, 554, 553, 522, 523, 555, 522, 555, 554, 523, 524, 556, 523, 556, 555, 524, 525, 557, 524, 557, 556, 525, 526, 558, 525, 558, 557, 526, 527, 559, 526, 559, 558, 527, 528, 560, 527, 560, 559, 528, 529, 561, 528, 561, 560, 529, 530, 562, 529, 562, 561, 530, 531, 563, 530, 563, 562, 531, 532, 564, 531, 564, 563, 532, 533, 565, 532, 565, 564, 533, 534, 566, 533, 566, 565, 534, 535, 567, 534, 567, 566, 535, 536, 568, 535, 568, 567, 536, 537, 569, 536, 569, 568, 537, 538, 570, 537, 570, 569, 538, 539, 571, 538, 571, 570, 539, 540, 572, 539, 572, 571, 540, 541, 573, 540, 573, 572, 541, 542, 574, 541, 574, 573, 542, 543, 575, 542, 575, 574, 544, 545, 577, 544, 577, 576, 545, 546, 578, 545, 578, 577, 546, 547, 579, 546, 579, 578, 547, 548, 580, 547, 580, 579, 548, 549, 581, 548, 581, 580, 549, 550, 582, 549, 582, 581, 550, 551, 583, 550, 583, 582, 551, 552, 584, 551, 584, 583, 552, 553, 585, 552, 585, 584, 553, 554, 586, 553, 586, 585, 554, 555, 587, 554, 587, 586, 555, 556, 588, 555, 588, 587, 556, 557, 589, 556, 589, 588, 557, 558, 590, 557, 590, 589, 558, 559, 591, 558, 591, 590, 559, 560, 592, 559, 592, 591, 560, 561, 593, 560, 593, 592, 561, 562, 594, 561, 594, 593, 562, 563, 595, 562, 595, 594, 563, 564, 596, 563, 596, 595, 564, 565, 597, 564, 597, 596, 565, 566, 598, 565, 598, 597, 566, 567, 599, 566, 599, 598, 567, 568, 600, 567, 600, 599, 568, 569, 601, 568, 601, 600, 569, 570, 602, 569, 602, 601, 570, 571, 603, 570, 603, 602, 571, 572, 604, 571, 604, 603, 572, 573, 605, 572, 605, 604, 573, 574, 606, 573, 606, 605, 574, 575, 607, 574, 607, 606, 576, 577, 609, 576, 609, 608, 577, 578, 610, 577, 610, 609, 578, 579, 611, 578, 611, 610, 579, 580, 612, 579, 612, 611, 580, 581, 613, 580, 613, 612, 581, 582, 614, 581, 614, 613, 582, 583, 615, 582, 615, 614, 583, 584, 616, 583, 616, 615, 584, 585, 617, 584, 617, 616, 585, 586, 618, 585, 618, 617, 586, 587, 619, 586, 619, 618, 587, 588, 620, 587, 620, 619, 588, 589, 621, 588, 621, 620, 589, 590, 622, 589, 622, 621, 590, 591, 623, 590, 623, 622, 591, 592, 624, 591, 624, 623, 592, 593, 625, 592, 625, 624, 593, 594, 626, 593, 626, 625, 594, 595, 627, 594, 627, 626, 595, 596, 628, 595, 628, 627, 596, 597, 629, 596, 629, 628, 597, 598, 630, 597, 630, 629, 598, 599, 631, 598, 631, 630, 599, 600, 632, 599, 632, 631, 600, 601, 633, 600, 633, 632, 601, 602, 634, 601, 634, 633, 602, 603, 635, 602, 635, 634, 603, 604, 636, 603, 636, 635, 604, 605, 637, 604, 637, 636, 605, 606, 638, 605, 638, 637, 606, 607, 639, 606, 639, 638, 608, 609, 641, 608, 641, 640, 609, 610, 642, 609, 642, 641, 610, 611, 643, 610, 643, 642, 611, 612, 644, 611, 644, 643, 612, 613, 645, 612, 645, 644, 613, 614, 646, 613, 646, 645, 614, 615, 647, 614, 647, 646, 615, 616, 648, 615, 648, 647, 616, 617, 649, 616, 649, 648, 617, 618, 650, 617, 650, 649, 618, 619, 651, 618, 651, 650, 619, 620, 652, 619, 652, 651, 620, 621, 653, 620, 653, 652, 621, 622, 654, 621, 654, 653, 622, 623, 655, 622, 655, 654, 623, 624, 656, 623, 656, 655, 624, 625, 657, 624, 657, 656, 625, 626, 658, 625, 658, 657, 626, 627, 659, 626, 659, 658, 627, 628, 660, 627, 660, 659, 628, 629, 661, 628, 661, 660, 629, 630, 662, 629, 662, 661, 630, 631, 663, 630, 663, 662, 631, 632, 664, 631, 664, 663, 632, 633, 665, 632, 665, 664, 633, 634, 666, 633, 666, 665, 634, 635, 667, 634, 667, 666, 635, 636, 668, 635, 668, 667, 636, 637, 669, 636, 669, 668, 637, 638, 670, 637, 670, 669, 638, 639, 671, 638, 671, 670, 640, 641, 673, 640, 673, 672, 641, 642, 674, 641, 674, 673, 642, 643, 675, 642, 675, 674, 643, 644, 676, 643, 676, 675, 644, 645, 677, 644, 677, 676, 645, 646, 678, 645, 678, 677, 646, 647, 679, 646, 679, 678, 647, 648, 680, 647, 680, 679, 648, 649, 681, 648, 681, 680, 649, 650, 682, 649, 682, 681, 650, 651, 683, 650, 683, 682, 651, 652, 684, 651, 684, 683, 652, 653, 685, 652, 685, 684, 653, 654, 686, 653, 686, 685, 654, 655, 687, 654, 687, 686, 655, 656, 688, 655, 688, 687, 656, 657, 689, 656, 689, 688, 657, 658, 690, 657, 690, 689, 658, 659, 691, 658, 691, 690, 659, 660, 692, 659, 692, 691, 660, 661, 693, 660, 693, 692, 661, 662, 694, 661, 694, 693, 662, 663, 695, 662, 695, 694, 663, 664, 696, 663, 696, 695, 664, 665, 697, 664, 697, 696, 665, 666, 698, 665, 698, 697, 666, 667, 699, 666, 699, 698, 667, 668, 700, 667, 700, 699, 668, 669, 701, 668, 701, 700, 669, 670, 702, 669, 702, 701, 670, 671, 703, 670, 703, 702, 672, 673, 705, 672, 705, 704, 673, 674, 706, 673, 706, 705, 674, 675, 707, 674, 707, 706, 675, 676, 708, 675, 708, 707, 676, 677, 709, 676, 709, 708, 677, 678, 710, 677, 710, 709, 678, 679, 711, 678, 711, 710, 679, 680, 712, 679, 712, 711, 680, 681, 713, 680, 713, 712, 681, 682, 714, 681, 714, 713, 682, 683, 715, 682, 715, 714, 683, 684, 716, 683, 716, 715, 684, 685, 717, 684, 717, 716, 685, 686, 718, 685, 718, 717, 686, 687, 719, 686, 719, 718, 687, 688, 720, 687, 720, 719, 688, 689, 721, 688, 721, 720, 689, 690, 722, 689, 722, 721, 690, 691, 723, 690, 723, 722, 691, 692, 724, 691, 724, 723, 692, 693, 725, 692, 725, 724, 693, 694, 726, 693, 726, 725, 694, 695, 727, 694, 727, 726, 695, 696, 728, 695, 728, 727, 696, 697, 729, 696, 729, 728, 697, 698, 730, 697, 730, 729, 698, 699, 731, 698, 731, 730, 699, 700, 732, 699, 732, 731, 700, 701, 733, 700, 733, 732, 701, 702, 734, 701, 734, 733, 702, 703, 735, 702, 735, 734, 704, 705, 737, 704, 737, 736, 705, 706, 738, 705, 738, 737, 706, 707, 739, 706, 739, 738, 707, 708, 740, 707, 740, 739, 708, 709, 741, 708, 741, 740, 709, 710, 742, 709, 742, 741, 710, 711, 743, 710, 743, 742, 711, 712, 744, 711, 744, 743, 712, 713, 745, 712, 745, 744, 713, 714, 746, 713, 746, 745, 714, 715, 747, 714, 747, 746, 715, 716, 748, 715, 748, 747, 716, 717, 749, 716, 749, 748, 717, 718, 750, 717, 750, 749, 718, 719, 751, 718, 751, 750, 719, 720, 752, 719, 752, 751, 720, 721, 753, 720, 753, 752, 721, 722, 754, 721, 754, 753, 722, 723, 755, 722, 755, 754, 723, 724, 756, 723, 756, 755, 724, 725, 757, 724, 757, 756, 725, 726, 758, 725, 758, 757, 726, 727, 759, 726, 759, 758, 727, 728, 760, 727, 760, 759, 728, 729, 761, 728, 761, 760, 729, 730, 762, 729, 762, 761, 730, 731, 763, 730, 763, 762, 731, 732, 764, 731, 764, 763, 732, 733, 765, 732, 765, 764, 733, 734, 766, 733, 766, 765, 734, 735, 767, 734, 767, 766, 736, 737, 769, 736, 769, 768, 737, 738, 770, 737, 770, 769, 738, 739, 771, 738, 771, 770, 739, 740, 772, 739, 772, 771, 740, 741, 773, 740, 773, 772, 741, 742, 774, 741, 774, 773, 742, 743, 775, 742, 775, 774, 743, 744, 776, 743, 776, 775, 744, 745, 777, 744, 777, 776, 745, 746, 778, 745, 778, 777, 746, 747, 779, 746, 779, 778, 747, 748, 780, 747, 780, 779, 748, 749, 781, 748, 781, 780, 749, 750, 782, 749, 782, 781, 750, 751, 783, 750, 783, 782, 751, 752, 784, 751, 784, 783, 752, 753, 785, 752, 785, 784, 753, 754, 786, 753, 786, 785, 754, 755, 787, 754, 787, 786, 755, 756, 788, 755, 788, 787, 756, 757, 789, 756, 789, 788, 757, 758, 790, 757, 790, 789, 758, 759, 791, 758, 791, 790, 759, 760, 792, 759, 792, 791, 760, 761, 793, 760, 793, 792, 761, 762, 794, 761, 794, 793, 762, 763, 795, 762, 795, 794, 763, 764, 796, 763, 796, 795, 764, 765, 797, 764, 797, 796, 765, 766, 798, 765, 798, 797, 766, 767, 799, 766, 799, 798, 768, 769, 801, 768, 801, 800, 769, 770, 802, 769, 802, 801, 770, 771, 803, 770, 803, 802, 771, 772, 804, 771, 804, 803, 772, 773, 805, 772, 805, 804, 773, 774, 806, 773, 806, 805, 774, 775, 807, 774, 807, 806, 775, 776, 808, 775, 808, 807, 776, 777, 809, 776, 809, 808, 777, 778, 810, 777, 810, 809, 778, 779, 811, 778, 811, 810, 779, 780, 812, 779, 812, 811, 780, 781, 813, 780, 813, 812, 781, 782, 814, 781, 814, 813, 782, 783, 815, 782, 815, 814, 783, 784, 816, 783, 816, 815, 784, 785, 817, 784, 817, 816, 785, 786, 818, 785, 818, 817, 786, 787, 819, 786, 819, 818, 787, 788, 820, 787, 820, 819, 788, 789, 821, 788, 821, 820, 789, 790, 822, 789, 822, 821, 790, 791, 823, 790, 823, 822, 791, 792, 824, 791, 824, 823, 792, 793, 825, 792, 825, 824, 793, 794, 826, 793, 826, 825, 794, 795, 827, 794, 827, 826, 795, 796, 828, 795, 828, 827, 796, 797, 829, 796, 829, 828, 797, 798, 830, 797, 830, 829, 798, 799, 831, 798, 831, 830, 800, 801, 833, 800, 833, 832, 801, 802, 834, 801, 834, 833, 802, 803, 835, 802, 835, 834, 803, 804, 836, 803, 836, 835, 804, 805, 837, 804, 837, 836, 805, 806, 838, 805, 838, 837, 806, 807, 839, 806, 839, 838, 807, 808, 840, 807, 840, 839, 808, 809, 841, 808, 841, 840, 809, 810, 842, 809, 842, 841, 810, 811, 843, 810, 843, 842, 811, 812, 844, 811, 844, 843, 812, 813, 845, 812, 845, 844, 813, 814, 846, 813, 846, 845, 814, 815, 847, 814, 847, 846, 815, 816, 848, 815, 848, 847, 816, 817, 849, 816, 849, 848, 817, 818, 850, 817, 850, 849, 818, 819, 851, 818, 851, 850, 819, 820, 852, 819, 852, 851, 820, 821, 853, 820, 853, 852, 821, 822, 854, 821, 854, 853, 822, 823, 855, 822, 855, 854, 823, 824, 856, 823, 856, 855, 824, 825, 857, 824, 857, 856, 825, 826, 858, 825, 858, 857, 826, 827, 859, 826, 859, 858, 827, 828, 860, 827, 860, 859, 828, 829, 861, 828, 861, 860, 829, 830, 862, 829, 862, 861, 830, 831, 863, 830, 863, 862, 832, 833, 865, 832, 865, 864, 833, 834, 866, 833, 866, 865, 834, 835, 867, 834, 867, 866, 835, 836, 868, 835, 868, 867, 836, 837, 869, 836, 869, 868, 837, 838, 870, 837, 870, 869, 838, 839, 871, 838, 871, 870, 839, 840, 872, 839, 872, 871, 840, 841, 873, 840, 873, 872, 841, 842, 874, 841, 874, 873, 842, 843, 875, 842, 875, 874, 843, 844, 876, 843, 876, 875, 844, 845, 877, 844, 877, 876, 845, 846, 878, 845, 878, 877, 846, 847, 879, 846, 879, 878, 847, 848, 880, 847, 880, 879, 848, 849, 881, 848, 881, 880, 849, 850, 882, 849, 882, 881, 850, 851, 883, 850, 883, 882, 851, 852, 884, 851, 884, 883, 852, 853, 885, 852, 885, 884, 853, 854, 886, 853, 886, 885, 854, 855, 887, 854, 887, 886, 855, 856, 888, 855, 888, 887, 856, 857, 889, 856, 889, 888, 857, 858, 890, 857, 890, 889, 858, 859, 891, 858, 891, 890, 859, 860, 892, 859, 892, 891, 860, 861, 893, 860, 893, 892, 861, 862, 894, 861, 894, 893, 862, 863, 895, 862, 895, 894, 864, 865, 897, 864, 897, 896, 865, 866, 898, 865, 898, 897, 866, 867, 899, 866, 899, 898, 867, 868, 900, 867, 900, 899, 868, 869, 901, 868, 901, 900, 869, 870, 902, 869, 902, 901, 870, 871, 903, 870, 903, 902, 871, 872, 904, 871, 904, 903, 872, 873, 905, 872, 905, 904, 873, 874, 906, 873, 906, 905, 874, 875, 907, 874, 907, 906, 875, 876, 908, 875, 908, 907, 876, 877, 909, 876, 909, 908, 877, 878, 910, 877, 910, 909, 878, 879, 911, 878, 911, 910, 879, 880, 912, 879, 912, 911, 880, 881, 913, 880, 913, 912, 881, 882, 914, 881, 914, 913, 882, 883, 915, 882, 915, 914, 883, 884, 916, 883, 916, 915, 884, 885, 917, 884, 917, 916, 885, 886, 918, 885, 918, 917, 886, 887, 919, 886, 919, 918, 887, 888, 920, 887, 920, 919, 888, 889, 921, 888, 921, 920, 889, 890, 922, 889, 922, 921, 890, 891, 923, 890, 923, 922, 891, 892, 924, 891, 924, 923, 892, 893, 925, 892, 925, 924, 893, 894, 926, 893, 926, 925, 894, 895, 927, 894, 927, 926, 896, 897, 929, 896, 929, 928, 897, 898, 930, 897, 930, 929, 898, 899, 931, 898, 931, 930, 899, 900, 932, 899, 932, 931, 900, 901, 933, 900, 933, 932, 901, 902, 934, 901, 934, 933, 902, 903, 935, 902, 935, 934, 903, 904, 936, 903, 936, 935, 904, 905, 937, 904, 937, 936, 905, 906, 938, 905, 938, 937, 906, 907, 939, 906, 939, 938, 907, 908, 940, 907, 940, 939, 908, 909, 941, 908, 941, 940, 909, 910, 942, 909, 942, 941, 910, 911, 943, 910, 943, 942, 911, 912, 944, 911, 944, 943, 912, 913, 945, 912, 945, 944, 913, 914, 946, 913, 946, 945, 914, 915, 947, 914, 947, 946, 915, 916, 948, 915, 948, 947, 916, 917, 949, 916, 949, 948, 917, 918, 950, 917, 950, 949, 918, 919, 951, 918, 951, 950, 919, 920, 952, 919, 952, 951, 920, 921, 953, 920, 953, 952, 921, 922, 954, 921, 954, 953, 922, 923, 955, 922, 955, 954, 923, 924, 956, 923, 956, 955, 924, 925, 957, 924, 957, 956, 925, 926, 958, 925, 958, 957, 926, 927, 959, 926, 959, 958, 928, 929, 961, 928, 961, 960, 929, 930, 962, 929, 962, 961, 930, 931, 963, 930, 963, 962, 931, 932, 964, 931, 964, 963, 932, 933, 965, 932, 965, 964, 933, 934, 966, 933, 966, 965, 934, 935, 967, 934, 967, 966, 935, 936, 968, 935, 968, 967, 936, 937, 969, 936, 969, 968, 937, 938, 970, 937, 970, 969, 938, 939, 971, 938, 971, 970, 939, 940, 972, 939, 972, 971, 940, 941, 973, 940, 973, 972, 941, 942, 974, 941, 974, 973, 942, 943, 975, 942, 975, 974, 943, 944, 976, 943, 976, 975, 944, 945, 977, 944, 977, 976, 945, 946, 978, 945, 978, 977, 946, 947, 979, 946, 979, 978, 947, 948, 980, 947, 980, 979, 948, 949, 981, 948, 981, 980, 949, 950, 982, 949, 982, 981, 950, 951, 983, 950, 983, 982, 951, 952, 984, 951, 984, 983, 952, 953, 985, 952, 985, 984, 953, 954, 986, 953, 986, 985, 954, 955, 987, 954, 987, 986, 955, 956, 988, 955, 988, 987, 956, 957, 989, 956, 989, 988, 957, 958, 990, 957, 990, 989, 958, 959, 991, 958, 991, 990, 960, 961, 993, 960, 993, 992, 961, 962, 994, 961, 994, 993, 962, 963, 995, 962, 995, 994, 963, 964, 996, 963, 996, 995, 964, 965, 997, 964, 997, 996, 965, 966, 998, 965, 998, 997, 966, 967, 999, 966, 999, 998, 967, 968, 1000, 967, 1000, 999, 968, 969, 1001, 968, 1001, 1000, 969, 970, 1002, 969, 1002, 1001, 970, 971, 1003, 970, 1003, 1002, 971, 972, 1004, 971, 1004, 1003, 972, 973, 1005, 972, 1005, 1004, 973, 974, 1006, 973, 1006, 1005, 974, 975, 1007, 974, 1007, 1006, 975, 976, 1008, 975, 1008, 1007, 976, 977, 1009, 976, 1009, 1008, 977, 978, 1010, 977, 1010, 1009, 978, 979, 1011, 978, 1011, 1010, 979, 980, 1012, 979, 1012, 1011, 980, 981, 1013, 980, 1013, 1012, 981, 982, 1014, 981, 1014, 1013, 982, 983, 1015, 982, 1015, 1014, 983, 984, 1016, 983, 1016, 1015, 984, 985, 1017, 984, 1017, 1016, 985, 986, 1018, 985, 1018, 1017, 986, 987, 1019, 986, 1019, 1018, 987, 988, 1020, 987, 1020, 1019, 988, 989, 1021, 988, 1021, 1020, 989, 990, 1022, 989, 1022, 1021, 990, 991, 1023, 990, 1023, 1022] point3f[] points = [(0, 0, 20), (20, 0, 20), (40, 0, 20), (60, 0, 20), (80, 0, 20), (100, 0, 20), (120, 0, 20), (140, 0, 20), (160, 0, 20), (180, 0, 20), (200, 0, 20), (220, 0, 20), (240, 0, 20), (260, 0, 20), (280, 0, 20), (300, 0, 20), (320, 0, 20), (340, 0, 20), (360, 0, 20), (380, 0, 20), (400, 0, 20), (420, 0, 20), (440, 0, 20), (460, 0, 20), (480, 0, 20), (500, 0, 20), (520, 0, 20), (540, 0, 20), (560, 0, 20), (580, 0, 20), (600, 0, 20), (620, 0, 20), (0, 20, 20), (20, 20, 20), (40, 20, 20), (60, 20, 20), (80, 20, 20), (100, 20, 20), (120, 20, 20), (140, 20, 20), (160, 20, 20), (180, 20, 20), (200, 20, 20), (220, 20, 20), (240, 20, 20), (260, 20, 20), (280, 20, 20), (300, 20, 20), (320, 20, 20), (340, 20, 20), (360, 20, 20), (380, 20, 20), (400, 20, 20), (420, 20, 20), (440, 20, 20), (460, 20, 20), (480, 20, 20), (500, 20, 20), (520, 20, 20), (540, 20, 20), (560, 20, 20), (580, 20, 20), (600, 20, 20), (620, 20, 20), (0, 40, 20), (20, 40, 20), (40, 40, 20), (60, 40, 20), (80, 40, 20), (100, 40, 20), (120, 40, 20), (140, 40, 20), (160, 40, 20), (180, 40, 20), (200, 40, 20), (220, 40, 20), (240, 40, 20), (260, 40, 20), (280, 40, 20), (300, 40, 20), (320, 40, 20), (340, 40, 20), (360, 40, 20), (380, 40, 20), (400, 40, 20), (420, 40, 20), (440, 40, 20), (460, 40, 20), (480, 40, 20), (500, 40, 20), (520, 40, 20), (540, 40, 20), (560, 40, 20), (580, 40, 20), (600, 40, 20), (620, 40, 20), (0, 60, 20), (20, 60, 20), (40, 60, 20), (60, 60, 20), (80, 60, 20), (100, 60, 20), (120, 60, 20), (140, 60, 20), (160, 60, 20), (180, 60, 20), (200, 60, 20), (220, 60, 20), (240, 60, 20), (260, 60, 20), (280, 60, 20), (300, 60, 20), (320, 60, 20), (340, 60, 20), (360, 60, 20), (380, 60, 20), (400, 60, 20), (420, 60, 20), (440, 60, 20), (460, 60, 20), (480, 60, 20), (500, 60, 20), (520, 60, 20), (540, 60, 20), (560, 60, 20), (580, 60, 20), (600, 60, 20), (620, 60, 20), (0, 80, 20), (20, 80, 20), (40, 80, 20), (60, 80, 20), (80, 80, 20), (100, 80, 20), (120, 80, 20), (140, 80, 20), (160, 80, 20), (180, 80, 20), (200, 80, 20), (220, 80, 20), (240, 80, 20), (260, 80, 20), (280, 80, 20), (300, 80, 20), (320, 80, 20), (340, 80, 20), (360, 80, 20), (380, 80, 20), (400, 80, 20), (420, 80, 20), (440, 80, 20), (460, 80, 20), (480, 80, 20), (500, 80, 20), (520, 80, 20), (540, 80, 20), (560, 80, 20), (580, 80, 20), (600, 80, 20), (620, 80, 20), (0, 100, 20), (20, 100, 20), (40, 100, 20), (60, 100, 20), (80, 100, 20), (100, 100, 20), (120, 100, 20), (140, 100, 20), (160, 100, 20), (180, 100, 20), (200, 100, 20), (220, 100, 20), (240, 100, 20), (260, 100, 20), (280, 100, 20), (300, 100, 20), (320, 100, 20), (340, 100, 20), (360, 100, 20), (380, 100, 20), (400, 100, 20), (420, 100, 20), (440, 100, 20), (460, 100, 20), (480, 100, 20), (500, 100, 20), (520, 100, 20), (540, 100, 20), (560, 100, 20), (580, 100, 20), (600, 100, 20), (620, 100, 20), (0, 120, 20), (20, 120, 20), (40, 120, 20), (60, 120, 20), (80, 120, 20), (100, 120, 20), (120, 120, 20), (140, 120, 20), (160, 120, 20), (180, 120, 20), (200, 120, 20), (220, 120, 20), (240, 120, 20), (260, 120, 20), (280, 120, 20), (300, 120, 20), (320, 120, 20), (340, 120, 20), (360, 120, 20), (380, 120, 20), (400, 120, 20), (420, 120, 20), (440, 120, 20), (460, 120, 20), (480, 120, 20), (500, 120, 20), (520, 120, 20), (540, 120, 20), (560, 120, 20), (580, 120, 20), (600, 120, 20), (620, 120, 20), (0, 140, 20), (20, 140, 20), (40, 140, 20), (60, 140, 20), (80, 140, 20), (100, 140, 20), (120, 140, 20), (140, 140, 20), (160, 140, 20), (180, 140, 20), (200, 140, 20), (220, 140, 20), (240, 140, 20), (260, 140, 20), (280, 140, 20), (300, 140, 20), (320, 140, 20), (340, 140, 20), (360, 140, 20), (380, 140, 20), (400, 140, 20), (420, 140, 20), (440, 140, 20), (460, 140, 20), (480, 140, 20), (500, 140, 20), (520, 140, 20), (540, 140, 20), (560, 140, 20), (580, 140, 20), (600, 140, 20), (620, 140, 20), (0, 160, 20), (20, 160, 20), (40, 160, 20), (60, 160, 20), (80, 160, 20), (100, 160, 20), (120, 160, 20), (140, 160, 20), (160, 160, 20), (180, 160, 20), (200, 160, 20), (220, 160, 20), (240, 160, 20), (260, 160, 20), (280, 160, 20), (300, 160, 20), (320, 160, 20), (340, 160, 20), (360, 160, 20), (380, 160, 20), (400, 160, 20), (420, 160, 20), (440, 160, 20), (460, 160, 20), (480, 160, 20), (500, 160, 20), (520, 160, 20), (540, 160, 20), (560, 160, 20), (580, 160, 20), (600, 160, 20), (620, 160, 20), (0, 180, 20), (20, 180, 20), (40, 180, 20), (60, 180, 20), (80, 180, 20), (100, 180, 20), (120, 180, 20), (140, 180, 20), (160, 180, 20), (180, 180, 20), (200, 180, 20), (220, 180, 20), (240, 180, 20), (260, 180, 20), (280, 180, 20), (300, 180, 20), (320, 180, 20), (340, 180, 20), (360, 180, 20), (380, 180, 20), (400, 180, 20), (420, 180, 20), (440, 180, 20), (460, 180, 20), (480, 180, 20), (500, 180, 20), (520, 180, 20), (540, 180, 20), (560, 180, 20), (580, 180, 20), (600, 180, 20), (620, 180, 20), (0, 200, 20), (20, 200, 20), (40, 200, 20), (60, 200, 20), (80, 200, 20), (100, 200, 20), (120, 200, 20), (140, 200, 20), (160, 200, 20), (180, 200, 20), (200, 200, 20), (220, 200, 20), (240, 200, 20), (260, 200, 20), (280, 200, 20), (300, 200, 20), (320, 200, 20), (340, 200, 20), (360, 200, 20), (380, 200, 20), (400, 200, 20), (420, 200, 20), (440, 200, 20), (460, 200, 20), (480, 200, 20), (500, 200, 20), (520, 200, 20), (540, 200, 20), (560, 200, 20), (580, 200, 20), (600, 200, 20), (620, 200, 20), (0, 220, 20), (20, 220, 20), (40, 220, 20), (60, 220, 20), (80, 220, 20), (100, 220, 20), (120, 220, 20), (140, 220, 20), (160, 220, 20), (180, 220, 20), (200, 220, 20), (220, 220, 20), (240, 220, 20), (260, 220, 20), (280, 220, 20), (300, 220, 20), (320, 220, 20), (340, 220, 20), (360, 220, 20), (380, 220, 20), (400, 220, 20), (420, 220, 20), (440, 220, 20), (460, 220, 20), (480, 220, 20), (500, 220, 20), (520, 220, 20), (540, 220, 20), (560, 220, 20), (580, 220, 20), (600, 220, 20), (620, 220, 20), (0, 240, 20), (20, 240, 20), (40, 240, 20), (60, 240, 20), (80, 240, 20), (100, 240, 20), (120, 240, 20), (140, 240, 20), (160, 240, 20), (180, 240, 20), (200, 240, 20), (220, 240, 20), (240, 240, 20), (260, 240, 20), (280, 240, 20), (300, 240, 20), (320, 240, 20), (340, 240, 20), (360, 240, 20), (380, 240, 20), (400, 240, 20), (420, 240, 20), (440, 240, 20), (460, 240, 20), (480, 240, 20), (500, 240, 20), (520, 240, 20), (540, 240, 20), (560, 240, 20), (580, 240, 20), (600, 240, 20), (620, 240, 20), (0, 260, 20), (20, 260, 20), (40, 260, 20), (60, 260, 20), (80, 260, 20), (100, 260, 20), (120, 260, 20), (140, 260, 20), (160, 260, 20), (180, 260, 20), (200, 260, 20), (220, 260, 20), (240, 260, 20), (260, 260, 20), (280, 260, 20), (300, 260, 20), (320, 260, 20), (340, 260, 20), (360, 260, 20), (380, 260, 20), (400, 260, 20), (420, 260, 20), (440, 260, 20), (460, 260, 20), (480, 260, 20), (500, 260, 20), (520, 260, 20), (540, 260, 20), (560, 260, 20), (580, 260, 20), (600, 260, 20), (620, 260, 20), (0, 280, 20), (20, 280, 20), (40, 280, 20), (60, 280, 20), (80, 280, 20), (100, 280, 20), (120, 280, 20), (140, 280, 20), (160, 280, 20), (180, 280, 20), (200, 280, 20), (220, 280, 20), (240, 280, 20), (260, 280, 20), (280, 280, 20), (300, 280, 20), (320, 280, 20), (340, 280, 20), (360, 280, 20), (380, 280, 20), (400, 280, 20), (420, 280, 20), (440, 280, 20), (460, 280, 20), (480, 280, 20), (500, 280, 20), (520, 280, 20), (540, 280, 20), (560, 280, 20), (580, 280, 20), (600, 280, 20), (620, 280, 20), (0, 300, 20), (20, 300, 20), (40, 300, 20), (60, 300, 20), (80, 300, 20), (100, 300, 20), (120, 300, 20), (140, 300, 20), (160, 300, 20), (180, 300, 20), (200, 300, 20), (220, 300, 20), (240, 300, 20), (260, 300, 20), (280, 300, 20), (300, 300, 20), (320, 300, 20), (340, 300, 20), (360, 300, 20), (380, 300, 20), (400, 300, 20), (420, 300, 20), (440, 300, 20), (460, 300, 20), (480, 300, 20), (500, 300, 20), (520, 300, 20), (540, 300, 20), (560, 300, 20), (580, 300, 20), (600, 300, 20), (620, 300, 20), (0, 320, 20), (20, 320, 20), (40, 320, 20), (60, 320, 20), (80, 320, 20), (100, 320, 20), (120, 320, 20), (140, 320, 20), (160, 320, 20), (180, 320, 20), (200, 320, 20), (220, 320, 20), (240, 320, 20), (260, 320, 20), (280, 320, 20), (300, 320, 20), (320, 320, 20), (340, 320, 20), (360, 320, 20), (380, 320, 20), (400, 320, 20), (420, 320, 20), (440, 320, 20), (460, 320, 20), (480, 320, 20), (500, 320, 20), (520, 320, 20), (540, 320, 20), (560, 320, 20), (580, 320, 20), (600, 320, 20), (620, 320, 20), (0, 340, 20), (20, 340, 20), (40, 340, 20), (60, 340, 20), (80, 340, 20), (100, 340, 20), (120, 340, 20), (140, 340, 20), (160, 340, 20), (180, 340, 20), (200, 340, 20), (220, 340, 20), (240, 340, 20), (260, 340, 20), (280, 340, 20), (300, 340, 20), (320, 340, 20), (340, 340, 20), (360, 340, 20), (380, 340, 20), (400, 340, 20), (420, 340, 20), (440, 340, 20), (460, 340, 20), (480, 340, 20), (500, 340, 20), (520, 340, 20), (540, 340, 20), (560, 340, 20), (580, 340, 20), (600, 340, 20), (620, 340, 20), (0, 360, 20), (20, 360, 20), (40, 360, 20), (60, 360, 20), (80, 360, 20), (100, 360, 20), (120, 360, 20), (140, 360, 20), (160, 360, 20), (180, 360, 20), (200, 360, 20), (220, 360, 20), (240, 360, 20), (260, 360, 20), (280, 360, 20), (300, 360, 20), (320, 360, 20), (340, 360, 20), (360, 360, 20), (380, 360, 20), (400, 360, 20), (420, 360, 20), (440, 360, 20), (460, 360, 20), (480, 360, 20), (500, 360, 20), (520, 360, 20), (540, 360, 20), (560, 360, 20), (580, 360, 20), (600, 360, 20), (620, 360, 20), (0, 380, 20), (20, 380, 20), (40, 380, 20), (60, 380, 20), (80, 380, 20), (100, 380, 20), (120, 380, 20), (140, 380, 20), (160, 380, 20), (180, 380, 20), (200, 380, 20), (220, 380, 20), (240, 380, 20), (260, 380, 20), (280, 380, 20), (300, 380, 20), (320, 380, 20), (340, 380, 20), (360, 380, 20), (380, 380, 20), (400, 380, 20), (420, 380, 20), (440, 380, 20), (460, 380, 20), (480, 380, 20), (500, 380, 20), (520, 380, 20), (540, 380, 20), (560, 380, 20), (580, 380, 20), (600, 380, 20), (620, 380, 20), (0, 400, 20), (20, 400, 20), (40, 400, 20), (60, 400, 20), (80, 400, 20), (100, 400, 20), (120, 400, 20), (140, 400, 20), (160, 400, 20), (180, 400, 20), (200, 400, 20), (220, 400, 20), (240, 400, 20), (260, 400, 20), (280, 400, 20), (300, 400, 20), (320, 400, 20), (340, 400, 20), (360, 400, 20), (380, 400, 20), (400, 400, 20), (420, 400, 20), (440, 400, 20), (460, 400, 20), (480, 400, 20), (500, 400, 20), (520, 400, 20), (540, 400, 20), (560, 400, 20), (580, 400, 20), (600, 400, 20), (620, 400, 20), (0, 420, 20), (20, 420, 20), (40, 420, 20), (60, 420, 20), (80, 420, 20), (100, 420, 20), (120, 420, 20), (140, 420, 20), (160, 420, 20), (180, 420, 20), (200, 420, 20), (220, 420, 20), (240, 420, 20), (260, 420, 20), (280, 420, 20), (300, 420, 20), (320, 420, 20), (340, 420, 20), (360, 420, 20), (380, 420, 20), (400, 420, 20), (420, 420, 20), (440, 420, 20), (460, 420, 20), (480, 420, 20), (500, 420, 20), (520, 420, 20), (540, 420, 20), (560, 420, 20), (580, 420, 20), (600, 420, 20), (620, 420, 20), (0, 440, 20), (20, 440, 20), (40, 440, 20), (60, 440, 20), (80, 440, 20), (100, 440, 20), (120, 440, 20), (140, 440, 20), (160, 440, 20), (180, 440, 20), (200, 440, 20), (220, 440, 20), (240, 440, 20), (260, 440, 20), (280, 440, 20), (300, 440, 20), (320, 440, 20), (340, 440, 20), (360, 440, 20), (380, 440, 20), (400, 440, 20), (420, 440, 20), (440, 440, 20), (460, 440, 20), (480, 440, 20), (500, 440, 20), (520, 440, 20), (540, 440, 20), (560, 440, 20), (580, 440, 20), (600, 440, 20), (620, 440, 20), (0, 460, 20), (20, 460, 20), (40, 460, 20), (60, 460, 20), (80, 460, 20), (100, 460, 20), (120, 460, 20), (140, 460, 20), (160, 460, 20), (180, 460, 20), (200, 460, 20), (220, 460, 20), (240, 460, 20), (260, 460, 20), (280, 460, 20), (300, 460, 20), (320, 460, 20), (340, 460, 20), (360, 460, 20), (380, 460, 20), (400, 460, 20), (420, 460, 20), (440, 460, 20), (460, 460, 20), (480, 460, 20), (500, 460, 20), (520, 460, 20), (540, 460, 20), (560, 460, 20), (580, 460, 20), (600, 460, 20), (620, 460, 20), (0, 480, 20), (20, 480, 20), (40, 480, 20), (60, 480, 20), (80, 480, 20), (100, 480, 20), (120, 480, 20), (140, 480, 20), (160, 480, 20), (180, 480, 20), (200, 480, 20), (220, 480, 20), (240, 480, 20), (260, 480, 20), (280, 480, 20), (300, 480, 20), (320, 480, 20), (340, 480, 20), (360, 480, 20), (380, 480, 20), (400, 480, 20), (420, 480, 20), (440, 480, 20), (460, 480, 20), (480, 480, 20), (500, 480, 20), (520, 480, 20), (540, 480, 20), (560, 480, 20), (580, 480, 20), (600, 480, 20), (620, 480, 20), (0, 500, 20), (20, 500, 20), (40, 500, 20), (60, 500, 20), (80, 500, 20), (100, 500, 20), (120, 500, 20), (140, 500, 20), (160, 500, 20), (180, 500, 20), (200, 500, 20), (220, 500, 20), (240, 500, 20), (260, 500, 20), (280, 500, 20), (300, 500, 20), (320, 500, 20), (340, 500, 20), (360, 500, 20), (380, 500, 20), (400, 500, 20), (420, 500, 20), (440, 500, 20), (460, 500, 20), (480, 500, 20), (500, 500, 20), (520, 500, 20), (540, 500, 20), (560, 500, 20), (580, 500, 20), (600, 500, 20), (620, 500, 20), (0, 520, 20), (20, 520, 20), (40, 520, 20), (60, 520, 20), (80, 520, 20), (100, 520, 20), (120, 520, 20), (140, 520, 20), (160, 520, 20), (180, 520, 20), (200, 520, 20), (220, 520, 20), (240, 520, 20), (260, 520, 20), (280, 520, 20), (300, 520, 20), (320, 520, 20), (340, 520, 20), (360, 520, 20), (380, 520, 20), (400, 520, 20), (420, 520, 20), (440, 520, 20), (460, 520, 20), (480, 520, 20), (500, 520, 20), (520, 520, 20), (540, 520, 20), (560, 520, 20), (580, 520, 20), (600, 520, 20), (620, 520, 20), (0, 540, 20), (20, 540, 20), (40, 540, 20), (60, 540, 20), (80, 540, 20), (100, 540, 20), (120, 540, 20), (140, 540, 20), (160, 540, 20), (180, 540, 20), (200, 540, 20), (220, 540, 20), (240, 540, 20), (260, 540, 20), (280, 540, 20), (300, 540, 20), (320, 540, 20), (340, 540, 20), (360, 540, 20), (380, 540, 20), (400, 540, 20), (420, 540, 20), (440, 540, 20), (460, 540, 20), (480, 540, 20), (500, 540, 20), (520, 540, 20), (540, 540, 20), (560, 540, 20), (580, 540, 20), (600, 540, 20), (620, 540, 20), (0, 560, 20), (20, 560, 20), (40, 560, 20), (60, 560, 20), (80, 560, 20), (100, 560, 20), (120, 560, 20), (140, 560, 20), (160, 560, 20), (180, 560, 20), (200, 560, 20), (220, 560, 20), (240, 560, 20), (260, 560, 20), (280, 560, 20), (300, 560, 20), (320, 560, 20), (340, 560, 20), (360, 560, 20), (380, 560, 20), (400, 560, 20), (420, 560, 20), (440, 560, 20), (460, 560, 20), (480, 560, 20), (500, 560, 20), (520, 560, 20), (540, 560, 20), (560, 560, 20), (580, 560, 20), (600, 560, 20), (620, 560, 20), (0, 580, 20), (20, 580, 20), (40, 580, 20), (60, 580, 20), (80, 580, 20), (100, 580, 20), (120, 580, 20), (140, 580, 20), (160, 580, 20), (180, 580, 20), (200, 580, 20), (220, 580, 20), (240, 580, 20), (260, 580, 20), (280, 580, 20), (300, 580, 20), (320, 580, 20), (340, 580, 20), (360, 580, 20), (380, 580, 20), (400, 580, 20), (420, 580, 20), (440, 580, 20), (460, 580, 20), (480, 580, 20), (500, 580, 20), (520, 580, 20), (540, 580, 20), (560, 580, 20), (580, 580, 20), (600, 580, 20), (620, 580, 20), (0, 600, 20), (20, 600, 20), (40, 600, 20), (60, 600, 20), (80, 600, 20), (100, 600, 20), (120, 600, 20), (140, 600, 20), (160, 600, 20), (180, 600, 20), (200, 600, 20), (220, 600, 20), (240, 600, 20), (260, 600, 20), (280, 600, 20), (300, 600, 20), (320, 600, 20), (340, 600, 20), (360, 600, 20), (380, 600, 20), (400, 600, 20), (420, 600, 20), (440, 600, 20), (460, 600, 20), (480, 600, 20), (500, 600, 20), (520, 600, 20), (540, 600, 20), (560, 600, 20), (580, 600, 20), (600, 600, 20), (620, 600, 20), (0, 620, 20), (20, 620, 20), (40, 620, 20), (60, 620, 20), (80, 620, 20), (100, 620, 20), (120, 620, 20), (140, 620, 20), (160, 620, 20), (180, 620, 20), (200, 620, 20), (220, 620, 20), (240, 620, 20), (260, 620, 20), (280, 620, 20), (300, 620, 20), (320, 620, 20), (340, 620, 20), (360, 620, 20), (380, 620, 20), (400, 620, 20), (420, 620, 20), (440, 620, 20), (460, 620, 20), (480, 620, 20), (500, 620, 20), (520, 620, 20), (540, 620, 20), (560, 620, 20), (580, 620, 20), (600, 620, 20), (620, 620, 20)] color3f[] primvars:displayColor = [(0.2784314, 0.64705884, 1)] } def Mesh "outputGrid" { uniform bool doubleSided = 1 int[] faceVertexCounts = [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 1, 33, 0, 33, 32, 1, 2, 34, 1, 34, 33, 2, 3, 35, 2, 35, 34, 3, 4, 36, 3, 36, 35, 4, 5, 37, 4, 37, 36, 5, 6, 38, 5, 38, 37, 6, 7, 39, 6, 39, 38, 7, 8, 40, 7, 40, 39, 8, 9, 41, 8, 41, 40, 9, 10, 42, 9, 42, 41, 10, 11, 43, 10, 43, 42, 11, 12, 44, 11, 44, 43, 12, 13, 45, 12, 45, 44, 13, 14, 46, 13, 46, 45, 14, 15, 47, 14, 47, 46, 15, 16, 48, 15, 48, 47, 16, 17, 49, 16, 49, 48, 17, 18, 50, 17, 50, 49, 18, 19, 51, 18, 51, 50, 19, 20, 52, 19, 52, 51, 20, 21, 53, 20, 53, 52, 21, 22, 54, 21, 54, 53, 22, 23, 55, 22, 55, 54, 23, 24, 56, 23, 56, 55, 24, 25, 57, 24, 57, 56, 25, 26, 58, 25, 58, 57, 26, 27, 59, 26, 59, 58, 27, 28, 60, 27, 60, 59, 28, 29, 61, 28, 61, 60, 29, 30, 62, 29, 62, 61, 30, 31, 63, 30, 63, 62, 32, 33, 65, 32, 65, 64, 33, 34, 66, 33, 66, 65, 34, 35, 67, 34, 67, 66, 35, 36, 68, 35, 68, 67, 36, 37, 69, 36, 69, 68, 37, 38, 70, 37, 70, 69, 38, 39, 71, 38, 71, 70, 39, 40, 72, 39, 72, 71, 40, 41, 73, 40, 73, 72, 41, 42, 74, 41, 74, 73, 42, 43, 75, 42, 75, 74, 43, 44, 76, 43, 76, 75, 44, 45, 77, 44, 77, 76, 45, 46, 78, 45, 78, 77, 46, 47, 79, 46, 79, 78, 47, 48, 80, 47, 80, 79, 48, 49, 81, 48, 81, 80, 49, 50, 82, 49, 82, 81, 50, 51, 83, 50, 83, 82, 51, 52, 84, 51, 84, 83, 52, 53, 85, 52, 85, 84, 53, 54, 86, 53, 86, 85, 54, 55, 87, 54, 87, 86, 55, 56, 88, 55, 88, 87, 56, 57, 89, 56, 89, 88, 57, 58, 90, 57, 90, 89, 58, 59, 91, 58, 91, 90, 59, 60, 92, 59, 92, 91, 60, 61, 93, 60, 93, 92, 61, 62, 94, 61, 94, 93, 62, 63, 95, 62, 95, 94, 64, 65, 97, 64, 97, 96, 65, 66, 98, 65, 98, 97, 66, 67, 99, 66, 99, 98, 67, 68, 100, 67, 100, 99, 68, 69, 101, 68, 101, 100, 69, 70, 102, 69, 102, 101, 70, 71, 103, 70, 103, 102, 71, 72, 104, 71, 104, 103, 72, 73, 105, 72, 105, 104, 73, 74, 106, 73, 106, 105, 74, 75, 107, 74, 107, 106, 75, 76, 108, 75, 108, 107, 76, 77, 109, 76, 109, 108, 77, 78, 110, 77, 110, 109, 78, 79, 111, 78, 111, 110, 79, 80, 112, 79, 112, 111, 80, 81, 113, 80, 113, 112, 81, 82, 114, 81, 114, 113, 82, 83, 115, 82, 115, 114, 83, 84, 116, 83, 116, 115, 84, 85, 117, 84, 117, 116, 85, 86, 118, 85, 118, 117, 86, 87, 119, 86, 119, 118, 87, 88, 120, 87, 120, 119, 88, 89, 121, 88, 121, 120, 89, 90, 122, 89, 122, 121, 90, 91, 123, 90, 123, 122, 91, 92, 124, 91, 124, 123, 92, 93, 125, 92, 125, 124, 93, 94, 126, 93, 126, 125, 94, 95, 127, 94, 127, 126, 96, 97, 129, 96, 129, 128, 97, 98, 130, 97, 130, 129, 98, 99, 131, 98, 131, 130, 99, 100, 132, 99, 132, 131, 100, 101, 133, 100, 133, 132, 101, 102, 134, 101, 134, 133, 102, 103, 135, 102, 135, 134, 103, 104, 136, 103, 136, 135, 104, 105, 137, 104, 137, 136, 105, 106, 138, 105, 138, 137, 106, 107, 139, 106, 139, 138, 107, 108, 140, 107, 140, 139, 108, 109, 141, 108, 141, 140, 109, 110, 142, 109, 142, 141, 110, 111, 143, 110, 143, 142, 111, 112, 144, 111, 144, 143, 112, 113, 145, 112, 145, 144, 113, 114, 146, 113, 146, 145, 114, 115, 147, 114, 147, 146, 115, 116, 148, 115, 148, 147, 116, 117, 149, 116, 149, 148, 117, 118, 150, 117, 150, 149, 118, 119, 151, 118, 151, 150, 119, 120, 152, 119, 152, 151, 120, 121, 153, 120, 153, 152, 121, 122, 154, 121, 154, 153, 122, 123, 155, 122, 155, 154, 123, 124, 156, 123, 156, 155, 124, 125, 157, 124, 157, 156, 125, 126, 158, 125, 158, 157, 126, 127, 159, 126, 159, 158, 128, 129, 161, 128, 161, 160, 129, 130, 162, 129, 162, 161, 130, 131, 163, 130, 163, 162, 131, 132, 164, 131, 164, 163, 132, 133, 165, 132, 165, 164, 133, 134, 166, 133, 166, 165, 134, 135, 167, 134, 167, 166, 135, 136, 168, 135, 168, 167, 136, 137, 169, 136, 169, 168, 137, 138, 170, 137, 170, 169, 138, 139, 171, 138, 171, 170, 139, 140, 172, 139, 172, 171, 140, 141, 173, 140, 173, 172, 141, 142, 174, 141, 174, 173, 142, 143, 175, 142, 175, 174, 143, 144, 176, 143, 176, 175, 144, 145, 177, 144, 177, 176, 145, 146, 178, 145, 178, 177, 146, 147, 179, 146, 179, 178, 147, 148, 180, 147, 180, 179, 148, 149, 181, 148, 181, 180, 149, 150, 182, 149, 182, 181, 150, 151, 183, 150, 183, 182, 151, 152, 184, 151, 184, 183, 152, 153, 185, 152, 185, 184, 153, 154, 186, 153, 186, 185, 154, 155, 187, 154, 187, 186, 155, 156, 188, 155, 188, 187, 156, 157, 189, 156, 189, 188, 157, 158, 190, 157, 190, 189, 158, 159, 191, 158, 191, 190, 160, 161, 193, 160, 193, 192, 161, 162, 194, 161, 194, 193, 162, 163, 195, 162, 195, 194, 163, 164, 196, 163, 196, 195, 164, 165, 197, 164, 197, 196, 165, 166, 198, 165, 198, 197, 166, 167, 199, 166, 199, 198, 167, 168, 200, 167, 200, 199, 168, 169, 201, 168, 201, 200, 169, 170, 202, 169, 202, 201, 170, 171, 203, 170, 203, 202, 171, 172, 204, 171, 204, 203, 172, 173, 205, 172, 205, 204, 173, 174, 206, 173, 206, 205, 174, 175, 207, 174, 207, 206, 175, 176, 208, 175, 208, 207, 176, 177, 209, 176, 209, 208, 177, 178, 210, 177, 210, 209, 178, 179, 211, 178, 211, 210, 179, 180, 212, 179, 212, 211, 180, 181, 213, 180, 213, 212, 181, 182, 214, 181, 214, 213, 182, 183, 215, 182, 215, 214, 183, 184, 216, 183, 216, 215, 184, 185, 217, 184, 217, 216, 185, 186, 218, 185, 218, 217, 186, 187, 219, 186, 219, 218, 187, 188, 220, 187, 220, 219, 188, 189, 221, 188, 221, 220, 189, 190, 222, 189, 222, 221, 190, 191, 223, 190, 223, 222, 192, 193, 225, 192, 225, 224, 193, 194, 226, 193, 226, 225, 194, 195, 227, 194, 227, 226, 195, 196, 228, 195, 228, 227, 196, 197, 229, 196, 229, 228, 197, 198, 230, 197, 230, 229, 198, 199, 231, 198, 231, 230, 199, 200, 232, 199, 232, 231, 200, 201, 233, 200, 233, 232, 201, 202, 234, 201, 234, 233, 202, 203, 235, 202, 235, 234, 203, 204, 236, 203, 236, 235, 204, 205, 237, 204, 237, 236, 205, 206, 238, 205, 238, 237, 206, 207, 239, 206, 239, 238, 207, 208, 240, 207, 240, 239, 208, 209, 241, 208, 241, 240, 209, 210, 242, 209, 242, 241, 210, 211, 243, 210, 243, 242, 211, 212, 244, 211, 244, 243, 212, 213, 245, 212, 245, 244, 213, 214, 246, 213, 246, 245, 214, 215, 247, 214, 247, 246, 215, 216, 248, 215, 248, 247, 216, 217, 249, 216, 249, 248, 217, 218, 250, 217, 250, 249, 218, 219, 251, 218, 251, 250, 219, 220, 252, 219, 252, 251, 220, 221, 253, 220, 253, 252, 221, 222, 254, 221, 254, 253, 222, 223, 255, 222, 255, 254, 224, 225, 257, 224, 257, 256, 225, 226, 258, 225, 258, 257, 226, 227, 259, 226, 259, 258, 227, 228, 260, 227, 260, 259, 228, 229, 261, 228, 261, 260, 229, 230, 262, 229, 262, 261, 230, 231, 263, 230, 263, 262, 231, 232, 264, 231, 264, 263, 232, 233, 265, 232, 265, 264, 233, 234, 266, 233, 266, 265, 234, 235, 267, 234, 267, 266, 235, 236, 268, 235, 268, 267, 236, 237, 269, 236, 269, 268, 237, 238, 270, 237, 270, 269, 238, 239, 271, 238, 271, 270, 239, 240, 272, 239, 272, 271, 240, 241, 273, 240, 273, 272, 241, 242, 274, 241, 274, 273, 242, 243, 275, 242, 275, 274, 243, 244, 276, 243, 276, 275, 244, 245, 277, 244, 277, 276, 245, 246, 278, 245, 278, 277, 246, 247, 279, 246, 279, 278, 247, 248, 280, 247, 280, 279, 248, 249, 281, 248, 281, 280, 249, 250, 282, 249, 282, 281, 250, 251, 283, 250, 283, 282, 251, 252, 284, 251, 284, 283, 252, 253, 285, 252, 285, 284, 253, 254, 286, 253, 286, 285, 254, 255, 287, 254, 287, 286, 256, 257, 289, 256, 289, 288, 257, 258, 290, 257, 290, 289, 258, 259, 291, 258, 291, 290, 259, 260, 292, 259, 292, 291, 260, 261, 293, 260, 293, 292, 261, 262, 294, 261, 294, 293, 262, 263, 295, 262, 295, 294, 263, 264, 296, 263, 296, 295, 264, 265, 297, 264, 297, 296, 265, 266, 298, 265, 298, 297, 266, 267, 299, 266, 299, 298, 267, 268, 300, 267, 300, 299, 268, 269, 301, 268, 301, 300, 269, 270, 302, 269, 302, 301, 270, 271, 303, 270, 303, 302, 271, 272, 304, 271, 304, 303, 272, 273, 305, 272, 305, 304, 273, 274, 306, 273, 306, 305, 274, 275, 307, 274, 307, 306, 275, 276, 308, 275, 308, 307, 276, 277, 309, 276, 309, 308, 277, 278, 310, 277, 310, 309, 278, 279, 311, 278, 311, 310, 279, 280, 312, 279, 312, 311, 280, 281, 313, 280, 313, 312, 281, 282, 314, 281, 314, 313, 282, 283, 315, 282, 315, 314, 283, 284, 316, 283, 316, 315, 284, 285, 317, 284, 317, 316, 285, 286, 318, 285, 318, 317, 286, 287, 319, 286, 319, 318, 288, 289, 321, 288, 321, 320, 289, 290, 322, 289, 322, 321, 290, 291, 323, 290, 323, 322, 291, 292, 324, 291, 324, 323, 292, 293, 325, 292, 325, 324, 293, 294, 326, 293, 326, 325, 294, 295, 327, 294, 327, 326, 295, 296, 328, 295, 328, 327, 296, 297, 329, 296, 329, 328, 297, 298, 330, 297, 330, 329, 298, 299, 331, 298, 331, 330, 299, 300, 332, 299, 332, 331, 300, 301, 333, 300, 333, 332, 301, 302, 334, 301, 334, 333, 302, 303, 335, 302, 335, 334, 303, 304, 336, 303, 336, 335, 304, 305, 337, 304, 337, 336, 305, 306, 338, 305, 338, 337, 306, 307, 339, 306, 339, 338, 307, 308, 340, 307, 340, 339, 308, 309, 341, 308, 341, 340, 309, 310, 342, 309, 342, 341, 310, 311, 343, 310, 343, 342, 311, 312, 344, 311, 344, 343, 312, 313, 345, 312, 345, 344, 313, 314, 346, 313, 346, 345, 314, 315, 347, 314, 347, 346, 315, 316, 348, 315, 348, 347, 316, 317, 349, 316, 349, 348, 317, 318, 350, 317, 350, 349, 318, 319, 351, 318, 351, 350, 320, 321, 353, 320, 353, 352, 321, 322, 354, 321, 354, 353, 322, 323, 355, 322, 355, 354, 323, 324, 356, 323, 356, 355, 324, 325, 357, 324, 357, 356, 325, 326, 358, 325, 358, 357, 326, 327, 359, 326, 359, 358, 327, 328, 360, 327, 360, 359, 328, 329, 361, 328, 361, 360, 329, 330, 362, 329, 362, 361, 330, 331, 363, 330, 363, 362, 331, 332, 364, 331, 364, 363, 332, 333, 365, 332, 365, 364, 333, 334, 366, 333, 366, 365, 334, 335, 367, 334, 367, 366, 335, 336, 368, 335, 368, 367, 336, 337, 369, 336, 369, 368, 337, 338, 370, 337, 370, 369, 338, 339, 371, 338, 371, 370, 339, 340, 372, 339, 372, 371, 340, 341, 373, 340, 373, 372, 341, 342, 374, 341, 374, 373, 342, 343, 375, 342, 375, 374, 343, 344, 376, 343, 376, 375, 344, 345, 377, 344, 377, 376, 345, 346, 378, 345, 378, 377, 346, 347, 379, 346, 379, 378, 347, 348, 380, 347, 380, 379, 348, 349, 381, 348, 381, 380, 349, 350, 382, 349, 382, 381, 350, 351, 383, 350, 383, 382, 352, 353, 385, 352, 385, 384, 353, 354, 386, 353, 386, 385, 354, 355, 387, 354, 387, 386, 355, 356, 388, 355, 388, 387, 356, 357, 389, 356, 389, 388, 357, 358, 390, 357, 390, 389, 358, 359, 391, 358, 391, 390, 359, 360, 392, 359, 392, 391, 360, 361, 393, 360, 393, 392, 361, 362, 394, 361, 394, 393, 362, 363, 395, 362, 395, 394, 363, 364, 396, 363, 396, 395, 364, 365, 397, 364, 397, 396, 365, 366, 398, 365, 398, 397, 366, 367, 399, 366, 399, 398, 367, 368, 400, 367, 400, 399, 368, 369, 401, 368, 401, 400, 369, 370, 402, 369, 402, 401, 370, 371, 403, 370, 403, 402, 371, 372, 404, 371, 404, 403, 372, 373, 405, 372, 405, 404, 373, 374, 406, 373, 406, 405, 374, 375, 407, 374, 407, 406, 375, 376, 408, 375, 408, 407, 376, 377, 409, 376, 409, 408, 377, 378, 410, 377, 410, 409, 378, 379, 411, 378, 411, 410, 379, 380, 412, 379, 412, 411, 380, 381, 413, 380, 413, 412, 381, 382, 414, 381, 414, 413, 382, 383, 415, 382, 415, 414, 384, 385, 417, 384, 417, 416, 385, 386, 418, 385, 418, 417, 386, 387, 419, 386, 419, 418, 387, 388, 420, 387, 420, 419, 388, 389, 421, 388, 421, 420, 389, 390, 422, 389, 422, 421, 390, 391, 423, 390, 423, 422, 391, 392, 424, 391, 424, 423, 392, 393, 425, 392, 425, 424, 393, 394, 426, 393, 426, 425, 394, 395, 427, 394, 427, 426, 395, 396, 428, 395, 428, 427, 396, 397, 429, 396, 429, 428, 397, 398, 430, 397, 430, 429, 398, 399, 431, 398, 431, 430, 399, 400, 432, 399, 432, 431, 400, 401, 433, 400, 433, 432, 401, 402, 434, 401, 434, 433, 402, 403, 435, 402, 435, 434, 403, 404, 436, 403, 436, 435, 404, 405, 437, 404, 437, 436, 405, 406, 438, 405, 438, 437, 406, 407, 439, 406, 439, 438, 407, 408, 440, 407, 440, 439, 408, 409, 441, 408, 441, 440, 409, 410, 442, 409, 442, 441, 410, 411, 443, 410, 443, 442, 411, 412, 444, 411, 444, 443, 412, 413, 445, 412, 445, 444, 413, 414, 446, 413, 446, 445, 414, 415, 447, 414, 447, 446, 416, 417, 449, 416, 449, 448, 417, 418, 450, 417, 450, 449, 418, 419, 451, 418, 451, 450, 419, 420, 452, 419, 452, 451, 420, 421, 453, 420, 453, 452, 421, 422, 454, 421, 454, 453, 422, 423, 455, 422, 455, 454, 423, 424, 456, 423, 456, 455, 424, 425, 457, 424, 457, 456, 425, 426, 458, 425, 458, 457, 426, 427, 459, 426, 459, 458, 427, 428, 460, 427, 460, 459, 428, 429, 461, 428, 461, 460, 429, 430, 462, 429, 462, 461, 430, 431, 463, 430, 463, 462, 431, 432, 464, 431, 464, 463, 432, 433, 465, 432, 465, 464, 433, 434, 466, 433, 466, 465, 434, 435, 467, 434, 467, 466, 435, 436, 468, 435, 468, 467, 436, 437, 469, 436, 469, 468, 437, 438, 470, 437, 470, 469, 438, 439, 471, 438, 471, 470, 439, 440, 472, 439, 472, 471, 440, 441, 473, 440, 473, 472, 441, 442, 474, 441, 474, 473, 442, 443, 475, 442, 475, 474, 443, 444, 476, 443, 476, 475, 444, 445, 477, 444, 477, 476, 445, 446, 478, 445, 478, 477, 446, 447, 479, 446, 479, 478, 448, 449, 481, 448, 481, 480, 449, 450, 482, 449, 482, 481, 450, 451, 483, 450, 483, 482, 451, 452, 484, 451, 484, 483, 452, 453, 485, 452, 485, 484, 453, 454, 486, 453, 486, 485, 454, 455, 487, 454, 487, 486, 455, 456, 488, 455, 488, 487, 456, 457, 489, 456, 489, 488, 457, 458, 490, 457, 490, 489, 458, 459, 491, 458, 491, 490, 459, 460, 492, 459, 492, 491, 460, 461, 493, 460, 493, 492, 461, 462, 494, 461, 494, 493, 462, 463, 495, 462, 495, 494, 463, 464, 496, 463, 496, 495, 464, 465, 497, 464, 497, 496, 465, 466, 498, 465, 498, 497, 466, 467, 499, 466, 499, 498, 467, 468, 500, 467, 500, 499, 468, 469, 501, 468, 501, 500, 469, 470, 502, 469, 502, 501, 470, 471, 503, 470, 503, 502, 471, 472, 504, 471, 504, 503, 472, 473, 505, 472, 505, 504, 473, 474, 506, 473, 506, 505, 474, 475, 507, 474, 507, 506, 475, 476, 508, 475, 508, 507, 476, 477, 509, 476, 509, 508, 477, 478, 510, 477, 510, 509, 478, 479, 511, 478, 511, 510, 480, 481, 513, 480, 513, 512, 481, 482, 514, 481, 514, 513, 482, 483, 515, 482, 515, 514, 483, 484, 516, 483, 516, 515, 484, 485, 517, 484, 517, 516, 485, 486, 518, 485, 518, 517, 486, 487, 519, 486, 519, 518, 487, 488, 520, 487, 520, 519, 488, 489, 521, 488, 521, 520, 489, 490, 522, 489, 522, 521, 490, 491, 523, 490, 523, 522, 491, 492, 524, 491, 524, 523, 492, 493, 525, 492, 525, 524, 493, 494, 526, 493, 526, 525, 494, 495, 527, 494, 527, 526, 495, 496, 528, 495, 528, 527, 496, 497, 529, 496, 529, 528, 497, 498, 530, 497, 530, 529, 498, 499, 531, 498, 531, 530, 499, 500, 532, 499, 532, 531, 500, 501, 533, 500, 533, 532, 501, 502, 534, 501, 534, 533, 502, 503, 535, 502, 535, 534, 503, 504, 536, 503, 536, 535, 504, 505, 537, 504, 537, 536, 505, 506, 538, 505, 538, 537, 506, 507, 539, 506, 539, 538, 507, 508, 540, 507, 540, 539, 508, 509, 541, 508, 541, 540, 509, 510, 542, 509, 542, 541, 510, 511, 543, 510, 543, 542, 512, 513, 545, 512, 545, 544, 513, 514, 546, 513, 546, 545, 514, 515, 547, 514, 547, 546, 515, 516, 548, 515, 548, 547, 516, 517, 549, 516, 549, 548, 517, 518, 550, 517, 550, 549, 518, 519, 551, 518, 551, 550, 519, 520, 552, 519, 552, 551, 520, 521, 553, 520, 553, 552, 521, 522, 554, 521, 554, 553, 522, 523, 555, 522, 555, 554, 523, 524, 556, 523, 556, 555, 524, 525, 557, 524, 557, 556, 525, 526, 558, 525, 558, 557, 526, 527, 559, 526, 559, 558, 527, 528, 560, 527, 560, 559, 528, 529, 561, 528, 561, 560, 529, 530, 562, 529, 562, 561, 530, 531, 563, 530, 563, 562, 531, 532, 564, 531, 564, 563, 532, 533, 565, 532, 565, 564, 533, 534, 566, 533, 566, 565, 534, 535, 567, 534, 567, 566, 535, 536, 568, 535, 568, 567, 536, 537, 569, 536, 569, 568, 537, 538, 570, 537, 570, 569, 538, 539, 571, 538, 571, 570, 539, 540, 572, 539, 572, 571, 540, 541, 573, 540, 573, 572, 541, 542, 574, 541, 574, 573, 542, 543, 575, 542, 575, 574, 544, 545, 577, 544, 577, 576, 545, 546, 578, 545, 578, 577, 546, 547, 579, 546, 579, 578, 547, 548, 580, 547, 580, 579, 548, 549, 581, 548, 581, 580, 549, 550, 582, 549, 582, 581, 550, 551, 583, 550, 583, 582, 551, 552, 584, 551, 584, 583, 552, 553, 585, 552, 585, 584, 553, 554, 586, 553, 586, 585, 554, 555, 587, 554, 587, 586, 555, 556, 588, 555, 588, 587, 556, 557, 589, 556, 589, 588, 557, 558, 590, 557, 590, 589, 558, 559, 591, 558, 591, 590, 559, 560, 592, 559, 592, 591, 560, 561, 593, 560, 593, 592, 561, 562, 594, 561, 594, 593, 562, 563, 595, 562, 595, 594, 563, 564, 596, 563, 596, 595, 564, 565, 597, 564, 597, 596, 565, 566, 598, 565, 598, 597, 566, 567, 599, 566, 599, 598, 567, 568, 600, 567, 600, 599, 568, 569, 601, 568, 601, 600, 569, 570, 602, 569, 602, 601, 570, 571, 603, 570, 603, 602, 571, 572, 604, 571, 604, 603, 572, 573, 605, 572, 605, 604, 573, 574, 606, 573, 606, 605, 574, 575, 607, 574, 607, 606, 576, 577, 609, 576, 609, 608, 577, 578, 610, 577, 610, 609, 578, 579, 611, 578, 611, 610, 579, 580, 612, 579, 612, 611, 580, 581, 613, 580, 613, 612, 581, 582, 614, 581, 614, 613, 582, 583, 615, 582, 615, 614, 583, 584, 616, 583, 616, 615, 584, 585, 617, 584, 617, 616, 585, 586, 618, 585, 618, 617, 586, 587, 619, 586, 619, 618, 587, 588, 620, 587, 620, 619, 588, 589, 621, 588, 621, 620, 589, 590, 622, 589, 622, 621, 590, 591, 623, 590, 623, 622, 591, 592, 624, 591, 624, 623, 592, 593, 625, 592, 625, 624, 593, 594, 626, 593, 626, 625, 594, 595, 627, 594, 627, 626, 595, 596, 628, 595, 628, 627, 596, 597, 629, 596, 629, 628, 597, 598, 630, 597, 630, 629, 598, 599, 631, 598, 631, 630, 599, 600, 632, 599, 632, 631, 600, 601, 633, 600, 633, 632, 601, 602, 634, 601, 634, 633, 602, 603, 635, 602, 635, 634, 603, 604, 636, 603, 636, 635, 604, 605, 637, 604, 637, 636, 605, 606, 638, 605, 638, 637, 606, 607, 639, 606, 639, 638, 608, 609, 641, 608, 641, 640, 609, 610, 642, 609, 642, 641, 610, 611, 643, 610, 643, 642, 611, 612, 644, 611, 644, 643, 612, 613, 645, 612, 645, 644, 613, 614, 646, 613, 646, 645, 614, 615, 647, 614, 647, 646, 615, 616, 648, 615, 648, 647, 616, 617, 649, 616, 649, 648, 617, 618, 650, 617, 650, 649, 618, 619, 651, 618, 651, 650, 619, 620, 652, 619, 652, 651, 620, 621, 653, 620, 653, 652, 621, 622, 654, 621, 654, 653, 622, 623, 655, 622, 655, 654, 623, 624, 656, 623, 656, 655, 624, 625, 657, 624, 657, 656, 625, 626, 658, 625, 658, 657, 626, 627, 659, 626, 659, 658, 627, 628, 660, 627, 660, 659, 628, 629, 661, 628, 661, 660, 629, 630, 662, 629, 662, 661, 630, 631, 663, 630, 663, 662, 631, 632, 664, 631, 664, 663, 632, 633, 665, 632, 665, 664, 633, 634, 666, 633, 666, 665, 634, 635, 667, 634, 667, 666, 635, 636, 668, 635, 668, 667, 636, 637, 669, 636, 669, 668, 637, 638, 670, 637, 670, 669, 638, 639, 671, 638, 671, 670, 640, 641, 673, 640, 673, 672, 641, 642, 674, 641, 674, 673, 642, 643, 675, 642, 675, 674, 643, 644, 676, 643, 676, 675, 644, 645, 677, 644, 677, 676, 645, 646, 678, 645, 678, 677, 646, 647, 679, 646, 679, 678, 647, 648, 680, 647, 680, 679, 648, 649, 681, 648, 681, 680, 649, 650, 682, 649, 682, 681, 650, 651, 683, 650, 683, 682, 651, 652, 684, 651, 684, 683, 652, 653, 685, 652, 685, 684, 653, 654, 686, 653, 686, 685, 654, 655, 687, 654, 687, 686, 655, 656, 688, 655, 688, 687, 656, 657, 689, 656, 689, 688, 657, 658, 690, 657, 690, 689, 658, 659, 691, 658, 691, 690, 659, 660, 692, 659, 692, 691, 660, 661, 693, 660, 693, 692, 661, 662, 694, 661, 694, 693, 662, 663, 695, 662, 695, 694, 663, 664, 696, 663, 696, 695, 664, 665, 697, 664, 697, 696, 665, 666, 698, 665, 698, 697, 666, 667, 699, 666, 699, 698, 667, 668, 700, 667, 700, 699, 668, 669, 701, 668, 701, 700, 669, 670, 702, 669, 702, 701, 670, 671, 703, 670, 703, 702, 672, 673, 705, 672, 705, 704, 673, 674, 706, 673, 706, 705, 674, 675, 707, 674, 707, 706, 675, 676, 708, 675, 708, 707, 676, 677, 709, 676, 709, 708, 677, 678, 710, 677, 710, 709, 678, 679, 711, 678, 711, 710, 679, 680, 712, 679, 712, 711, 680, 681, 713, 680, 713, 712, 681, 682, 714, 681, 714, 713, 682, 683, 715, 682, 715, 714, 683, 684, 716, 683, 716, 715, 684, 685, 717, 684, 717, 716, 685, 686, 718, 685, 718, 717, 686, 687, 719, 686, 719, 718, 687, 688, 720, 687, 720, 719, 688, 689, 721, 688, 721, 720, 689, 690, 722, 689, 722, 721, 690, 691, 723, 690, 723, 722, 691, 692, 724, 691, 724, 723, 692, 693, 725, 692, 725, 724, 693, 694, 726, 693, 726, 725, 694, 695, 727, 694, 727, 726, 695, 696, 728, 695, 728, 727, 696, 697, 729, 696, 729, 728, 697, 698, 730, 697, 730, 729, 698, 699, 731, 698, 731, 730, 699, 700, 732, 699, 732, 731, 700, 701, 733, 700, 733, 732, 701, 702, 734, 701, 734, 733, 702, 703, 735, 702, 735, 734, 704, 705, 737, 704, 737, 736, 705, 706, 738, 705, 738, 737, 706, 707, 739, 706, 739, 738, 707, 708, 740, 707, 740, 739, 708, 709, 741, 708, 741, 740, 709, 710, 742, 709, 742, 741, 710, 711, 743, 710, 743, 742, 711, 712, 744, 711, 744, 743, 712, 713, 745, 712, 745, 744, 713, 714, 746, 713, 746, 745, 714, 715, 747, 714, 747, 746, 715, 716, 748, 715, 748, 747, 716, 717, 749, 716, 749, 748, 717, 718, 750, 717, 750, 749, 718, 719, 751, 718, 751, 750, 719, 720, 752, 719, 752, 751, 720, 721, 753, 720, 753, 752, 721, 722, 754, 721, 754, 753, 722, 723, 755, 722, 755, 754, 723, 724, 756, 723, 756, 755, 724, 725, 757, 724, 757, 756, 725, 726, 758, 725, 758, 757, 726, 727, 759, 726, 759, 758, 727, 728, 760, 727, 760, 759, 728, 729, 761, 728, 761, 760, 729, 730, 762, 729, 762, 761, 730, 731, 763, 730, 763, 762, 731, 732, 764, 731, 764, 763, 732, 733, 765, 732, 765, 764, 733, 734, 766, 733, 766, 765, 734, 735, 767, 734, 767, 766, 736, 737, 769, 736, 769, 768, 737, 738, 770, 737, 770, 769, 738, 739, 771, 738, 771, 770, 739, 740, 772, 739, 772, 771, 740, 741, 773, 740, 773, 772, 741, 742, 774, 741, 774, 773, 742, 743, 775, 742, 775, 774, 743, 744, 776, 743, 776, 775, 744, 745, 777, 744, 777, 776, 745, 746, 778, 745, 778, 777, 746, 747, 779, 746, 779, 778, 747, 748, 780, 747, 780, 779, 748, 749, 781, 748, 781, 780, 749, 750, 782, 749, 782, 781, 750, 751, 783, 750, 783, 782, 751, 752, 784, 751, 784, 783, 752, 753, 785, 752, 785, 784, 753, 754, 786, 753, 786, 785, 754, 755, 787, 754, 787, 786, 755, 756, 788, 755, 788, 787, 756, 757, 789, 756, 789, 788, 757, 758, 790, 757, 790, 789, 758, 759, 791, 758, 791, 790, 759, 760, 792, 759, 792, 791, 760, 761, 793, 760, 793, 792, 761, 762, 794, 761, 794, 793, 762, 763, 795, 762, 795, 794, 763, 764, 796, 763, 796, 795, 764, 765, 797, 764, 797, 796, 765, 766, 798, 765, 798, 797, 766, 767, 799, 766, 799, 798, 768, 769, 801, 768, 801, 800, 769, 770, 802, 769, 802, 801, 770, 771, 803, 770, 803, 802, 771, 772, 804, 771, 804, 803, 772, 773, 805, 772, 805, 804, 773, 774, 806, 773, 806, 805, 774, 775, 807, 774, 807, 806, 775, 776, 808, 775, 808, 807, 776, 777, 809, 776, 809, 808, 777, 778, 810, 777, 810, 809, 778, 779, 811, 778, 811, 810, 779, 780, 812, 779, 812, 811, 780, 781, 813, 780, 813, 812, 781, 782, 814, 781, 814, 813, 782, 783, 815, 782, 815, 814, 783, 784, 816, 783, 816, 815, 784, 785, 817, 784, 817, 816, 785, 786, 818, 785, 818, 817, 786, 787, 819, 786, 819, 818, 787, 788, 820, 787, 820, 819, 788, 789, 821, 788, 821, 820, 789, 790, 822, 789, 822, 821, 790, 791, 823, 790, 823, 822, 791, 792, 824, 791, 824, 823, 792, 793, 825, 792, 825, 824, 793, 794, 826, 793, 826, 825, 794, 795, 827, 794, 827, 826, 795, 796, 828, 795, 828, 827, 796, 797, 829, 796, 829, 828, 797, 798, 830, 797, 830, 829, 798, 799, 831, 798, 831, 830, 800, 801, 833, 800, 833, 832, 801, 802, 834, 801, 834, 833, 802, 803, 835, 802, 835, 834, 803, 804, 836, 803, 836, 835, 804, 805, 837, 804, 837, 836, 805, 806, 838, 805, 838, 837, 806, 807, 839, 806, 839, 838, 807, 808, 840, 807, 840, 839, 808, 809, 841, 808, 841, 840, 809, 810, 842, 809, 842, 841, 810, 811, 843, 810, 843, 842, 811, 812, 844, 811, 844, 843, 812, 813, 845, 812, 845, 844, 813, 814, 846, 813, 846, 845, 814, 815, 847, 814, 847, 846, 815, 816, 848, 815, 848, 847, 816, 817, 849, 816, 849, 848, 817, 818, 850, 817, 850, 849, 818, 819, 851, 818, 851, 850, 819, 820, 852, 819, 852, 851, 820, 821, 853, 820, 853, 852, 821, 822, 854, 821, 854, 853, 822, 823, 855, 822, 855, 854, 823, 824, 856, 823, 856, 855, 824, 825, 857, 824, 857, 856, 825, 826, 858, 825, 858, 857, 826, 827, 859, 826, 859, 858, 827, 828, 860, 827, 860, 859, 828, 829, 861, 828, 861, 860, 829, 830, 862, 829, 862, 861, 830, 831, 863, 830, 863, 862, 832, 833, 865, 832, 865, 864, 833, 834, 866, 833, 866, 865, 834, 835, 867, 834, 867, 866, 835, 836, 868, 835, 868, 867, 836, 837, 869, 836, 869, 868, 837, 838, 870, 837, 870, 869, 838, 839, 871, 838, 871, 870, 839, 840, 872, 839, 872, 871, 840, 841, 873, 840, 873, 872, 841, 842, 874, 841, 874, 873, 842, 843, 875, 842, 875, 874, 843, 844, 876, 843, 876, 875, 844, 845, 877, 844, 877, 876, 845, 846, 878, 845, 878, 877, 846, 847, 879, 846, 879, 878, 847, 848, 880, 847, 880, 879, 848, 849, 881, 848, 881, 880, 849, 850, 882, 849, 882, 881, 850, 851, 883, 850, 883, 882, 851, 852, 884, 851, 884, 883, 852, 853, 885, 852, 885, 884, 853, 854, 886, 853, 886, 885, 854, 855, 887, 854, 887, 886, 855, 856, 888, 855, 888, 887, 856, 857, 889, 856, 889, 888, 857, 858, 890, 857, 890, 889, 858, 859, 891, 858, 891, 890, 859, 860, 892, 859, 892, 891, 860, 861, 893, 860, 893, 892, 861, 862, 894, 861, 894, 893, 862, 863, 895, 862, 895, 894, 864, 865, 897, 864, 897, 896, 865, 866, 898, 865, 898, 897, 866, 867, 899, 866, 899, 898, 867, 868, 900, 867, 900, 899, 868, 869, 901, 868, 901, 900, 869, 870, 902, 869, 902, 901, 870, 871, 903, 870, 903, 902, 871, 872, 904, 871, 904, 903, 872, 873, 905, 872, 905, 904, 873, 874, 906, 873, 906, 905, 874, 875, 907, 874, 907, 906, 875, 876, 908, 875, 908, 907, 876, 877, 909, 876, 909, 908, 877, 878, 910, 877, 910, 909, 878, 879, 911, 878, 911, 910, 879, 880, 912, 879, 912, 911, 880, 881, 913, 880, 913, 912, 881, 882, 914, 881, 914, 913, 882, 883, 915, 882, 915, 914, 883, 884, 916, 883, 916, 915, 884, 885, 917, 884, 917, 916, 885, 886, 918, 885, 918, 917, 886, 887, 919, 886, 919, 918, 887, 888, 920, 887, 920, 919, 888, 889, 921, 888, 921, 920, 889, 890, 922, 889, 922, 921, 890, 891, 923, 890, 923, 922, 891, 892, 924, 891, 924, 923, 892, 893, 925, 892, 925, 924, 893, 894, 926, 893, 926, 925, 894, 895, 927, 894, 927, 926, 896, 897, 929, 896, 929, 928, 897, 898, 930, 897, 930, 929, 898, 899, 931, 898, 931, 930, 899, 900, 932, 899, 932, 931, 900, 901, 933, 900, 933, 932, 901, 902, 934, 901, 934, 933, 902, 903, 935, 902, 935, 934, 903, 904, 936, 903, 936, 935, 904, 905, 937, 904, 937, 936, 905, 906, 938, 905, 938, 937, 906, 907, 939, 906, 939, 938, 907, 908, 940, 907, 940, 939, 908, 909, 941, 908, 941, 940, 909, 910, 942, 909, 942, 941, 910, 911, 943, 910, 943, 942, 911, 912, 944, 911, 944, 943, 912, 913, 945, 912, 945, 944, 913, 914, 946, 913, 946, 945, 914, 915, 947, 914, 947, 946, 915, 916, 948, 915, 948, 947, 916, 917, 949, 916, 949, 948, 917, 918, 950, 917, 950, 949, 918, 919, 951, 918, 951, 950, 919, 920, 952, 919, 952, 951, 920, 921, 953, 920, 953, 952, 921, 922, 954, 921, 954, 953, 922, 923, 955, 922, 955, 954, 923, 924, 956, 923, 956, 955, 924, 925, 957, 924, 957, 956, 925, 926, 958, 925, 958, 957, 926, 927, 959, 926, 959, 958, 928, 929, 961, 928, 961, 960, 929, 930, 962, 929, 962, 961, 930, 931, 963, 930, 963, 962, 931, 932, 964, 931, 964, 963, 932, 933, 965, 932, 965, 964, 933, 934, 966, 933, 966, 965, 934, 935, 967, 934, 967, 966, 935, 936, 968, 935, 968, 967, 936, 937, 969, 936, 969, 968, 937, 938, 970, 937, 970, 969, 938, 939, 971, 938, 971, 970, 939, 940, 972, 939, 972, 971, 940, 941, 973, 940, 973, 972, 941, 942, 974, 941, 974, 973, 942, 943, 975, 942, 975, 974, 943, 944, 976, 943, 976, 975, 944, 945, 977, 944, 977, 976, 945, 946, 978, 945, 978, 977, 946, 947, 979, 946, 979, 978, 947, 948, 980, 947, 980, 979, 948, 949, 981, 948, 981, 980, 949, 950, 982, 949, 982, 981, 950, 951, 983, 950, 983, 982, 951, 952, 984, 951, 984, 983, 952, 953, 985, 952, 985, 984, 953, 954, 986, 953, 986, 985, 954, 955, 987, 954, 987, 986, 955, 956, 988, 955, 988, 987, 956, 957, 989, 956, 989, 988, 957, 958, 990, 957, 990, 989, 958, 959, 991, 958, 991, 990, 960, 961, 993, 960, 993, 992, 961, 962, 994, 961, 994, 993, 962, 963, 995, 962, 995, 994, 963, 964, 996, 963, 996, 995, 964, 965, 997, 964, 997, 996, 965, 966, 998, 965, 998, 997, 966, 967, 999, 966, 999, 998, 967, 968, 1000, 967, 1000, 999, 968, 969, 1001, 968, 1001, 1000, 969, 970, 1002, 969, 1002, 1001, 970, 971, 1003, 970, 1003, 1002, 971, 972, 1004, 971, 1004, 1003, 972, 973, 1005, 972, 1005, 1004, 973, 974, 1006, 973, 1006, 1005, 974, 975, 1007, 974, 1007, 1006, 975, 976, 1008, 975, 1008, 1007, 976, 977, 1009, 976, 1009, 1008, 977, 978, 1010, 977, 1010, 1009, 978, 979, 1011, 978, 1011, 1010, 979, 980, 1012, 979, 1012, 1011, 980, 981, 1013, 980, 1013, 1012, 981, 982, 1014, 981, 1014, 1013, 982, 983, 1015, 982, 1015, 1014, 983, 984, 1016, 983, 1016, 1015, 984, 985, 1017, 984, 1017, 1016, 985, 986, 1018, 985, 1018, 1017, 986, 987, 1019, 986, 1019, 1018, 987, 988, 1020, 987, 1020, 1019, 988, 989, 1021, 988, 1021, 1020, 989, 990, 1022, 989, 1022, 1021, 990, 991, 1023, 990, 1023, 1022] color3f[] primvars:displayColor = [(0.784314, 0.64705884, 0.1)] point3f[] points = [(0, 0, 20), (20, 0, 20), (40, 0, 20), (60, 0, 20), (80, 0, 20), (100, 0, 20), (120, 0, 20), (140, 0, 20), (160, 0, 20), (180, 0, 20), (200, 0, 20), (220, 0, 20), (240, 0, 20), (260, 0, 20), (280, 0, 20), (300, 0, 20), (320, 0, 20), (340, 0, 20), (360, 0, 20), (380, 0, 20), (400, 0, 20), (420, 0, 20), (440, 0, 20), (460, 0, 20), (480, 0, 20), (500, 0, 20), (520, 0, 20), (540, 0, 20), (560, 0, 20), (580, 0, 20), (600, 0, 20), (620, 0, 20), (0, 20, 20), (20, 20, 20), (40, 20, 20), (60, 20, 20), (80, 20, 20), (100, 20, 20), (120, 20, 20), (140, 20, 20), (160, 20, 20), (180, 20, 20), (200, 20, 20), (220, 20, 20), (240, 20, 20), (260, 20, 20), (280, 20, 20), (300, 20, 20), (320, 20, 20), (340, 20, 20), (360, 20, 20), (380, 20, 20), (400, 20, 20), (420, 20, 20), (440, 20, 20), (460, 20, 20), (480, 20, 20), (500, 20, 20), (520, 20, 20), (540, 20, 20), (560, 20, 20), (580, 20, 20), (600, 20, 20), (620, 20, 20), (0, 40, 20), (20, 40, 20), (40, 40, 20), (60, 40, 20), (80, 40, 20), (100, 40, 20), (120, 40, 20), (140, 40, 20), (160, 40, 20), (180, 40, 20), (200, 40, 20), (220, 40, 20), (240, 40, 20), (260, 40, 20), (280, 40, 20), (300, 40, 20), (320, 40, 20), (340, 40, 20), (360, 40, 20), (380, 40, 20), (400, 40, 20), (420, 40, 20), (440, 40, 20), (460, 40, 20), (480, 40, 20), (500, 40, 20), (520, 40, 20), (540, 40, 20), (560, 40, 20), (580, 40, 20), (600, 40, 20), (620, 40, 20), (0, 60, 20), (20, 60, 20), (40, 60, 20), (60, 60, 20), (80, 60, 20), (100, 60, 20), (120, 60, 20), (140, 60, 20), (160, 60, 20), (180, 60, 20), (200, 60, 20), (220, 60, 20), (240, 60, 20), (260, 60, 20), (280, 60, 20), (300, 60, 20), (320, 60, 20), (340, 60, 20), (360, 60, 20), (380, 60, 20), (400, 60, 20), (420, 60, 20), (440, 60, 20), (460, 60, 20), (480, 60, 20), (500, 60, 20), (520, 60, 20), (540, 60, 20), (560, 60, 20), (580, 60, 20), (600, 60, 20), (620, 60, 20), (0, 80, 20), (20, 80, 20), (40, 80, 20), (60, 80, 20), (80, 80, 20), (100, 80, 20), (120, 80, 20), (140, 80, 20), (160, 80, 20), (180, 80, 20), (200, 80, 20), (220, 80, 20), (240, 80, 20), (260, 80, 20), (280, 80, 20), (300, 80, 20), (320, 80, 20), (340, 80, 20), (360, 80, 20), (380, 80, 20), (400, 80, 20), (420, 80, 20), (440, 80, 20), (460, 80, 20), (480, 80, 20), (500, 80, 20), (520, 80, 20), (540, 80, 20), (560, 80, 20), (580, 80, 20), (600, 80, 20), (620, 80, 20), (0, 100, 20), (20, 100, 20), (40, 100, 20), (60, 100, 20), (80, 100, 20), (100, 100, 20), (120, 100, 20), (140, 100, 20), (160, 100, 20), (180, 100, 20), (200, 100, 20), (220, 100, 20), (240, 100, 20), (260, 100, 20), (280, 100, 20), (300, 100, 20), (320, 100, 20), (340, 100, 20), (360, 100, 20), (380, 100, 20), (400, 100, 20), (420, 100, 20), (440, 100, 20), (460, 100, 20), (480, 100, 20), (500, 100, 20), (520, 100, 20), (540, 100, 20), (560, 100, 20), (580, 100, 20), (600, 100, 20), (620, 100, 20), (0, 120, 20), (20, 120, 20), (40, 120, 20), (60, 120, 20), (80, 120, 20), (100, 120, 20), (120, 120, 20), (140, 120, 20), (160, 120, 20), (180, 120, 20), (200, 120, 20), (220, 120, 20), (240, 120, 20), (260, 120, 20), (280, 120, 20), (300, 120, 20), (320, 120, 20), (340, 120, 20), (360, 120, 20), (380, 120, 20), (400, 120, 20), (420, 120, 20), (440, 120, 20), (460, 120, 20), (480, 120, 20), (500, 120, 20), (520, 120, 20), (540, 120, 20), (560, 120, 20), (580, 120, 20), (600, 120, 20), (620, 120, 20), (0, 140, 20), (20, 140, 20), (40, 140, 20), (60, 140, 20), (80, 140, 20), (100, 140, 20), (120, 140, 20), (140, 140, 20), (160, 140, 20), (180, 140, 20), (200, 140, 20), (220, 140, 20), (240, 140, 20), (260, 140, 20), (280, 140, 20), (300, 140, 20), (320, 140, 20), (340, 140, 20), (360, 140, 20), (380, 140, 20), (400, 140, 20), (420, 140, 20), (440, 140, 20), (460, 140, 20), (480, 140, 20), (500, 140, 20), (520, 140, 20), (540, 140, 20), (560, 140, 20), (580, 140, 20), (600, 140, 20), (620, 140, 20), (0, 160, 20), (20, 160, 20), (40, 160, 20), (60, 160, 20), (80, 160, 20), (100, 160, 20), (120, 160, 20), (140, 160, 20), (160, 160, 20), (180, 160, 20), (200, 160, 20), (220, 160, 20), (240, 160, 20), (260, 160, 20), (280, 160, 20), (300, 160, 20), (320, 160, 20), (340, 160, 20), (360, 160, 20), (380, 160, 20), (400, 160, 20), (420, 160, 20), (440, 160, 20), (460, 160, 20), (480, 160, 20), (500, 160, 20), (520, 160, 20), (540, 160, 20), (560, 160, 20), (580, 160, 20), (600, 160, 20), (620, 160, 20), (0, 180, 20), (20, 180, 20), (40, 180, 20), (60, 180, 20), (80, 180, 20), (100, 180, 20), (120, 180, 20), (140, 180, 20), (160, 180, 20), (180, 180, 20), (200, 180, 20), (220, 180, 20), (240, 180, 20), (260, 180, 20), (280, 180, 20), (300, 180, 20), (320, 180, 20), (340, 180, 20), (360, 180, 20), (380, 180, 20), (400, 180, 20), (420, 180, 20), (440, 180, 20), (460, 180, 20), (480, 180, 20), (500, 180, 20), (520, 180, 20), (540, 180, 20), (560, 180, 20), (580, 180, 20), (600, 180, 20), (620, 180, 20), (0, 200, 20), (20, 200, 20), (40, 200, 20), (60, 200, 20), (80, 200, 20), (100, 200, 20), (120, 200, 20), (140, 200, 20), (160, 200, 20), (180, 200, 20), (200, 200, 20), (220, 200, 20), (240, 200, 20), (260, 200, 20), (280, 200, 20), (300, 200, 20), (320, 200, 20), (340, 200, 20), (360, 200, 20), (380, 200, 20), (400, 200, 20), (420, 200, 20), (440, 200, 20), (460, 200, 20), (480, 200, 20), (500, 200, 20), (520, 200, 20), (540, 200, 20), (560, 200, 20), (580, 200, 20), (600, 200, 20), (620, 200, 20), (0, 220, 20), (20, 220, 20), (40, 220, 20), (60, 220, 20), (80, 220, 20), (100, 220, 20), (120, 220, 20), (140, 220, 20), (160, 220, 20), (180, 220, 20), (200, 220, 20), (220, 220, 20), (240, 220, 20), (260, 220, 20), (280, 220, 20), (300, 220, 20), (320, 220, 20), (340, 220, 20), (360, 220, 20), (380, 220, 20), (400, 220, 20), (420, 220, 20), (440, 220, 20), (460, 220, 20), (480, 220, 20), (500, 220, 20), (520, 220, 20), (540, 220, 20), (560, 220, 20), (580, 220, 20), (600, 220, 20), (620, 220, 20), (0, 240, 20), (20, 240, 20), (40, 240, 20), (60, 240, 20), (80, 240, 20), (100, 240, 20), (120, 240, 20), (140, 240, 20), (160, 240, 20), (180, 240, 20), (200, 240, 20), (220, 240, 20), (240, 240, 20), (260, 240, 20), (280, 240, 20), (300, 240, 20), (320, 240, 20), (340, 240, 20), (360, 240, 20), (380, 240, 20), (400, 240, 20), (420, 240, 20), (440, 240, 20), (460, 240, 20), (480, 240, 20), (500, 240, 20), (520, 240, 20), (540, 240, 20), (560, 240, 20), (580, 240, 20), (600, 240, 20), (620, 240, 20), (0, 260, 20), (20, 260, 20), (40, 260, 20), (60, 260, 20), (80, 260, 20), (100, 260, 20), (120, 260, 20), (140, 260, 20), (160, 260, 20), (180, 260, 20), (200, 260, 20), (220, 260, 20), (240, 260, 20), (260, 260, 20), (280, 260, 20), (300, 260, 20), (320, 260, 20), (340, 260, 20), (360, 260, 20), (380, 260, 20), (400, 260, 20), (420, 260, 20), (440, 260, 20), (460, 260, 20), (480, 260, 20), (500, 260, 20), (520, 260, 20), (540, 260, 20), (560, 260, 20), (580, 260, 20), (600, 260, 20), (620, 260, 20), (0, 280, 20), (20, 280, 20), (40, 280, 20), (60, 280, 20), (80, 280, 20), (100, 280, 20), (120, 280, 20), (140, 280, 20), (160, 280, 20), (180, 280, 20), (200, 280, 20), (220, 280, 20), (240, 280, 20), (260, 280, 20), (280, 280, 20), (300, 280, 20), (320, 280, 20), (340, 280, 20), (360, 280, 20), (380, 280, 20), (400, 280, 20), (420, 280, 20), (440, 280, 20), (460, 280, 20), (480, 280, 20), (500, 280, 20), (520, 280, 20), (540, 280, 20), (560, 280, 20), (580, 280, 20), (600, 280, 20), (620, 280, 20), (0, 300, 20), (20, 300, 20), (40, 300, 20), (60, 300, 20), (80, 300, 20), (100, 300, 20), (120, 300, 20), (140, 300, 20), (160, 300, 20), (180, 300, 20), (200, 300, 20), (220, 300, 20), (240, 300, 20), (260, 300, 20), (280, 300, 20), (300, 300, 20), (320, 300, 20), (340, 300, 20), (360, 300, 20), (380, 300, 20), (400, 300, 20), (420, 300, 20), (440, 300, 20), (460, 300, 20), (480, 300, 20), (500, 300, 20), (520, 300, 20), (540, 300, 20), (560, 300, 20), (580, 300, 20), (600, 300, 20), (620, 300, 20), (0, 320, 20), (20, 320, 20), (40, 320, 20), (60, 320, 20), (80, 320, 20), (100, 320, 20), (120, 320, 20), (140, 320, 20), (160, 320, 20), (180, 320, 20), (200, 320, 20), (220, 320, 20), (240, 320, 20), (260, 320, 20), (280, 320, 20), (300, 320, 20), (320, 320, 20), (340, 320, 20), (360, 320, 20), (380, 320, 20), (400, 320, 20), (420, 320, 20), (440, 320, 20), (460, 320, 20), (480, 320, 20), (500, 320, 20), (520, 320, 20), (540, 320, 20), (560, 320, 20), (580, 320, 20), (600, 320, 20), (620, 320, 20), (0, 340, 20), (20, 340, 20), (40, 340, 20), (60, 340, 20), (80, 340, 20), (100, 340, 20), (120, 340, 20), (140, 340, 20), (160, 340, 20), (180, 340, 20), (200, 340, 20), (220, 340, 20), (240, 340, 20), (260, 340, 20), (280, 340, 20), (300, 340, 20), (320, 340, 20), (340, 340, 20), (360, 340, 20), (380, 340, 20), (400, 340, 20), (420, 340, 20), (440, 340, 20), (460, 340, 20), (480, 340, 20), (500, 340, 20), (520, 340, 20), (540, 340, 20), (560, 340, 20), (580, 340, 20), (600, 340, 20), (620, 340, 20), (0, 360, 20), (20, 360, 20), (40, 360, 20), (60, 360, 20), (80, 360, 20), (100, 360, 20), (120, 360, 20), (140, 360, 20), (160, 360, 20), (180, 360, 20), (200, 360, 20), (220, 360, 20), (240, 360, 20), (260, 360, 20), (280, 360, 20), (300, 360, 20), (320, 360, 20), (340, 360, 20), (360, 360, 20), (380, 360, 20), (400, 360, 20), (420, 360, 20), (440, 360, 20), (460, 360, 20), (480, 360, 20), (500, 360, 20), (520, 360, 20), (540, 360, 20), (560, 360, 20), (580, 360, 20), (600, 360, 20), (620, 360, 20), (0, 380, 20), (20, 380, 20), (40, 380, 20), (60, 380, 20), (80, 380, 20), (100, 380, 20), (120, 380, 20), (140, 380, 20), (160, 380, 20), (180, 380, 20), (200, 380, 20), (220, 380, 20), (240, 380, 20), (260, 380, 20), (280, 380, 20), (300, 380, 20), (320, 380, 20), (340, 380, 20), (360, 380, 20), (380, 380, 20), (400, 380, 20), (420, 380, 20), (440, 380, 20), (460, 380, 20), (480, 380, 20), (500, 380, 20), (520, 380, 20), (540, 380, 20), (560, 380, 20), (580, 380, 20), (600, 380, 20), (620, 380, 20), (0, 400, 20), (20, 400, 20), (40, 400, 20), (60, 400, 20), (80, 400, 20), (100, 400, 20), (120, 400, 20), (140, 400, 20), (160, 400, 20), (180, 400, 20), (200, 400, 20), (220, 400, 20), (240, 400, 20), (260, 400, 20), (280, 400, 20), (300, 400, 20), (320, 400, 20), (340, 400, 20), (360, 400, 20), (380, 400, 20), (400, 400, 20), (420, 400, 20), (440, 400, 20), (460, 400, 20), (480, 400, 20), (500, 400, 20), (520, 400, 20), (540, 400, 20), (560, 400, 20), (580, 400, 20), (600, 400, 20), (620, 400, 20), (0, 420, 20), (20, 420, 20), (40, 420, 20), (60, 420, 20), (80, 420, 20), (100, 420, 20), (120, 420, 20), (140, 420, 20), (160, 420, 20), (180, 420, 20), (200, 420, 20), (220, 420, 20), (240, 420, 20), (260, 420, 20), (280, 420, 20), (300, 420, 20), (320, 420, 20), (340, 420, 20), (360, 420, 20), (380, 420, 20), (400, 420, 20), (420, 420, 20), (440, 420, 20), (460, 420, 20), (480, 420, 20), (500, 420, 20), (520, 420, 20), (540, 420, 20), (560, 420, 20), (580, 420, 20), (600, 420, 20), (620, 420, 20), (0, 440, 20), (20, 440, 20), (40, 440, 20), (60, 440, 20), (80, 440, 20), (100, 440, 20), (120, 440, 20), (140, 440, 20), (160, 440, 20), (180, 440, 20), (200, 440, 20), (220, 440, 20), (240, 440, 20), (260, 440, 20), (280, 440, 20), (300, 440, 20), (320, 440, 20), (340, 440, 20), (360, 440, 20), (380, 440, 20), (400, 440, 20), (420, 440, 20), (440, 440, 20), (460, 440, 20), (480, 440, 20), (500, 440, 20), (520, 440, 20), (540, 440, 20), (560, 440, 20), (580, 440, 20), (600, 440, 20), (620, 440, 20), (0, 460, 20), (20, 460, 20), (40, 460, 20), (60, 460, 20), (80, 460, 20), (100, 460, 20), (120, 460, 20), (140, 460, 20), (160, 460, 20), (180, 460, 20), (200, 460, 20), (220, 460, 20), (240, 460, 20), (260, 460, 20), (280, 460, 20), (300, 460, 20), (320, 460, 20), (340, 460, 20), (360, 460, 20), (380, 460, 20), (400, 460, 20), (420, 460, 20), (440, 460, 20), (460, 460, 20), (480, 460, 20), (500, 460, 20), (520, 460, 20), (540, 460, 20), (560, 460, 20), (580, 460, 20), (600, 460, 20), (620, 460, 20), (0, 480, 20), (20, 480, 20), (40, 480, 20), (60, 480, 20), (80, 480, 20), (100, 480, 20), (120, 480, 20), (140, 480, 20), (160, 480, 20), (180, 480, 20), (200, 480, 20), (220, 480, 20), (240, 480, 20), (260, 480, 20), (280, 480, 20), (300, 480, 20), (320, 480, 20), (340, 480, 20), (360, 480, 20), (380, 480, 20), (400, 480, 20), (420, 480, 20), (440, 480, 20), (460, 480, 20), (480, 480, 20), (500, 480, 20), (520, 480, 20), (540, 480, 20), (560, 480, 20), (580, 480, 20), (600, 480, 20), (620, 480, 20), (0, 500, 20), (20, 500, 20), (40, 500, 20), (60, 500, 20), (80, 500, 20), (100, 500, 20), (120, 500, 20), (140, 500, 20), (160, 500, 20), (180, 500, 20), (200, 500, 20), (220, 500, 20), (240, 500, 20), (260, 500, 20), (280, 500, 20), (300, 500, 20), (320, 500, 20), (340, 500, 20), (360, 500, 20), (380, 500, 20), (400, 500, 20), (420, 500, 20), (440, 500, 20), (460, 500, 20), (480, 500, 20), (500, 500, 20), (520, 500, 20), (540, 500, 20), (560, 500, 20), (580, 500, 20), (600, 500, 20), (620, 500, 20), (0, 520, 20), (20, 520, 20), (40, 520, 20), (60, 520, 20), (80, 520, 20), (100, 520, 20), (120, 520, 20), (140, 520, 20), (160, 520, 20), (180, 520, 20), (200, 520, 20), (220, 520, 20), (240, 520, 20), (260, 520, 20), (280, 520, 20), (300, 520, 20), (320, 520, 20), (340, 520, 20), (360, 520, 20), (380, 520, 20), (400, 520, 20), (420, 520, 20), (440, 520, 20), (460, 520, 20), (480, 520, 20), (500, 520, 20), (520, 520, 20), (540, 520, 20), (560, 520, 20), (580, 520, 20), (600, 520, 20), (620, 520, 20), (0, 540, 20), (20, 540, 20), (40, 540, 20), (60, 540, 20), (80, 540, 20), (100, 540, 20), (120, 540, 20), (140, 540, 20), (160, 540, 20), (180, 540, 20), (200, 540, 20), (220, 540, 20), (240, 540, 20), (260, 540, 20), (280, 540, 20), (300, 540, 20), (320, 540, 20), (340, 540, 20), (360, 540, 20), (380, 540, 20), (400, 540, 20), (420, 540, 20), (440, 540, 20), (460, 540, 20), (480, 540, 20), (500, 540, 20), (520, 540, 20), (540, 540, 20), (560, 540, 20), (580, 540, 20), (600, 540, 20), (620, 540, 20), (0, 560, 20), (20, 560, 20), (40, 560, 20), (60, 560, 20), (80, 560, 20), (100, 560, 20), (120, 560, 20), (140, 560, 20), (160, 560, 20), (180, 560, 20), (200, 560, 20), (220, 560, 20), (240, 560, 20), (260, 560, 20), (280, 560, 20), (300, 560, 20), (320, 560, 20), (340, 560, 20), (360, 560, 20), (380, 560, 20), (400, 560, 20), (420, 560, 20), (440, 560, 20), (460, 560, 20), (480, 560, 20), (500, 560, 20), (520, 560, 20), (540, 560, 20), (560, 560, 20), (580, 560, 20), (600, 560, 20), (620, 560, 20), (0, 580, 20), (20, 580, 20), (40, 580, 20), (60, 580, 20), (80, 580, 20), (100, 580, 20), (120, 580, 20), (140, 580, 20), (160, 580, 20), (180, 580, 20), (200, 580, 20), (220, 580, 20), (240, 580, 20), (260, 580, 20), (280, 580, 20), (300, 580, 20), (320, 580, 20), (340, 580, 20), (360, 580, 20), (380, 580, 20), (400, 580, 20), (420, 580, 20), (440, 580, 20), (460, 580, 20), (480, 580, 20), (500, 580, 20), (520, 580, 20), (540, 580, 20), (560, 580, 20), (580, 580, 20), (600, 580, 20), (620, 580, 20), (0, 600, 20), (20, 600, 20), (40, 600, 20), (60, 600, 20), (80, 600, 20), (100, 600, 20), (120, 600, 20), (140, 600, 20), (160, 600, 20), (180, 600, 20), (200, 600, 20), (220, 600, 20), (240, 600, 20), (260, 600, 20), (280, 600, 20), (300, 600, 20), (320, 600, 20), (340, 600, 20), (360, 600, 20), (380, 600, 20), (400, 600, 20), (420, 600, 20), (440, 600, 20), (460, 600, 20), (480, 600, 20), (500, 600, 20), (520, 600, 20), (540, 600, 20), (560, 600, 20), (580, 600, 20), (600, 600, 20), (620, 600, 20), (0, 620, 20), (20, 620, 20), (40, 620, 20), (60, 620, 20), (80, 620, 20), (100, 620, 20), (120, 620, 20), (140, 620, 20), (160, 620, 20), (180, 620, 20), (200, 620, 20), (220, 620, 20), (240, 620, 20), (260, 620, 20), (280, 620, 20), (300, 620, 20), (320, 620, 20), (340, 620, 20), (360, 620, 20), (380, 620, 20), (400, 620, 20), (420, 620, 20), (440, 620, 20), (460, 620, 20), (480, 620, 20), (500, 620, 20), (520, 620, 20), (540, 620, 20), (560, 620, 20), (580, 620, 20), (600, 620, 20), (620, 620, 20)] } }
omniverse-code/kit/exts/omni.graph/omni/graph/core/data/ExampleIK.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (1000.0000000000002, -2.220446049250313e-13, 0) double radius = 500 double3 target = (0, 0, 0) } dictionary Perspective = { double3 position = (-2.616098181034925, 20.71866516641422, 9.543708888748546) double radius = 22.350519885594053 double3 target = (-0.6915911212194166, 0.21808485420938695, 0.8507106375181337) } dictionary Right = { double3 position = (0, -1000, -2.220446049250313e-13) double radius = 500 double3 target = (0, 0, 0) } dictionary Top = { double3 position = (0, 0, 1000) double radius = 500 double3 target = (0, 0, 0) } string boundCamera = "/OmniverseKit_Persp" } dictionary renderSettings = { bool "rtx:grid:enabled" = 1 token "rtx:grid:plane" = "XY" } } defaultPrim = "Stage" metersPerUnit = 0.009999999776482582 timeCodesPerSecond = 24 upAxis = "Z" ) def Xform "Stage" { def Mesh "staticPlaneActor" { uniform bool doubleSided = 1 int[] faceVertexCounts = [4] int[] faceVertexIndices = [0, 1, 2, 3] normal3f[] normals = [(0, 0, 1), (0, 0, 1), (0, 0, 1), (0, 0, 1)] point3f[] points = [(-2500, -2500, 0), (2500, -2500, 0), (2500, 2500, 0), (-2500, 2500, 0)] color3f[] primvars:displayColor = [(0.5, 0.5, 0.5)] quatf xformOp:orient = (1, 0, 0, 0) float3 xformOp:scale = (1, 1, 1) float3 xformOp:translate = (0, 0, 2) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:orient", "xformOp:scale"] def Plane "collisionPlane" ( prepend apiSchemas = ["CollisionAPI"] ) { uniform token axis = "Z" uniform token purpose = "guide" } } def DistantLight "DistantLight" ( prepend apiSchemas = ["ShapingAPI"] kind = "model" ) { float angle = 1 float intensity = 800 float shaping:cone:angle = 180 float shaping:cone:softness float shaping:focus color3f shaping:focusTint asset shaping:ies:file float3 xformOp:rotateZYX = (0, 45, 0) float3 xformOp:scale = (1.0000004, 1, 1.0000004) float3 xformOp:translate = (0, 0, -1.186192) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateZYX", "xformOp:scale"] } } def Cube "Hip" { color3f[] primvars:displayColor = [(1, 0, 0)] double size = 1 float velocity = 0 matrix4d xformOp:transform = ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (0, 0, 6, 1) ) uniform token[] xformOpOrder = ["xformOp:transform"] } def Cube "Knee" { color3f[] primvars:displayColor = [(1, 1, 0)] double size = 1 float velocity = 0 matrix4d xformOp:transform = ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (0, 0, 4, 1) ) uniform token[] xformOpOrder = ["xformOp:transform"] } def Cube "Ankle" { color3f[] primvars:displayColor = [(0, 1, 0)] double size = 1 float velocity = 0 matrix4d xformOp:transform = ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (0, 0, 2, 1) ) uniform token[] xformOpOrder = ["xformOp:transform"] } def Sphere "Goal" { color3f[] primvars:displayColor = [(0, 0.5, 1)] double radius = 0.5 matrix4d xformOp:transform = ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (0, 0, 2, 1) ) uniform token[] xformOpOrder = ["xformOp:transform"] } def OmniGraph "IkGraph" { def OmniGraphNode "read_goal_attribute" { custom bool inputs:forceUSDRead = 0 custom token inputs:name = "xformOp:transform" custom rel inputs:prim prepend rel inputs:prim = </Goal> custom token inputs:primPath = "" custom timecode inputs:usdTimecode = -1 custom bool inputs:usePath = 0 token node:type = "omni.graph.nodes.ReadPrimAttribute" int node:typeVersion = 1 custom token outputs:value custom uint64 state:target = 0 custom timecode state:usdTimecode = -1 } def OmniGraphNode "read_knee_attribute" { custom bool inputs:forceUSDRead = 0 custom token inputs:name = "xformOp:transform" custom rel inputs:prim prepend rel inputs:prim = </Knee> custom token inputs:primPath = "" custom timecode inputs:usdTimecode = -1 custom bool inputs:usePath = 0 token node:type = "omni.graph.nodes.ReadPrimAttribute" int node:typeVersion = 1 custom token outputs:value custom uint64 state:target = 0 custom timecode state:usdTimecode = -1 } def OmniGraphNode "read_ankle_attribute" { custom bool inputs:forceUSDRead = 0 custom token inputs:name = "xformOp:transform" custom rel inputs:prim prepend rel inputs:prim = </Ankle> custom token inputs:primPath = "" custom timecode inputs:usdTimecode = -1 custom bool inputs:usePath = 0 token node:type = "omni.graph.nodes.ReadPrimAttribute" int node:typeVersion = 1 custom token outputs:value custom uint64 state:target = 0 custom timecode state:usdTimecode = -1 } def OmniGraphNode "read_hip_attribute" { custom bool inputs:forceUSDRead = 0 custom token inputs:name = "xformOp:transform" custom rel inputs:prim prepend rel inputs:prim = </Hip> custom token inputs:primPath = "" custom timecode inputs:usdTimecode = -1 custom bool inputs:usePath = 0 token node:type = "omni.graph.nodes.ReadPrimAttribute" int node:typeVersion = 1 custom token outputs:value custom uint64 state:target = 0 custom timecode state:usdTimecode = -1 } def OmniGraphNode "write_knee_attribute" ( prepend apiSchemas = ["NodeGraphNodeAPI"] ) { custom uint inputs:execIn custom token inputs:name = "xformOp:transform" custom rel inputs:prim prepend rel inputs:prim = </Knee> custom token inputs:primPath custom bool inputs:usdWriteBack = 1 custom bool inputs:usePath = 0 custom token inputs:value prepend token inputs:value.connect = </IkGraph/SimpleIK.state:knee> token node:type = "omni.graph.nodes.WritePrimAttribute" int node:typeVersion = 1 custom uint outputs:execOut ( customData = { bool isExecution = 1 } ) } def OmniGraphNode "write_hip_attribute" ( prepend apiSchemas = ["NodeGraphNodeAPI"] ) { custom uint inputs:execIn custom token inputs:name = "xformOp:transform" custom rel inputs:prim prepend rel inputs:prim = </Hip> custom token inputs:primPath custom bool inputs:usdWriteBack = 1 custom bool inputs:usePath = 0 custom token inputs:value prepend token inputs:value.connect = </IkGraph/SimpleIK.state:hip> token node:type = "omni.graph.nodes.WritePrimAttribute" int node:typeVersion = 1 custom uint outputs:execOut ( customData = { bool isExecution = 1 } ) } def OmniGraphNode "write_ankle_attribute" ( prepend apiSchemas = ["NodeGraphNodeAPI"] ) { custom uint inputs:execIn custom token inputs:name = "xformOp:transform" custom rel inputs:prim prepend rel inputs:prim = </Ankle> custom token inputs:primPath custom bool inputs:usdWriteBack = 1 custom bool inputs:usePath = 0 custom token inputs:value prepend token inputs:value.connect = </IkGraph/SimpleIK.state:ankle> token node:type = "omni.graph.nodes.WritePrimAttribute" int node:typeVersion = 1 custom uint outputs:execOut ( customData = { bool isExecution = 1 } ) } def OmniGraphNode "SimpleIK" { custom matrix4d inputs:goal matrix4d inputs:goal.connect = </IkGraph/read_goal_attribute.outputs:value> custom matrix4d state:ankle = ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (0, 0, 2, 1) ) custom matrix4d state:hip = ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (0, 0, 6, 1) ) custom matrix4d state:knee = ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (0, 0, 4, 1) ) custom token node:type = "omni.graph.examples.cpp.SimpleIk" custom int node:typeVersion = 1 } } over "OmniverseKit_Persp" { matrix4d xformOp:transform = ( (-0.9956225844512049, -0.09346480263036312, 2.978566414308606e-15, 0), (0.03635214616824583, -0.38723687099101006, 0.9212633321771123, 0), (-0.08610569551252109, 0.9172305797422827, 0.38893942045766294, 0), (-2.616098181034925, 20.718665166414226, 9.543708888748549, 1) ) } over "OmniverseKit_Front" { matrix4d xformOp:transform = ( (0, 1.0000000000000002, -2.220446049250313e-16, 0), (-2.220446049250313e-16, 0, 1.0000000000000002, 0), (1.0000000000000002, -2.220446049250313e-16, 0, 0), (1000.0000000000002, -2.220446049250313e-13, 0, 1) ) } over "OmniverseKit_Top" { matrix4d xformOp:transform = ( (-2.220446049250313e-16, -1, 0, 0), (1, -2.220446049250313e-16, 0, 0), (0, 0, 1, 0), (0, 0, 1000, 1) ) } over "OmniverseKit_Right" { matrix4d xformOp:transform = ( (1, 0, 0, 0), (0, -2.220446049250313e-16, 1, 0), (0, -1, -2.220446049250313e-16, 0), (0, -1000, -2.220446049250313e-13, 1) ) }
omniverse-code/kit/exts/omni.graph/omni/graph/core/data/ExampleTimeSampledTransform_SplineInterp_UITest.usda
#usda 1.0 ( endTimeCode = 72 metersPerUnit = 0.009999999776482582 ) def Xform "defaultPrim" { # Select prim "cube", Use Menu "Animation/Xform Interpolation“ to generate the interpolation pipeline def Cube "cube" { double size = 0.5 float3 xformOp:translate = (0, 0, 3)( customData = { string interpolationType = "Bezier" } ) float3 xformOp:translate.timeSamples = { 0: (0, 0, 3), 48: (3, 0, 3), } float3 xformOp:rotateZYX = (0, 0, 0)( customData = { string interpolationType = "Bezier" } ) float3 xformOp:rotateZYX.timeSamples = { 0: (0, 0, 0), 48: (0, 90.0, 0), } uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateZYX"] } # Select prim "cube1", Use Menu "Animation/Xform Interpolation" to generate the interpolation pipeline def Cube "cube1" { double size = 0.5 float3 xformOp:translate = (0, 0, 0)( customData = { string interpolationType = "Linear" } ) float3 xformOp:translate.timeSamples = { 0: (0, 0, 0), 48: (3, 0, 0), } float3 xformOp:rotateZYX = (0, 0, 0)( customData = { string interpolationType = "Linear" } ) float3 xformOp:rotateZYX.timeSamples = { 0: (0, 0, 0), 48: (0, 90.0, 0), } uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateZYX"] } }
omniverse-code/kit/exts/omni.graph/omni/graph/core/data/ExampleGridDeformer.usda
#usda 1.0 ( doc = """Generated from Composed Stage of root layer """ ) def Xform "defaultPrim" { def Mesh "inputGrid" { uniform bool doubleSided = 1 int[] faceVertexCounts = [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 1, 33, 0, 33, 32, 1, 2, 34, 1, 34, 33, 2, 3, 35, 2, 35, 34, 3, 4, 36, 3, 36, 35, 4, 5, 37, 4, 37, 36, 5, 6, 38, 5, 38, 37, 6, 7, 39, 6, 39, 38, 7, 8, 40, 7, 40, 39, 8, 9, 41, 8, 41, 40, 9, 10, 42, 9, 42, 41, 10, 11, 43, 10, 43, 42, 11, 12, 44, 11, 44, 43, 12, 13, 45, 12, 45, 44, 13, 14, 46, 13, 46, 45, 14, 15, 47, 14, 47, 46, 15, 16, 48, 15, 48, 47, 16, 17, 49, 16, 49, 48, 17, 18, 50, 17, 50, 49, 18, 19, 51, 18, 51, 50, 19, 20, 52, 19, 52, 51, 20, 21, 53, 20, 53, 52, 21, 22, 54, 21, 54, 53, 22, 23, 55, 22, 55, 54, 23, 24, 56, 23, 56, 55, 24, 25, 57, 24, 57, 56, 25, 26, 58, 25, 58, 57, 26, 27, 59, 26, 59, 58, 27, 28, 60, 27, 60, 59, 28, 29, 61, 28, 61, 60, 29, 30, 62, 29, 62, 61, 30, 31, 63, 30, 63, 62, 32, 33, 65, 32, 65, 64, 33, 34, 66, 33, 66, 65, 34, 35, 67, 34, 67, 66, 35, 36, 68, 35, 68, 67, 36, 37, 69, 36, 69, 68, 37, 38, 70, 37, 70, 69, 38, 39, 71, 38, 71, 70, 39, 40, 72, 39, 72, 71, 40, 41, 73, 40, 73, 72, 41, 42, 74, 41, 74, 73, 42, 43, 75, 42, 75, 74, 43, 44, 76, 43, 76, 75, 44, 45, 77, 44, 77, 76, 45, 46, 78, 45, 78, 77, 46, 47, 79, 46, 79, 78, 47, 48, 80, 47, 80, 79, 48, 49, 81, 48, 81, 80, 49, 50, 82, 49, 82, 81, 50, 51, 83, 50, 83, 82, 51, 52, 84, 51, 84, 83, 52, 53, 85, 52, 85, 84, 53, 54, 86, 53, 86, 85, 54, 55, 87, 54, 87, 86, 55, 56, 88, 55, 88, 87, 56, 57, 89, 56, 89, 88, 57, 58, 90, 57, 90, 89, 58, 59, 91, 58, 91, 90, 59, 60, 92, 59, 92, 91, 60, 61, 93, 60, 93, 92, 61, 62, 94, 61, 94, 93, 62, 63, 95, 62, 95, 94, 64, 65, 97, 64, 97, 96, 65, 66, 98, 65, 98, 97, 66, 67, 99, 66, 99, 98, 67, 68, 100, 67, 100, 99, 68, 69, 101, 68, 101, 100, 69, 70, 102, 69, 102, 101, 70, 71, 103, 70, 103, 102, 71, 72, 104, 71, 104, 103, 72, 73, 105, 72, 105, 104, 73, 74, 106, 73, 106, 105, 74, 75, 107, 74, 107, 106, 75, 76, 108, 75, 108, 107, 76, 77, 109, 76, 109, 108, 77, 78, 110, 77, 110, 109, 78, 79, 111, 78, 111, 110, 79, 80, 112, 79, 112, 111, 80, 81, 113, 80, 113, 112, 81, 82, 114, 81, 114, 113, 82, 83, 115, 82, 115, 114, 83, 84, 116, 83, 116, 115, 84, 85, 117, 84, 117, 116, 85, 86, 118, 85, 118, 117, 86, 87, 119, 86, 119, 118, 87, 88, 120, 87, 120, 119, 88, 89, 121, 88, 121, 120, 89, 90, 122, 89, 122, 121, 90, 91, 123, 90, 123, 122, 91, 92, 124, 91, 124, 123, 92, 93, 125, 92, 125, 124, 93, 94, 126, 93, 126, 125, 94, 95, 127, 94, 127, 126, 96, 97, 129, 96, 129, 128, 97, 98, 130, 97, 130, 129, 98, 99, 131, 98, 131, 130, 99, 100, 132, 99, 132, 131, 100, 101, 133, 100, 133, 132, 101, 102, 134, 101, 134, 133, 102, 103, 135, 102, 135, 134, 103, 104, 136, 103, 136, 135, 104, 105, 137, 104, 137, 136, 105, 106, 138, 105, 138, 137, 106, 107, 139, 106, 139, 138, 107, 108, 140, 107, 140, 139, 108, 109, 141, 108, 141, 140, 109, 110, 142, 109, 142, 141, 110, 111, 143, 110, 143, 142, 111, 112, 144, 111, 144, 143, 112, 113, 145, 112, 145, 144, 113, 114, 146, 113, 146, 145, 114, 115, 147, 114, 147, 146, 115, 116, 148, 115, 148, 147, 116, 117, 149, 116, 149, 148, 117, 118, 150, 117, 150, 149, 118, 119, 151, 118, 151, 150, 119, 120, 152, 119, 152, 151, 120, 121, 153, 120, 153, 152, 121, 122, 154, 121, 154, 153, 122, 123, 155, 122, 155, 154, 123, 124, 156, 123, 156, 155, 124, 125, 157, 124, 157, 156, 125, 126, 158, 125, 158, 157, 126, 127, 159, 126, 159, 158, 128, 129, 161, 128, 161, 160, 129, 130, 162, 129, 162, 161, 130, 131, 163, 130, 163, 162, 131, 132, 164, 131, 164, 163, 132, 133, 165, 132, 165, 164, 133, 134, 166, 133, 166, 165, 134, 135, 167, 134, 167, 166, 135, 136, 168, 135, 168, 167, 136, 137, 169, 136, 169, 168, 137, 138, 170, 137, 170, 169, 138, 139, 171, 138, 171, 170, 139, 140, 172, 139, 172, 171, 140, 141, 173, 140, 173, 172, 141, 142, 174, 141, 174, 173, 142, 143, 175, 142, 175, 174, 143, 144, 176, 143, 176, 175, 144, 145, 177, 144, 177, 176, 145, 146, 178, 145, 178, 177, 146, 147, 179, 146, 179, 178, 147, 148, 180, 147, 180, 179, 148, 149, 181, 148, 181, 180, 149, 150, 182, 149, 182, 181, 150, 151, 183, 150, 183, 182, 151, 152, 184, 151, 184, 183, 152, 153, 185, 152, 185, 184, 153, 154, 186, 153, 186, 185, 154, 155, 187, 154, 187, 186, 155, 156, 188, 155, 188, 187, 156, 157, 189, 156, 189, 188, 157, 158, 190, 157, 190, 189, 158, 159, 191, 158, 191, 190, 160, 161, 193, 160, 193, 192, 161, 162, 194, 161, 194, 193, 162, 163, 195, 162, 195, 194, 163, 164, 196, 163, 196, 195, 164, 165, 197, 164, 197, 196, 165, 166, 198, 165, 198, 197, 166, 167, 199, 166, 199, 198, 167, 168, 200, 167, 200, 199, 168, 169, 201, 168, 201, 200, 169, 170, 202, 169, 202, 201, 170, 171, 203, 170, 203, 202, 171, 172, 204, 171, 204, 203, 172, 173, 205, 172, 205, 204, 173, 174, 206, 173, 206, 205, 174, 175, 207, 174, 207, 206, 175, 176, 208, 175, 208, 207, 176, 177, 209, 176, 209, 208, 177, 178, 210, 177, 210, 209, 178, 179, 211, 178, 211, 210, 179, 180, 212, 179, 212, 211, 180, 181, 213, 180, 213, 212, 181, 182, 214, 181, 214, 213, 182, 183, 215, 182, 215, 214, 183, 184, 216, 183, 216, 215, 184, 185, 217, 184, 217, 216, 185, 186, 218, 185, 218, 217, 186, 187, 219, 186, 219, 218, 187, 188, 220, 187, 220, 219, 188, 189, 221, 188, 221, 220, 189, 190, 222, 189, 222, 221, 190, 191, 223, 190, 223, 222, 192, 193, 225, 192, 225, 224, 193, 194, 226, 193, 226, 225, 194, 195, 227, 194, 227, 226, 195, 196, 228, 195, 228, 227, 196, 197, 229, 196, 229, 228, 197, 198, 230, 197, 230, 229, 198, 199, 231, 198, 231, 230, 199, 200, 232, 199, 232, 231, 200, 201, 233, 200, 233, 232, 201, 202, 234, 201, 234, 233, 202, 203, 235, 202, 235, 234, 203, 204, 236, 203, 236, 235, 204, 205, 237, 204, 237, 236, 205, 206, 238, 205, 238, 237, 206, 207, 239, 206, 239, 238, 207, 208, 240, 207, 240, 239, 208, 209, 241, 208, 241, 240, 209, 210, 242, 209, 242, 241, 210, 211, 243, 210, 243, 242, 211, 212, 244, 211, 244, 243, 212, 213, 245, 212, 245, 244, 213, 214, 246, 213, 246, 245, 214, 215, 247, 214, 247, 246, 215, 216, 248, 215, 248, 247, 216, 217, 249, 216, 249, 248, 217, 218, 250, 217, 250, 249, 218, 219, 251, 218, 251, 250, 219, 220, 252, 219, 252, 251, 220, 221, 253, 220, 253, 252, 221, 222, 254, 221, 254, 253, 222, 223, 255, 222, 255, 254, 224, 225, 257, 224, 257, 256, 225, 226, 258, 225, 258, 257, 226, 227, 259, 226, 259, 258, 227, 228, 260, 227, 260, 259, 228, 229, 261, 228, 261, 260, 229, 230, 262, 229, 262, 261, 230, 231, 263, 230, 263, 262, 231, 232, 264, 231, 264, 263, 232, 233, 265, 232, 265, 264, 233, 234, 266, 233, 266, 265, 234, 235, 267, 234, 267, 266, 235, 236, 268, 235, 268, 267, 236, 237, 269, 236, 269, 268, 237, 238, 270, 237, 270, 269, 238, 239, 271, 238, 271, 270, 239, 240, 272, 239, 272, 271, 240, 241, 273, 240, 273, 272, 241, 242, 274, 241, 274, 273, 242, 243, 275, 242, 275, 274, 243, 244, 276, 243, 276, 275, 244, 245, 277, 244, 277, 276, 245, 246, 278, 245, 278, 277, 246, 247, 279, 246, 279, 278, 247, 248, 280, 247, 280, 279, 248, 249, 281, 248, 281, 280, 249, 250, 282, 249, 282, 281, 250, 251, 283, 250, 283, 282, 251, 252, 284, 251, 284, 283, 252, 253, 285, 252, 285, 284, 253, 254, 286, 253, 286, 285, 254, 255, 287, 254, 287, 286, 256, 257, 289, 256, 289, 288, 257, 258, 290, 257, 290, 289, 258, 259, 291, 258, 291, 290, 259, 260, 292, 259, 292, 291, 260, 261, 293, 260, 293, 292, 261, 262, 294, 261, 294, 293, 262, 263, 295, 262, 295, 294, 263, 264, 296, 263, 296, 295, 264, 265, 297, 264, 297, 296, 265, 266, 298, 265, 298, 297, 266, 267, 299, 266, 299, 298, 267, 268, 300, 267, 300, 299, 268, 269, 301, 268, 301, 300, 269, 270, 302, 269, 302, 301, 270, 271, 303, 270, 303, 302, 271, 272, 304, 271, 304, 303, 272, 273, 305, 272, 305, 304, 273, 274, 306, 273, 306, 305, 274, 275, 307, 274, 307, 306, 275, 276, 308, 275, 308, 307, 276, 277, 309, 276, 309, 308, 277, 278, 310, 277, 310, 309, 278, 279, 311, 278, 311, 310, 279, 280, 312, 279, 312, 311, 280, 281, 313, 280, 313, 312, 281, 282, 314, 281, 314, 313, 282, 283, 315, 282, 315, 314, 283, 284, 316, 283, 316, 315, 284, 285, 317, 284, 317, 316, 285, 286, 318, 285, 318, 317, 286, 287, 319, 286, 319, 318, 288, 289, 321, 288, 321, 320, 289, 290, 322, 289, 322, 321, 290, 291, 323, 290, 323, 322, 291, 292, 324, 291, 324, 323, 292, 293, 325, 292, 325, 324, 293, 294, 326, 293, 326, 325, 294, 295, 327, 294, 327, 326, 295, 296, 328, 295, 328, 327, 296, 297, 329, 296, 329, 328, 297, 298, 330, 297, 330, 329, 298, 299, 331, 298, 331, 330, 299, 300, 332, 299, 332, 331, 300, 301, 333, 300, 333, 332, 301, 302, 334, 301, 334, 333, 302, 303, 335, 302, 335, 334, 303, 304, 336, 303, 336, 335, 304, 305, 337, 304, 337, 336, 305, 306, 338, 305, 338, 337, 306, 307, 339, 306, 339, 338, 307, 308, 340, 307, 340, 339, 308, 309, 341, 308, 341, 340, 309, 310, 342, 309, 342, 341, 310, 311, 343, 310, 343, 342, 311, 312, 344, 311, 344, 343, 312, 313, 345, 312, 345, 344, 313, 314, 346, 313, 346, 345, 314, 315, 347, 314, 347, 346, 315, 316, 348, 315, 348, 347, 316, 317, 349, 316, 349, 348, 317, 318, 350, 317, 350, 349, 318, 319, 351, 318, 351, 350, 320, 321, 353, 320, 353, 352, 321, 322, 354, 321, 354, 353, 322, 323, 355, 322, 355, 354, 323, 324, 356, 323, 356, 355, 324, 325, 357, 324, 357, 356, 325, 326, 358, 325, 358, 357, 326, 327, 359, 326, 359, 358, 327, 328, 360, 327, 360, 359, 328, 329, 361, 328, 361, 360, 329, 330, 362, 329, 362, 361, 330, 331, 363, 330, 363, 362, 331, 332, 364, 331, 364, 363, 332, 333, 365, 332, 365, 364, 333, 334, 366, 333, 366, 365, 334, 335, 367, 334, 367, 366, 335, 336, 368, 335, 368, 367, 336, 337, 369, 336, 369, 368, 337, 338, 370, 337, 370, 369, 338, 339, 371, 338, 371, 370, 339, 340, 372, 339, 372, 371, 340, 341, 373, 340, 373, 372, 341, 342, 374, 341, 374, 373, 342, 343, 375, 342, 375, 374, 343, 344, 376, 343, 376, 375, 344, 345, 377, 344, 377, 376, 345, 346, 378, 345, 378, 377, 346, 347, 379, 346, 379, 378, 347, 348, 380, 347, 380, 379, 348, 349, 381, 348, 381, 380, 349, 350, 382, 349, 382, 381, 350, 351, 383, 350, 383, 382, 352, 353, 385, 352, 385, 384, 353, 354, 386, 353, 386, 385, 354, 355, 387, 354, 387, 386, 355, 356, 388, 355, 388, 387, 356, 357, 389, 356, 389, 388, 357, 358, 390, 357, 390, 389, 358, 359, 391, 358, 391, 390, 359, 360, 392, 359, 392, 391, 360, 361, 393, 360, 393, 392, 361, 362, 394, 361, 394, 393, 362, 363, 395, 362, 395, 394, 363, 364, 396, 363, 396, 395, 364, 365, 397, 364, 397, 396, 365, 366, 398, 365, 398, 397, 366, 367, 399, 366, 399, 398, 367, 368, 400, 367, 400, 399, 368, 369, 401, 368, 401, 400, 369, 370, 402, 369, 402, 401, 370, 371, 403, 370, 403, 402, 371, 372, 404, 371, 404, 403, 372, 373, 405, 372, 405, 404, 373, 374, 406, 373, 406, 405, 374, 375, 407, 374, 407, 406, 375, 376, 408, 375, 408, 407, 376, 377, 409, 376, 409, 408, 377, 378, 410, 377, 410, 409, 378, 379, 411, 378, 411, 410, 379, 380, 412, 379, 412, 411, 380, 381, 413, 380, 413, 412, 381, 382, 414, 381, 414, 413, 382, 383, 415, 382, 415, 414, 384, 385, 417, 384, 417, 416, 385, 386, 418, 385, 418, 417, 386, 387, 419, 386, 419, 418, 387, 388, 420, 387, 420, 419, 388, 389, 421, 388, 421, 420, 389, 390, 422, 389, 422, 421, 390, 391, 423, 390, 423, 422, 391, 392, 424, 391, 424, 423, 392, 393, 425, 392, 425, 424, 393, 394, 426, 393, 426, 425, 394, 395, 427, 394, 427, 426, 395, 396, 428, 395, 428, 427, 396, 397, 429, 396, 429, 428, 397, 398, 430, 397, 430, 429, 398, 399, 431, 398, 431, 430, 399, 400, 432, 399, 432, 431, 400, 401, 433, 400, 433, 432, 401, 402, 434, 401, 434, 433, 402, 403, 435, 402, 435, 434, 403, 404, 436, 403, 436, 435, 404, 405, 437, 404, 437, 436, 405, 406, 438, 405, 438, 437, 406, 407, 439, 406, 439, 438, 407, 408, 440, 407, 440, 439, 408, 409, 441, 408, 441, 440, 409, 410, 442, 409, 442, 441, 410, 411, 443, 410, 443, 442, 411, 412, 444, 411, 444, 443, 412, 413, 445, 412, 445, 444, 413, 414, 446, 413, 446, 445, 414, 415, 447, 414, 447, 446, 416, 417, 449, 416, 449, 448, 417, 418, 450, 417, 450, 449, 418, 419, 451, 418, 451, 450, 419, 420, 452, 419, 452, 451, 420, 421, 453, 420, 453, 452, 421, 422, 454, 421, 454, 453, 422, 423, 455, 422, 455, 454, 423, 424, 456, 423, 456, 455, 424, 425, 457, 424, 457, 456, 425, 426, 458, 425, 458, 457, 426, 427, 459, 426, 459, 458, 427, 428, 460, 427, 460, 459, 428, 429, 461, 428, 461, 460, 429, 430, 462, 429, 462, 461, 430, 431, 463, 430, 463, 462, 431, 432, 464, 431, 464, 463, 432, 433, 465, 432, 465, 464, 433, 434, 466, 433, 466, 465, 434, 435, 467, 434, 467, 466, 435, 436, 468, 435, 468, 467, 436, 437, 469, 436, 469, 468, 437, 438, 470, 437, 470, 469, 438, 439, 471, 438, 471, 470, 439, 440, 472, 439, 472, 471, 440, 441, 473, 440, 473, 472, 441, 442, 474, 441, 474, 473, 442, 443, 475, 442, 475, 474, 443, 444, 476, 443, 476, 475, 444, 445, 477, 444, 477, 476, 445, 446, 478, 445, 478, 477, 446, 447, 479, 446, 479, 478, 448, 449, 481, 448, 481, 480, 449, 450, 482, 449, 482, 481, 450, 451, 483, 450, 483, 482, 451, 452, 484, 451, 484, 483, 452, 453, 485, 452, 485, 484, 453, 454, 486, 453, 486, 485, 454, 455, 487, 454, 487, 486, 455, 456, 488, 455, 488, 487, 456, 457, 489, 456, 489, 488, 457, 458, 490, 457, 490, 489, 458, 459, 491, 458, 491, 490, 459, 460, 492, 459, 492, 491, 460, 461, 493, 460, 493, 492, 461, 462, 494, 461, 494, 493, 462, 463, 495, 462, 495, 494, 463, 464, 496, 463, 496, 495, 464, 465, 497, 464, 497, 496, 465, 466, 498, 465, 498, 497, 466, 467, 499, 466, 499, 498, 467, 468, 500, 467, 500, 499, 468, 469, 501, 468, 501, 500, 469, 470, 502, 469, 502, 501, 470, 471, 503, 470, 503, 502, 471, 472, 504, 471, 504, 503, 472, 473, 505, 472, 505, 504, 473, 474, 506, 473, 506, 505, 474, 475, 507, 474, 507, 506, 475, 476, 508, 475, 508, 507, 476, 477, 509, 476, 509, 508, 477, 478, 510, 477, 510, 509, 478, 479, 511, 478, 511, 510, 480, 481, 513, 480, 513, 512, 481, 482, 514, 481, 514, 513, 482, 483, 515, 482, 515, 514, 483, 484, 516, 483, 516, 515, 484, 485, 517, 484, 517, 516, 485, 486, 518, 485, 518, 517, 486, 487, 519, 486, 519, 518, 487, 488, 520, 487, 520, 519, 488, 489, 521, 488, 521, 520, 489, 490, 522, 489, 522, 521, 490, 491, 523, 490, 523, 522, 491, 492, 524, 491, 524, 523, 492, 493, 525, 492, 525, 524, 493, 494, 526, 493, 526, 525, 494, 495, 527, 494, 527, 526, 495, 496, 528, 495, 528, 527, 496, 497, 529, 496, 529, 528, 497, 498, 530, 497, 530, 529, 498, 499, 531, 498, 531, 530, 499, 500, 532, 499, 532, 531, 500, 501, 533, 500, 533, 532, 501, 502, 534, 501, 534, 533, 502, 503, 535, 502, 535, 534, 503, 504, 536, 503, 536, 535, 504, 505, 537, 504, 537, 536, 505, 506, 538, 505, 538, 537, 506, 507, 539, 506, 539, 538, 507, 508, 540, 507, 540, 539, 508, 509, 541, 508, 541, 540, 509, 510, 542, 509, 542, 541, 510, 511, 543, 510, 543, 542, 512, 513, 545, 512, 545, 544, 513, 514, 546, 513, 546, 545, 514, 515, 547, 514, 547, 546, 515, 516, 548, 515, 548, 547, 516, 517, 549, 516, 549, 548, 517, 518, 550, 517, 550, 549, 518, 519, 551, 518, 551, 550, 519, 520, 552, 519, 552, 551, 520, 521, 553, 520, 553, 552, 521, 522, 554, 521, 554, 553, 522, 523, 555, 522, 555, 554, 523, 524, 556, 523, 556, 555, 524, 525, 557, 524, 557, 556, 525, 526, 558, 525, 558, 557, 526, 527, 559, 526, 559, 558, 527, 528, 560, 527, 560, 559, 528, 529, 561, 528, 561, 560, 529, 530, 562, 529, 562, 561, 530, 531, 563, 530, 563, 562, 531, 532, 564, 531, 564, 563, 532, 533, 565, 532, 565, 564, 533, 534, 566, 533, 566, 565, 534, 535, 567, 534, 567, 566, 535, 536, 568, 535, 568, 567, 536, 537, 569, 536, 569, 568, 537, 538, 570, 537, 570, 569, 538, 539, 571, 538, 571, 570, 539, 540, 572, 539, 572, 571, 540, 541, 573, 540, 573, 572, 541, 542, 574, 541, 574, 573, 542, 543, 575, 542, 575, 574, 544, 545, 577, 544, 577, 576, 545, 546, 578, 545, 578, 577, 546, 547, 579, 546, 579, 578, 547, 548, 580, 547, 580, 579, 548, 549, 581, 548, 581, 580, 549, 550, 582, 549, 582, 581, 550, 551, 583, 550, 583, 582, 551, 552, 584, 551, 584, 583, 552, 553, 585, 552, 585, 584, 553, 554, 586, 553, 586, 585, 554, 555, 587, 554, 587, 586, 555, 556, 588, 555, 588, 587, 556, 557, 589, 556, 589, 588, 557, 558, 590, 557, 590, 589, 558, 559, 591, 558, 591, 590, 559, 560, 592, 559, 592, 591, 560, 561, 593, 560, 593, 592, 561, 562, 594, 561, 594, 593, 562, 563, 595, 562, 595, 594, 563, 564, 596, 563, 596, 595, 564, 565, 597, 564, 597, 596, 565, 566, 598, 565, 598, 597, 566, 567, 599, 566, 599, 598, 567, 568, 600, 567, 600, 599, 568, 569, 601, 568, 601, 600, 569, 570, 602, 569, 602, 601, 570, 571, 603, 570, 603, 602, 571, 572, 604, 571, 604, 603, 572, 573, 605, 572, 605, 604, 573, 574, 606, 573, 606, 605, 574, 575, 607, 574, 607, 606, 576, 577, 609, 576, 609, 608, 577, 578, 610, 577, 610, 609, 578, 579, 611, 578, 611, 610, 579, 580, 612, 579, 612, 611, 580, 581, 613, 580, 613, 612, 581, 582, 614, 581, 614, 613, 582, 583, 615, 582, 615, 614, 583, 584, 616, 583, 616, 615, 584, 585, 617, 584, 617, 616, 585, 586, 618, 585, 618, 617, 586, 587, 619, 586, 619, 618, 587, 588, 620, 587, 620, 619, 588, 589, 621, 588, 621, 620, 589, 590, 622, 589, 622, 621, 590, 591, 623, 590, 623, 622, 591, 592, 624, 591, 624, 623, 592, 593, 625, 592, 625, 624, 593, 594, 626, 593, 626, 625, 594, 595, 627, 594, 627, 626, 595, 596, 628, 595, 628, 627, 596, 597, 629, 596, 629, 628, 597, 598, 630, 597, 630, 629, 598, 599, 631, 598, 631, 630, 599, 600, 632, 599, 632, 631, 600, 601, 633, 600, 633, 632, 601, 602, 634, 601, 634, 633, 602, 603, 635, 602, 635, 634, 603, 604, 636, 603, 636, 635, 604, 605, 637, 604, 637, 636, 605, 606, 638, 605, 638, 637, 606, 607, 639, 606, 639, 638, 608, 609, 641, 608, 641, 640, 609, 610, 642, 609, 642, 641, 610, 611, 643, 610, 643, 642, 611, 612, 644, 611, 644, 643, 612, 613, 645, 612, 645, 644, 613, 614, 646, 613, 646, 645, 614, 615, 647, 614, 647, 646, 615, 616, 648, 615, 648, 647, 616, 617, 649, 616, 649, 648, 617, 618, 650, 617, 650, 649, 618, 619, 651, 618, 651, 650, 619, 620, 652, 619, 652, 651, 620, 621, 653, 620, 653, 652, 621, 622, 654, 621, 654, 653, 622, 623, 655, 622, 655, 654, 623, 624, 656, 623, 656, 655, 624, 625, 657, 624, 657, 656, 625, 626, 658, 625, 658, 657, 626, 627, 659, 626, 659, 658, 627, 628, 660, 627, 660, 659, 628, 629, 661, 628, 661, 660, 629, 630, 662, 629, 662, 661, 630, 631, 663, 630, 663, 662, 631, 632, 664, 631, 664, 663, 632, 633, 665, 632, 665, 664, 633, 634, 666, 633, 666, 665, 634, 635, 667, 634, 667, 666, 635, 636, 668, 635, 668, 667, 636, 637, 669, 636, 669, 668, 637, 638, 670, 637, 670, 669, 638, 639, 671, 638, 671, 670, 640, 641, 673, 640, 673, 672, 641, 642, 674, 641, 674, 673, 642, 643, 675, 642, 675, 674, 643, 644, 676, 643, 676, 675, 644, 645, 677, 644, 677, 676, 645, 646, 678, 645, 678, 677, 646, 647, 679, 646, 679, 678, 647, 648, 680, 647, 680, 679, 648, 649, 681, 648, 681, 680, 649, 650, 682, 649, 682, 681, 650, 651, 683, 650, 683, 682, 651, 652, 684, 651, 684, 683, 652, 653, 685, 652, 685, 684, 653, 654, 686, 653, 686, 685, 654, 655, 687, 654, 687, 686, 655, 656, 688, 655, 688, 687, 656, 657, 689, 656, 689, 688, 657, 658, 690, 657, 690, 689, 658, 659, 691, 658, 691, 690, 659, 660, 692, 659, 692, 691, 660, 661, 693, 660, 693, 692, 661, 662, 694, 661, 694, 693, 662, 663, 695, 662, 695, 694, 663, 664, 696, 663, 696, 695, 664, 665, 697, 664, 697, 696, 665, 666, 698, 665, 698, 697, 666, 667, 699, 666, 699, 698, 667, 668, 700, 667, 700, 699, 668, 669, 701, 668, 701, 700, 669, 670, 702, 669, 702, 701, 670, 671, 703, 670, 703, 702, 672, 673, 705, 672, 705, 704, 673, 674, 706, 673, 706, 705, 674, 675, 707, 674, 707, 706, 675, 676, 708, 675, 708, 707, 676, 677, 709, 676, 709, 708, 677, 678, 710, 677, 710, 709, 678, 679, 711, 678, 711, 710, 679, 680, 712, 679, 712, 711, 680, 681, 713, 680, 713, 712, 681, 682, 714, 681, 714, 713, 682, 683, 715, 682, 715, 714, 683, 684, 716, 683, 716, 715, 684, 685, 717, 684, 717, 716, 685, 686, 718, 685, 718, 717, 686, 687, 719, 686, 719, 718, 687, 688, 720, 687, 720, 719, 688, 689, 721, 688, 721, 720, 689, 690, 722, 689, 722, 721, 690, 691, 723, 690, 723, 722, 691, 692, 724, 691, 724, 723, 692, 693, 725, 692, 725, 724, 693, 694, 726, 693, 726, 725, 694, 695, 727, 694, 727, 726, 695, 696, 728, 695, 728, 727, 696, 697, 729, 696, 729, 728, 697, 698, 730, 697, 730, 729, 698, 699, 731, 698, 731, 730, 699, 700, 732, 699, 732, 731, 700, 701, 733, 700, 733, 732, 701, 702, 734, 701, 734, 733, 702, 703, 735, 702, 735, 734, 704, 705, 737, 704, 737, 736, 705, 706, 738, 705, 738, 737, 706, 707, 739, 706, 739, 738, 707, 708, 740, 707, 740, 739, 708, 709, 741, 708, 741, 740, 709, 710, 742, 709, 742, 741, 710, 711, 743, 710, 743, 742, 711, 712, 744, 711, 744, 743, 712, 713, 745, 712, 745, 744, 713, 714, 746, 713, 746, 745, 714, 715, 747, 714, 747, 746, 715, 716, 748, 715, 748, 747, 716, 717, 749, 716, 749, 748, 717, 718, 750, 717, 750, 749, 718, 719, 751, 718, 751, 750, 719, 720, 752, 719, 752, 751, 720, 721, 753, 720, 753, 752, 721, 722, 754, 721, 754, 753, 722, 723, 755, 722, 755, 754, 723, 724, 756, 723, 756, 755, 724, 725, 757, 724, 757, 756, 725, 726, 758, 725, 758, 757, 726, 727, 759, 726, 759, 758, 727, 728, 760, 727, 760, 759, 728, 729, 761, 728, 761, 760, 729, 730, 762, 729, 762, 761, 730, 731, 763, 730, 763, 762, 731, 732, 764, 731, 764, 763, 732, 733, 765, 732, 765, 764, 733, 734, 766, 733, 766, 765, 734, 735, 767, 734, 767, 766, 736, 737, 769, 736, 769, 768, 737, 738, 770, 737, 770, 769, 738, 739, 771, 738, 771, 770, 739, 740, 772, 739, 772, 771, 740, 741, 773, 740, 773, 772, 741, 742, 774, 741, 774, 773, 742, 743, 775, 742, 775, 774, 743, 744, 776, 743, 776, 775, 744, 745, 777, 744, 777, 776, 745, 746, 778, 745, 778, 777, 746, 747, 779, 746, 779, 778, 747, 748, 780, 747, 780, 779, 748, 749, 781, 748, 781, 780, 749, 750, 782, 749, 782, 781, 750, 751, 783, 750, 783, 782, 751, 752, 784, 751, 784, 783, 752, 753, 785, 752, 785, 784, 753, 754, 786, 753, 786, 785, 754, 755, 787, 754, 787, 786, 755, 756, 788, 755, 788, 787, 756, 757, 789, 756, 789, 788, 757, 758, 790, 757, 790, 789, 758, 759, 791, 758, 791, 790, 759, 760, 792, 759, 792, 791, 760, 761, 793, 760, 793, 792, 761, 762, 794, 761, 794, 793, 762, 763, 795, 762, 795, 794, 763, 764, 796, 763, 796, 795, 764, 765, 797, 764, 797, 796, 765, 766, 798, 765, 798, 797, 766, 767, 799, 766, 799, 798, 768, 769, 801, 768, 801, 800, 769, 770, 802, 769, 802, 801, 770, 771, 803, 770, 803, 802, 771, 772, 804, 771, 804, 803, 772, 773, 805, 772, 805, 804, 773, 774, 806, 773, 806, 805, 774, 775, 807, 774, 807, 806, 775, 776, 808, 775, 808, 807, 776, 777, 809, 776, 809, 808, 777, 778, 810, 777, 810, 809, 778, 779, 811, 778, 811, 810, 779, 780, 812, 779, 812, 811, 780, 781, 813, 780, 813, 812, 781, 782, 814, 781, 814, 813, 782, 783, 815, 782, 815, 814, 783, 784, 816, 783, 816, 815, 784, 785, 817, 784, 817, 816, 785, 786, 818, 785, 818, 817, 786, 787, 819, 786, 819, 818, 787, 788, 820, 787, 820, 819, 788, 789, 821, 788, 821, 820, 789, 790, 822, 789, 822, 821, 790, 791, 823, 790, 823, 822, 791, 792, 824, 791, 824, 823, 792, 793, 825, 792, 825, 824, 793, 794, 826, 793, 826, 825, 794, 795, 827, 794, 827, 826, 795, 796, 828, 795, 828, 827, 796, 797, 829, 796, 829, 828, 797, 798, 830, 797, 830, 829, 798, 799, 831, 798, 831, 830, 800, 801, 833, 800, 833, 832, 801, 802, 834, 801, 834, 833, 802, 803, 835, 802, 835, 834, 803, 804, 836, 803, 836, 835, 804, 805, 837, 804, 837, 836, 805, 806, 838, 805, 838, 837, 806, 807, 839, 806, 839, 838, 807, 808, 840, 807, 840, 839, 808, 809, 841, 808, 841, 840, 809, 810, 842, 809, 842, 841, 810, 811, 843, 810, 843, 842, 811, 812, 844, 811, 844, 843, 812, 813, 845, 812, 845, 844, 813, 814, 846, 813, 846, 845, 814, 815, 847, 814, 847, 846, 815, 816, 848, 815, 848, 847, 816, 817, 849, 816, 849, 848, 817, 818, 850, 817, 850, 849, 818, 819, 851, 818, 851, 850, 819, 820, 852, 819, 852, 851, 820, 821, 853, 820, 853, 852, 821, 822, 854, 821, 854, 853, 822, 823, 855, 822, 855, 854, 823, 824, 856, 823, 856, 855, 824, 825, 857, 824, 857, 856, 825, 826, 858, 825, 858, 857, 826, 827, 859, 826, 859, 858, 827, 828, 860, 827, 860, 859, 828, 829, 861, 828, 861, 860, 829, 830, 862, 829, 862, 861, 830, 831, 863, 830, 863, 862, 832, 833, 865, 832, 865, 864, 833, 834, 866, 833, 866, 865, 834, 835, 867, 834, 867, 866, 835, 836, 868, 835, 868, 867, 836, 837, 869, 836, 869, 868, 837, 838, 870, 837, 870, 869, 838, 839, 871, 838, 871, 870, 839, 840, 872, 839, 872, 871, 840, 841, 873, 840, 873, 872, 841, 842, 874, 841, 874, 873, 842, 843, 875, 842, 875, 874, 843, 844, 876, 843, 876, 875, 844, 845, 877, 844, 877, 876, 845, 846, 878, 845, 878, 877, 846, 847, 879, 846, 879, 878, 847, 848, 880, 847, 880, 879, 848, 849, 881, 848, 881, 880, 849, 850, 882, 849, 882, 881, 850, 851, 883, 850, 883, 882, 851, 852, 884, 851, 884, 883, 852, 853, 885, 852, 885, 884, 853, 854, 886, 853, 886, 885, 854, 855, 887, 854, 887, 886, 855, 856, 888, 855, 888, 887, 856, 857, 889, 856, 889, 888, 857, 858, 890, 857, 890, 889, 858, 859, 891, 858, 891, 890, 859, 860, 892, 859, 892, 891, 860, 861, 893, 860, 893, 892, 861, 862, 894, 861, 894, 893, 862, 863, 895, 862, 895, 894, 864, 865, 897, 864, 897, 896, 865, 866, 898, 865, 898, 897, 866, 867, 899, 866, 899, 898, 867, 868, 900, 867, 900, 899, 868, 869, 901, 868, 901, 900, 869, 870, 902, 869, 902, 901, 870, 871, 903, 870, 903, 902, 871, 872, 904, 871, 904, 903, 872, 873, 905, 872, 905, 904, 873, 874, 906, 873, 906, 905, 874, 875, 907, 874, 907, 906, 875, 876, 908, 875, 908, 907, 876, 877, 909, 876, 909, 908, 877, 878, 910, 877, 910, 909, 878, 879, 911, 878, 911, 910, 879, 880, 912, 879, 912, 911, 880, 881, 913, 880, 913, 912, 881, 882, 914, 881, 914, 913, 882, 883, 915, 882, 915, 914, 883, 884, 916, 883, 916, 915, 884, 885, 917, 884, 917, 916, 885, 886, 918, 885, 918, 917, 886, 887, 919, 886, 919, 918, 887, 888, 920, 887, 920, 919, 888, 889, 921, 888, 921, 920, 889, 890, 922, 889, 922, 921, 890, 891, 923, 890, 923, 922, 891, 892, 924, 891, 924, 923, 892, 893, 925, 892, 925, 924, 893, 894, 926, 893, 926, 925, 894, 895, 927, 894, 927, 926, 896, 897, 929, 896, 929, 928, 897, 898, 930, 897, 930, 929, 898, 899, 931, 898, 931, 930, 899, 900, 932, 899, 932, 931, 900, 901, 933, 900, 933, 932, 901, 902, 934, 901, 934, 933, 902, 903, 935, 902, 935, 934, 903, 904, 936, 903, 936, 935, 904, 905, 937, 904, 937, 936, 905, 906, 938, 905, 938, 937, 906, 907, 939, 906, 939, 938, 907, 908, 940, 907, 940, 939, 908, 909, 941, 908, 941, 940, 909, 910, 942, 909, 942, 941, 910, 911, 943, 910, 943, 942, 911, 912, 944, 911, 944, 943, 912, 913, 945, 912, 945, 944, 913, 914, 946, 913, 946, 945, 914, 915, 947, 914, 947, 946, 915, 916, 948, 915, 948, 947, 916, 917, 949, 916, 949, 948, 917, 918, 950, 917, 950, 949, 918, 919, 951, 918, 951, 950, 919, 920, 952, 919, 952, 951, 920, 921, 953, 920, 953, 952, 921, 922, 954, 921, 954, 953, 922, 923, 955, 922, 955, 954, 923, 924, 956, 923, 956, 955, 924, 925, 957, 924, 957, 956, 925, 926, 958, 925, 958, 957, 926, 927, 959, 926, 959, 958, 928, 929, 961, 928, 961, 960, 929, 930, 962, 929, 962, 961, 930, 931, 963, 930, 963, 962, 931, 932, 964, 931, 964, 963, 932, 933, 965, 932, 965, 964, 933, 934, 966, 933, 966, 965, 934, 935, 967, 934, 967, 966, 935, 936, 968, 935, 968, 967, 936, 937, 969, 936, 969, 968, 937, 938, 970, 937, 970, 969, 938, 939, 971, 938, 971, 970, 939, 940, 972, 939, 972, 971, 940, 941, 973, 940, 973, 972, 941, 942, 974, 941, 974, 973, 942, 943, 975, 942, 975, 974, 943, 944, 976, 943, 976, 975, 944, 945, 977, 944, 977, 976, 945, 946, 978, 945, 978, 977, 946, 947, 979, 946, 979, 978, 947, 948, 980, 947, 980, 979, 948, 949, 981, 948, 981, 980, 949, 950, 982, 949, 982, 981, 950, 951, 983, 950, 983, 982, 951, 952, 984, 951, 984, 983, 952, 953, 985, 952, 985, 984, 953, 954, 986, 953, 986, 985, 954, 955, 987, 954, 987, 986, 955, 956, 988, 955, 988, 987, 956, 957, 989, 956, 989, 988, 957, 958, 990, 957, 990, 989, 958, 959, 991, 958, 991, 990, 960, 961, 993, 960, 993, 992, 961, 962, 994, 961, 994, 993, 962, 963, 995, 962, 995, 994, 963, 964, 996, 963, 996, 995, 964, 965, 997, 964, 997, 996, 965, 966, 998, 965, 998, 997, 966, 967, 999, 966, 999, 998, 967, 968, 1000, 967, 1000, 999, 968, 969, 1001, 968, 1001, 1000, 969, 970, 1002, 969, 1002, 1001, 970, 971, 1003, 970, 1003, 1002, 971, 972, 1004, 971, 1004, 1003, 972, 973, 1005, 972, 1005, 1004, 973, 974, 1006, 973, 1006, 1005, 974, 975, 1007, 974, 1007, 1006, 975, 976, 1008, 975, 1008, 1007, 976, 977, 1009, 976, 1009, 1008, 977, 978, 1010, 977, 1010, 1009, 978, 979, 1011, 978, 1011, 1010, 979, 980, 1012, 979, 1012, 1011, 980, 981, 1013, 980, 1013, 1012, 981, 982, 1014, 981, 1014, 1013, 982, 983, 1015, 982, 1015, 1014, 983, 984, 1016, 983, 1016, 1015, 984, 985, 1017, 984, 1017, 1016, 985, 986, 1018, 985, 1018, 1017, 986, 987, 1019, 986, 1019, 1018, 987, 988, 1020, 987, 1020, 1019, 988, 989, 1021, 988, 1021, 1020, 989, 990, 1022, 989, 1022, 1021, 990, 991, 1023, 990, 1023, 1022] point3f[] points = [(0, 0, 20), (20, 0, 20), (40, 0, 20), (60, 0, 20), (80, 0, 20), (100, 0, 20), (120, 0, 20), (140, 0, 20), (160, 0, 20), (180, 0, 20), (200, 0, 20), (220, 0, 20), (240, 0, 20), (260, 0, 20), (280, 0, 20), (300, 0, 20), (320, 0, 20), (340, 0, 20), (360, 0, 20), (380, 0, 20), (400, 0, 20), (420, 0, 20), (440, 0, 20), (460, 0, 20), (480, 0, 20), (500, 0, 20), (520, 0, 20), (540, 0, 20), (560, 0, 20), (580, 0, 20), (600, 0, 20), (620, 0, 20), (0, 20, 20), (20, 20, 20), (40, 20, 20), (60, 20, 20), (80, 20, 20), (100, 20, 20), (120, 20, 20), (140, 20, 20), (160, 20, 20), (180, 20, 20), (200, 20, 20), (220, 20, 20), (240, 20, 20), (260, 20, 20), (280, 20, 20), (300, 20, 20), (320, 20, 20), (340, 20, 20), (360, 20, 20), (380, 20, 20), (400, 20, 20), (420, 20, 20), (440, 20, 20), (460, 20, 20), (480, 20, 20), (500, 20, 20), (520, 20, 20), (540, 20, 20), (560, 20, 20), (580, 20, 20), (600, 20, 20), (620, 20, 20), (0, 40, 20), (20, 40, 20), (40, 40, 20), (60, 40, 20), (80, 40, 20), (100, 40, 20), (120, 40, 20), (140, 40, 20), (160, 40, 20), (180, 40, 20), (200, 40, 20), (220, 40, 20), (240, 40, 20), (260, 40, 20), (280, 40, 20), (300, 40, 20), (320, 40, 20), (340, 40, 20), (360, 40, 20), (380, 40, 20), (400, 40, 20), (420, 40, 20), (440, 40, 20), (460, 40, 20), (480, 40, 20), (500, 40, 20), (520, 40, 20), (540, 40, 20), (560, 40, 20), (580, 40, 20), (600, 40, 20), (620, 40, 20), (0, 60, 20), (20, 60, 20), (40, 60, 20), (60, 60, 20), (80, 60, 20), (100, 60, 20), (120, 60, 20), (140, 60, 20), (160, 60, 20), (180, 60, 20), (200, 60, 20), (220, 60, 20), (240, 60, 20), (260, 60, 20), (280, 60, 20), (300, 60, 20), (320, 60, 20), (340, 60, 20), (360, 60, 20), (380, 60, 20), (400, 60, 20), (420, 60, 20), (440, 60, 20), (460, 60, 20), (480, 60, 20), (500, 60, 20), (520, 60, 20), (540, 60, 20), (560, 60, 20), (580, 60, 20), (600, 60, 20), (620, 60, 20), (0, 80, 20), (20, 80, 20), (40, 80, 20), (60, 80, 20), (80, 80, 20), (100, 80, 20), (120, 80, 20), (140, 80, 20), (160, 80, 20), (180, 80, 20), (200, 80, 20), (220, 80, 20), (240, 80, 20), (260, 80, 20), (280, 80, 20), (300, 80, 20), (320, 80, 20), (340, 80, 20), (360, 80, 20), (380, 80, 20), (400, 80, 20), (420, 80, 20), (440, 80, 20), (460, 80, 20), (480, 80, 20), (500, 80, 20), (520, 80, 20), (540, 80, 20), (560, 80, 20), (580, 80, 20), (600, 80, 20), (620, 80, 20), (0, 100, 20), (20, 100, 20), (40, 100, 20), (60, 100, 20), (80, 100, 20), (100, 100, 20), (120, 100, 20), (140, 100, 20), (160, 100, 20), (180, 100, 20), (200, 100, 20), (220, 100, 20), (240, 100, 20), (260, 100, 20), (280, 100, 20), (300, 100, 20), (320, 100, 20), (340, 100, 20), (360, 100, 20), (380, 100, 20), (400, 100, 20), (420, 100, 20), (440, 100, 20), (460, 100, 20), (480, 100, 20), (500, 100, 20), (520, 100, 20), (540, 100, 20), (560, 100, 20), (580, 100, 20), (600, 100, 20), (620, 100, 20), (0, 120, 20), (20, 120, 20), (40, 120, 20), (60, 120, 20), (80, 120, 20), (100, 120, 20), (120, 120, 20), (140, 120, 20), (160, 120, 20), (180, 120, 20), (200, 120, 20), (220, 120, 20), (240, 120, 20), (260, 120, 20), (280, 120, 20), (300, 120, 20), (320, 120, 20), (340, 120, 20), (360, 120, 20), (380, 120, 20), (400, 120, 20), (420, 120, 20), (440, 120, 20), (460, 120, 20), (480, 120, 20), (500, 120, 20), (520, 120, 20), (540, 120, 20), (560, 120, 20), (580, 120, 20), (600, 120, 20), (620, 120, 20), (0, 140, 20), (20, 140, 20), (40, 140, 20), (60, 140, 20), (80, 140, 20), (100, 140, 20), (120, 140, 20), (140, 140, 20), (160, 140, 20), (180, 140, 20), (200, 140, 20), (220, 140, 20), (240, 140, 20), (260, 140, 20), (280, 140, 20), (300, 140, 20), (320, 140, 20), (340, 140, 20), (360, 140, 20), (380, 140, 20), (400, 140, 20), (420, 140, 20), (440, 140, 20), (460, 140, 20), (480, 140, 20), (500, 140, 20), (520, 140, 20), (540, 140, 20), (560, 140, 20), (580, 140, 20), (600, 140, 20), (620, 140, 20), (0, 160, 20), (20, 160, 20), (40, 160, 20), (60, 160, 20), (80, 160, 20), (100, 160, 20), (120, 160, 20), (140, 160, 20), (160, 160, 20), (180, 160, 20), (200, 160, 20), (220, 160, 20), (240, 160, 20), (260, 160, 20), (280, 160, 20), (300, 160, 20), (320, 160, 20), (340, 160, 20), (360, 160, 20), (380, 160, 20), (400, 160, 20), (420, 160, 20), (440, 160, 20), (460, 160, 20), (480, 160, 20), (500, 160, 20), (520, 160, 20), (540, 160, 20), (560, 160, 20), (580, 160, 20), (600, 160, 20), (620, 160, 20), (0, 180, 20), (20, 180, 20), (40, 180, 20), (60, 180, 20), (80, 180, 20), (100, 180, 20), (120, 180, 20), (140, 180, 20), (160, 180, 20), (180, 180, 20), (200, 180, 20), (220, 180, 20), (240, 180, 20), (260, 180, 20), (280, 180, 20), (300, 180, 20), (320, 180, 20), (340, 180, 20), (360, 180, 20), (380, 180, 20), (400, 180, 20), (420, 180, 20), (440, 180, 20), (460, 180, 20), (480, 180, 20), (500, 180, 20), (520, 180, 20), (540, 180, 20), (560, 180, 20), (580, 180, 20), (600, 180, 20), (620, 180, 20), (0, 200, 20), (20, 200, 20), (40, 200, 20), (60, 200, 20), (80, 200, 20), (100, 200, 20), (120, 200, 20), (140, 200, 20), (160, 200, 20), (180, 200, 20), (200, 200, 20), (220, 200, 20), (240, 200, 20), (260, 200, 20), (280, 200, 20), (300, 200, 20), (320, 200, 20), (340, 200, 20), (360, 200, 20), (380, 200, 20), (400, 200, 20), (420, 200, 20), (440, 200, 20), (460, 200, 20), (480, 200, 20), (500, 200, 20), (520, 200, 20), (540, 200, 20), (560, 200, 20), (580, 200, 20), (600, 200, 20), (620, 200, 20), (0, 220, 20), (20, 220, 20), (40, 220, 20), (60, 220, 20), (80, 220, 20), (100, 220, 20), (120, 220, 20), (140, 220, 20), (160, 220, 20), (180, 220, 20), (200, 220, 20), (220, 220, 20), (240, 220, 20), (260, 220, 20), (280, 220, 20), (300, 220, 20), (320, 220, 20), (340, 220, 20), (360, 220, 20), (380, 220, 20), (400, 220, 20), (420, 220, 20), (440, 220, 20), (460, 220, 20), (480, 220, 20), (500, 220, 20), (520, 220, 20), (540, 220, 20), (560, 220, 20), (580, 220, 20), (600, 220, 20), (620, 220, 20), (0, 240, 20), (20, 240, 20), (40, 240, 20), (60, 240, 20), (80, 240, 20), (100, 240, 20), (120, 240, 20), (140, 240, 20), (160, 240, 20), (180, 240, 20), (200, 240, 20), (220, 240, 20), (240, 240, 20), (260, 240, 20), (280, 240, 20), (300, 240, 20), (320, 240, 20), (340, 240, 20), (360, 240, 20), (380, 240, 20), (400, 240, 20), (420, 240, 20), (440, 240, 20), (460, 240, 20), (480, 240, 20), (500, 240, 20), (520, 240, 20), (540, 240, 20), (560, 240, 20), (580, 240, 20), (600, 240, 20), (620, 240, 20), (0, 260, 20), (20, 260, 20), (40, 260, 20), (60, 260, 20), (80, 260, 20), (100, 260, 20), (120, 260, 20), (140, 260, 20), (160, 260, 20), (180, 260, 20), (200, 260, 20), (220, 260, 20), (240, 260, 20), (260, 260, 20), (280, 260, 20), (300, 260, 20), (320, 260, 20), (340, 260, 20), (360, 260, 20), (380, 260, 20), (400, 260, 20), (420, 260, 20), (440, 260, 20), (460, 260, 20), (480, 260, 20), (500, 260, 20), (520, 260, 20), (540, 260, 20), (560, 260, 20), (580, 260, 20), (600, 260, 20), (620, 260, 20), (0, 280, 20), (20, 280, 20), (40, 280, 20), (60, 280, 20), (80, 280, 20), (100, 280, 20), (120, 280, 20), (140, 280, 20), (160, 280, 20), (180, 280, 20), (200, 280, 20), (220, 280, 20), (240, 280, 20), (260, 280, 20), (280, 280, 20), (300, 280, 20), (320, 280, 20), (340, 280, 20), (360, 280, 20), (380, 280, 20), (400, 280, 20), (420, 280, 20), (440, 280, 20), (460, 280, 20), (480, 280, 20), (500, 280, 20), (520, 280, 20), (540, 280, 20), (560, 280, 20), (580, 280, 20), (600, 280, 20), (620, 280, 20), (0, 300, 20), (20, 300, 20), (40, 300, 20), (60, 300, 20), (80, 300, 20), (100, 300, 20), (120, 300, 20), (140, 300, 20), (160, 300, 20), (180, 300, 20), (200, 300, 20), (220, 300, 20), (240, 300, 20), (260, 300, 20), (280, 300, 20), (300, 300, 20), (320, 300, 20), (340, 300, 20), (360, 300, 20), (380, 300, 20), (400, 300, 20), (420, 300, 20), (440, 300, 20), (460, 300, 20), (480, 300, 20), (500, 300, 20), (520, 300, 20), (540, 300, 20), (560, 300, 20), (580, 300, 20), (600, 300, 20), (620, 300, 20), (0, 320, 20), (20, 320, 20), (40, 320, 20), (60, 320, 20), (80, 320, 20), (100, 320, 20), (120, 320, 20), (140, 320, 20), (160, 320, 20), (180, 320, 20), (200, 320, 20), (220, 320, 20), (240, 320, 20), (260, 320, 20), (280, 320, 20), (300, 320, 20), (320, 320, 20), (340, 320, 20), (360, 320, 20), (380, 320, 20), (400, 320, 20), (420, 320, 20), (440, 320, 20), (460, 320, 20), (480, 320, 20), (500, 320, 20), (520, 320, 20), (540, 320, 20), (560, 320, 20), (580, 320, 20), (600, 320, 20), (620, 320, 20), (0, 340, 20), (20, 340, 20), (40, 340, 20), (60, 340, 20), (80, 340, 20), (100, 340, 20), (120, 340, 20), (140, 340, 20), (160, 340, 20), (180, 340, 20), (200, 340, 20), (220, 340, 20), (240, 340, 20), (260, 340, 20), (280, 340, 20), (300, 340, 20), (320, 340, 20), (340, 340, 20), (360, 340, 20), (380, 340, 20), (400, 340, 20), (420, 340, 20), (440, 340, 20), (460, 340, 20), (480, 340, 20), (500, 340, 20), (520, 340, 20), (540, 340, 20), (560, 340, 20), (580, 340, 20), (600, 340, 20), (620, 340, 20), (0, 360, 20), (20, 360, 20), (40, 360, 20), (60, 360, 20), (80, 360, 20), (100, 360, 20), (120, 360, 20), (140, 360, 20), (160, 360, 20), (180, 360, 20), (200, 360, 20), (220, 360, 20), (240, 360, 20), (260, 360, 20), (280, 360, 20), (300, 360, 20), (320, 360, 20), (340, 360, 20), (360, 360, 20), (380, 360, 20), (400, 360, 20), (420, 360, 20), (440, 360, 20), (460, 360, 20), (480, 360, 20), (500, 360, 20), (520, 360, 20), (540, 360, 20), (560, 360, 20), (580, 360, 20), (600, 360, 20), (620, 360, 20), (0, 380, 20), (20, 380, 20), (40, 380, 20), (60, 380, 20), (80, 380, 20), (100, 380, 20), (120, 380, 20), (140, 380, 20), (160, 380, 20), (180, 380, 20), (200, 380, 20), (220, 380, 20), (240, 380, 20), (260, 380, 20), (280, 380, 20), (300, 380, 20), (320, 380, 20), (340, 380, 20), (360, 380, 20), (380, 380, 20), (400, 380, 20), (420, 380, 20), (440, 380, 20), (460, 380, 20), (480, 380, 20), (500, 380, 20), (520, 380, 20), (540, 380, 20), (560, 380, 20), (580, 380, 20), (600, 380, 20), (620, 380, 20), (0, 400, 20), (20, 400, 20), (40, 400, 20), (60, 400, 20), (80, 400, 20), (100, 400, 20), (120, 400, 20), (140, 400, 20), (160, 400, 20), (180, 400, 20), (200, 400, 20), (220, 400, 20), (240, 400, 20), (260, 400, 20), (280, 400, 20), (300, 400, 20), (320, 400, 20), (340, 400, 20), (360, 400, 20), (380, 400, 20), (400, 400, 20), (420, 400, 20), (440, 400, 20), (460, 400, 20), (480, 400, 20), (500, 400, 20), (520, 400, 20), (540, 400, 20), (560, 400, 20), (580, 400, 20), (600, 400, 20), (620, 400, 20), (0, 420, 20), (20, 420, 20), (40, 420, 20), (60, 420, 20), (80, 420, 20), (100, 420, 20), (120, 420, 20), (140, 420, 20), (160, 420, 20), (180, 420, 20), (200, 420, 20), (220, 420, 20), (240, 420, 20), (260, 420, 20), (280, 420, 20), (300, 420, 20), (320, 420, 20), (340, 420, 20), (360, 420, 20), (380, 420, 20), (400, 420, 20), (420, 420, 20), (440, 420, 20), (460, 420, 20), (480, 420, 20), (500, 420, 20), (520, 420, 20), (540, 420, 20), (560, 420, 20), (580, 420, 20), (600, 420, 20), (620, 420, 20), (0, 440, 20), (20, 440, 20), (40, 440, 20), (60, 440, 20), (80, 440, 20), (100, 440, 20), (120, 440, 20), (140, 440, 20), (160, 440, 20), (180, 440, 20), (200, 440, 20), (220, 440, 20), (240, 440, 20), (260, 440, 20), (280, 440, 20), (300, 440, 20), (320, 440, 20), (340, 440, 20), (360, 440, 20), (380, 440, 20), (400, 440, 20), (420, 440, 20), (440, 440, 20), (460, 440, 20), (480, 440, 20), (500, 440, 20), (520, 440, 20), (540, 440, 20), (560, 440, 20), (580, 440, 20), (600, 440, 20), (620, 440, 20), (0, 460, 20), (20, 460, 20), (40, 460, 20), (60, 460, 20), (80, 460, 20), (100, 460, 20), (120, 460, 20), (140, 460, 20), (160, 460, 20), (180, 460, 20), (200, 460, 20), (220, 460, 20), (240, 460, 20), (260, 460, 20), (280, 460, 20), (300, 460, 20), (320, 460, 20), (340, 460, 20), (360, 460, 20), (380, 460, 20), (400, 460, 20), (420, 460, 20), (440, 460, 20), (460, 460, 20), (480, 460, 20), (500, 460, 20), (520, 460, 20), (540, 460, 20), (560, 460, 20), (580, 460, 20), (600, 460, 20), (620, 460, 20), (0, 480, 20), (20, 480, 20), (40, 480, 20), (60, 480, 20), (80, 480, 20), (100, 480, 20), (120, 480, 20), (140, 480, 20), (160, 480, 20), (180, 480, 20), (200, 480, 20), (220, 480, 20), (240, 480, 20), (260, 480, 20), (280, 480, 20), (300, 480, 20), (320, 480, 20), (340, 480, 20), (360, 480, 20), (380, 480, 20), (400, 480, 20), (420, 480, 20), (440, 480, 20), (460, 480, 20), (480, 480, 20), (500, 480, 20), (520, 480, 20), (540, 480, 20), (560, 480, 20), (580, 480, 20), (600, 480, 20), (620, 480, 20), (0, 500, 20), (20, 500, 20), (40, 500, 20), (60, 500, 20), (80, 500, 20), (100, 500, 20), (120, 500, 20), (140, 500, 20), (160, 500, 20), (180, 500, 20), (200, 500, 20), (220, 500, 20), (240, 500, 20), (260, 500, 20), (280, 500, 20), (300, 500, 20), (320, 500, 20), (340, 500, 20), (360, 500, 20), (380, 500, 20), (400, 500, 20), (420, 500, 20), (440, 500, 20), (460, 500, 20), (480, 500, 20), (500, 500, 20), (520, 500, 20), (540, 500, 20), (560, 500, 20), (580, 500, 20), (600, 500, 20), (620, 500, 20), (0, 520, 20), (20, 520, 20), (40, 520, 20), (60, 520, 20), (80, 520, 20), (100, 520, 20), (120, 520, 20), (140, 520, 20), (160, 520, 20), (180, 520, 20), (200, 520, 20), (220, 520, 20), (240, 520, 20), (260, 520, 20), (280, 520, 20), (300, 520, 20), (320, 520, 20), (340, 520, 20), (360, 520, 20), (380, 520, 20), (400, 520, 20), (420, 520, 20), (440, 520, 20), (460, 520, 20), (480, 520, 20), (500, 520, 20), (520, 520, 20), (540, 520, 20), (560, 520, 20), (580, 520, 20), (600, 520, 20), (620, 520, 20), (0, 540, 20), (20, 540, 20), (40, 540, 20), (60, 540, 20), (80, 540, 20), (100, 540, 20), (120, 540, 20), (140, 540, 20), (160, 540, 20), (180, 540, 20), (200, 540, 20), (220, 540, 20), (240, 540, 20), (260, 540, 20), (280, 540, 20), (300, 540, 20), (320, 540, 20), (340, 540, 20), (360, 540, 20), (380, 540, 20), (400, 540, 20), (420, 540, 20), (440, 540, 20), (460, 540, 20), (480, 540, 20), (500, 540, 20), (520, 540, 20), (540, 540, 20), (560, 540, 20), (580, 540, 20), (600, 540, 20), (620, 540, 20), (0, 560, 20), (20, 560, 20), (40, 560, 20), (60, 560, 20), (80, 560, 20), (100, 560, 20), (120, 560, 20), (140, 560, 20), (160, 560, 20), (180, 560, 20), (200, 560, 20), (220, 560, 20), (240, 560, 20), (260, 560, 20), (280, 560, 20), (300, 560, 20), (320, 560, 20), (340, 560, 20), (360, 560, 20), (380, 560, 20), (400, 560, 20), (420, 560, 20), (440, 560, 20), (460, 560, 20), (480, 560, 20), (500, 560, 20), (520, 560, 20), (540, 560, 20), (560, 560, 20), (580, 560, 20), (600, 560, 20), (620, 560, 20), (0, 580, 20), (20, 580, 20), (40, 580, 20), (60, 580, 20), (80, 580, 20), (100, 580, 20), (120, 580, 20), (140, 580, 20), (160, 580, 20), (180, 580, 20), (200, 580, 20), (220, 580, 20), (240, 580, 20), (260, 580, 20), (280, 580, 20), (300, 580, 20), (320, 580, 20), (340, 580, 20), (360, 580, 20), (380, 580, 20), (400, 580, 20), (420, 580, 20), (440, 580, 20), (460, 580, 20), (480, 580, 20), (500, 580, 20), (520, 580, 20), (540, 580, 20), (560, 580, 20), (580, 580, 20), (600, 580, 20), (620, 580, 20), (0, 600, 20), (20, 600, 20), (40, 600, 20), (60, 600, 20), (80, 600, 20), (100, 600, 20), (120, 600, 20), (140, 600, 20), (160, 600, 20), (180, 600, 20), (200, 600, 20), (220, 600, 20), (240, 600, 20), (260, 600, 20), (280, 600, 20), (300, 600, 20), (320, 600, 20), (340, 600, 20), (360, 600, 20), (380, 600, 20), (400, 600, 20), (420, 600, 20), (440, 600, 20), (460, 600, 20), (480, 600, 20), (500, 600, 20), (520, 600, 20), (540, 600, 20), (560, 600, 20), (580, 600, 20), (600, 600, 20), (620, 600, 20), (0, 620, 20), (20, 620, 20), (40, 620, 20), (60, 620, 20), (80, 620, 20), (100, 620, 20), (120, 620, 20), (140, 620, 20), (160, 620, 20), (180, 620, 20), (200, 620, 20), (220, 620, 20), (240, 620, 20), (260, 620, 20), (280, 620, 20), (300, 620, 20), (320, 620, 20), (340, 620, 20), (360, 620, 20), (380, 620, 20), (400, 620, 20), (420, 620, 20), (440, 620, 20), (460, 620, 20), (480, 620, 20), (500, 620, 20), (520, 620, 20), (540, 620, 20), (560, 620, 20), (580, 620, 20), (600, 620, 20), (620, 620, 20)] color3f[] primvars:displayColor = [(0.2784314, 0.64705884, 1)] } def ComputeNode "testDeformer" { custom token node:type = "omni.graph.examples.cpp.Deformer1" point3f[] inputs:points.connect = </defaultPrim/inputGrid.points> float inputs:multiplier = 3 float inputs:wavelength = 310 point3f[] outputs:points } def Mesh "outputGrid" { uniform bool doubleSided = 1 int[] faceVertexCounts = [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 1, 33, 0, 33, 32, 1, 2, 34, 1, 34, 33, 2, 3, 35, 2, 35, 34, 3, 4, 36, 3, 36, 35, 4, 5, 37, 4, 37, 36, 5, 6, 38, 5, 38, 37, 6, 7, 39, 6, 39, 38, 7, 8, 40, 7, 40, 39, 8, 9, 41, 8, 41, 40, 9, 10, 42, 9, 42, 41, 10, 11, 43, 10, 43, 42, 11, 12, 44, 11, 44, 43, 12, 13, 45, 12, 45, 44, 13, 14, 46, 13, 46, 45, 14, 15, 47, 14, 47, 46, 15, 16, 48, 15, 48, 47, 16, 17, 49, 16, 49, 48, 17, 18, 50, 17, 50, 49, 18, 19, 51, 18, 51, 50, 19, 20, 52, 19, 52, 51, 20, 21, 53, 20, 53, 52, 21, 22, 54, 21, 54, 53, 22, 23, 55, 22, 55, 54, 23, 24, 56, 23, 56, 55, 24, 25, 57, 24, 57, 56, 25, 26, 58, 25, 58, 57, 26, 27, 59, 26, 59, 58, 27, 28, 60, 27, 60, 59, 28, 29, 61, 28, 61, 60, 29, 30, 62, 29, 62, 61, 30, 31, 63, 30, 63, 62, 32, 33, 65, 32, 65, 64, 33, 34, 66, 33, 66, 65, 34, 35, 67, 34, 67, 66, 35, 36, 68, 35, 68, 67, 36, 37, 69, 36, 69, 68, 37, 38, 70, 37, 70, 69, 38, 39, 71, 38, 71, 70, 39, 40, 72, 39, 72, 71, 40, 41, 73, 40, 73, 72, 41, 42, 74, 41, 74, 73, 42, 43, 75, 42, 75, 74, 43, 44, 76, 43, 76, 75, 44, 45, 77, 44, 77, 76, 45, 46, 78, 45, 78, 77, 46, 47, 79, 46, 79, 78, 47, 48, 80, 47, 80, 79, 48, 49, 81, 48, 81, 80, 49, 50, 82, 49, 82, 81, 50, 51, 83, 50, 83, 82, 51, 52, 84, 51, 84, 83, 52, 53, 85, 52, 85, 84, 53, 54, 86, 53, 86, 85, 54, 55, 87, 54, 87, 86, 55, 56, 88, 55, 88, 87, 56, 57, 89, 56, 89, 88, 57, 58, 90, 57, 90, 89, 58, 59, 91, 58, 91, 90, 59, 60, 92, 59, 92, 91, 60, 61, 93, 60, 93, 92, 61, 62, 94, 61, 94, 93, 62, 63, 95, 62, 95, 94, 64, 65, 97, 64, 97, 96, 65, 66, 98, 65, 98, 97, 66, 67, 99, 66, 99, 98, 67, 68, 100, 67, 100, 99, 68, 69, 101, 68, 101, 100, 69, 70, 102, 69, 102, 101, 70, 71, 103, 70, 103, 102, 71, 72, 104, 71, 104, 103, 72, 73, 105, 72, 105, 104, 73, 74, 106, 73, 106, 105, 74, 75, 107, 74, 107, 106, 75, 76, 108, 75, 108, 107, 76, 77, 109, 76, 109, 108, 77, 78, 110, 77, 110, 109, 78, 79, 111, 78, 111, 110, 79, 80, 112, 79, 112, 111, 80, 81, 113, 80, 113, 112, 81, 82, 114, 81, 114, 113, 82, 83, 115, 82, 115, 114, 83, 84, 116, 83, 116, 115, 84, 85, 117, 84, 117, 116, 85, 86, 118, 85, 118, 117, 86, 87, 119, 86, 119, 118, 87, 88, 120, 87, 120, 119, 88, 89, 121, 88, 121, 120, 89, 90, 122, 89, 122, 121, 90, 91, 123, 90, 123, 122, 91, 92, 124, 91, 124, 123, 92, 93, 125, 92, 125, 124, 93, 94, 126, 93, 126, 125, 94, 95, 127, 94, 127, 126, 96, 97, 129, 96, 129, 128, 97, 98, 130, 97, 130, 129, 98, 99, 131, 98, 131, 130, 99, 100, 132, 99, 132, 131, 100, 101, 133, 100, 133, 132, 101, 102, 134, 101, 134, 133, 102, 103, 135, 102, 135, 134, 103, 104, 136, 103, 136, 135, 104, 105, 137, 104, 137, 136, 105, 106, 138, 105, 138, 137, 106, 107, 139, 106, 139, 138, 107, 108, 140, 107, 140, 139, 108, 109, 141, 108, 141, 140, 109, 110, 142, 109, 142, 141, 110, 111, 143, 110, 143, 142, 111, 112, 144, 111, 144, 143, 112, 113, 145, 112, 145, 144, 113, 114, 146, 113, 146, 145, 114, 115, 147, 114, 147, 146, 115, 116, 148, 115, 148, 147, 116, 117, 149, 116, 149, 148, 117, 118, 150, 117, 150, 149, 118, 119, 151, 118, 151, 150, 119, 120, 152, 119, 152, 151, 120, 121, 153, 120, 153, 152, 121, 122, 154, 121, 154, 153, 122, 123, 155, 122, 155, 154, 123, 124, 156, 123, 156, 155, 124, 125, 157, 124, 157, 156, 125, 126, 158, 125, 158, 157, 126, 127, 159, 126, 159, 158, 128, 129, 161, 128, 161, 160, 129, 130, 162, 129, 162, 161, 130, 131, 163, 130, 163, 162, 131, 132, 164, 131, 164, 163, 132, 133, 165, 132, 165, 164, 133, 134, 166, 133, 166, 165, 134, 135, 167, 134, 167, 166, 135, 136, 168, 135, 168, 167, 136, 137, 169, 136, 169, 168, 137, 138, 170, 137, 170, 169, 138, 139, 171, 138, 171, 170, 139, 140, 172, 139, 172, 171, 140, 141, 173, 140, 173, 172, 141, 142, 174, 141, 174, 173, 142, 143, 175, 142, 175, 174, 143, 144, 176, 143, 176, 175, 144, 145, 177, 144, 177, 176, 145, 146, 178, 145, 178, 177, 146, 147, 179, 146, 179, 178, 147, 148, 180, 147, 180, 179, 148, 149, 181, 148, 181, 180, 149, 150, 182, 149, 182, 181, 150, 151, 183, 150, 183, 182, 151, 152, 184, 151, 184, 183, 152, 153, 185, 152, 185, 184, 153, 154, 186, 153, 186, 185, 154, 155, 187, 154, 187, 186, 155, 156, 188, 155, 188, 187, 156, 157, 189, 156, 189, 188, 157, 158, 190, 157, 190, 189, 158, 159, 191, 158, 191, 190, 160, 161, 193, 160, 193, 192, 161, 162, 194, 161, 194, 193, 162, 163, 195, 162, 195, 194, 163, 164, 196, 163, 196, 195, 164, 165, 197, 164, 197, 196, 165, 166, 198, 165, 198, 197, 166, 167, 199, 166, 199, 198, 167, 168, 200, 167, 200, 199, 168, 169, 201, 168, 201, 200, 169, 170, 202, 169, 202, 201, 170, 171, 203, 170, 203, 202, 171, 172, 204, 171, 204, 203, 172, 173, 205, 172, 205, 204, 173, 174, 206, 173, 206, 205, 174, 175, 207, 174, 207, 206, 175, 176, 208, 175, 208, 207, 176, 177, 209, 176, 209, 208, 177, 178, 210, 177, 210, 209, 178, 179, 211, 178, 211, 210, 179, 180, 212, 179, 212, 211, 180, 181, 213, 180, 213, 212, 181, 182, 214, 181, 214, 213, 182, 183, 215, 182, 215, 214, 183, 184, 216, 183, 216, 215, 184, 185, 217, 184, 217, 216, 185, 186, 218, 185, 218, 217, 186, 187, 219, 186, 219, 218, 187, 188, 220, 187, 220, 219, 188, 189, 221, 188, 221, 220, 189, 190, 222, 189, 222, 221, 190, 191, 223, 190, 223, 222, 192, 193, 225, 192, 225, 224, 193, 194, 226, 193, 226, 225, 194, 195, 227, 194, 227, 226, 195, 196, 228, 195, 228, 227, 196, 197, 229, 196, 229, 228, 197, 198, 230, 197, 230, 229, 198, 199, 231, 198, 231, 230, 199, 200, 232, 199, 232, 231, 200, 201, 233, 200, 233, 232, 201, 202, 234, 201, 234, 233, 202, 203, 235, 202, 235, 234, 203, 204, 236, 203, 236, 235, 204, 205, 237, 204, 237, 236, 205, 206, 238, 205, 238, 237, 206, 207, 239, 206, 239, 238, 207, 208, 240, 207, 240, 239, 208, 209, 241, 208, 241, 240, 209, 210, 242, 209, 242, 241, 210, 211, 243, 210, 243, 242, 211, 212, 244, 211, 244, 243, 212, 213, 245, 212, 245, 244, 213, 214, 246, 213, 246, 245, 214, 215, 247, 214, 247, 246, 215, 216, 248, 215, 248, 247, 216, 217, 249, 216, 249, 248, 217, 218, 250, 217, 250, 249, 218, 219, 251, 218, 251, 250, 219, 220, 252, 219, 252, 251, 220, 221, 253, 220, 253, 252, 221, 222, 254, 221, 254, 253, 222, 223, 255, 222, 255, 254, 224, 225, 257, 224, 257, 256, 225, 226, 258, 225, 258, 257, 226, 227, 259, 226, 259, 258, 227, 228, 260, 227, 260, 259, 228, 229, 261, 228, 261, 260, 229, 230, 262, 229, 262, 261, 230, 231, 263, 230, 263, 262, 231, 232, 264, 231, 264, 263, 232, 233, 265, 232, 265, 264, 233, 234, 266, 233, 266, 265, 234, 235, 267, 234, 267, 266, 235, 236, 268, 235, 268, 267, 236, 237, 269, 236, 269, 268, 237, 238, 270, 237, 270, 269, 238, 239, 271, 238, 271, 270, 239, 240, 272, 239, 272, 271, 240, 241, 273, 240, 273, 272, 241, 242, 274, 241, 274, 273, 242, 243, 275, 242, 275, 274, 243, 244, 276, 243, 276, 275, 244, 245, 277, 244, 277, 276, 245, 246, 278, 245, 278, 277, 246, 247, 279, 246, 279, 278, 247, 248, 280, 247, 280, 279, 248, 249, 281, 248, 281, 280, 249, 250, 282, 249, 282, 281, 250, 251, 283, 250, 283, 282, 251, 252, 284, 251, 284, 283, 252, 253, 285, 252, 285, 284, 253, 254, 286, 253, 286, 285, 254, 255, 287, 254, 287, 286, 256, 257, 289, 256, 289, 288, 257, 258, 290, 257, 290, 289, 258, 259, 291, 258, 291, 290, 259, 260, 292, 259, 292, 291, 260, 261, 293, 260, 293, 292, 261, 262, 294, 261, 294, 293, 262, 263, 295, 262, 295, 294, 263, 264, 296, 263, 296, 295, 264, 265, 297, 264, 297, 296, 265, 266, 298, 265, 298, 297, 266, 267, 299, 266, 299, 298, 267, 268, 300, 267, 300, 299, 268, 269, 301, 268, 301, 300, 269, 270, 302, 269, 302, 301, 270, 271, 303, 270, 303, 302, 271, 272, 304, 271, 304, 303, 272, 273, 305, 272, 305, 304, 273, 274, 306, 273, 306, 305, 274, 275, 307, 274, 307, 306, 275, 276, 308, 275, 308, 307, 276, 277, 309, 276, 309, 308, 277, 278, 310, 277, 310, 309, 278, 279, 311, 278, 311, 310, 279, 280, 312, 279, 312, 311, 280, 281, 313, 280, 313, 312, 281, 282, 314, 281, 314, 313, 282, 283, 315, 282, 315, 314, 283, 284, 316, 283, 316, 315, 284, 285, 317, 284, 317, 316, 285, 286, 318, 285, 318, 317, 286, 287, 319, 286, 319, 318, 288, 289, 321, 288, 321, 320, 289, 290, 322, 289, 322, 321, 290, 291, 323, 290, 323, 322, 291, 292, 324, 291, 324, 323, 292, 293, 325, 292, 325, 324, 293, 294, 326, 293, 326, 325, 294, 295, 327, 294, 327, 326, 295, 296, 328, 295, 328, 327, 296, 297, 329, 296, 329, 328, 297, 298, 330, 297, 330, 329, 298, 299, 331, 298, 331, 330, 299, 300, 332, 299, 332, 331, 300, 301, 333, 300, 333, 332, 301, 302, 334, 301, 334, 333, 302, 303, 335, 302, 335, 334, 303, 304, 336, 303, 336, 335, 304, 305, 337, 304, 337, 336, 305, 306, 338, 305, 338, 337, 306, 307, 339, 306, 339, 338, 307, 308, 340, 307, 340, 339, 308, 309, 341, 308, 341, 340, 309, 310, 342, 309, 342, 341, 310, 311, 343, 310, 343, 342, 311, 312, 344, 311, 344, 343, 312, 313, 345, 312, 345, 344, 313, 314, 346, 313, 346, 345, 314, 315, 347, 314, 347, 346, 315, 316, 348, 315, 348, 347, 316, 317, 349, 316, 349, 348, 317, 318, 350, 317, 350, 349, 318, 319, 351, 318, 351, 350, 320, 321, 353, 320, 353, 352, 321, 322, 354, 321, 354, 353, 322, 323, 355, 322, 355, 354, 323, 324, 356, 323, 356, 355, 324, 325, 357, 324, 357, 356, 325, 326, 358, 325, 358, 357, 326, 327, 359, 326, 359, 358, 327, 328, 360, 327, 360, 359, 328, 329, 361, 328, 361, 360, 329, 330, 362, 329, 362, 361, 330, 331, 363, 330, 363, 362, 331, 332, 364, 331, 364, 363, 332, 333, 365, 332, 365, 364, 333, 334, 366, 333, 366, 365, 334, 335, 367, 334, 367, 366, 335, 336, 368, 335, 368, 367, 336, 337, 369, 336, 369, 368, 337, 338, 370, 337, 370, 369, 338, 339, 371, 338, 371, 370, 339, 340, 372, 339, 372, 371, 340, 341, 373, 340, 373, 372, 341, 342, 374, 341, 374, 373, 342, 343, 375, 342, 375, 374, 343, 344, 376, 343, 376, 375, 344, 345, 377, 344, 377, 376, 345, 346, 378, 345, 378, 377, 346, 347, 379, 346, 379, 378, 347, 348, 380, 347, 380, 379, 348, 349, 381, 348, 381, 380, 349, 350, 382, 349, 382, 381, 350, 351, 383, 350, 383, 382, 352, 353, 385, 352, 385, 384, 353, 354, 386, 353, 386, 385, 354, 355, 387, 354, 387, 386, 355, 356, 388, 355, 388, 387, 356, 357, 389, 356, 389, 388, 357, 358, 390, 357, 390, 389, 358, 359, 391, 358, 391, 390, 359, 360, 392, 359, 392, 391, 360, 361, 393, 360, 393, 392, 361, 362, 394, 361, 394, 393, 362, 363, 395, 362, 395, 394, 363, 364, 396, 363, 396, 395, 364, 365, 397, 364, 397, 396, 365, 366, 398, 365, 398, 397, 366, 367, 399, 366, 399, 398, 367, 368, 400, 367, 400, 399, 368, 369, 401, 368, 401, 400, 369, 370, 402, 369, 402, 401, 370, 371, 403, 370, 403, 402, 371, 372, 404, 371, 404, 403, 372, 373, 405, 372, 405, 404, 373, 374, 406, 373, 406, 405, 374, 375, 407, 374, 407, 406, 375, 376, 408, 375, 408, 407, 376, 377, 409, 376, 409, 408, 377, 378, 410, 377, 410, 409, 378, 379, 411, 378, 411, 410, 379, 380, 412, 379, 412, 411, 380, 381, 413, 380, 413, 412, 381, 382, 414, 381, 414, 413, 382, 383, 415, 382, 415, 414, 384, 385, 417, 384, 417, 416, 385, 386, 418, 385, 418, 417, 386, 387, 419, 386, 419, 418, 387, 388, 420, 387, 420, 419, 388, 389, 421, 388, 421, 420, 389, 390, 422, 389, 422, 421, 390, 391, 423, 390, 423, 422, 391, 392, 424, 391, 424, 423, 392, 393, 425, 392, 425, 424, 393, 394, 426, 393, 426, 425, 394, 395, 427, 394, 427, 426, 395, 396, 428, 395, 428, 427, 396, 397, 429, 396, 429, 428, 397, 398, 430, 397, 430, 429, 398, 399, 431, 398, 431, 430, 399, 400, 432, 399, 432, 431, 400, 401, 433, 400, 433, 432, 401, 402, 434, 401, 434, 433, 402, 403, 435, 402, 435, 434, 403, 404, 436, 403, 436, 435, 404, 405, 437, 404, 437, 436, 405, 406, 438, 405, 438, 437, 406, 407, 439, 406, 439, 438, 407, 408, 440, 407, 440, 439, 408, 409, 441, 408, 441, 440, 409, 410, 442, 409, 442, 441, 410, 411, 443, 410, 443, 442, 411, 412, 444, 411, 444, 443, 412, 413, 445, 412, 445, 444, 413, 414, 446, 413, 446, 445, 414, 415, 447, 414, 447, 446, 416, 417, 449, 416, 449, 448, 417, 418, 450, 417, 450, 449, 418, 419, 451, 418, 451, 450, 419, 420, 452, 419, 452, 451, 420, 421, 453, 420, 453, 452, 421, 422, 454, 421, 454, 453, 422, 423, 455, 422, 455, 454, 423, 424, 456, 423, 456, 455, 424, 425, 457, 424, 457, 456, 425, 426, 458, 425, 458, 457, 426, 427, 459, 426, 459, 458, 427, 428, 460, 427, 460, 459, 428, 429, 461, 428, 461, 460, 429, 430, 462, 429, 462, 461, 430, 431, 463, 430, 463, 462, 431, 432, 464, 431, 464, 463, 432, 433, 465, 432, 465, 464, 433, 434, 466, 433, 466, 465, 434, 435, 467, 434, 467, 466, 435, 436, 468, 435, 468, 467, 436, 437, 469, 436, 469, 468, 437, 438, 470, 437, 470, 469, 438, 439, 471, 438, 471, 470, 439, 440, 472, 439, 472, 471, 440, 441, 473, 440, 473, 472, 441, 442, 474, 441, 474, 473, 442, 443, 475, 442, 475, 474, 443, 444, 476, 443, 476, 475, 444, 445, 477, 444, 477, 476, 445, 446, 478, 445, 478, 477, 446, 447, 479, 446, 479, 478, 448, 449, 481, 448, 481, 480, 449, 450, 482, 449, 482, 481, 450, 451, 483, 450, 483, 482, 451, 452, 484, 451, 484, 483, 452, 453, 485, 452, 485, 484, 453, 454, 486, 453, 486, 485, 454, 455, 487, 454, 487, 486, 455, 456, 488, 455, 488, 487, 456, 457, 489, 456, 489, 488, 457, 458, 490, 457, 490, 489, 458, 459, 491, 458, 491, 490, 459, 460, 492, 459, 492, 491, 460, 461, 493, 460, 493, 492, 461, 462, 494, 461, 494, 493, 462, 463, 495, 462, 495, 494, 463, 464, 496, 463, 496, 495, 464, 465, 497, 464, 497, 496, 465, 466, 498, 465, 498, 497, 466, 467, 499, 466, 499, 498, 467, 468, 500, 467, 500, 499, 468, 469, 501, 468, 501, 500, 469, 470, 502, 469, 502, 501, 470, 471, 503, 470, 503, 502, 471, 472, 504, 471, 504, 503, 472, 473, 505, 472, 505, 504, 473, 474, 506, 473, 506, 505, 474, 475, 507, 474, 507, 506, 475, 476, 508, 475, 508, 507, 476, 477, 509, 476, 509, 508, 477, 478, 510, 477, 510, 509, 478, 479, 511, 478, 511, 510, 480, 481, 513, 480, 513, 512, 481, 482, 514, 481, 514, 513, 482, 483, 515, 482, 515, 514, 483, 484, 516, 483, 516, 515, 484, 485, 517, 484, 517, 516, 485, 486, 518, 485, 518, 517, 486, 487, 519, 486, 519, 518, 487, 488, 520, 487, 520, 519, 488, 489, 521, 488, 521, 520, 489, 490, 522, 489, 522, 521, 490, 491, 523, 490, 523, 522, 491, 492, 524, 491, 524, 523, 492, 493, 525, 492, 525, 524, 493, 494, 526, 493, 526, 525, 494, 495, 527, 494, 527, 526, 495, 496, 528, 495, 528, 527, 496, 497, 529, 496, 529, 528, 497, 498, 530, 497, 530, 529, 498, 499, 531, 498, 531, 530, 499, 500, 532, 499, 532, 531, 500, 501, 533, 500, 533, 532, 501, 502, 534, 501, 534, 533, 502, 503, 535, 502, 535, 534, 503, 504, 536, 503, 536, 535, 504, 505, 537, 504, 537, 536, 505, 506, 538, 505, 538, 537, 506, 507, 539, 506, 539, 538, 507, 508, 540, 507, 540, 539, 508, 509, 541, 508, 541, 540, 509, 510, 542, 509, 542, 541, 510, 511, 543, 510, 543, 542, 512, 513, 545, 512, 545, 544, 513, 514, 546, 513, 546, 545, 514, 515, 547, 514, 547, 546, 515, 516, 548, 515, 548, 547, 516, 517, 549, 516, 549, 548, 517, 518, 550, 517, 550, 549, 518, 519, 551, 518, 551, 550, 519, 520, 552, 519, 552, 551, 520, 521, 553, 520, 553, 552, 521, 522, 554, 521, 554, 553, 522, 523, 555, 522, 555, 554, 523, 524, 556, 523, 556, 555, 524, 525, 557, 524, 557, 556, 525, 526, 558, 525, 558, 557, 526, 527, 559, 526, 559, 558, 527, 528, 560, 527, 560, 559, 528, 529, 561, 528, 561, 560, 529, 530, 562, 529, 562, 561, 530, 531, 563, 530, 563, 562, 531, 532, 564, 531, 564, 563, 532, 533, 565, 532, 565, 564, 533, 534, 566, 533, 566, 565, 534, 535, 567, 534, 567, 566, 535, 536, 568, 535, 568, 567, 536, 537, 569, 536, 569, 568, 537, 538, 570, 537, 570, 569, 538, 539, 571, 538, 571, 570, 539, 540, 572, 539, 572, 571, 540, 541, 573, 540, 573, 572, 541, 542, 574, 541, 574, 573, 542, 543, 575, 542, 575, 574, 544, 545, 577, 544, 577, 576, 545, 546, 578, 545, 578, 577, 546, 547, 579, 546, 579, 578, 547, 548, 580, 547, 580, 579, 548, 549, 581, 548, 581, 580, 549, 550, 582, 549, 582, 581, 550, 551, 583, 550, 583, 582, 551, 552, 584, 551, 584, 583, 552, 553, 585, 552, 585, 584, 553, 554, 586, 553, 586, 585, 554, 555, 587, 554, 587, 586, 555, 556, 588, 555, 588, 587, 556, 557, 589, 556, 589, 588, 557, 558, 590, 557, 590, 589, 558, 559, 591, 558, 591, 590, 559, 560, 592, 559, 592, 591, 560, 561, 593, 560, 593, 592, 561, 562, 594, 561, 594, 593, 562, 563, 595, 562, 595, 594, 563, 564, 596, 563, 596, 595, 564, 565, 597, 564, 597, 596, 565, 566, 598, 565, 598, 597, 566, 567, 599, 566, 599, 598, 567, 568, 600, 567, 600, 599, 568, 569, 601, 568, 601, 600, 569, 570, 602, 569, 602, 601, 570, 571, 603, 570, 603, 602, 571, 572, 604, 571, 604, 603, 572, 573, 605, 572, 605, 604, 573, 574, 606, 573, 606, 605, 574, 575, 607, 574, 607, 606, 576, 577, 609, 576, 609, 608, 577, 578, 610, 577, 610, 609, 578, 579, 611, 578, 611, 610, 579, 580, 612, 579, 612, 611, 580, 581, 613, 580, 613, 612, 581, 582, 614, 581, 614, 613, 582, 583, 615, 582, 615, 614, 583, 584, 616, 583, 616, 615, 584, 585, 617, 584, 617, 616, 585, 586, 618, 585, 618, 617, 586, 587, 619, 586, 619, 618, 587, 588, 620, 587, 620, 619, 588, 589, 621, 588, 621, 620, 589, 590, 622, 589, 622, 621, 590, 591, 623, 590, 623, 622, 591, 592, 624, 591, 624, 623, 592, 593, 625, 592, 625, 624, 593, 594, 626, 593, 626, 625, 594, 595, 627, 594, 627, 626, 595, 596, 628, 595, 628, 627, 596, 597, 629, 596, 629, 628, 597, 598, 630, 597, 630, 629, 598, 599, 631, 598, 631, 630, 599, 600, 632, 599, 632, 631, 600, 601, 633, 600, 633, 632, 601, 602, 634, 601, 634, 633, 602, 603, 635, 602, 635, 634, 603, 604, 636, 603, 636, 635, 604, 605, 637, 604, 637, 636, 605, 606, 638, 605, 638, 637, 606, 607, 639, 606, 639, 638, 608, 609, 641, 608, 641, 640, 609, 610, 642, 609, 642, 641, 610, 611, 643, 610, 643, 642, 611, 612, 644, 611, 644, 643, 612, 613, 645, 612, 645, 644, 613, 614, 646, 613, 646, 645, 614, 615, 647, 614, 647, 646, 615, 616, 648, 615, 648, 647, 616, 617, 649, 616, 649, 648, 617, 618, 650, 617, 650, 649, 618, 619, 651, 618, 651, 650, 619, 620, 652, 619, 652, 651, 620, 621, 653, 620, 653, 652, 621, 622, 654, 621, 654, 653, 622, 623, 655, 622, 655, 654, 623, 624, 656, 623, 656, 655, 624, 625, 657, 624, 657, 656, 625, 626, 658, 625, 658, 657, 626, 627, 659, 626, 659, 658, 627, 628, 660, 627, 660, 659, 628, 629, 661, 628, 661, 660, 629, 630, 662, 629, 662, 661, 630, 631, 663, 630, 663, 662, 631, 632, 664, 631, 664, 663, 632, 633, 665, 632, 665, 664, 633, 634, 666, 633, 666, 665, 634, 635, 667, 634, 667, 666, 635, 636, 668, 635, 668, 667, 636, 637, 669, 636, 669, 668, 637, 638, 670, 637, 670, 669, 638, 639, 671, 638, 671, 670, 640, 641, 673, 640, 673, 672, 641, 642, 674, 641, 674, 673, 642, 643, 675, 642, 675, 674, 643, 644, 676, 643, 676, 675, 644, 645, 677, 644, 677, 676, 645, 646, 678, 645, 678, 677, 646, 647, 679, 646, 679, 678, 647, 648, 680, 647, 680, 679, 648, 649, 681, 648, 681, 680, 649, 650, 682, 649, 682, 681, 650, 651, 683, 650, 683, 682, 651, 652, 684, 651, 684, 683, 652, 653, 685, 652, 685, 684, 653, 654, 686, 653, 686, 685, 654, 655, 687, 654, 687, 686, 655, 656, 688, 655, 688, 687, 656, 657, 689, 656, 689, 688, 657, 658, 690, 657, 690, 689, 658, 659, 691, 658, 691, 690, 659, 660, 692, 659, 692, 691, 660, 661, 693, 660, 693, 692, 661, 662, 694, 661, 694, 693, 662, 663, 695, 662, 695, 694, 663, 664, 696, 663, 696, 695, 664, 665, 697, 664, 697, 696, 665, 666, 698, 665, 698, 697, 666, 667, 699, 666, 699, 698, 667, 668, 700, 667, 700, 699, 668, 669, 701, 668, 701, 700, 669, 670, 702, 669, 702, 701, 670, 671, 703, 670, 703, 702, 672, 673, 705, 672, 705, 704, 673, 674, 706, 673, 706, 705, 674, 675, 707, 674, 707, 706, 675, 676, 708, 675, 708, 707, 676, 677, 709, 676, 709, 708, 677, 678, 710, 677, 710, 709, 678, 679, 711, 678, 711, 710, 679, 680, 712, 679, 712, 711, 680, 681, 713, 680, 713, 712, 681, 682, 714, 681, 714, 713, 682, 683, 715, 682, 715, 714, 683, 684, 716, 683, 716, 715, 684, 685, 717, 684, 717, 716, 685, 686, 718, 685, 718, 717, 686, 687, 719, 686, 719, 718, 687, 688, 720, 687, 720, 719, 688, 689, 721, 688, 721, 720, 689, 690, 722, 689, 722, 721, 690, 691, 723, 690, 723, 722, 691, 692, 724, 691, 724, 723, 692, 693, 725, 692, 725, 724, 693, 694, 726, 693, 726, 725, 694, 695, 727, 694, 727, 726, 695, 696, 728, 695, 728, 727, 696, 697, 729, 696, 729, 728, 697, 698, 730, 697, 730, 729, 698, 699, 731, 698, 731, 730, 699, 700, 732, 699, 732, 731, 700, 701, 733, 700, 733, 732, 701, 702, 734, 701, 734, 733, 702, 703, 735, 702, 735, 734, 704, 705, 737, 704, 737, 736, 705, 706, 738, 705, 738, 737, 706, 707, 739, 706, 739, 738, 707, 708, 740, 707, 740, 739, 708, 709, 741, 708, 741, 740, 709, 710, 742, 709, 742, 741, 710, 711, 743, 710, 743, 742, 711, 712, 744, 711, 744, 743, 712, 713, 745, 712, 745, 744, 713, 714, 746, 713, 746, 745, 714, 715, 747, 714, 747, 746, 715, 716, 748, 715, 748, 747, 716, 717, 749, 716, 749, 748, 717, 718, 750, 717, 750, 749, 718, 719, 751, 718, 751, 750, 719, 720, 752, 719, 752, 751, 720, 721, 753, 720, 753, 752, 721, 722, 754, 721, 754, 753, 722, 723, 755, 722, 755, 754, 723, 724, 756, 723, 756, 755, 724, 725, 757, 724, 757, 756, 725, 726, 758, 725, 758, 757, 726, 727, 759, 726, 759, 758, 727, 728, 760, 727, 760, 759, 728, 729, 761, 728, 761, 760, 729, 730, 762, 729, 762, 761, 730, 731, 763, 730, 763, 762, 731, 732, 764, 731, 764, 763, 732, 733, 765, 732, 765, 764, 733, 734, 766, 733, 766, 765, 734, 735, 767, 734, 767, 766, 736, 737, 769, 736, 769, 768, 737, 738, 770, 737, 770, 769, 738, 739, 771, 738, 771, 770, 739, 740, 772, 739, 772, 771, 740, 741, 773, 740, 773, 772, 741, 742, 774, 741, 774, 773, 742, 743, 775, 742, 775, 774, 743, 744, 776, 743, 776, 775, 744, 745, 777, 744, 777, 776, 745, 746, 778, 745, 778, 777, 746, 747, 779, 746, 779, 778, 747, 748, 780, 747, 780, 779, 748, 749, 781, 748, 781, 780, 749, 750, 782, 749, 782, 781, 750, 751, 783, 750, 783, 782, 751, 752, 784, 751, 784, 783, 752, 753, 785, 752, 785, 784, 753, 754, 786, 753, 786, 785, 754, 755, 787, 754, 787, 786, 755, 756, 788, 755, 788, 787, 756, 757, 789, 756, 789, 788, 757, 758, 790, 757, 790, 789, 758, 759, 791, 758, 791, 790, 759, 760, 792, 759, 792, 791, 760, 761, 793, 760, 793, 792, 761, 762, 794, 761, 794, 793, 762, 763, 795, 762, 795, 794, 763, 764, 796, 763, 796, 795, 764, 765, 797, 764, 797, 796, 765, 766, 798, 765, 798, 797, 766, 767, 799, 766, 799, 798, 768, 769, 801, 768, 801, 800, 769, 770, 802, 769, 802, 801, 770, 771, 803, 770, 803, 802, 771, 772, 804, 771, 804, 803, 772, 773, 805, 772, 805, 804, 773, 774, 806, 773, 806, 805, 774, 775, 807, 774, 807, 806, 775, 776, 808, 775, 808, 807, 776, 777, 809, 776, 809, 808, 777, 778, 810, 777, 810, 809, 778, 779, 811, 778, 811, 810, 779, 780, 812, 779, 812, 811, 780, 781, 813, 780, 813, 812, 781, 782, 814, 781, 814, 813, 782, 783, 815, 782, 815, 814, 783, 784, 816, 783, 816, 815, 784, 785, 817, 784, 817, 816, 785, 786, 818, 785, 818, 817, 786, 787, 819, 786, 819, 818, 787, 788, 820, 787, 820, 819, 788, 789, 821, 788, 821, 820, 789, 790, 822, 789, 822, 821, 790, 791, 823, 790, 823, 822, 791, 792, 824, 791, 824, 823, 792, 793, 825, 792, 825, 824, 793, 794, 826, 793, 826, 825, 794, 795, 827, 794, 827, 826, 795, 796, 828, 795, 828, 827, 796, 797, 829, 796, 829, 828, 797, 798, 830, 797, 830, 829, 798, 799, 831, 798, 831, 830, 800, 801, 833, 800, 833, 832, 801, 802, 834, 801, 834, 833, 802, 803, 835, 802, 835, 834, 803, 804, 836, 803, 836, 835, 804, 805, 837, 804, 837, 836, 805, 806, 838, 805, 838, 837, 806, 807, 839, 806, 839, 838, 807, 808, 840, 807, 840, 839, 808, 809, 841, 808, 841, 840, 809, 810, 842, 809, 842, 841, 810, 811, 843, 810, 843, 842, 811, 812, 844, 811, 844, 843, 812, 813, 845, 812, 845, 844, 813, 814, 846, 813, 846, 845, 814, 815, 847, 814, 847, 846, 815, 816, 848, 815, 848, 847, 816, 817, 849, 816, 849, 848, 817, 818, 850, 817, 850, 849, 818, 819, 851, 818, 851, 850, 819, 820, 852, 819, 852, 851, 820, 821, 853, 820, 853, 852, 821, 822, 854, 821, 854, 853, 822, 823, 855, 822, 855, 854, 823, 824, 856, 823, 856, 855, 824, 825, 857, 824, 857, 856, 825, 826, 858, 825, 858, 857, 826, 827, 859, 826, 859, 858, 827, 828, 860, 827, 860, 859, 828, 829, 861, 828, 861, 860, 829, 830, 862, 829, 862, 861, 830, 831, 863, 830, 863, 862, 832, 833, 865, 832, 865, 864, 833, 834, 866, 833, 866, 865, 834, 835, 867, 834, 867, 866, 835, 836, 868, 835, 868, 867, 836, 837, 869, 836, 869, 868, 837, 838, 870, 837, 870, 869, 838, 839, 871, 838, 871, 870, 839, 840, 872, 839, 872, 871, 840, 841, 873, 840, 873, 872, 841, 842, 874, 841, 874, 873, 842, 843, 875, 842, 875, 874, 843, 844, 876, 843, 876, 875, 844, 845, 877, 844, 877, 876, 845, 846, 878, 845, 878, 877, 846, 847, 879, 846, 879, 878, 847, 848, 880, 847, 880, 879, 848, 849, 881, 848, 881, 880, 849, 850, 882, 849, 882, 881, 850, 851, 883, 850, 883, 882, 851, 852, 884, 851, 884, 883, 852, 853, 885, 852, 885, 884, 853, 854, 886, 853, 886, 885, 854, 855, 887, 854, 887, 886, 855, 856, 888, 855, 888, 887, 856, 857, 889, 856, 889, 888, 857, 858, 890, 857, 890, 889, 858, 859, 891, 858, 891, 890, 859, 860, 892, 859, 892, 891, 860, 861, 893, 860, 893, 892, 861, 862, 894, 861, 894, 893, 862, 863, 895, 862, 895, 894, 864, 865, 897, 864, 897, 896, 865, 866, 898, 865, 898, 897, 866, 867, 899, 866, 899, 898, 867, 868, 900, 867, 900, 899, 868, 869, 901, 868, 901, 900, 869, 870, 902, 869, 902, 901, 870, 871, 903, 870, 903, 902, 871, 872, 904, 871, 904, 903, 872, 873, 905, 872, 905, 904, 873, 874, 906, 873, 906, 905, 874, 875, 907, 874, 907, 906, 875, 876, 908, 875, 908, 907, 876, 877, 909, 876, 909, 908, 877, 878, 910, 877, 910, 909, 878, 879, 911, 878, 911, 910, 879, 880, 912, 879, 912, 911, 880, 881, 913, 880, 913, 912, 881, 882, 914, 881, 914, 913, 882, 883, 915, 882, 915, 914, 883, 884, 916, 883, 916, 915, 884, 885, 917, 884, 917, 916, 885, 886, 918, 885, 918, 917, 886, 887, 919, 886, 919, 918, 887, 888, 920, 887, 920, 919, 888, 889, 921, 888, 921, 920, 889, 890, 922, 889, 922, 921, 890, 891, 923, 890, 923, 922, 891, 892, 924, 891, 924, 923, 892, 893, 925, 892, 925, 924, 893, 894, 926, 893, 926, 925, 894, 895, 927, 894, 927, 926, 896, 897, 929, 896, 929, 928, 897, 898, 930, 897, 930, 929, 898, 899, 931, 898, 931, 930, 899, 900, 932, 899, 932, 931, 900, 901, 933, 900, 933, 932, 901, 902, 934, 901, 934, 933, 902, 903, 935, 902, 935, 934, 903, 904, 936, 903, 936, 935, 904, 905, 937, 904, 937, 936, 905, 906, 938, 905, 938, 937, 906, 907, 939, 906, 939, 938, 907, 908, 940, 907, 940, 939, 908, 909, 941, 908, 941, 940, 909, 910, 942, 909, 942, 941, 910, 911, 943, 910, 943, 942, 911, 912, 944, 911, 944, 943, 912, 913, 945, 912, 945, 944, 913, 914, 946, 913, 946, 945, 914, 915, 947, 914, 947, 946, 915, 916, 948, 915, 948, 947, 916, 917, 949, 916, 949, 948, 917, 918, 950, 917, 950, 949, 918, 919, 951, 918, 951, 950, 919, 920, 952, 919, 952, 951, 920, 921, 953, 920, 953, 952, 921, 922, 954, 921, 954, 953, 922, 923, 955, 922, 955, 954, 923, 924, 956, 923, 956, 955, 924, 925, 957, 924, 957, 956, 925, 926, 958, 925, 958, 957, 926, 927, 959, 926, 959, 958, 928, 929, 961, 928, 961, 960, 929, 930, 962, 929, 962, 961, 930, 931, 963, 930, 963, 962, 931, 932, 964, 931, 964, 963, 932, 933, 965, 932, 965, 964, 933, 934, 966, 933, 966, 965, 934, 935, 967, 934, 967, 966, 935, 936, 968, 935, 968, 967, 936, 937, 969, 936, 969, 968, 937, 938, 970, 937, 970, 969, 938, 939, 971, 938, 971, 970, 939, 940, 972, 939, 972, 971, 940, 941, 973, 940, 973, 972, 941, 942, 974, 941, 974, 973, 942, 943, 975, 942, 975, 974, 943, 944, 976, 943, 976, 975, 944, 945, 977, 944, 977, 976, 945, 946, 978, 945, 978, 977, 946, 947, 979, 946, 979, 978, 947, 948, 980, 947, 980, 979, 948, 949, 981, 948, 981, 980, 949, 950, 982, 949, 982, 981, 950, 951, 983, 950, 983, 982, 951, 952, 984, 951, 984, 983, 952, 953, 985, 952, 985, 984, 953, 954, 986, 953, 986, 985, 954, 955, 987, 954, 987, 986, 955, 956, 988, 955, 988, 987, 956, 957, 989, 956, 989, 988, 957, 958, 990, 957, 990, 989, 958, 959, 991, 958, 991, 990, 960, 961, 993, 960, 993, 992, 961, 962, 994, 961, 994, 993, 962, 963, 995, 962, 995, 994, 963, 964, 996, 963, 996, 995, 964, 965, 997, 964, 997, 996, 965, 966, 998, 965, 998, 997, 966, 967, 999, 966, 999, 998, 967, 968, 1000, 967, 1000, 999, 968, 969, 1001, 968, 1001, 1000, 969, 970, 1002, 969, 1002, 1001, 970, 971, 1003, 970, 1003, 1002, 971, 972, 1004, 971, 1004, 1003, 972, 973, 1005, 972, 1005, 1004, 973, 974, 1006, 973, 1006, 1005, 974, 975, 1007, 974, 1007, 1006, 975, 976, 1008, 975, 1008, 1007, 976, 977, 1009, 976, 1009, 1008, 977, 978, 1010, 977, 1010, 1009, 978, 979, 1011, 978, 1011, 1010, 979, 980, 1012, 979, 1012, 1011, 980, 981, 1013, 980, 1013, 1012, 981, 982, 1014, 981, 1014, 1013, 982, 983, 1015, 982, 1015, 1014, 983, 984, 1016, 983, 1016, 1015, 984, 985, 1017, 984, 1017, 1016, 985, 986, 1018, 985, 1018, 1017, 986, 987, 1019, 986, 1019, 1018, 987, 988, 1020, 987, 1020, 1019, 988, 989, 1021, 988, 1021, 1020, 989, 990, 1022, 989, 1022, 1021, 990, 991, 1023, 990, 1023, 1022] color3f[] primvars:displayColor = [(0.784314, 0.64705884, 0.1)] point3f[] points = [(0, 0, 20), (20, 0, 20), (40, 0, 20), (60, 0, 20), (80, 0, 20), (100, 0, 20), (120, 0, 20), (140, 0, 20), (160, 0, 20), (180, 0, 20), (200, 0, 20), (220, 0, 20), (240, 0, 20), (260, 0, 20), (280, 0, 20), (300, 0, 20), (320, 0, 20), (340, 0, 20), (360, 0, 20), (380, 0, 20), (400, 0, 20), (420, 0, 20), (440, 0, 20), (460, 0, 20), (480, 0, 20), (500, 0, 20), (520, 0, 20), (540, 0, 20), (560, 0, 20), (580, 0, 20), (600, 0, 20), (620, 0, 20), (0, 20, 20), (20, 20, 20), (40, 20, 20), (60, 20, 20), (80, 20, 20), (100, 20, 20), (120, 20, 20), (140, 20, 20), (160, 20, 20), (180, 20, 20), (200, 20, 20), (220, 20, 20), (240, 20, 20), (260, 20, 20), (280, 20, 20), (300, 20, 20), (320, 20, 20), (340, 20, 20), (360, 20, 20), (380, 20, 20), (400, 20, 20), (420, 20, 20), (440, 20, 20), (460, 20, 20), (480, 20, 20), (500, 20, 20), (520, 20, 20), (540, 20, 20), (560, 20, 20), (580, 20, 20), (600, 20, 20), (620, 20, 20), (0, 40, 20), (20, 40, 20), (40, 40, 20), (60, 40, 20), (80, 40, 20), (100, 40, 20), (120, 40, 20), (140, 40, 20), (160, 40, 20), (180, 40, 20), (200, 40, 20), (220, 40, 20), (240, 40, 20), (260, 40, 20), (280, 40, 20), (300, 40, 20), (320, 40, 20), (340, 40, 20), (360, 40, 20), (380, 40, 20), (400, 40, 20), (420, 40, 20), (440, 40, 20), (460, 40, 20), (480, 40, 20), (500, 40, 20), (520, 40, 20), (540, 40, 20), (560, 40, 20), (580, 40, 20), (600, 40, 20), (620, 40, 20), (0, 60, 20), (20, 60, 20), (40, 60, 20), (60, 60, 20), (80, 60, 20), (100, 60, 20), (120, 60, 20), (140, 60, 20), (160, 60, 20), (180, 60, 20), (200, 60, 20), (220, 60, 20), (240, 60, 20), (260, 60, 20), (280, 60, 20), (300, 60, 20), (320, 60, 20), (340, 60, 20), (360, 60, 20), (380, 60, 20), (400, 60, 20), (420, 60, 20), (440, 60, 20), (460, 60, 20), (480, 60, 20), (500, 60, 20), (520, 60, 20), (540, 60, 20), (560, 60, 20), (580, 60, 20), (600, 60, 20), (620, 60, 20), (0, 80, 20), (20, 80, 20), (40, 80, 20), (60, 80, 20), (80, 80, 20), (100, 80, 20), (120, 80, 20), (140, 80, 20), (160, 80, 20), (180, 80, 20), (200, 80, 20), (220, 80, 20), (240, 80, 20), (260, 80, 20), (280, 80, 20), (300, 80, 20), (320, 80, 20), (340, 80, 20), (360, 80, 20), (380, 80, 20), (400, 80, 20), (420, 80, 20), (440, 80, 20), (460, 80, 20), (480, 80, 20), (500, 80, 20), (520, 80, 20), (540, 80, 20), (560, 80, 20), (580, 80, 20), (600, 80, 20), (620, 80, 20), (0, 100, 20), (20, 100, 20), (40, 100, 20), (60, 100, 20), (80, 100, 20), (100, 100, 20), (120, 100, 20), (140, 100, 20), (160, 100, 20), (180, 100, 20), (200, 100, 20), (220, 100, 20), (240, 100, 20), (260, 100, 20), (280, 100, 20), (300, 100, 20), (320, 100, 20), (340, 100, 20), (360, 100, 20), (380, 100, 20), (400, 100, 20), (420, 100, 20), (440, 100, 20), (460, 100, 20), (480, 100, 20), (500, 100, 20), (520, 100, 20), (540, 100, 20), (560, 100, 20), (580, 100, 20), (600, 100, 20), (620, 100, 20), (0, 120, 20), (20, 120, 20), (40, 120, 20), (60, 120, 20), (80, 120, 20), (100, 120, 20), (120, 120, 20), (140, 120, 20), (160, 120, 20), (180, 120, 20), (200, 120, 20), (220, 120, 20), (240, 120, 20), (260, 120, 20), (280, 120, 20), (300, 120, 20), (320, 120, 20), (340, 120, 20), (360, 120, 20), (380, 120, 20), (400, 120, 20), (420, 120, 20), (440, 120, 20), (460, 120, 20), (480, 120, 20), (500, 120, 20), (520, 120, 20), (540, 120, 20), (560, 120, 20), (580, 120, 20), (600, 120, 20), (620, 120, 20), (0, 140, 20), (20, 140, 20), (40, 140, 20), (60, 140, 20), (80, 140, 20), (100, 140, 20), (120, 140, 20), (140, 140, 20), (160, 140, 20), (180, 140, 20), (200, 140, 20), (220, 140, 20), (240, 140, 20), (260, 140, 20), (280, 140, 20), (300, 140, 20), (320, 140, 20), (340, 140, 20), (360, 140, 20), (380, 140, 20), (400, 140, 20), (420, 140, 20), (440, 140, 20), (460, 140, 20), (480, 140, 20), (500, 140, 20), (520, 140, 20), (540, 140, 20), (560, 140, 20), (580, 140, 20), (600, 140, 20), (620, 140, 20), (0, 160, 20), (20, 160, 20), (40, 160, 20), (60, 160, 20), (80, 160, 20), (100, 160, 20), (120, 160, 20), (140, 160, 20), (160, 160, 20), (180, 160, 20), (200, 160, 20), (220, 160, 20), (240, 160, 20), (260, 160, 20), (280, 160, 20), (300, 160, 20), (320, 160, 20), (340, 160, 20), (360, 160, 20), (380, 160, 20), (400, 160, 20), (420, 160, 20), (440, 160, 20), (460, 160, 20), (480, 160, 20), (500, 160, 20), (520, 160, 20), (540, 160, 20), (560, 160, 20), (580, 160, 20), (600, 160, 20), (620, 160, 20), (0, 180, 20), (20, 180, 20), (40, 180, 20), (60, 180, 20), (80, 180, 20), (100, 180, 20), (120, 180, 20), (140, 180, 20), (160, 180, 20), (180, 180, 20), (200, 180, 20), (220, 180, 20), (240, 180, 20), (260, 180, 20), (280, 180, 20), (300, 180, 20), (320, 180, 20), (340, 180, 20), (360, 180, 20), (380, 180, 20), (400, 180, 20), (420, 180, 20), (440, 180, 20), (460, 180, 20), (480, 180, 20), (500, 180, 20), (520, 180, 20), (540, 180, 20), (560, 180, 20), (580, 180, 20), (600, 180, 20), (620, 180, 20), (0, 200, 20), (20, 200, 20), (40, 200, 20), (60, 200, 20), (80, 200, 20), (100, 200, 20), (120, 200, 20), (140, 200, 20), (160, 200, 20), (180, 200, 20), (200, 200, 20), (220, 200, 20), (240, 200, 20), (260, 200, 20), (280, 200, 20), (300, 200, 20), (320, 200, 20), (340, 200, 20), (360, 200, 20), (380, 200, 20), (400, 200, 20), (420, 200, 20), (440, 200, 20), (460, 200, 20), (480, 200, 20), (500, 200, 20), (520, 200, 20), (540, 200, 20), (560, 200, 20), (580, 200, 20), (600, 200, 20), (620, 200, 20), (0, 220, 20), (20, 220, 20), (40, 220, 20), (60, 220, 20), (80, 220, 20), (100, 220, 20), (120, 220, 20), (140, 220, 20), (160, 220, 20), (180, 220, 20), (200, 220, 20), (220, 220, 20), (240, 220, 20), (260, 220, 20), (280, 220, 20), (300, 220, 20), (320, 220, 20), (340, 220, 20), (360, 220, 20), (380, 220, 20), (400, 220, 20), (420, 220, 20), (440, 220, 20), (460, 220, 20), (480, 220, 20), (500, 220, 20), (520, 220, 20), (540, 220, 20), (560, 220, 20), (580, 220, 20), (600, 220, 20), (620, 220, 20), (0, 240, 20), (20, 240, 20), (40, 240, 20), (60, 240, 20), (80, 240, 20), (100, 240, 20), (120, 240, 20), (140, 240, 20), (160, 240, 20), (180, 240, 20), (200, 240, 20), (220, 240, 20), (240, 240, 20), (260, 240, 20), (280, 240, 20), (300, 240, 20), (320, 240, 20), (340, 240, 20), (360, 240, 20), (380, 240, 20), (400, 240, 20), (420, 240, 20), (440, 240, 20), (460, 240, 20), (480, 240, 20), (500, 240, 20), (520, 240, 20), (540, 240, 20), (560, 240, 20), (580, 240, 20), (600, 240, 20), (620, 240, 20), (0, 260, 20), (20, 260, 20), (40, 260, 20), (60, 260, 20), (80, 260, 20), (100, 260, 20), (120, 260, 20), (140, 260, 20), (160, 260, 20), (180, 260, 20), (200, 260, 20), (220, 260, 20), (240, 260, 20), (260, 260, 20), (280, 260, 20), (300, 260, 20), (320, 260, 20), (340, 260, 20), (360, 260, 20), (380, 260, 20), (400, 260, 20), (420, 260, 20), (440, 260, 20), (460, 260, 20), (480, 260, 20), (500, 260, 20), (520, 260, 20), (540, 260, 20), (560, 260, 20), (580, 260, 20), (600, 260, 20), (620, 260, 20), (0, 280, 20), (20, 280, 20), (40, 280, 20), (60, 280, 20), (80, 280, 20), (100, 280, 20), (120, 280, 20), (140, 280, 20), (160, 280, 20), (180, 280, 20), (200, 280, 20), (220, 280, 20), (240, 280, 20), (260, 280, 20), (280, 280, 20), (300, 280, 20), (320, 280, 20), (340, 280, 20), (360, 280, 20), (380, 280, 20), (400, 280, 20), (420, 280, 20), (440, 280, 20), (460, 280, 20), (480, 280, 20), (500, 280, 20), (520, 280, 20), (540, 280, 20), (560, 280, 20), (580, 280, 20), (600, 280, 20), (620, 280, 20), (0, 300, 20), (20, 300, 20), (40, 300, 20), (60, 300, 20), (80, 300, 20), (100, 300, 20), (120, 300, 20), (140, 300, 20), (160, 300, 20), (180, 300, 20), (200, 300, 20), (220, 300, 20), (240, 300, 20), (260, 300, 20), (280, 300, 20), (300, 300, 20), (320, 300, 20), (340, 300, 20), (360, 300, 20), (380, 300, 20), (400, 300, 20), (420, 300, 20), (440, 300, 20), (460, 300, 20), (480, 300, 20), (500, 300, 20), (520, 300, 20), (540, 300, 20), (560, 300, 20), (580, 300, 20), (600, 300, 20), (620, 300, 20), (0, 320, 20), (20, 320, 20), (40, 320, 20), (60, 320, 20), (80, 320, 20), (100, 320, 20), (120, 320, 20), (140, 320, 20), (160, 320, 20), (180, 320, 20), (200, 320, 20), (220, 320, 20), (240, 320, 20), (260, 320, 20), (280, 320, 20), (300, 320, 20), (320, 320, 20), (340, 320, 20), (360, 320, 20), (380, 320, 20), (400, 320, 20), (420, 320, 20), (440, 320, 20), (460, 320, 20), (480, 320, 20), (500, 320, 20), (520, 320, 20), (540, 320, 20), (560, 320, 20), (580, 320, 20), (600, 320, 20), (620, 320, 20), (0, 340, 20), (20, 340, 20), (40, 340, 20), (60, 340, 20), (80, 340, 20), (100, 340, 20), (120, 340, 20), (140, 340, 20), (160, 340, 20), (180, 340, 20), (200, 340, 20), (220, 340, 20), (240, 340, 20), (260, 340, 20), (280, 340, 20), (300, 340, 20), (320, 340, 20), (340, 340, 20), (360, 340, 20), (380, 340, 20), (400, 340, 20), (420, 340, 20), (440, 340, 20), (460, 340, 20), (480, 340, 20), (500, 340, 20), (520, 340, 20), (540, 340, 20), (560, 340, 20), (580, 340, 20), (600, 340, 20), (620, 340, 20), (0, 360, 20), (20, 360, 20), (40, 360, 20), (60, 360, 20), (80, 360, 20), (100, 360, 20), (120, 360, 20), (140, 360, 20), (160, 360, 20), (180, 360, 20), (200, 360, 20), (220, 360, 20), (240, 360, 20), (260, 360, 20), (280, 360, 20), (300, 360, 20), (320, 360, 20), (340, 360, 20), (360, 360, 20), (380, 360, 20), (400, 360, 20), (420, 360, 20), (440, 360, 20), (460, 360, 20), (480, 360, 20), (500, 360, 20), (520, 360, 20), (540, 360, 20), (560, 360, 20), (580, 360, 20), (600, 360, 20), (620, 360, 20), (0, 380, 20), (20, 380, 20), (40, 380, 20), (60, 380, 20), (80, 380, 20), (100, 380, 20), (120, 380, 20), (140, 380, 20), (160, 380, 20), (180, 380, 20), (200, 380, 20), (220, 380, 20), (240, 380, 20), (260, 380, 20), (280, 380, 20), (300, 380, 20), (320, 380, 20), (340, 380, 20), (360, 380, 20), (380, 380, 20), (400, 380, 20), (420, 380, 20), (440, 380, 20), (460, 380, 20), (480, 380, 20), (500, 380, 20), (520, 380, 20), (540, 380, 20), (560, 380, 20), (580, 380, 20), (600, 380, 20), (620, 380, 20), (0, 400, 20), (20, 400, 20), (40, 400, 20), (60, 400, 20), (80, 400, 20), (100, 400, 20), (120, 400, 20), (140, 400, 20), (160, 400, 20), (180, 400, 20), (200, 400, 20), (220, 400, 20), (240, 400, 20), (260, 400, 20), (280, 400, 20), (300, 400, 20), (320, 400, 20), (340, 400, 20), (360, 400, 20), (380, 400, 20), (400, 400, 20), (420, 400, 20), (440, 400, 20), (460, 400, 20), (480, 400, 20), (500, 400, 20), (520, 400, 20), (540, 400, 20), (560, 400, 20), (580, 400, 20), (600, 400, 20), (620, 400, 20), (0, 420, 20), (20, 420, 20), (40, 420, 20), (60, 420, 20), (80, 420, 20), (100, 420, 20), (120, 420, 20), (140, 420, 20), (160, 420, 20), (180, 420, 20), (200, 420, 20), (220, 420, 20), (240, 420, 20), (260, 420, 20), (280, 420, 20), (300, 420, 20), (320, 420, 20), (340, 420, 20), (360, 420, 20), (380, 420, 20), (400, 420, 20), (420, 420, 20), (440, 420, 20), (460, 420, 20), (480, 420, 20), (500, 420, 20), (520, 420, 20), (540, 420, 20), (560, 420, 20), (580, 420, 20), (600, 420, 20), (620, 420, 20), (0, 440, 20), (20, 440, 20), (40, 440, 20), (60, 440, 20), (80, 440, 20), (100, 440, 20), (120, 440, 20), (140, 440, 20), (160, 440, 20), (180, 440, 20), (200, 440, 20), (220, 440, 20), (240, 440, 20), (260, 440, 20), (280, 440, 20), (300, 440, 20), (320, 440, 20), (340, 440, 20), (360, 440, 20), (380, 440, 20), (400, 440, 20), (420, 440, 20), (440, 440, 20), (460, 440, 20), (480, 440, 20), (500, 440, 20), (520, 440, 20), (540, 440, 20), (560, 440, 20), (580, 440, 20), (600, 440, 20), (620, 440, 20), (0, 460, 20), (20, 460, 20), (40, 460, 20), (60, 460, 20), (80, 460, 20), (100, 460, 20), (120, 460, 20), (140, 460, 20), (160, 460, 20), (180, 460, 20), (200, 460, 20), (220, 460, 20), (240, 460, 20), (260, 460, 20), (280, 460, 20), (300, 460, 20), (320, 460, 20), (340, 460, 20), (360, 460, 20), (380, 460, 20), (400, 460, 20), (420, 460, 20), (440, 460, 20), (460, 460, 20), (480, 460, 20), (500, 460, 20), (520, 460, 20), (540, 460, 20), (560, 460, 20), (580, 460, 20), (600, 460, 20), (620, 460, 20), (0, 480, 20), (20, 480, 20), (40, 480, 20), (60, 480, 20), (80, 480, 20), (100, 480, 20), (120, 480, 20), (140, 480, 20), (160, 480, 20), (180, 480, 20), (200, 480, 20), (220, 480, 20), (240, 480, 20), (260, 480, 20), (280, 480, 20), (300, 480, 20), (320, 480, 20), (340, 480, 20), (360, 480, 20), (380, 480, 20), (400, 480, 20), (420, 480, 20), (440, 480, 20), (460, 480, 20), (480, 480, 20), (500, 480, 20), (520, 480, 20), (540, 480, 20), (560, 480, 20), (580, 480, 20), (600, 480, 20), (620, 480, 20), (0, 500, 20), (20, 500, 20), (40, 500, 20), (60, 500, 20), (80, 500, 20), (100, 500, 20), (120, 500, 20), (140, 500, 20), (160, 500, 20), (180, 500, 20), (200, 500, 20), (220, 500, 20), (240, 500, 20), (260, 500, 20), (280, 500, 20), (300, 500, 20), (320, 500, 20), (340, 500, 20), (360, 500, 20), (380, 500, 20), (400, 500, 20), (420, 500, 20), (440, 500, 20), (460, 500, 20), (480, 500, 20), (500, 500, 20), (520, 500, 20), (540, 500, 20), (560, 500, 20), (580, 500, 20), (600, 500, 20), (620, 500, 20), (0, 520, 20), (20, 520, 20), (40, 520, 20), (60, 520, 20), (80, 520, 20), (100, 520, 20), (120, 520, 20), (140, 520, 20), (160, 520, 20), (180, 520, 20), (200, 520, 20), (220, 520, 20), (240, 520, 20), (260, 520, 20), (280, 520, 20), (300, 520, 20), (320, 520, 20), (340, 520, 20), (360, 520, 20), (380, 520, 20), (400, 520, 20), (420, 520, 20), (440, 520, 20), (460, 520, 20), (480, 520, 20), (500, 520, 20), (520, 520, 20), (540, 520, 20), (560, 520, 20), (580, 520, 20), (600, 520, 20), (620, 520, 20), (0, 540, 20), (20, 540, 20), (40, 540, 20), (60, 540, 20), (80, 540, 20), (100, 540, 20), (120, 540, 20), (140, 540, 20), (160, 540, 20), (180, 540, 20), (200, 540, 20), (220, 540, 20), (240, 540, 20), (260, 540, 20), (280, 540, 20), (300, 540, 20), (320, 540, 20), (340, 540, 20), (360, 540, 20), (380, 540, 20), (400, 540, 20), (420, 540, 20), (440, 540, 20), (460, 540, 20), (480, 540, 20), (500, 540, 20), (520, 540, 20), (540, 540, 20), (560, 540, 20), (580, 540, 20), (600, 540, 20), (620, 540, 20), (0, 560, 20), (20, 560, 20), (40, 560, 20), (60, 560, 20), (80, 560, 20), (100, 560, 20), (120, 560, 20), (140, 560, 20), (160, 560, 20), (180, 560, 20), (200, 560, 20), (220, 560, 20), (240, 560, 20), (260, 560, 20), (280, 560, 20), (300, 560, 20), (320, 560, 20), (340, 560, 20), (360, 560, 20), (380, 560, 20), (400, 560, 20), (420, 560, 20), (440, 560, 20), (460, 560, 20), (480, 560, 20), (500, 560, 20), (520, 560, 20), (540, 560, 20), (560, 560, 20), (580, 560, 20), (600, 560, 20), (620, 560, 20), (0, 580, 20), (20, 580, 20), (40, 580, 20), (60, 580, 20), (80, 580, 20), (100, 580, 20), (120, 580, 20), (140, 580, 20), (160, 580, 20), (180, 580, 20), (200, 580, 20), (220, 580, 20), (240, 580, 20), (260, 580, 20), (280, 580, 20), (300, 580, 20), (320, 580, 20), (340, 580, 20), (360, 580, 20), (380, 580, 20), (400, 580, 20), (420, 580, 20), (440, 580, 20), (460, 580, 20), (480, 580, 20), (500, 580, 20), (520, 580, 20), (540, 580, 20), (560, 580, 20), (580, 580, 20), (600, 580, 20), (620, 580, 20), (0, 600, 20), (20, 600, 20), (40, 600, 20), (60, 600, 20), (80, 600, 20), (100, 600, 20), (120, 600, 20), (140, 600, 20), (160, 600, 20), (180, 600, 20), (200, 600, 20), (220, 600, 20), (240, 600, 20), (260, 600, 20), (280, 600, 20), (300, 600, 20), (320, 600, 20), (340, 600, 20), (360, 600, 20), (380, 600, 20), (400, 600, 20), (420, 600, 20), (440, 600, 20), (460, 600, 20), (480, 600, 20), (500, 600, 20), (520, 600, 20), (540, 600, 20), (560, 600, 20), (580, 600, 20), (600, 600, 20), (620, 600, 20), (0, 620, 20), (20, 620, 20), (40, 620, 20), (60, 620, 20), (80, 620, 20), (100, 620, 20), (120, 620, 20), (140, 620, 20), (160, 620, 20), (180, 620, 20), (200, 620, 20), (220, 620, 20), (240, 620, 20), (260, 620, 20), (280, 620, 20), (300, 620, 20), (320, 620, 20), (340, 620, 20), (360, 620, 20), (380, 620, 20), (400, 620, 20), (420, 620, 20), (440, 620, 20), (460, 620, 20), (480, 620, 20), (500, 620, 20), (520, 620, 20), (540, 620, 20), (560, 620, 20), (580, 620, 20), (600, 620, 20), (620, 620, 20)] point3f[] points.connect = </defaultPrim/testDeformer.outputs:points> } }
omniverse-code/kit/exts/omni.graph/omni/graph/core/data/TestDynamicScheduling.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double radius = 500 double3 target = (0, 0, 0) } dictionary Perspective = { double3 position = (500.0000000000001, 500.0000000000001, 499.9999999999998) double3 target = (0, 0, 0) } dictionary Right = { double radius = 500 double3 target = (0, 0, 0) } dictionary Top = { double radius = 500 double3 target = (0, 0, 0) } string boundCamera = "/OmniverseKit_Persp" } dictionary renderSettings = { float "rtx:post:lensDistortion:cameraFocalLength" = 18.147562 } } defaultPrim = "World" endTimeCode = 100 metersPerUnit = 0.009999999776482582 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Y" ) def Xform "World" { def DistantLight "defaultLight" ( prepend apiSchemas = ["ShapingAPI"] ) { float angle = 1 float intensity = 3000 float shaping:cone:angle = 180 float shaping:cone:softness float shaping:focus color3f shaping:focusTint asset shaping:ies:file float3 xformOp:rotateXYZ = (315, 0, 0) double3 xformOp:scale = (1, 1, 1) float3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def ComputeNode "dynamic_switch" { custom int inputs:left_value = -1 custom int inputs:right_value = 1 custom int inputs:switch = 0 custom token node:type = "omni.graph.examples.python.DynamicSwitch" custom int node:typeVersion = 1 custom int outputs:left_out custom int outputs:right_out } def ComputeGraphSettings "computegraphSettings" { custom token evaluator:type = "push" } def ComputeNode "IntCounter_01" { custom int inputs:increment prepend int inputs:increment.connect = </World/dynamic_switch.outputs:left_out> custom bool inputs:reset = false custom token node:type = "omni.graph.examples.python.IntCounter" custom int node:typeVersion = 1 custom int outputs:count = 0 } def ComputeNode "IntCounter_02" { custom int inputs:increment prepend int inputs:increment.connect = </World/dynamic_switch.outputs:right_out> custom bool inputs:reset = false custom token node:type = "omni.graph.examples.python.IntCounter" custom int node:typeVersion = 1 custom int outputs:count = 0 } }
omniverse-code/kit/exts/omni.graph/omni/graph/core/data/ExampleSmoothNeighbors.usda
#usda 1.0 ( doc = """Smooth Neighbors Example""" ) def Xform "defaultPrim" { def Mesh "inputMesh" { uniform bool doubleSided = 1 uniform token orientation = "leftHanded" int[] faceVertexCounts = [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4] int[] faceVertexIndices = [0, 1, 25, 24, 1, 2, 26, 25, 2, 3, 27, 26, 3, 4, 28, 27, 4, 5, 29, 28, 5, 6, 30, 29, 6, 7, 31, 30, 7, 8, 32, 31, 8, 9, 33, 32, 9, 10, 34, 33, 10, 11, 35, 34, 11, 12, 36, 35, 12, 13, 37, 36, 13, 14, 38, 37, 14, 15, 39, 38, 15, 16, 40, 39, 16, 17, 41, 40, 17, 18, 42, 41, 18, 19, 43, 42, 19, 20, 44, 43, 20, 21, 45, 44, 21, 22, 46, 45, 22, 23, 47, 46, 23, 0, 24, 47, 24, 25, 49, 48, 25, 26, 50, 49, 26, 27, 51, 50, 27, 28, 52, 51, 28, 29, 53, 52, 29, 30, 54, 53, 30, 31, 55, 54, 31, 32, 56, 55, 32, 33, 57, 56, 33, 34, 58, 57, 34, 35, 59, 58, 35, 36, 60, 59, 36, 37, 61, 60, 37, 38, 62, 61, 38, 39, 63, 62, 39, 40, 64, 63, 40, 41, 65, 64, 41, 42, 66, 65, 42, 43, 67, 66, 43, 44, 68, 67, 44, 45, 69, 68, 45, 46, 70, 69, 46, 47, 71, 70, 47, 24, 48, 71, 48, 49, 73, 72, 49, 50, 74, 73, 50, 51, 75, 74, 51, 52, 76, 75, 52, 53, 77, 76, 53, 54, 78, 77, 54, 55, 79, 78, 55, 56, 80, 79, 56, 57, 81, 80, 57, 58, 82, 81, 58, 59, 83, 82, 59, 60, 84, 83, 60, 61, 85, 84, 61, 62, 86, 85, 62, 63, 87, 86, 63, 64, 88, 87, 64, 65, 89, 88, 65, 66, 90, 89, 66, 67, 91, 90, 67, 68, 92, 91, 68, 69, 93, 92, 69, 70, 94, 93, 70, 71, 95, 94, 71, 48, 72, 95, 72, 73, 97, 96, 73, 74, 98, 97, 74, 75, 99, 98, 75, 76, 100, 99, 76, 77, 101, 100, 77, 78, 102, 101, 78, 79, 103, 102, 79, 80, 104, 103, 80, 81, 105, 104, 81, 82, 106, 105, 82, 83, 107, 106, 83, 84, 108, 107, 84, 85, 109, 108, 85, 86, 110, 109, 86, 87, 111, 110, 87, 88, 112, 111, 88, 89, 113, 112, 89, 90, 114, 113, 90, 91, 115, 114, 91, 92, 116, 115, 92, 93, 117, 116, 93, 94, 118, 117, 94, 95, 119, 118, 95, 72, 96, 119, 96, 97, 121, 120, 97, 98, 122, 121, 98, 99, 123, 122, 99, 100, 124, 123, 100, 101, 125, 124, 101, 102, 126, 125, 102, 103, 127, 126, 103, 104, 128, 127, 104, 105, 129, 128, 105, 106, 130, 129, 106, 107, 131, 130, 107, 108, 132, 131, 108, 109, 133, 132, 109, 110, 134, 133, 110, 111, 135, 134, 111, 112, 136, 135, 112, 113, 137, 136, 113, 114, 138, 137, 114, 115, 139, 138, 115, 116, 140, 139, 116, 117, 141, 140, 117, 118, 142, 141, 118, 119, 143, 142, 119, 96, 120, 143, 120, 121, 145, 144, 121, 122, 146, 145, 122, 123, 147, 146, 123, 124, 148, 147, 124, 125, 149, 148, 125, 126, 150, 149, 126, 127, 151, 150, 127, 128, 152, 151, 128, 129, 153, 152, 129, 130, 154, 153, 130, 131, 155, 154, 131, 132, 156, 155, 132, 133, 157, 156, 133, 134, 158, 157, 134, 135, 159, 158, 135, 136, 160, 159, 136, 137, 161, 160, 137, 138, 162, 161, 138, 139, 163, 162, 139, 140, 164, 163, 140, 141, 165, 164, 141, 142, 166, 165, 142, 143, 167, 166, 143, 120, 144, 167, 144, 145, 169, 168, 145, 146, 170, 169, 146, 147, 171, 170, 147, 148, 172, 171, 148, 149, 173, 172, 149, 150, 174, 173, 150, 151, 175, 174, 151, 152, 176, 175, 152, 153, 177, 176, 153, 154, 178, 177, 154, 155, 179, 178, 155, 156, 180, 179, 156, 157, 181, 180, 157, 158, 182, 181, 158, 159, 183, 182, 159, 160, 184, 183, 160, 161, 185, 184, 161, 162, 186, 185, 162, 163, 187, 186, 163, 164, 188, 187, 164, 165, 189, 188, 165, 166, 190, 189, 166, 167, 191, 190, 167, 144, 168, 191, 168, 169, 193, 192, 169, 170, 194, 193, 170, 171, 195, 194, 171, 172, 196, 195, 172, 173, 197, 196, 173, 174, 198, 197, 174, 175, 199, 198, 175, 176, 200, 199, 176, 177, 201, 200, 177, 178, 202, 201, 178, 179, 203, 202, 179, 180, 204, 203, 180, 181, 205, 204, 181, 182, 206, 205, 182, 183, 207, 206, 183, 184, 208, 207, 184, 185, 209, 208, 185, 186, 210, 209, 186, 187, 211, 210, 187, 188, 212, 211, 188, 189, 213, 212, 189, 190, 214, 213, 190, 191, 215, 214, 191, 168, 192, 215, 192, 193, 217, 216, 193, 194, 218, 217, 194, 195, 219, 218, 195, 196, 220, 219, 196, 197, 221, 220, 197, 198, 222, 221, 198, 199, 223, 222, 199, 200, 224, 223, 200, 201, 225, 224, 201, 202, 226, 225, 202, 203, 227, 226, 203, 204, 228, 227, 204, 205, 229, 228, 205, 206, 230, 229, 206, 207, 231, 230, 207, 208, 232, 231, 208, 209, 233, 232, 209, 210, 234, 233, 210, 211, 235, 234, 211, 212, 236, 235, 212, 213, 237, 236, 213, 214, 238, 237, 214, 215, 239, 238, 215, 192, 216, 239, 216, 217, 241, 240, 217, 218, 242, 241, 218, 219, 243, 242, 219, 220, 244, 243, 220, 221, 245, 244, 221, 222, 246, 245, 222, 223, 247, 246, 223, 224, 248, 247, 224, 225, 249, 248, 225, 226, 250, 249, 226, 227, 251, 250, 227, 228, 252, 251, 228, 229, 253, 252, 229, 230, 254, 253, 230, 231, 255, 254, 231, 232, 256, 255, 232, 233, 257, 256, 233, 234, 258, 257, 234, 235, 259, 258, 235, 236, 260, 259, 236, 237, 261, 260, 237, 238, 262, 261, 238, 239, 263, 262, 239, 216, 240, 263, 240, 241, 265, 264, 241, 242, 266, 265, 242, 243, 267, 266, 243, 244, 268, 267, 244, 245, 269, 268, 245, 246, 270, 269, 246, 247, 271, 270, 247, 248, 272, 271, 248, 249, 273, 272, 249, 250, 274, 273, 250, 251, 275, 274, 251, 252, 276, 275, 252, 253, 277, 276, 253, 254, 278, 277, 254, 255, 279, 278, 255, 256, 280, 279, 256, 257, 281, 280, 257, 258, 282, 281, 258, 259, 283, 282, 259, 260, 284, 283, 260, 261, 285, 284, 261, 262, 286, 285, 262, 263, 287, 286, 263, 240, 264, 287, 264, 265, 1, 0, 265, 266, 2, 1, 266, 267, 3, 2, 267, 268, 4, 3, 268, 269, 5, 4, 269, 270, 6, 5, 270, 271, 7, 6, 271, 272, 8, 7, 272, 273, 9, 8, 273, 274, 10, 9, 274, 275, 11, 10, 275, 276, 12, 11, 276, 277, 13, 12, 277, 278, 14, 13, 278, 279, 15, 14, 279, 280, 16, 15, 280, 281, 17, 16, 281, 282, 18, 17, 282, 283, 19, 18, 283, 284, 20, 19, 284, 285, 21, 20, 285, 286, 22, 21, 286, 287, 23, 22, 287, 264, 0, 23] point3f[] points = [(0.97050416, -1.8522897e-8, -7.4398014e-7), (0.8998362, -2.981267e-8, -0.2411111), (0.81444633, -3.4340196e-8, -0.47022152), (0.7022718, -4.0764245e-8, -0.7022728), (0.49256894, -3.563111e-8, -0.8531556), (0.20206214, -4.424456e-8, -0.7541078), (-3.392996e-7, -5.506345e-8, -0.73848087), (-0.18312414, -6.190622e-8, -0.6834275), (-0.4162395, -4.3369354e-8, -0.7209473), (-0.56745434, -3.9517744e-8, -0.5674537), (-0.7728556, -3.6266357e-8, -0.44620785), (-0.84129727, -3.9482813e-8, -0.22542453), (-0.81495696, -4.8194195e-8, 3.2137774e-7), (-0.7717826, -4.9103875e-8, 0.20679879), (-0.83776796, -2.973064e-8, 0.48368588), (-0.66617185, -2.907549e-8, 0.66617215), (-0.5135956, -2.01344e-8, 0.889574), (-0.28336185, -9.216164e-9, 1.0575213), (7.824221e-8, -1.8498554e-8, 1.032391), (0.20894371, -4.650221e-8, 0.7797885), (0.38899264, -4.6353847e-8, 0.6737551), (0.6296708, -3.6004447e-8, 0.6296708), (0.8312789, -3.031326e-8, 0.47993913), (0.84160167, -3.9433793e-8, 0.22550648), (0.94494945, -0.25695702, -7.1507975e-7), (0.82770586, -0.20606586, -0.22178379), (0.7470953, -0.2093994, -0.4313363), (0.56555176, -0.17306547, -0.56555253), (0.40630868, -0.18046786, -0.70374817), (0.19068699, -0.13662055, -0.71165496), (-3.468576e-7, -0.123366185, -0.71382844), (-0.21277674, -0.18595135, -0.7940923), (-0.36293048, -0.13032088, -0.62861353), (-0.56428736, -0.17203133, -0.5642867), (-0.7272702, -0.19616719, -0.41988915), (-0.7424705, -0.15506065, -0.19894403), (-0.7792275, -0.16116765, 3.0701995e-7), (-0.7953733, -0.1867179, 0.21311992), (-0.7395816, -0.20438446, 0.42699793), (-0.58006716, -0.18493062, 0.5800674), (-0.42763516, -0.2051215, 0.7406861), (-0.24608256, -0.26033318, 0.91839314), (7.129205e-8, -0.23970771, 0.91510695), (0.21293509, -0.18630566, 0.79468447), (0.37175494, -0.14052248, 0.64389855), (0.5252397, -0.1401128, 0.52523977), (0.70573527, -0.18179429, 0.40745646), (0.79806083, -0.18832609, 0.21383975), (0.7327533, -0.4032062, -5.5836097e-7), (0.6411103, -0.2835098, -0.1717855), (0.5598231, -0.2535139, -0.3232145), (0.4558603, -0.25048962, -0.45586085), (0.32691967, -0.26636627, -0.5662422), (0.17071481, -0.2763417, -0.6371176), (-3.190812e-7, -0.31673354, -0.68288594), (-0.1777686, -0.3235972, -0.6634404), (-0.3396296, -0.3104438, -0.5882552), (-0.46880496, -0.2822327, -0.46880442), (-0.55540216, -0.2446611, -0.32066122), (-0.6273006, -0.25871795, -0.16808441), (-0.6867149, -0.32337314, 2.698141e-7), (-0.64231604, -0.28567424, 0.17210831), (-0.63289595, -0.39982843, 0.36540288), (-0.5031697, -0.3665072, 0.50316995), (-0.35457632, -0.3622817, 0.61414444), (-0.17861491, -0.3292697, 0.6666003), (5.6358544e-8, -0.3778693, 0.7181419), (0.18119448, -0.34655172, 0.6762269), (0.31350997, -0.21985891, 0.54301524), (0.45801198, -0.25576565, 0.458012), (0.5834088, -0.30073947, 0.3368312), (0.6965863, -0.3831015, 0.18664974), (0.5, -0.3749513, -3.9236255e-7), (0.48296282, -0.3201675, -0.1294099), (0.43301255, -0.32024008, -0.2500003), (0.35355318, -0.30096743, -0.35355362), (0.24999975, -0.38416377, -0.43301284), (0.12940927, -0.33489373, -0.48296297), (-2.3269597e-7, -0.275708, -0.5), (-0.12940972, -0.29333386, -0.48296285), (-0.25000015, -0.3833181, -0.4330126), (-0.3535536, -0.25990367, -0.3535532), (-0.4330128, -0.3263056, -0.24999979), (-0.48296297, -0.2622081, -0.12940931), (-0.5, -0.2999028, 1.9799047e-7), (-0.48296288, -0.3708786, 0.12940969), (-0.43301263, -0.30637124, 0.25000012), (-0.3535533, -0.33240142, 0.35355347), (-0.24999993, -0.31268266, 0.43301275), (-0.12940946, -0.37772256, 0.48296294), (3.8388897e-8, -0.37115917, 0.5), (0.12940954, -0.30406165, 0.4829629), (0.24999999, -0.35989282, 0.43301272), (0.35355338, -0.37419042, 0.35355338), (0.4330127, -0.33014822, 0.25), (0.4829629, -0.3433216, 0.12940952), (0.35381475, -0.25309253, -2.7633706e-7), (0.3803145, -0.18387625, -0.10190529), (0.31425807, -0.23738314, -0.18143725), (0.25796598, -0.23401013, -0.25796634), (0.19701658, -0.18335088, -0.3412432), (0.092984386, -0.24364191, -0.34702313), (-1.4007735e-7, -0.3439054, -0.30144447), (-0.07317194, -0.3763846, -0.273081), (-0.13952962, -0.3827229, -0.2416722), (-0.22926097, -0.30440485, -0.22926071), (-0.3125841, -0.24073535, -0.1804703), (-0.35070145, -0.23703854, -0.093970016), (-0.33392128, -0.28758886, 1.3165652e-7), (-0.3205363, -0.29119167, 0.08588756), (-0.2846268, -0.29671434, 0.16432947), (-0.23731123, -0.28466254, 0.23731135), (-0.15698007, -0.32220244, 0.27189755), (-0.06783574, -0.41213557, 0.25316656), (2.428194e-8, -0.33286187, 0.3078131), (0.07859287, -0.34006447, 0.29331252), (0.15304446, -0.33585164, 0.2650808), (0.2382118, -0.2824542, 0.2382118), (0.30171332, -0.26250184, 0.17419429), (0.3420214, -0.2526211, 0.09164438), (0.3067763, -0.111456364, -2.116256e-7), (0.26513037, -0.13012217, -0.07104169), (0.19594762, -0.1579953, -0.11313057), (0.16188246, -0.15644875, -0.16188268), (0.13089125, -0.1374632, -0.22671062), (0.0658264, -0.1417686, -0.24566793), (-1.1354091e-7, -0.14280356, -0.2525436), (-0.06713514, -0.13884634, -0.25055134), (-0.13667634, -0.13077572, -0.2367302), (-0.16761702, -0.15176128, -0.16761686), (-0.17551056, -0.17163572, -0.10133095), (-0.182231, -0.17972945, -0.04882857), (-0.16107897, -0.19567128, 6.320042e-8), (-0.083557725, -0.2387758, 0.022389257), (-0.057671607, -0.25028515, 0.033296738), (-0.0338161, -0.26113456, 0.033816107), (-0.056501776, -0.22345947, 0.09786399), (-0.041336283, -0.19646187, 0.15426919), (1.9125682e-8, -0.17444608, 0.19779998), (0.059776615, -0.1552797, 0.22308934), (0.1153924, -0.15538041, 0.19986555), (0.2066333, -0.119868025, 0.20663328), (0.2788876, -0.10263858, 0.16101584), (0.3297861, -0.091432065, 0.08836591), (0.22708227, -8.127138e-8, -1.3865296e-7), (0.23268159, -7.916795e-8, -0.062347032), (0.17054984, -9.1401816e-8, -0.09846715), (0.1384356, -9.3241944e-8, -0.13843578), (0.08542441, -1.00964655e-7, -0.14795965), (0.042767975, -1.03041174e-7, -0.15961257), (-9.4368175e-8, -9.1687454e-8, -0.19851825), (-0.04868895, -9.407485e-8, -0.18170929), (-0.10766323, -8.851461e-8, -0.18647805), (-0.1588782, -8.3955186e-8, -0.15887806), (-0.1582843, -9.6340315e-8, -0.09138538), (-0.18976234, -9.529666e-8, -0.050846577), (-0.18282917, -9.7611185e-8, 7.243153e-8), (-0.15686764, -1.0138851e-7, 0.042032614), (-0.11561557, -1.10637494e-7, 0.06675072), (-0.06453572, -1.2330898e-7, 0.06453575), (-0.078305684, -1.0495003e-7, 0.13562948), (-0.041448023, -1.0349385e-7, 0.1546862), (1.9083291e-8, -9.501588e-8, 0.18725342), (0.046904765, -9.6796775e-8, 0.17505094), (0.0405785, -1.265107e-7, 0.070284024), (0.08561424, -1.14896835e-7, 0.08561424), (0.14434096, -1.0213428e-7, 0.083335295), (0.19944929, -8.7677535e-8, 0.053442266), (0.1858016, 0.18138102, -1.3514084e-7), (0.24340093, 0.14312492, -0.065219276), (0.21502846, 0.1452599, -0.12414694), (0.15974124, 0.15819883, -0.15974145), (0.11409531, 0.15687953, -0.19761914), (0.044077665, 0.1903392, -0.16450042), (-7.9732416e-8, 0.19049728, -0.17002985), (-0.04798761, 0.1816076, -0.17909189), (-0.092074305, 0.18233652, -0.15947723), (-0.14095154, 0.17355828, -0.1409514), (-0.15176645, 0.18748301, -0.0876223), (-0.22217119, 0.1558289, -0.05953049), (-0.19546062, 0.175798, 7.3040944e-8), (-0.16550788, 0.18973632, 0.04434776), (-0.13977596, 0.19548579, 0.08069974), (-0.11710597, 0.19305034, 0.117106035), (-0.07823958, 0.19832972, 0.13551499), (-0.051162936, 0.17451604, 0.19094276), (1.8703522e-8, 0.14608154, 0.2468721), (0.06476426, 0.14414069, 0.2417035), (0.11842948, 0.15186924, 0.2051259), (0.19513544, 0.12926652, 0.19513544), (0.24336308, 0.12634856, 0.14050573), (0.20492193, 0.16615087, 0.054908663), (0.3138855, 0.32233158, -2.3942454e-7), (0.33670384, 0.26216686, -0.09021979), (0.25138643, 0.36327142, -0.14513825), (0.21657611, 0.33551112, -0.2165764), (0.16469416, 0.29544833, -0.28525904), (0.08230128, 0.31521702, -0.3071532), (-1.4606854e-7, 0.32125762, -0.31450483), (-0.094685026, 0.2322497, -0.35336876), (-0.17314929, 0.26612604, -0.2999031), (-0.18312544, 0.41754347, -0.18312523), (-0.2642505, 0.33751395, -0.15256491), (-0.3387608, 0.25847438, -0.09077053), (-0.35052797, 0.2587917, 1.3070606e-7), (-0.30158022, 0.32522172, 0.08080828), (-0.2975748, 0.2707881, 0.171805), (-0.24434862, 0.2674043, 0.24434873), (-0.15063895, 0.34419367, 0.26091442), (-0.065336406, 0.42888027, 0.24383888), (2.5774927e-8, 0.22968735, 0.36731195), (0.09578778, 0.22486052, 0.35748482), (0.17418274, 0.26254147, 0.3016934), (0.26735467, 0.21098629, 0.26735467), (0.3421609, 0.18151294, 0.19754668), (0.31354564, 0.3037411, 0.0840143), (0.49999985, 0.27117717, -3.756191e-7), (0.48296264, 0.289989, -0.12940983), (0.43301234, 0.41820732, -0.25000018), (0.35355297, 0.49697092, -0.3535534), (0.24999963, 0.3823889, -0.43301263), (0.12940921, 0.45658085, -0.4829627), (-2.3247048e-7, 0.40213946, -0.49999976), (-0.12940966, 0.36918262, -0.48296264), (-0.25000006, 0.29098648, -0.43301246), (-0.35355344, 0.3454119, -0.35355306), (-0.4330126, 0.37719148, -0.24999967), (-0.48296276, 0.35982683, -0.12940925), (-0.49999976, 0.40742877, 1.949006e-7), (-0.4829626, 0.43228176, 0.12940963), (-0.43301246, 0.36856022, 0.25), (-0.35355318, 0.29783037, 0.35355335), (-0.24999984, 0.31288677, 0.43301257), (-0.12940942, 0.25735793, 0.4829628), (4.1450335e-8, 0.23318693, 0.49999988), (0.12940949, 0.25128344, 0.48296276), (0.24999993, 0.19749138, 0.43301263), (0.3535533, 0.20732407, 0.3535533), (0.4330126, 0.1759611, 0.24999993), (0.4829628, 0.18025093, 0.12940949), (0.6979104, 0.34278733, -5.438864e-7), (0.6775413, 0.34891218, -0.1815472), (0.5974202, 0.3287957, -0.34492126), (0.5035267, 0.36738375, -0.50352734), (0.3636073, 0.39360362, -0.6297871), (0.17908573, 0.3324265, -0.6683585), (-2.9634816e-7, 0.22896558, -0.6322714), (-0.15616065, 0.1788273, -0.5827986), (-0.31606352, 0.22871453, -0.54743767), (-0.4350159, 0.19937135, -0.43501538), (-0.5729653, 0.27982843, -0.33080128), (-0.61576104, 0.2380021, -0.16499238), (-0.7324337, 0.40265256, 2.8777586e-7), (-0.6843217, 0.36108434, 0.18336369), (-0.5895902, 0.3131173, 0.3404003), (-0.44295153, 0.21883312, 0.44295174), (-0.33186483, 0.28351617, 0.5748069), (-0.17681481, 0.31720978, 0.65988225), (5.2848513e-8, 0.30137905, 0.674031), (0.17176695, 0.28338906, 0.64104295), (0.320252, 0.24324147, 0.55469286), (0.48510966, 0.3222184, 0.48510966), (0.5765089, 0.2869241, 0.33284754), (0.5992999, 0.20845085, 0.16058195), (0.94027144, 0.25425342, -7.130584e-7), (0.85137665, 0.2202308, -0.22812636), (0.8179285, 0.25667608, -0.47223195), (0.66799134, 0.25680336, -0.6679922), (0.40766677, 0.18203813, -0.7061005), (0.21541403, 0.19184309, -0.8039378), (-2.9665634e-7, 0.09592005, -0.6663445), (-0.16388868, 0.076771565, -0.61164), (-0.36175692, 0.12896442, -0.6265809), (-0.5530889, 0.16287757, -0.5530883), (-0.6485151, 0.14360383, -0.37441996), (-0.803161, 0.19137827, -0.21520598), (-0.79750234, 0.17173098, 3.1250565e-7), (-0.74504334, 0.15660053, 0.19963403), (-0.7232319, 0.1934724, 0.4175584), (-0.5483897, 0.15903668, 0.54839), (-0.4600036, 0.24254058, 0.79674995), (-0.23364605, 0.23255944, 0.8719794), (7.1697386e-8, 0.24786966, 0.9292271), (0.21392845, 0.18852435, 0.7983917), (0.3889495, 0.16040008, 0.6736804), (0.62327474, 0.22025013, 0.62327474), (0.73486555, 0.20123704, 0.42427486), (0.78852546, 0.18262036, 0.21128477)] ( interpolation = "vertex" ) } def ComputeGraph "graph" { def ComputeGraphSettings "computegraphSettings" { custom token evaluator:type = "dirty_push" } def ComputeNode "arrayLength" { custom token node:type = "omni.graph.nodes.ArrayLength" custom int node:typeVersion = 1 custom rel inputs:input = [</defaultPrim/inputMesh>] custom token inputs:nameOfAttribute = "points" custom int outputs:length } def ComputeNode "adjacency" { custom token node:type = "omni.graph.examples.cpp.Adjacency" custom int node:typeVersion = 1 custom rel inputs:mesh = [</defaultPrim/inputMesh>] custom token inputs:nameOfVertexIndicesInputAttribute = "faceVertexIndices" custom token inputs:nameOfVertexCountsInputAttribute = "faceVertexCounts" custom bool inputs:treatEdgesAsOneWay = false custom bool inputs:treatFacesAsCurves = false custom bool inputs:removeDuplicates = true custom bool inputs:computeNeighbors = true custom token inputs:nameOfNeighborsOutputAttribute = "neighbors" custom bool inputs:computeNeighborCounts = false # This attribute shouldn't be needed, since computeNeighborCounts is false. #token inputs:nameOfNeighborCountsOutputAttribute = "neighborCounts" custom bool inputs:computeNeighborStarts = true custom token inputs:nameOfNeighborStartsOutputAttribute = "neighborStarts" custom bool inputs:computeDistances = false # These attributes shouldn't be needed, since computeDistances is false. #token inputs:nameOfDistancesOutputAttribute = "distances" #token inputs:nameOfPositionsInputAttribute = "points" int inputs:pointCount.connect = </defaultPrim/graph/arrayLength.outputs:length> def Output "outputs_mesh" { } } def ComputeNode "smooth" { custom token node:type = "omni.graph.examples.cpp.Smooth" custom int node:typeVersion = 1 custom rel inputs:mesh = [</defaultPrim/graph/adjacency/outputs_mesh>] custom token inputs:nameOfAttributeToSmooth = "points" custom token inputs:nameOfNeighborsInputAttribute = "neighbors" custom token inputs:nameOfNeighborStartsInputAttribute = "neighborStarts" custom int inputs:iterations = 5 custom bool inputs:useGPU = false def Output "outputs_mesh" { } } def ComputeNode "extract" { custom token node:type = "omni.graph.examples.cpp.ExtractFloat3Array" custom int node:typeVersion = 1 custom rel inputs:input = [</defaultPrim/graph/smooth/outputs_mesh>] custom token inputs:nameOfAttribute = "points" custom float3[] outputs:output } } def Mesh "outputMesh" { uniform bool doubleSided = 1 uniform token orientation = "leftHanded" point3f[] points.connect = </defaultPrim/graph/extract.outputs:output> int[] faceVertexCounts.connect = </defaultPrim/inputMesh.faceVertexCounts> int[] faceVertexIndices.connect = </defaultPrim/inputMesh.faceVertexIndices> } }
omniverse-code/kit/exts/omni.graph/omni/graph/core/data/ExampleTwoDeformers_push_pull.usda
#usda 1.0 ( doc = """Generated from Composed Stage of root layer """ ) def Xform "defaultPrim" { def Mesh "inputGrid" { uniform bool doubleSided = 1 int[] faceVertexCounts = [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 1, 33, 0, 33, 32, 1, 2, 34, 1, 34, 33, 2, 3, 35, 2, 35, 34, 3, 4, 36, 3, 36, 35, 4, 5, 37, 4, 37, 36, 5, 6, 38, 5, 38, 37, 6, 7, 39, 6, 39, 38, 7, 8, 40, 7, 40, 39, 8, 9, 41, 8, 41, 40, 9, 10, 42, 9, 42, 41, 10, 11, 43, 10, 43, 42, 11, 12, 44, 11, 44, 43, 12, 13, 45, 12, 45, 44, 13, 14, 46, 13, 46, 45, 14, 15, 47, 14, 47, 46, 15, 16, 48, 15, 48, 47, 16, 17, 49, 16, 49, 48, 17, 18, 50, 17, 50, 49, 18, 19, 51, 18, 51, 50, 19, 20, 52, 19, 52, 51, 20, 21, 53, 20, 53, 52, 21, 22, 54, 21, 54, 53, 22, 23, 55, 22, 55, 54, 23, 24, 56, 23, 56, 55, 24, 25, 57, 24, 57, 56, 25, 26, 58, 25, 58, 57, 26, 27, 59, 26, 59, 58, 27, 28, 60, 27, 60, 59, 28, 29, 61, 28, 61, 60, 29, 30, 62, 29, 62, 61, 30, 31, 63, 30, 63, 62, 32, 33, 65, 32, 65, 64, 33, 34, 66, 33, 66, 65, 34, 35, 67, 34, 67, 66, 35, 36, 68, 35, 68, 67, 36, 37, 69, 36, 69, 68, 37, 38, 70, 37, 70, 69, 38, 39, 71, 38, 71, 70, 39, 40, 72, 39, 72, 71, 40, 41, 73, 40, 73, 72, 41, 42, 74, 41, 74, 73, 42, 43, 75, 42, 75, 74, 43, 44, 76, 43, 76, 75, 44, 45, 77, 44, 77, 76, 45, 46, 78, 45, 78, 77, 46, 47, 79, 46, 79, 78, 47, 48, 80, 47, 80, 79, 48, 49, 81, 48, 81, 80, 49, 50, 82, 49, 82, 81, 50, 51, 83, 50, 83, 82, 51, 52, 84, 51, 84, 83, 52, 53, 85, 52, 85, 84, 53, 54, 86, 53, 86, 85, 54, 55, 87, 54, 87, 86, 55, 56, 88, 55, 88, 87, 56, 57, 89, 56, 89, 88, 57, 58, 90, 57, 90, 89, 58, 59, 91, 58, 91, 90, 59, 60, 92, 59, 92, 91, 60, 61, 93, 60, 93, 92, 61, 62, 94, 61, 94, 93, 62, 63, 95, 62, 95, 94, 64, 65, 97, 64, 97, 96, 65, 66, 98, 65, 98, 97, 66, 67, 99, 66, 99, 98, 67, 68, 100, 67, 100, 99, 68, 69, 101, 68, 101, 100, 69, 70, 102, 69, 102, 101, 70, 71, 103, 70, 103, 102, 71, 72, 104, 71, 104, 103, 72, 73, 105, 72, 105, 104, 73, 74, 106, 73, 106, 105, 74, 75, 107, 74, 107, 106, 75, 76, 108, 75, 108, 107, 76, 77, 109, 76, 109, 108, 77, 78, 110, 77, 110, 109, 78, 79, 111, 78, 111, 110, 79, 80, 112, 79, 112, 111, 80, 81, 113, 80, 113, 112, 81, 82, 114, 81, 114, 113, 82, 83, 115, 82, 115, 114, 83, 84, 116, 83, 116, 115, 84, 85, 117, 84, 117, 116, 85, 86, 118, 85, 118, 117, 86, 87, 119, 86, 119, 118, 87, 88, 120, 87, 120, 119, 88, 89, 121, 88, 121, 120, 89, 90, 122, 89, 122, 121, 90, 91, 123, 90, 123, 122, 91, 92, 124, 91, 124, 123, 92, 93, 125, 92, 125, 124, 93, 94, 126, 93, 126, 125, 94, 95, 127, 94, 127, 126, 96, 97, 129, 96, 129, 128, 97, 98, 130, 97, 130, 129, 98, 99, 131, 98, 131, 130, 99, 100, 132, 99, 132, 131, 100, 101, 133, 100, 133, 132, 101, 102, 134, 101, 134, 133, 102, 103, 135, 102, 135, 134, 103, 104, 136, 103, 136, 135, 104, 105, 137, 104, 137, 136, 105, 106, 138, 105, 138, 137, 106, 107, 139, 106, 139, 138, 107, 108, 140, 107, 140, 139, 108, 109, 141, 108, 141, 140, 109, 110, 142, 109, 142, 141, 110, 111, 143, 110, 143, 142, 111, 112, 144, 111, 144, 143, 112, 113, 145, 112, 145, 144, 113, 114, 146, 113, 146, 145, 114, 115, 147, 114, 147, 146, 115, 116, 148, 115, 148, 147, 116, 117, 149, 116, 149, 148, 117, 118, 150, 117, 150, 149, 118, 119, 151, 118, 151, 150, 119, 120, 152, 119, 152, 151, 120, 121, 153, 120, 153, 152, 121, 122, 154, 121, 154, 153, 122, 123, 155, 122, 155, 154, 123, 124, 156, 123, 156, 155, 124, 125, 157, 124, 157, 156, 125, 126, 158, 125, 158, 157, 126, 127, 159, 126, 159, 158, 128, 129, 161, 128, 161, 160, 129, 130, 162, 129, 162, 161, 130, 131, 163, 130, 163, 162, 131, 132, 164, 131, 164, 163, 132, 133, 165, 132, 165, 164, 133, 134, 166, 133, 166, 165, 134, 135, 167, 134, 167, 166, 135, 136, 168, 135, 168, 167, 136, 137, 169, 136, 169, 168, 137, 138, 170, 137, 170, 169, 138, 139, 171, 138, 171, 170, 139, 140, 172, 139, 172, 171, 140, 141, 173, 140, 173, 172, 141, 142, 174, 141, 174, 173, 142, 143, 175, 142, 175, 174, 143, 144, 176, 143, 176, 175, 144, 145, 177, 144, 177, 176, 145, 146, 178, 145, 178, 177, 146, 147, 179, 146, 179, 178, 147, 148, 180, 147, 180, 179, 148, 149, 181, 148, 181, 180, 149, 150, 182, 149, 182, 181, 150, 151, 183, 150, 183, 182, 151, 152, 184, 151, 184, 183, 152, 153, 185, 152, 185, 184, 153, 154, 186, 153, 186, 185, 154, 155, 187, 154, 187, 186, 155, 156, 188, 155, 188, 187, 156, 157, 189, 156, 189, 188, 157, 158, 190, 157, 190, 189, 158, 159, 191, 158, 191, 190, 160, 161, 193, 160, 193, 192, 161, 162, 194, 161, 194, 193, 162, 163, 195, 162, 195, 194, 163, 164, 196, 163, 196, 195, 164, 165, 197, 164, 197, 196, 165, 166, 198, 165, 198, 197, 166, 167, 199, 166, 199, 198, 167, 168, 200, 167, 200, 199, 168, 169, 201, 168, 201, 200, 169, 170, 202, 169, 202, 201, 170, 171, 203, 170, 203, 202, 171, 172, 204, 171, 204, 203, 172, 173, 205, 172, 205, 204, 173, 174, 206, 173, 206, 205, 174, 175, 207, 174, 207, 206, 175, 176, 208, 175, 208, 207, 176, 177, 209, 176, 209, 208, 177, 178, 210, 177, 210, 209, 178, 179, 211, 178, 211, 210, 179, 180, 212, 179, 212, 211, 180, 181, 213, 180, 213, 212, 181, 182, 214, 181, 214, 213, 182, 183, 215, 182, 215, 214, 183, 184, 216, 183, 216, 215, 184, 185, 217, 184, 217, 216, 185, 186, 218, 185, 218, 217, 186, 187, 219, 186, 219, 218, 187, 188, 220, 187, 220, 219, 188, 189, 221, 188, 221, 220, 189, 190, 222, 189, 222, 221, 190, 191, 223, 190, 223, 222, 192, 193, 225, 192, 225, 224, 193, 194, 226, 193, 226, 225, 194, 195, 227, 194, 227, 226, 195, 196, 228, 195, 228, 227, 196, 197, 229, 196, 229, 228, 197, 198, 230, 197, 230, 229, 198, 199, 231, 198, 231, 230, 199, 200, 232, 199, 232, 231, 200, 201, 233, 200, 233, 232, 201, 202, 234, 201, 234, 233, 202, 203, 235, 202, 235, 234, 203, 204, 236, 203, 236, 235, 204, 205, 237, 204, 237, 236, 205, 206, 238, 205, 238, 237, 206, 207, 239, 206, 239, 238, 207, 208, 240, 207, 240, 239, 208, 209, 241, 208, 241, 240, 209, 210, 242, 209, 242, 241, 210, 211, 243, 210, 243, 242, 211, 212, 244, 211, 244, 243, 212, 213, 245, 212, 245, 244, 213, 214, 246, 213, 246, 245, 214, 215, 247, 214, 247, 246, 215, 216, 248, 215, 248, 247, 216, 217, 249, 216, 249, 248, 217, 218, 250, 217, 250, 249, 218, 219, 251, 218, 251, 250, 219, 220, 252, 219, 252, 251, 220, 221, 253, 220, 253, 252, 221, 222, 254, 221, 254, 253, 222, 223, 255, 222, 255, 254, 224, 225, 257, 224, 257, 256, 225, 226, 258, 225, 258, 257, 226, 227, 259, 226, 259, 258, 227, 228, 260, 227, 260, 259, 228, 229, 261, 228, 261, 260, 229, 230, 262, 229, 262, 261, 230, 231, 263, 230, 263, 262, 231, 232, 264, 231, 264, 263, 232, 233, 265, 232, 265, 264, 233, 234, 266, 233, 266, 265, 234, 235, 267, 234, 267, 266, 235, 236, 268, 235, 268, 267, 236, 237, 269, 236, 269, 268, 237, 238, 270, 237, 270, 269, 238, 239, 271, 238, 271, 270, 239, 240, 272, 239, 272, 271, 240, 241, 273, 240, 273, 272, 241, 242, 274, 241, 274, 273, 242, 243, 275, 242, 275, 274, 243, 244, 276, 243, 276, 275, 244, 245, 277, 244, 277, 276, 245, 246, 278, 245, 278, 277, 246, 247, 279, 246, 279, 278, 247, 248, 280, 247, 280, 279, 248, 249, 281, 248, 281, 280, 249, 250, 282, 249, 282, 281, 250, 251, 283, 250, 283, 282, 251, 252, 284, 251, 284, 283, 252, 253, 285, 252, 285, 284, 253, 254, 286, 253, 286, 285, 254, 255, 287, 254, 287, 286, 256, 257, 289, 256, 289, 288, 257, 258, 290, 257, 290, 289, 258, 259, 291, 258, 291, 290, 259, 260, 292, 259, 292, 291, 260, 261, 293, 260, 293, 292, 261, 262, 294, 261, 294, 293, 262, 263, 295, 262, 295, 294, 263, 264, 296, 263, 296, 295, 264, 265, 297, 264, 297, 296, 265, 266, 298, 265, 298, 297, 266, 267, 299, 266, 299, 298, 267, 268, 300, 267, 300, 299, 268, 269, 301, 268, 301, 300, 269, 270, 302, 269, 302, 301, 270, 271, 303, 270, 303, 302, 271, 272, 304, 271, 304, 303, 272, 273, 305, 272, 305, 304, 273, 274, 306, 273, 306, 305, 274, 275, 307, 274, 307, 306, 275, 276, 308, 275, 308, 307, 276, 277, 309, 276, 309, 308, 277, 278, 310, 277, 310, 309, 278, 279, 311, 278, 311, 310, 279, 280, 312, 279, 312, 311, 280, 281, 313, 280, 313, 312, 281, 282, 314, 281, 314, 313, 282, 283, 315, 282, 315, 314, 283, 284, 316, 283, 316, 315, 284, 285, 317, 284, 317, 316, 285, 286, 318, 285, 318, 317, 286, 287, 319, 286, 319, 318, 288, 289, 321, 288, 321, 320, 289, 290, 322, 289, 322, 321, 290, 291, 323, 290, 323, 322, 291, 292, 324, 291, 324, 323, 292, 293, 325, 292, 325, 324, 293, 294, 326, 293, 326, 325, 294, 295, 327, 294, 327, 326, 295, 296, 328, 295, 328, 327, 296, 297, 329, 296, 329, 328, 297, 298, 330, 297, 330, 329, 298, 299, 331, 298, 331, 330, 299, 300, 332, 299, 332, 331, 300, 301, 333, 300, 333, 332, 301, 302, 334, 301, 334, 333, 302, 303, 335, 302, 335, 334, 303, 304, 336, 303, 336, 335, 304, 305, 337, 304, 337, 336, 305, 306, 338, 305, 338, 337, 306, 307, 339, 306, 339, 338, 307, 308, 340, 307, 340, 339, 308, 309, 341, 308, 341, 340, 309, 310, 342, 309, 342, 341, 310, 311, 343, 310, 343, 342, 311, 312, 344, 311, 344, 343, 312, 313, 345, 312, 345, 344, 313, 314, 346, 313, 346, 345, 314, 315, 347, 314, 347, 346, 315, 316, 348, 315, 348, 347, 316, 317, 349, 316, 349, 348, 317, 318, 350, 317, 350, 349, 318, 319, 351, 318, 351, 350, 320, 321, 353, 320, 353, 352, 321, 322, 354, 321, 354, 353, 322, 323, 355, 322, 355, 354, 323, 324, 356, 323, 356, 355, 324, 325, 357, 324, 357, 356, 325, 326, 358, 325, 358, 357, 326, 327, 359, 326, 359, 358, 327, 328, 360, 327, 360, 359, 328, 329, 361, 328, 361, 360, 329, 330, 362, 329, 362, 361, 330, 331, 363, 330, 363, 362, 331, 332, 364, 331, 364, 363, 332, 333, 365, 332, 365, 364, 333, 334, 366, 333, 366, 365, 334, 335, 367, 334, 367, 366, 335, 336, 368, 335, 368, 367, 336, 337, 369, 336, 369, 368, 337, 338, 370, 337, 370, 369, 338, 339, 371, 338, 371, 370, 339, 340, 372, 339, 372, 371, 340, 341, 373, 340, 373, 372, 341, 342, 374, 341, 374, 373, 342, 343, 375, 342, 375, 374, 343, 344, 376, 343, 376, 375, 344, 345, 377, 344, 377, 376, 345, 346, 378, 345, 378, 377, 346, 347, 379, 346, 379, 378, 347, 348, 380, 347, 380, 379, 348, 349, 381, 348, 381, 380, 349, 350, 382, 349, 382, 381, 350, 351, 383, 350, 383, 382, 352, 353, 385, 352, 385, 384, 353, 354, 386, 353, 386, 385, 354, 355, 387, 354, 387, 386, 355, 356, 388, 355, 388, 387, 356, 357, 389, 356, 389, 388, 357, 358, 390, 357, 390, 389, 358, 359, 391, 358, 391, 390, 359, 360, 392, 359, 392, 391, 360, 361, 393, 360, 393, 392, 361, 362, 394, 361, 394, 393, 362, 363, 395, 362, 395, 394, 363, 364, 396, 363, 396, 395, 364, 365, 397, 364, 397, 396, 365, 366, 398, 365, 398, 397, 366, 367, 399, 366, 399, 398, 367, 368, 400, 367, 400, 399, 368, 369, 401, 368, 401, 400, 369, 370, 402, 369, 402, 401, 370, 371, 403, 370, 403, 402, 371, 372, 404, 371, 404, 403, 372, 373, 405, 372, 405, 404, 373, 374, 406, 373, 406, 405, 374, 375, 407, 374, 407, 406, 375, 376, 408, 375, 408, 407, 376, 377, 409, 376, 409, 408, 377, 378, 410, 377, 410, 409, 378, 379, 411, 378, 411, 410, 379, 380, 412, 379, 412, 411, 380, 381, 413, 380, 413, 412, 381, 382, 414, 381, 414, 413, 382, 383, 415, 382, 415, 414, 384, 385, 417, 384, 417, 416, 385, 386, 418, 385, 418, 417, 386, 387, 419, 386, 419, 418, 387, 388, 420, 387, 420, 419, 388, 389, 421, 388, 421, 420, 389, 390, 422, 389, 422, 421, 390, 391, 423, 390, 423, 422, 391, 392, 424, 391, 424, 423, 392, 393, 425, 392, 425, 424, 393, 394, 426, 393, 426, 425, 394, 395, 427, 394, 427, 426, 395, 396, 428, 395, 428, 427, 396, 397, 429, 396, 429, 428, 397, 398, 430, 397, 430, 429, 398, 399, 431, 398, 431, 430, 399, 400, 432, 399, 432, 431, 400, 401, 433, 400, 433, 432, 401, 402, 434, 401, 434, 433, 402, 403, 435, 402, 435, 434, 403, 404, 436, 403, 436, 435, 404, 405, 437, 404, 437, 436, 405, 406, 438, 405, 438, 437, 406, 407, 439, 406, 439, 438, 407, 408, 440, 407, 440, 439, 408, 409, 441, 408, 441, 440, 409, 410, 442, 409, 442, 441, 410, 411, 443, 410, 443, 442, 411, 412, 444, 411, 444, 443, 412, 413, 445, 412, 445, 444, 413, 414, 446, 413, 446, 445, 414, 415, 447, 414, 447, 446, 416, 417, 449, 416, 449, 448, 417, 418, 450, 417, 450, 449, 418, 419, 451, 418, 451, 450, 419, 420, 452, 419, 452, 451, 420, 421, 453, 420, 453, 452, 421, 422, 454, 421, 454, 453, 422, 423, 455, 422, 455, 454, 423, 424, 456, 423, 456, 455, 424, 425, 457, 424, 457, 456, 425, 426, 458, 425, 458, 457, 426, 427, 459, 426, 459, 458, 427, 428, 460, 427, 460, 459, 428, 429, 461, 428, 461, 460, 429, 430, 462, 429, 462, 461, 430, 431, 463, 430, 463, 462, 431, 432, 464, 431, 464, 463, 432, 433, 465, 432, 465, 464, 433, 434, 466, 433, 466, 465, 434, 435, 467, 434, 467, 466, 435, 436, 468, 435, 468, 467, 436, 437, 469, 436, 469, 468, 437, 438, 470, 437, 470, 469, 438, 439, 471, 438, 471, 470, 439, 440, 472, 439, 472, 471, 440, 441, 473, 440, 473, 472, 441, 442, 474, 441, 474, 473, 442, 443, 475, 442, 475, 474, 443, 444, 476, 443, 476, 475, 444, 445, 477, 444, 477, 476, 445, 446, 478, 445, 478, 477, 446, 447, 479, 446, 479, 478, 448, 449, 481, 448, 481, 480, 449, 450, 482, 449, 482, 481, 450, 451, 483, 450, 483, 482, 451, 452, 484, 451, 484, 483, 452, 453, 485, 452, 485, 484, 453, 454, 486, 453, 486, 485, 454, 455, 487, 454, 487, 486, 455, 456, 488, 455, 488, 487, 456, 457, 489, 456, 489, 488, 457, 458, 490, 457, 490, 489, 458, 459, 491, 458, 491, 490, 459, 460, 492, 459, 492, 491, 460, 461, 493, 460, 493, 492, 461, 462, 494, 461, 494, 493, 462, 463, 495, 462, 495, 494, 463, 464, 496, 463, 496, 495, 464, 465, 497, 464, 497, 496, 465, 466, 498, 465, 498, 497, 466, 467, 499, 466, 499, 498, 467, 468, 500, 467, 500, 499, 468, 469, 501, 468, 501, 500, 469, 470, 502, 469, 502, 501, 470, 471, 503, 470, 503, 502, 471, 472, 504, 471, 504, 503, 472, 473, 505, 472, 505, 504, 473, 474, 506, 473, 506, 505, 474, 475, 507, 474, 507, 506, 475, 476, 508, 475, 508, 507, 476, 477, 509, 476, 509, 508, 477, 478, 510, 477, 510, 509, 478, 479, 511, 478, 511, 510, 480, 481, 513, 480, 513, 512, 481, 482, 514, 481, 514, 513, 482, 483, 515, 482, 515, 514, 483, 484, 516, 483, 516, 515, 484, 485, 517, 484, 517, 516, 485, 486, 518, 485, 518, 517, 486, 487, 519, 486, 519, 518, 487, 488, 520, 487, 520, 519, 488, 489, 521, 488, 521, 520, 489, 490, 522, 489, 522, 521, 490, 491, 523, 490, 523, 522, 491, 492, 524, 491, 524, 523, 492, 493, 525, 492, 525, 524, 493, 494, 526, 493, 526, 525, 494, 495, 527, 494, 527, 526, 495, 496, 528, 495, 528, 527, 496, 497, 529, 496, 529, 528, 497, 498, 530, 497, 530, 529, 498, 499, 531, 498, 531, 530, 499, 500, 532, 499, 532, 531, 500, 501, 533, 500, 533, 532, 501, 502, 534, 501, 534, 533, 502, 503, 535, 502, 535, 534, 503, 504, 536, 503, 536, 535, 504, 505, 537, 504, 537, 536, 505, 506, 538, 505, 538, 537, 506, 507, 539, 506, 539, 538, 507, 508, 540, 507, 540, 539, 508, 509, 541, 508, 541, 540, 509, 510, 542, 509, 542, 541, 510, 511, 543, 510, 543, 542, 512, 513, 545, 512, 545, 544, 513, 514, 546, 513, 546, 545, 514, 515, 547, 514, 547, 546, 515, 516, 548, 515, 548, 547, 516, 517, 549, 516, 549, 548, 517, 518, 550, 517, 550, 549, 518, 519, 551, 518, 551, 550, 519, 520, 552, 519, 552, 551, 520, 521, 553, 520, 553, 552, 521, 522, 554, 521, 554, 553, 522, 523, 555, 522, 555, 554, 523, 524, 556, 523, 556, 555, 524, 525, 557, 524, 557, 556, 525, 526, 558, 525, 558, 557, 526, 527, 559, 526, 559, 558, 527, 528, 560, 527, 560, 559, 528, 529, 561, 528, 561, 560, 529, 530, 562, 529, 562, 561, 530, 531, 563, 530, 563, 562, 531, 532, 564, 531, 564, 563, 532, 533, 565, 532, 565, 564, 533, 534, 566, 533, 566, 565, 534, 535, 567, 534, 567, 566, 535, 536, 568, 535, 568, 567, 536, 537, 569, 536, 569, 568, 537, 538, 570, 537, 570, 569, 538, 539, 571, 538, 571, 570, 539, 540, 572, 539, 572, 571, 540, 541, 573, 540, 573, 572, 541, 542, 574, 541, 574, 573, 542, 543, 575, 542, 575, 574, 544, 545, 577, 544, 577, 576, 545, 546, 578, 545, 578, 577, 546, 547, 579, 546, 579, 578, 547, 548, 580, 547, 580, 579, 548, 549, 581, 548, 581, 580, 549, 550, 582, 549, 582, 581, 550, 551, 583, 550, 583, 582, 551, 552, 584, 551, 584, 583, 552, 553, 585, 552, 585, 584, 553, 554, 586, 553, 586, 585, 554, 555, 587, 554, 587, 586, 555, 556, 588, 555, 588, 587, 556, 557, 589, 556, 589, 588, 557, 558, 590, 557, 590, 589, 558, 559, 591, 558, 591, 590, 559, 560, 592, 559, 592, 591, 560, 561, 593, 560, 593, 592, 561, 562, 594, 561, 594, 593, 562, 563, 595, 562, 595, 594, 563, 564, 596, 563, 596, 595, 564, 565, 597, 564, 597, 596, 565, 566, 598, 565, 598, 597, 566, 567, 599, 566, 599, 598, 567, 568, 600, 567, 600, 599, 568, 569, 601, 568, 601, 600, 569, 570, 602, 569, 602, 601, 570, 571, 603, 570, 603, 602, 571, 572, 604, 571, 604, 603, 572, 573, 605, 572, 605, 604, 573, 574, 606, 573, 606, 605, 574, 575, 607, 574, 607, 606, 576, 577, 609, 576, 609, 608, 577, 578, 610, 577, 610, 609, 578, 579, 611, 578, 611, 610, 579, 580, 612, 579, 612, 611, 580, 581, 613, 580, 613, 612, 581, 582, 614, 581, 614, 613, 582, 583, 615, 582, 615, 614, 583, 584, 616, 583, 616, 615, 584, 585, 617, 584, 617, 616, 585, 586, 618, 585, 618, 617, 586, 587, 619, 586, 619, 618, 587, 588, 620, 587, 620, 619, 588, 589, 621, 588, 621, 620, 589, 590, 622, 589, 622, 621, 590, 591, 623, 590, 623, 622, 591, 592, 624, 591, 624, 623, 592, 593, 625, 592, 625, 624, 593, 594, 626, 593, 626, 625, 594, 595, 627, 594, 627, 626, 595, 596, 628, 595, 628, 627, 596, 597, 629, 596, 629, 628, 597, 598, 630, 597, 630, 629, 598, 599, 631, 598, 631, 630, 599, 600, 632, 599, 632, 631, 600, 601, 633, 600, 633, 632, 601, 602, 634, 601, 634, 633, 602, 603, 635, 602, 635, 634, 603, 604, 636, 603, 636, 635, 604, 605, 637, 604, 637, 636, 605, 606, 638, 605, 638, 637, 606, 607, 639, 606, 639, 638, 608, 609, 641, 608, 641, 640, 609, 610, 642, 609, 642, 641, 610, 611, 643, 610, 643, 642, 611, 612, 644, 611, 644, 643, 612, 613, 645, 612, 645, 644, 613, 614, 646, 613, 646, 645, 614, 615, 647, 614, 647, 646, 615, 616, 648, 615, 648, 647, 616, 617, 649, 616, 649, 648, 617, 618, 650, 617, 650, 649, 618, 619, 651, 618, 651, 650, 619, 620, 652, 619, 652, 651, 620, 621, 653, 620, 653, 652, 621, 622, 654, 621, 654, 653, 622, 623, 655, 622, 655, 654, 623, 624, 656, 623, 656, 655, 624, 625, 657, 624, 657, 656, 625, 626, 658, 625, 658, 657, 626, 627, 659, 626, 659, 658, 627, 628, 660, 627, 660, 659, 628, 629, 661, 628, 661, 660, 629, 630, 662, 629, 662, 661, 630, 631, 663, 630, 663, 662, 631, 632, 664, 631, 664, 663, 632, 633, 665, 632, 665, 664, 633, 634, 666, 633, 666, 665, 634, 635, 667, 634, 667, 666, 635, 636, 668, 635, 668, 667, 636, 637, 669, 636, 669, 668, 637, 638, 670, 637, 670, 669, 638, 639, 671, 638, 671, 670, 640, 641, 673, 640, 673, 672, 641, 642, 674, 641, 674, 673, 642, 643, 675, 642, 675, 674, 643, 644, 676, 643, 676, 675, 644, 645, 677, 644, 677, 676, 645, 646, 678, 645, 678, 677, 646, 647, 679, 646, 679, 678, 647, 648, 680, 647, 680, 679, 648, 649, 681, 648, 681, 680, 649, 650, 682, 649, 682, 681, 650, 651, 683, 650, 683, 682, 651, 652, 684, 651, 684, 683, 652, 653, 685, 652, 685, 684, 653, 654, 686, 653, 686, 685, 654, 655, 687, 654, 687, 686, 655, 656, 688, 655, 688, 687, 656, 657, 689, 656, 689, 688, 657, 658, 690, 657, 690, 689, 658, 659, 691, 658, 691, 690, 659, 660, 692, 659, 692, 691, 660, 661, 693, 660, 693, 692, 661, 662, 694, 661, 694, 693, 662, 663, 695, 662, 695, 694, 663, 664, 696, 663, 696, 695, 664, 665, 697, 664, 697, 696, 665, 666, 698, 665, 698, 697, 666, 667, 699, 666, 699, 698, 667, 668, 700, 667, 700, 699, 668, 669, 701, 668, 701, 700, 669, 670, 702, 669, 702, 701, 670, 671, 703, 670, 703, 702, 672, 673, 705, 672, 705, 704, 673, 674, 706, 673, 706, 705, 674, 675, 707, 674, 707, 706, 675, 676, 708, 675, 708, 707, 676, 677, 709, 676, 709, 708, 677, 678, 710, 677, 710, 709, 678, 679, 711, 678, 711, 710, 679, 680, 712, 679, 712, 711, 680, 681, 713, 680, 713, 712, 681, 682, 714, 681, 714, 713, 682, 683, 715, 682, 715, 714, 683, 684, 716, 683, 716, 715, 684, 685, 717, 684, 717, 716, 685, 686, 718, 685, 718, 717, 686, 687, 719, 686, 719, 718, 687, 688, 720, 687, 720, 719, 688, 689, 721, 688, 721, 720, 689, 690, 722, 689, 722, 721, 690, 691, 723, 690, 723, 722, 691, 692, 724, 691, 724, 723, 692, 693, 725, 692, 725, 724, 693, 694, 726, 693, 726, 725, 694, 695, 727, 694, 727, 726, 695, 696, 728, 695, 728, 727, 696, 697, 729, 696, 729, 728, 697, 698, 730, 697, 730, 729, 698, 699, 731, 698, 731, 730, 699, 700, 732, 699, 732, 731, 700, 701, 733, 700, 733, 732, 701, 702, 734, 701, 734, 733, 702, 703, 735, 702, 735, 734, 704, 705, 737, 704, 737, 736, 705, 706, 738, 705, 738, 737, 706, 707, 739, 706, 739, 738, 707, 708, 740, 707, 740, 739, 708, 709, 741, 708, 741, 740, 709, 710, 742, 709, 742, 741, 710, 711, 743, 710, 743, 742, 711, 712, 744, 711, 744, 743, 712, 713, 745, 712, 745, 744, 713, 714, 746, 713, 746, 745, 714, 715, 747, 714, 747, 746, 715, 716, 748, 715, 748, 747, 716, 717, 749, 716, 749, 748, 717, 718, 750, 717, 750, 749, 718, 719, 751, 718, 751, 750, 719, 720, 752, 719, 752, 751, 720, 721, 753, 720, 753, 752, 721, 722, 754, 721, 754, 753, 722, 723, 755, 722, 755, 754, 723, 724, 756, 723, 756, 755, 724, 725, 757, 724, 757, 756, 725, 726, 758, 725, 758, 757, 726, 727, 759, 726, 759, 758, 727, 728, 760, 727, 760, 759, 728, 729, 761, 728, 761, 760, 729, 730, 762, 729, 762, 761, 730, 731, 763, 730, 763, 762, 731, 732, 764, 731, 764, 763, 732, 733, 765, 732, 765, 764, 733, 734, 766, 733, 766, 765, 734, 735, 767, 734, 767, 766, 736, 737, 769, 736, 769, 768, 737, 738, 770, 737, 770, 769, 738, 739, 771, 738, 771, 770, 739, 740, 772, 739, 772, 771, 740, 741, 773, 740, 773, 772, 741, 742, 774, 741, 774, 773, 742, 743, 775, 742, 775, 774, 743, 744, 776, 743, 776, 775, 744, 745, 777, 744, 777, 776, 745, 746, 778, 745, 778, 777, 746, 747, 779, 746, 779, 778, 747, 748, 780, 747, 780, 779, 748, 749, 781, 748, 781, 780, 749, 750, 782, 749, 782, 781, 750, 751, 783, 750, 783, 782, 751, 752, 784, 751, 784, 783, 752, 753, 785, 752, 785, 784, 753, 754, 786, 753, 786, 785, 754, 755, 787, 754, 787, 786, 755, 756, 788, 755, 788, 787, 756, 757, 789, 756, 789, 788, 757, 758, 790, 757, 790, 789, 758, 759, 791, 758, 791, 790, 759, 760, 792, 759, 792, 791, 760, 761, 793, 760, 793, 792, 761, 762, 794, 761, 794, 793, 762, 763, 795, 762, 795, 794, 763, 764, 796, 763, 796, 795, 764, 765, 797, 764, 797, 796, 765, 766, 798, 765, 798, 797, 766, 767, 799, 766, 799, 798, 768, 769, 801, 768, 801, 800, 769, 770, 802, 769, 802, 801, 770, 771, 803, 770, 803, 802, 771, 772, 804, 771, 804, 803, 772, 773, 805, 772, 805, 804, 773, 774, 806, 773, 806, 805, 774, 775, 807, 774, 807, 806, 775, 776, 808, 775, 808, 807, 776, 777, 809, 776, 809, 808, 777, 778, 810, 777, 810, 809, 778, 779, 811, 778, 811, 810, 779, 780, 812, 779, 812, 811, 780, 781, 813, 780, 813, 812, 781, 782, 814, 781, 814, 813, 782, 783, 815, 782, 815, 814, 783, 784, 816, 783, 816, 815, 784, 785, 817, 784, 817, 816, 785, 786, 818, 785, 818, 817, 786, 787, 819, 786, 819, 818, 787, 788, 820, 787, 820, 819, 788, 789, 821, 788, 821, 820, 789, 790, 822, 789, 822, 821, 790, 791, 823, 790, 823, 822, 791, 792, 824, 791, 824, 823, 792, 793, 825, 792, 825, 824, 793, 794, 826, 793, 826, 825, 794, 795, 827, 794, 827, 826, 795, 796, 828, 795, 828, 827, 796, 797, 829, 796, 829, 828, 797, 798, 830, 797, 830, 829, 798, 799, 831, 798, 831, 830, 800, 801, 833, 800, 833, 832, 801, 802, 834, 801, 834, 833, 802, 803, 835, 802, 835, 834, 803, 804, 836, 803, 836, 835, 804, 805, 837, 804, 837, 836, 805, 806, 838, 805, 838, 837, 806, 807, 839, 806, 839, 838, 807, 808, 840, 807, 840, 839, 808, 809, 841, 808, 841, 840, 809, 810, 842, 809, 842, 841, 810, 811, 843, 810, 843, 842, 811, 812, 844, 811, 844, 843, 812, 813, 845, 812, 845, 844, 813, 814, 846, 813, 846, 845, 814, 815, 847, 814, 847, 846, 815, 816, 848, 815, 848, 847, 816, 817, 849, 816, 849, 848, 817, 818, 850, 817, 850, 849, 818, 819, 851, 818, 851, 850, 819, 820, 852, 819, 852, 851, 820, 821, 853, 820, 853, 852, 821, 822, 854, 821, 854, 853, 822, 823, 855, 822, 855, 854, 823, 824, 856, 823, 856, 855, 824, 825, 857, 824, 857, 856, 825, 826, 858, 825, 858, 857, 826, 827, 859, 826, 859, 858, 827, 828, 860, 827, 860, 859, 828, 829, 861, 828, 861, 860, 829, 830, 862, 829, 862, 861, 830, 831, 863, 830, 863, 862, 832, 833, 865, 832, 865, 864, 833, 834, 866, 833, 866, 865, 834, 835, 867, 834, 867, 866, 835, 836, 868, 835, 868, 867, 836, 837, 869, 836, 869, 868, 837, 838, 870, 837, 870, 869, 838, 839, 871, 838, 871, 870, 839, 840, 872, 839, 872, 871, 840, 841, 873, 840, 873, 872, 841, 842, 874, 841, 874, 873, 842, 843, 875, 842, 875, 874, 843, 844, 876, 843, 876, 875, 844, 845, 877, 844, 877, 876, 845, 846, 878, 845, 878, 877, 846, 847, 879, 846, 879, 878, 847, 848, 880, 847, 880, 879, 848, 849, 881, 848, 881, 880, 849, 850, 882, 849, 882, 881, 850, 851, 883, 850, 883, 882, 851, 852, 884, 851, 884, 883, 852, 853, 885, 852, 885, 884, 853, 854, 886, 853, 886, 885, 854, 855, 887, 854, 887, 886, 855, 856, 888, 855, 888, 887, 856, 857, 889, 856, 889, 888, 857, 858, 890, 857, 890, 889, 858, 859, 891, 858, 891, 890, 859, 860, 892, 859, 892, 891, 860, 861, 893, 860, 893, 892, 861, 862, 894, 861, 894, 893, 862, 863, 895, 862, 895, 894, 864, 865, 897, 864, 897, 896, 865, 866, 898, 865, 898, 897, 866, 867, 899, 866, 899, 898, 867, 868, 900, 867, 900, 899, 868, 869, 901, 868, 901, 900, 869, 870, 902, 869, 902, 901, 870, 871, 903, 870, 903, 902, 871, 872, 904, 871, 904, 903, 872, 873, 905, 872, 905, 904, 873, 874, 906, 873, 906, 905, 874, 875, 907, 874, 907, 906, 875, 876, 908, 875, 908, 907, 876, 877, 909, 876, 909, 908, 877, 878, 910, 877, 910, 909, 878, 879, 911, 878, 911, 910, 879, 880, 912, 879, 912, 911, 880, 881, 913, 880, 913, 912, 881, 882, 914, 881, 914, 913, 882, 883, 915, 882, 915, 914, 883, 884, 916, 883, 916, 915, 884, 885, 917, 884, 917, 916, 885, 886, 918, 885, 918, 917, 886, 887, 919, 886, 919, 918, 887, 888, 920, 887, 920, 919, 888, 889, 921, 888, 921, 920, 889, 890, 922, 889, 922, 921, 890, 891, 923, 890, 923, 922, 891, 892, 924, 891, 924, 923, 892, 893, 925, 892, 925, 924, 893, 894, 926, 893, 926, 925, 894, 895, 927, 894, 927, 926, 896, 897, 929, 896, 929, 928, 897, 898, 930, 897, 930, 929, 898, 899, 931, 898, 931, 930, 899, 900, 932, 899, 932, 931, 900, 901, 933, 900, 933, 932, 901, 902, 934, 901, 934, 933, 902, 903, 935, 902, 935, 934, 903, 904, 936, 903, 936, 935, 904, 905, 937, 904, 937, 936, 905, 906, 938, 905, 938, 937, 906, 907, 939, 906, 939, 938, 907, 908, 940, 907, 940, 939, 908, 909, 941, 908, 941, 940, 909, 910, 942, 909, 942, 941, 910, 911, 943, 910, 943, 942, 911, 912, 944, 911, 944, 943, 912, 913, 945, 912, 945, 944, 913, 914, 946, 913, 946, 945, 914, 915, 947, 914, 947, 946, 915, 916, 948, 915, 948, 947, 916, 917, 949, 916, 949, 948, 917, 918, 950, 917, 950, 949, 918, 919, 951, 918, 951, 950, 919, 920, 952, 919, 952, 951, 920, 921, 953, 920, 953, 952, 921, 922, 954, 921, 954, 953, 922, 923, 955, 922, 955, 954, 923, 924, 956, 923, 956, 955, 924, 925, 957, 924, 957, 956, 925, 926, 958, 925, 958, 957, 926, 927, 959, 926, 959, 958, 928, 929, 961, 928, 961, 960, 929, 930, 962, 929, 962, 961, 930, 931, 963, 930, 963, 962, 931, 932, 964, 931, 964, 963, 932, 933, 965, 932, 965, 964, 933, 934, 966, 933, 966, 965, 934, 935, 967, 934, 967, 966, 935, 936, 968, 935, 968, 967, 936, 937, 969, 936, 969, 968, 937, 938, 970, 937, 970, 969, 938, 939, 971, 938, 971, 970, 939, 940, 972, 939, 972, 971, 940, 941, 973, 940, 973, 972, 941, 942, 974, 941, 974, 973, 942, 943, 975, 942, 975, 974, 943, 944, 976, 943, 976, 975, 944, 945, 977, 944, 977, 976, 945, 946, 978, 945, 978, 977, 946, 947, 979, 946, 979, 978, 947, 948, 980, 947, 980, 979, 948, 949, 981, 948, 981, 980, 949, 950, 982, 949, 982, 981, 950, 951, 983, 950, 983, 982, 951, 952, 984, 951, 984, 983, 952, 953, 985, 952, 985, 984, 953, 954, 986, 953, 986, 985, 954, 955, 987, 954, 987, 986, 955, 956, 988, 955, 988, 987, 956, 957, 989, 956, 989, 988, 957, 958, 990, 957, 990, 989, 958, 959, 991, 958, 991, 990, 960, 961, 993, 960, 993, 992, 961, 962, 994, 961, 994, 993, 962, 963, 995, 962, 995, 994, 963, 964, 996, 963, 996, 995, 964, 965, 997, 964, 997, 996, 965, 966, 998, 965, 998, 997, 966, 967, 999, 966, 999, 998, 967, 968, 1000, 967, 1000, 999, 968, 969, 1001, 968, 1001, 1000, 969, 970, 1002, 969, 1002, 1001, 970, 971, 1003, 970, 1003, 1002, 971, 972, 1004, 971, 1004, 1003, 972, 973, 1005, 972, 1005, 1004, 973, 974, 1006, 973, 1006, 1005, 974, 975, 1007, 974, 1007, 1006, 975, 976, 1008, 975, 1008, 1007, 976, 977, 1009, 976, 1009, 1008, 977, 978, 1010, 977, 1010, 1009, 978, 979, 1011, 978, 1011, 1010, 979, 980, 1012, 979, 1012, 1011, 980, 981, 1013, 980, 1013, 1012, 981, 982, 1014, 981, 1014, 1013, 982, 983, 1015, 982, 1015, 1014, 983, 984, 1016, 983, 1016, 1015, 984, 985, 1017, 984, 1017, 1016, 985, 986, 1018, 985, 1018, 1017, 986, 987, 1019, 986, 1019, 1018, 987, 988, 1020, 987, 1020, 1019, 988, 989, 1021, 988, 1021, 1020, 989, 990, 1022, 989, 1022, 1021, 990, 991, 1023, 990, 1023, 1022] point3f[] points = [(0, 0, 20), (20, 0, 20), (40, 0, 20), (60, 0, 20), (80, 0, 20), (100, 0, 20), (120, 0, 20), (140, 0, 20), (160, 0, 20), (180, 0, 20), (200, 0, 20), (220, 0, 20), (240, 0, 20), (260, 0, 20), (280, 0, 20), (300, 0, 20), (320, 0, 20), (340, 0, 20), (360, 0, 20), (380, 0, 20), (400, 0, 20), (420, 0, 20), (440, 0, 20), (460, 0, 20), (480, 0, 20), (500, 0, 20), (520, 0, 20), (540, 0, 20), (560, 0, 20), (580, 0, 20), (600, 0, 20), (620, 0, 20), (0, 20, 20), (20, 20, 20), (40, 20, 20), (60, 20, 20), (80, 20, 20), (100, 20, 20), (120, 20, 20), (140, 20, 20), (160, 20, 20), (180, 20, 20), (200, 20, 20), (220, 20, 20), (240, 20, 20), (260, 20, 20), (280, 20, 20), (300, 20, 20), (320, 20, 20), (340, 20, 20), (360, 20, 20), (380, 20, 20), (400, 20, 20), (420, 20, 20), (440, 20, 20), (460, 20, 20), (480, 20, 20), (500, 20, 20), (520, 20, 20), (540, 20, 20), (560, 20, 20), (580, 20, 20), (600, 20, 20), (620, 20, 20), (0, 40, 20), (20, 40, 20), (40, 40, 20), (60, 40, 20), (80, 40, 20), (100, 40, 20), (120, 40, 20), (140, 40, 20), (160, 40, 20), (180, 40, 20), (200, 40, 20), (220, 40, 20), (240, 40, 20), (260, 40, 20), (280, 40, 20), (300, 40, 20), (320, 40, 20), (340, 40, 20), (360, 40, 20), (380, 40, 20), (400, 40, 20), (420, 40, 20), (440, 40, 20), (460, 40, 20), (480, 40, 20), (500, 40, 20), (520, 40, 20), (540, 40, 20), (560, 40, 20), (580, 40, 20), (600, 40, 20), (620, 40, 20), (0, 60, 20), (20, 60, 20), (40, 60, 20), (60, 60, 20), (80, 60, 20), (100, 60, 20), (120, 60, 20), (140, 60, 20), (160, 60, 20), (180, 60, 20), (200, 60, 20), (220, 60, 20), (240, 60, 20), (260, 60, 20), (280, 60, 20), (300, 60, 20), (320, 60, 20), (340, 60, 20), (360, 60, 20), (380, 60, 20), (400, 60, 20), (420, 60, 20), (440, 60, 20), (460, 60, 20), (480, 60, 20), (500, 60, 20), (520, 60, 20), (540, 60, 20), (560, 60, 20), (580, 60, 20), (600, 60, 20), (620, 60, 20), (0, 80, 20), (20, 80, 20), (40, 80, 20), (60, 80, 20), (80, 80, 20), (100, 80, 20), (120, 80, 20), (140, 80, 20), (160, 80, 20), (180, 80, 20), (200, 80, 20), (220, 80, 20), (240, 80, 20), (260, 80, 20), (280, 80, 20), (300, 80, 20), (320, 80, 20), (340, 80, 20), (360, 80, 20), (380, 80, 20), (400, 80, 20), (420, 80, 20), (440, 80, 20), (460, 80, 20), (480, 80, 20), (500, 80, 20), (520, 80, 20), (540, 80, 20), (560, 80, 20), (580, 80, 20), (600, 80, 20), (620, 80, 20), (0, 100, 20), (20, 100, 20), (40, 100, 20), (60, 100, 20), (80, 100, 20), (100, 100, 20), (120, 100, 20), (140, 100, 20), (160, 100, 20), (180, 100, 20), (200, 100, 20), (220, 100, 20), (240, 100, 20), (260, 100, 20), (280, 100, 20), (300, 100, 20), (320, 100, 20), (340, 100, 20), (360, 100, 20), (380, 100, 20), (400, 100, 20), (420, 100, 20), (440, 100, 20), (460, 100, 20), (480, 100, 20), (500, 100, 20), (520, 100, 20), (540, 100, 20), (560, 100, 20), (580, 100, 20), (600, 100, 20), (620, 100, 20), (0, 120, 20), (20, 120, 20), (40, 120, 20), (60, 120, 20), (80, 120, 20), (100, 120, 20), (120, 120, 20), (140, 120, 20), (160, 120, 20), (180, 120, 20), (200, 120, 20), (220, 120, 20), (240, 120, 20), (260, 120, 20), (280, 120, 20), (300, 120, 20), (320, 120, 20), (340, 120, 20), (360, 120, 20), (380, 120, 20), (400, 120, 20), (420, 120, 20), (440, 120, 20), (460, 120, 20), (480, 120, 20), (500, 120, 20), (520, 120, 20), (540, 120, 20), (560, 120, 20), (580, 120, 20), (600, 120, 20), (620, 120, 20), (0, 140, 20), (20, 140, 20), (40, 140, 20), (60, 140, 20), (80, 140, 20), (100, 140, 20), (120, 140, 20), (140, 140, 20), (160, 140, 20), (180, 140, 20), (200, 140, 20), (220, 140, 20), (240, 140, 20), (260, 140, 20), (280, 140, 20), (300, 140, 20), (320, 140, 20), (340, 140, 20), (360, 140, 20), (380, 140, 20), (400, 140, 20), (420, 140, 20), (440, 140, 20), (460, 140, 20), (480, 140, 20), (500, 140, 20), (520, 140, 20), (540, 140, 20), (560, 140, 20), (580, 140, 20), (600, 140, 20), (620, 140, 20), (0, 160, 20), (20, 160, 20), (40, 160, 20), (60, 160, 20), (80, 160, 20), (100, 160, 20), (120, 160, 20), (140, 160, 20), (160, 160, 20), (180, 160, 20), (200, 160, 20), (220, 160, 20), (240, 160, 20), (260, 160, 20), (280, 160, 20), (300, 160, 20), (320, 160, 20), (340, 160, 20), (360, 160, 20), (380, 160, 20), (400, 160, 20), (420, 160, 20), (440, 160, 20), (460, 160, 20), (480, 160, 20), (500, 160, 20), (520, 160, 20), (540, 160, 20), (560, 160, 20), (580, 160, 20), (600, 160, 20), (620, 160, 20), (0, 180, 20), (20, 180, 20), (40, 180, 20), (60, 180, 20), (80, 180, 20), (100, 180, 20), (120, 180, 20), (140, 180, 20), (160, 180, 20), (180, 180, 20), (200, 180, 20), (220, 180, 20), (240, 180, 20), (260, 180, 20), (280, 180, 20), (300, 180, 20), (320, 180, 20), (340, 180, 20), (360, 180, 20), (380, 180, 20), (400, 180, 20), (420, 180, 20), (440, 180, 20), (460, 180, 20), (480, 180, 20), (500, 180, 20), (520, 180, 20), (540, 180, 20), (560, 180, 20), (580, 180, 20), (600, 180, 20), (620, 180, 20), (0, 200, 20), (20, 200, 20), (40, 200, 20), (60, 200, 20), (80, 200, 20), (100, 200, 20), (120, 200, 20), (140, 200, 20), (160, 200, 20), (180, 200, 20), (200, 200, 20), (220, 200, 20), (240, 200, 20), (260, 200, 20), (280, 200, 20), (300, 200, 20), (320, 200, 20), (340, 200, 20), (360, 200, 20), (380, 200, 20), (400, 200, 20), (420, 200, 20), (440, 200, 20), (460, 200, 20), (480, 200, 20), (500, 200, 20), (520, 200, 20), (540, 200, 20), (560, 200, 20), (580, 200, 20), (600, 200, 20), (620, 200, 20), (0, 220, 20), (20, 220, 20), (40, 220, 20), (60, 220, 20), (80, 220, 20), (100, 220, 20), (120, 220, 20), (140, 220, 20), (160, 220, 20), (180, 220, 20), (200, 220, 20), (220, 220, 20), (240, 220, 20), (260, 220, 20), (280, 220, 20), (300, 220, 20), (320, 220, 20), (340, 220, 20), (360, 220, 20), (380, 220, 20), (400, 220, 20), (420, 220, 20), (440, 220, 20), (460, 220, 20), (480, 220, 20), (500, 220, 20), (520, 220, 20), (540, 220, 20), (560, 220, 20), (580, 220, 20), (600, 220, 20), (620, 220, 20), (0, 240, 20), (20, 240, 20), (40, 240, 20), (60, 240, 20), (80, 240, 20), (100, 240, 20), (120, 240, 20), (140, 240, 20), (160, 240, 20), (180, 240, 20), (200, 240, 20), (220, 240, 20), (240, 240, 20), (260, 240, 20), (280, 240, 20), (300, 240, 20), (320, 240, 20), (340, 240, 20), (360, 240, 20), (380, 240, 20), (400, 240, 20), (420, 240, 20), (440, 240, 20), (460, 240, 20), (480, 240, 20), (500, 240, 20), (520, 240, 20), (540, 240, 20), (560, 240, 20), (580, 240, 20), (600, 240, 20), (620, 240, 20), (0, 260, 20), (20, 260, 20), (40, 260, 20), (60, 260, 20), (80, 260, 20), (100, 260, 20), (120, 260, 20), (140, 260, 20), (160, 260, 20), (180, 260, 20), (200, 260, 20), (220, 260, 20), (240, 260, 20), (260, 260, 20), (280, 260, 20), (300, 260, 20), (320, 260, 20), (340, 260, 20), (360, 260, 20), (380, 260, 20), (400, 260, 20), (420, 260, 20), (440, 260, 20), (460, 260, 20), (480, 260, 20), (500, 260, 20), (520, 260, 20), (540, 260, 20), (560, 260, 20), (580, 260, 20), (600, 260, 20), (620, 260, 20), (0, 280, 20), (20, 280, 20), (40, 280, 20), (60, 280, 20), (80, 280, 20), (100, 280, 20), (120, 280, 20), (140, 280, 20), (160, 280, 20), (180, 280, 20), (200, 280, 20), (220, 280, 20), (240, 280, 20), (260, 280, 20), (280, 280, 20), (300, 280, 20), (320, 280, 20), (340, 280, 20), (360, 280, 20), (380, 280, 20), (400, 280, 20), (420, 280, 20), (440, 280, 20), (460, 280, 20), (480, 280, 20), (500, 280, 20), (520, 280, 20), (540, 280, 20), (560, 280, 20), (580, 280, 20), (600, 280, 20), (620, 280, 20), (0, 300, 20), (20, 300, 20), (40, 300, 20), (60, 300, 20), (80, 300, 20), (100, 300, 20), (120, 300, 20), (140, 300, 20), (160, 300, 20), (180, 300, 20), (200, 300, 20), (220, 300, 20), (240, 300, 20), (260, 300, 20), (280, 300, 20), (300, 300, 20), (320, 300, 20), (340, 300, 20), (360, 300, 20), (380, 300, 20), (400, 300, 20), (420, 300, 20), (440, 300, 20), (460, 300, 20), (480, 300, 20), (500, 300, 20), (520, 300, 20), (540, 300, 20), (560, 300, 20), (580, 300, 20), (600, 300, 20), (620, 300, 20), (0, 320, 20), (20, 320, 20), (40, 320, 20), (60, 320, 20), (80, 320, 20), (100, 320, 20), (120, 320, 20), (140, 320, 20), (160, 320, 20), (180, 320, 20), (200, 320, 20), (220, 320, 20), (240, 320, 20), (260, 320, 20), (280, 320, 20), (300, 320, 20), (320, 320, 20), (340, 320, 20), (360, 320, 20), (380, 320, 20), (400, 320, 20), (420, 320, 20), (440, 320, 20), (460, 320, 20), (480, 320, 20), (500, 320, 20), (520, 320, 20), (540, 320, 20), (560, 320, 20), (580, 320, 20), (600, 320, 20), (620, 320, 20), (0, 340, 20), (20, 340, 20), (40, 340, 20), (60, 340, 20), (80, 340, 20), (100, 340, 20), (120, 340, 20), (140, 340, 20), (160, 340, 20), (180, 340, 20), (200, 340, 20), (220, 340, 20), (240, 340, 20), (260, 340, 20), (280, 340, 20), (300, 340, 20), (320, 340, 20), (340, 340, 20), (360, 340, 20), (380, 340, 20), (400, 340, 20), (420, 340, 20), (440, 340, 20), (460, 340, 20), (480, 340, 20), (500, 340, 20), (520, 340, 20), (540, 340, 20), (560, 340, 20), (580, 340, 20), (600, 340, 20), (620, 340, 20), (0, 360, 20), (20, 360, 20), (40, 360, 20), (60, 360, 20), (80, 360, 20), (100, 360, 20), (120, 360, 20), (140, 360, 20), (160, 360, 20), (180, 360, 20), (200, 360, 20), (220, 360, 20), (240, 360, 20), (260, 360, 20), (280, 360, 20), (300, 360, 20), (320, 360, 20), (340, 360, 20), (360, 360, 20), (380, 360, 20), (400, 360, 20), (420, 360, 20), (440, 360, 20), (460, 360, 20), (480, 360, 20), (500, 360, 20), (520, 360, 20), (540, 360, 20), (560, 360, 20), (580, 360, 20), (600, 360, 20), (620, 360, 20), (0, 380, 20), (20, 380, 20), (40, 380, 20), (60, 380, 20), (80, 380, 20), (100, 380, 20), (120, 380, 20), (140, 380, 20), (160, 380, 20), (180, 380, 20), (200, 380, 20), (220, 380, 20), (240, 380, 20), (260, 380, 20), (280, 380, 20), (300, 380, 20), (320, 380, 20), (340, 380, 20), (360, 380, 20), (380, 380, 20), (400, 380, 20), (420, 380, 20), (440, 380, 20), (460, 380, 20), (480, 380, 20), (500, 380, 20), (520, 380, 20), (540, 380, 20), (560, 380, 20), (580, 380, 20), (600, 380, 20), (620, 380, 20), (0, 400, 20), (20, 400, 20), (40, 400, 20), (60, 400, 20), (80, 400, 20), (100, 400, 20), (120, 400, 20), (140, 400, 20), (160, 400, 20), (180, 400, 20), (200, 400, 20), (220, 400, 20), (240, 400, 20), (260, 400, 20), (280, 400, 20), (300, 400, 20), (320, 400, 20), (340, 400, 20), (360, 400, 20), (380, 400, 20), (400, 400, 20), (420, 400, 20), (440, 400, 20), (460, 400, 20), (480, 400, 20), (500, 400, 20), (520, 400, 20), (540, 400, 20), (560, 400, 20), (580, 400, 20), (600, 400, 20), (620, 400, 20), (0, 420, 20), (20, 420, 20), (40, 420, 20), (60, 420, 20), (80, 420, 20), (100, 420, 20), (120, 420, 20), (140, 420, 20), (160, 420, 20), (180, 420, 20), (200, 420, 20), (220, 420, 20), (240, 420, 20), (260, 420, 20), (280, 420, 20), (300, 420, 20), (320, 420, 20), (340, 420, 20), (360, 420, 20), (380, 420, 20), (400, 420, 20), (420, 420, 20), (440, 420, 20), (460, 420, 20), (480, 420, 20), (500, 420, 20), (520, 420, 20), (540, 420, 20), (560, 420, 20), (580, 420, 20), (600, 420, 20), (620, 420, 20), (0, 440, 20), (20, 440, 20), (40, 440, 20), (60, 440, 20), (80, 440, 20), (100, 440, 20), (120, 440, 20), (140, 440, 20), (160, 440, 20), (180, 440, 20), (200, 440, 20), (220, 440, 20), (240, 440, 20), (260, 440, 20), (280, 440, 20), (300, 440, 20), (320, 440, 20), (340, 440, 20), (360, 440, 20), (380, 440, 20), (400, 440, 20), (420, 440, 20), (440, 440, 20), (460, 440, 20), (480, 440, 20), (500, 440, 20), (520, 440, 20), (540, 440, 20), (560, 440, 20), (580, 440, 20), (600, 440, 20), (620, 440, 20), (0, 460, 20), (20, 460, 20), (40, 460, 20), (60, 460, 20), (80, 460, 20), (100, 460, 20), (120, 460, 20), (140, 460, 20), (160, 460, 20), (180, 460, 20), (200, 460, 20), (220, 460, 20), (240, 460, 20), (260, 460, 20), (280, 460, 20), (300, 460, 20), (320, 460, 20), (340, 460, 20), (360, 460, 20), (380, 460, 20), (400, 460, 20), (420, 460, 20), (440, 460, 20), (460, 460, 20), (480, 460, 20), (500, 460, 20), (520, 460, 20), (540, 460, 20), (560, 460, 20), (580, 460, 20), (600, 460, 20), (620, 460, 20), (0, 480, 20), (20, 480, 20), (40, 480, 20), (60, 480, 20), (80, 480, 20), (100, 480, 20), (120, 480, 20), (140, 480, 20), (160, 480, 20), (180, 480, 20), (200, 480, 20), (220, 480, 20), (240, 480, 20), (260, 480, 20), (280, 480, 20), (300, 480, 20), (320, 480, 20), (340, 480, 20), (360, 480, 20), (380, 480, 20), (400, 480, 20), (420, 480, 20), (440, 480, 20), (460, 480, 20), (480, 480, 20), (500, 480, 20), (520, 480, 20), (540, 480, 20), (560, 480, 20), (580, 480, 20), (600, 480, 20), (620, 480, 20), (0, 500, 20), (20, 500, 20), (40, 500, 20), (60, 500, 20), (80, 500, 20), (100, 500, 20), (120, 500, 20), (140, 500, 20), (160, 500, 20), (180, 500, 20), (200, 500, 20), (220, 500, 20), (240, 500, 20), (260, 500, 20), (280, 500, 20), (300, 500, 20), (320, 500, 20), (340, 500, 20), (360, 500, 20), (380, 500, 20), (400, 500, 20), (420, 500, 20), (440, 500, 20), (460, 500, 20), (480, 500, 20), (500, 500, 20), (520, 500, 20), (540, 500, 20), (560, 500, 20), (580, 500, 20), (600, 500, 20), (620, 500, 20), (0, 520, 20), (20, 520, 20), (40, 520, 20), (60, 520, 20), (80, 520, 20), (100, 520, 20), (120, 520, 20), (140, 520, 20), (160, 520, 20), (180, 520, 20), (200, 520, 20), (220, 520, 20), (240, 520, 20), (260, 520, 20), (280, 520, 20), (300, 520, 20), (320, 520, 20), (340, 520, 20), (360, 520, 20), (380, 520, 20), (400, 520, 20), (420, 520, 20), (440, 520, 20), (460, 520, 20), (480, 520, 20), (500, 520, 20), (520, 520, 20), (540, 520, 20), (560, 520, 20), (580, 520, 20), (600, 520, 20), (620, 520, 20), (0, 540, 20), (20, 540, 20), (40, 540, 20), (60, 540, 20), (80, 540, 20), (100, 540, 20), (120, 540, 20), (140, 540, 20), (160, 540, 20), (180, 540, 20), (200, 540, 20), (220, 540, 20), (240, 540, 20), (260, 540, 20), (280, 540, 20), (300, 540, 20), (320, 540, 20), (340, 540, 20), (360, 540, 20), (380, 540, 20), (400, 540, 20), (420, 540, 20), (440, 540, 20), (460, 540, 20), (480, 540, 20), (500, 540, 20), (520, 540, 20), (540, 540, 20), (560, 540, 20), (580, 540, 20), (600, 540, 20), (620, 540, 20), (0, 560, 20), (20, 560, 20), (40, 560, 20), (60, 560, 20), (80, 560, 20), (100, 560, 20), (120, 560, 20), (140, 560, 20), (160, 560, 20), (180, 560, 20), (200, 560, 20), (220, 560, 20), (240, 560, 20), (260, 560, 20), (280, 560, 20), (300, 560, 20), (320, 560, 20), (340, 560, 20), (360, 560, 20), (380, 560, 20), (400, 560, 20), (420, 560, 20), (440, 560, 20), (460, 560, 20), (480, 560, 20), (500, 560, 20), (520, 560, 20), (540, 560, 20), (560, 560, 20), (580, 560, 20), (600, 560, 20), (620, 560, 20), (0, 580, 20), (20, 580, 20), (40, 580, 20), (60, 580, 20), (80, 580, 20), (100, 580, 20), (120, 580, 20), (140, 580, 20), (160, 580, 20), (180, 580, 20), (200, 580, 20), (220, 580, 20), (240, 580, 20), (260, 580, 20), (280, 580, 20), (300, 580, 20), (320, 580, 20), (340, 580, 20), (360, 580, 20), (380, 580, 20), (400, 580, 20), (420, 580, 20), (440, 580, 20), (460, 580, 20), (480, 580, 20), (500, 580, 20), (520, 580, 20), (540, 580, 20), (560, 580, 20), (580, 580, 20), (600, 580, 20), (620, 580, 20), (0, 600, 20), (20, 600, 20), (40, 600, 20), (60, 600, 20), (80, 600, 20), (100, 600, 20), (120, 600, 20), (140, 600, 20), (160, 600, 20), (180, 600, 20), (200, 600, 20), (220, 600, 20), (240, 600, 20), (260, 600, 20), (280, 600, 20), (300, 600, 20), (320, 600, 20), (340, 600, 20), (360, 600, 20), (380, 600, 20), (400, 600, 20), (420, 600, 20), (440, 600, 20), (460, 600, 20), (480, 600, 20), (500, 600, 20), (520, 600, 20), (540, 600, 20), (560, 600, 20), (580, 600, 20), (600, 600, 20), (620, 600, 20), (0, 620, 20), (20, 620, 20), (40, 620, 20), (60, 620, 20), (80, 620, 20), (100, 620, 20), (120, 620, 20), (140, 620, 20), (160, 620, 20), (180, 620, 20), (200, 620, 20), (220, 620, 20), (240, 620, 20), (260, 620, 20), (280, 620, 20), (300, 620, 20), (320, 620, 20), (340, 620, 20), (360, 620, 20), (380, 620, 20), (400, 620, 20), (420, 620, 20), (440, 620, 20), (460, 620, 20), (480, 620, 20), (500, 620, 20), (520, 620, 20), (540, 620, 20), (560, 620, 20), (580, 620, 20), (600, 620, 20), (620, 620, 20)] color3f[] primvars:displayColor = [(0.2784314, 0.64705884, 1)] } def ComputeGraph "innerPullGraph" { custom token graph:name = "pullgraph" def ComputeNode "deformer1" { custom token node:type = "omni.graph.examples.cpp.Deformer1" point3f[] inputs:points.connect = </defaultPrim/inputGrid.points> float inputs:multiplier = 3 point3f[] outputs:points } def ComputeNode "deformer2" { custom token node:type = "omni.graph.examples.cpp.Deformer2" point3f[] inputs:points.connect = </defaultPrim/innerPullGraph/deformer1.outputs:points> float inputs:threshold = 10 point3f[] outputs:points } def ComputeGraphSettings "computegraphSettings" { custom token evaluator:type = "dirty_push" } } def Mesh "outputGrid" { uniform bool doubleSided = 1 int[] faceVertexCounts = [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 1, 33, 0, 33, 32, 1, 2, 34, 1, 34, 33, 2, 3, 35, 2, 35, 34, 3, 4, 36, 3, 36, 35, 4, 5, 37, 4, 37, 36, 5, 6, 38, 5, 38, 37, 6, 7, 39, 6, 39, 38, 7, 8, 40, 7, 40, 39, 8, 9, 41, 8, 41, 40, 9, 10, 42, 9, 42, 41, 10, 11, 43, 10, 43, 42, 11, 12, 44, 11, 44, 43, 12, 13, 45, 12, 45, 44, 13, 14, 46, 13, 46, 45, 14, 15, 47, 14, 47, 46, 15, 16, 48, 15, 48, 47, 16, 17, 49, 16, 49, 48, 17, 18, 50, 17, 50, 49, 18, 19, 51, 18, 51, 50, 19, 20, 52, 19, 52, 51, 20, 21, 53, 20, 53, 52, 21, 22, 54, 21, 54, 53, 22, 23, 55, 22, 55, 54, 23, 24, 56, 23, 56, 55, 24, 25, 57, 24, 57, 56, 25, 26, 58, 25, 58, 57, 26, 27, 59, 26, 59, 58, 27, 28, 60, 27, 60, 59, 28, 29, 61, 28, 61, 60, 29, 30, 62, 29, 62, 61, 30, 31, 63, 30, 63, 62, 32, 33, 65, 32, 65, 64, 33, 34, 66, 33, 66, 65, 34, 35, 67, 34, 67, 66, 35, 36, 68, 35, 68, 67, 36, 37, 69, 36, 69, 68, 37, 38, 70, 37, 70, 69, 38, 39, 71, 38, 71, 70, 39, 40, 72, 39, 72, 71, 40, 41, 73, 40, 73, 72, 41, 42, 74, 41, 74, 73, 42, 43, 75, 42, 75, 74, 43, 44, 76, 43, 76, 75, 44, 45, 77, 44, 77, 76, 45, 46, 78, 45, 78, 77, 46, 47, 79, 46, 79, 78, 47, 48, 80, 47, 80, 79, 48, 49, 81, 48, 81, 80, 49, 50, 82, 49, 82, 81, 50, 51, 83, 50, 83, 82, 51, 52, 84, 51, 84, 83, 52, 53, 85, 52, 85, 84, 53, 54, 86, 53, 86, 85, 54, 55, 87, 54, 87, 86, 55, 56, 88, 55, 88, 87, 56, 57, 89, 56, 89, 88, 57, 58, 90, 57, 90, 89, 58, 59, 91, 58, 91, 90, 59, 60, 92, 59, 92, 91, 60, 61, 93, 60, 93, 92, 61, 62, 94, 61, 94, 93, 62, 63, 95, 62, 95, 94, 64, 65, 97, 64, 97, 96, 65, 66, 98, 65, 98, 97, 66, 67, 99, 66, 99, 98, 67, 68, 100, 67, 100, 99, 68, 69, 101, 68, 101, 100, 69, 70, 102, 69, 102, 101, 70, 71, 103, 70, 103, 102, 71, 72, 104, 71, 104, 103, 72, 73, 105, 72, 105, 104, 73, 74, 106, 73, 106, 105, 74, 75, 107, 74, 107, 106, 75, 76, 108, 75, 108, 107, 76, 77, 109, 76, 109, 108, 77, 78, 110, 77, 110, 109, 78, 79, 111, 78, 111, 110, 79, 80, 112, 79, 112, 111, 80, 81, 113, 80, 113, 112, 81, 82, 114, 81, 114, 113, 82, 83, 115, 82, 115, 114, 83, 84, 116, 83, 116, 115, 84, 85, 117, 84, 117, 116, 85, 86, 118, 85, 118, 117, 86, 87, 119, 86, 119, 118, 87, 88, 120, 87, 120, 119, 88, 89, 121, 88, 121, 120, 89, 90, 122, 89, 122, 121, 90, 91, 123, 90, 123, 122, 91, 92, 124, 91, 124, 123, 92, 93, 125, 92, 125, 124, 93, 94, 126, 93, 126, 125, 94, 95, 127, 94, 127, 126, 96, 97, 129, 96, 129, 128, 97, 98, 130, 97, 130, 129, 98, 99, 131, 98, 131, 130, 99, 100, 132, 99, 132, 131, 100, 101, 133, 100, 133, 132, 101, 102, 134, 101, 134, 133, 102, 103, 135, 102, 135, 134, 103, 104, 136, 103, 136, 135, 104, 105, 137, 104, 137, 136, 105, 106, 138, 105, 138, 137, 106, 107, 139, 106, 139, 138, 107, 108, 140, 107, 140, 139, 108, 109, 141, 108, 141, 140, 109, 110, 142, 109, 142, 141, 110, 111, 143, 110, 143, 142, 111, 112, 144, 111, 144, 143, 112, 113, 145, 112, 145, 144, 113, 114, 146, 113, 146, 145, 114, 115, 147, 114, 147, 146, 115, 116, 148, 115, 148, 147, 116, 117, 149, 116, 149, 148, 117, 118, 150, 117, 150, 149, 118, 119, 151, 118, 151, 150, 119, 120, 152, 119, 152, 151, 120, 121, 153, 120, 153, 152, 121, 122, 154, 121, 154, 153, 122, 123, 155, 122, 155, 154, 123, 124, 156, 123, 156, 155, 124, 125, 157, 124, 157, 156, 125, 126, 158, 125, 158, 157, 126, 127, 159, 126, 159, 158, 128, 129, 161, 128, 161, 160, 129, 130, 162, 129, 162, 161, 130, 131, 163, 130, 163, 162, 131, 132, 164, 131, 164, 163, 132, 133, 165, 132, 165, 164, 133, 134, 166, 133, 166, 165, 134, 135, 167, 134, 167, 166, 135, 136, 168, 135, 168, 167, 136, 137, 169, 136, 169, 168, 137, 138, 170, 137, 170, 169, 138, 139, 171, 138, 171, 170, 139, 140, 172, 139, 172, 171, 140, 141, 173, 140, 173, 172, 141, 142, 174, 141, 174, 173, 142, 143, 175, 142, 175, 174, 143, 144, 176, 143, 176, 175, 144, 145, 177, 144, 177, 176, 145, 146, 178, 145, 178, 177, 146, 147, 179, 146, 179, 178, 147, 148, 180, 147, 180, 179, 148, 149, 181, 148, 181, 180, 149, 150, 182, 149, 182, 181, 150, 151, 183, 150, 183, 182, 151, 152, 184, 151, 184, 183, 152, 153, 185, 152, 185, 184, 153, 154, 186, 153, 186, 185, 154, 155, 187, 154, 187, 186, 155, 156, 188, 155, 188, 187, 156, 157, 189, 156, 189, 188, 157, 158, 190, 157, 190, 189, 158, 159, 191, 158, 191, 190, 160, 161, 193, 160, 193, 192, 161, 162, 194, 161, 194, 193, 162, 163, 195, 162, 195, 194, 163, 164, 196, 163, 196, 195, 164, 165, 197, 164, 197, 196, 165, 166, 198, 165, 198, 197, 166, 167, 199, 166, 199, 198, 167, 168, 200, 167, 200, 199, 168, 169, 201, 168, 201, 200, 169, 170, 202, 169, 202, 201, 170, 171, 203, 170, 203, 202, 171, 172, 204, 171, 204, 203, 172, 173, 205, 172, 205, 204, 173, 174, 206, 173, 206, 205, 174, 175, 207, 174, 207, 206, 175, 176, 208, 175, 208, 207, 176, 177, 209, 176, 209, 208, 177, 178, 210, 177, 210, 209, 178, 179, 211, 178, 211, 210, 179, 180, 212, 179, 212, 211, 180, 181, 213, 180, 213, 212, 181, 182, 214, 181, 214, 213, 182, 183, 215, 182, 215, 214, 183, 184, 216, 183, 216, 215, 184, 185, 217, 184, 217, 216, 185, 186, 218, 185, 218, 217, 186, 187, 219, 186, 219, 218, 187, 188, 220, 187, 220, 219, 188, 189, 221, 188, 221, 220, 189, 190, 222, 189, 222, 221, 190, 191, 223, 190, 223, 222, 192, 193, 225, 192, 225, 224, 193, 194, 226, 193, 226, 225, 194, 195, 227, 194, 227, 226, 195, 196, 228, 195, 228, 227, 196, 197, 229, 196, 229, 228, 197, 198, 230, 197, 230, 229, 198, 199, 231, 198, 231, 230, 199, 200, 232, 199, 232, 231, 200, 201, 233, 200, 233, 232, 201, 202, 234, 201, 234, 233, 202, 203, 235, 202, 235, 234, 203, 204, 236, 203, 236, 235, 204, 205, 237, 204, 237, 236, 205, 206, 238, 205, 238, 237, 206, 207, 239, 206, 239, 238, 207, 208, 240, 207, 240, 239, 208, 209, 241, 208, 241, 240, 209, 210, 242, 209, 242, 241, 210, 211, 243, 210, 243, 242, 211, 212, 244, 211, 244, 243, 212, 213, 245, 212, 245, 244, 213, 214, 246, 213, 246, 245, 214, 215, 247, 214, 247, 246, 215, 216, 248, 215, 248, 247, 216, 217, 249, 216, 249, 248, 217, 218, 250, 217, 250, 249, 218, 219, 251, 218, 251, 250, 219, 220, 252, 219, 252, 251, 220, 221, 253, 220, 253, 252, 221, 222, 254, 221, 254, 253, 222, 223, 255, 222, 255, 254, 224, 225, 257, 224, 257, 256, 225, 226, 258, 225, 258, 257, 226, 227, 259, 226, 259, 258, 227, 228, 260, 227, 260, 259, 228, 229, 261, 228, 261, 260, 229, 230, 262, 229, 262, 261, 230, 231, 263, 230, 263, 262, 231, 232, 264, 231, 264, 263, 232, 233, 265, 232, 265, 264, 233, 234, 266, 233, 266, 265, 234, 235, 267, 234, 267, 266, 235, 236, 268, 235, 268, 267, 236, 237, 269, 236, 269, 268, 237, 238, 270, 237, 270, 269, 238, 239, 271, 238, 271, 270, 239, 240, 272, 239, 272, 271, 240, 241, 273, 240, 273, 272, 241, 242, 274, 241, 274, 273, 242, 243, 275, 242, 275, 274, 243, 244, 276, 243, 276, 275, 244, 245, 277, 244, 277, 276, 245, 246, 278, 245, 278, 277, 246, 247, 279, 246, 279, 278, 247, 248, 280, 247, 280, 279, 248, 249, 281, 248, 281, 280, 249, 250, 282, 249, 282, 281, 250, 251, 283, 250, 283, 282, 251, 252, 284, 251, 284, 283, 252, 253, 285, 252, 285, 284, 253, 254, 286, 253, 286, 285, 254, 255, 287, 254, 287, 286, 256, 257, 289, 256, 289, 288, 257, 258, 290, 257, 290, 289, 258, 259, 291, 258, 291, 290, 259, 260, 292, 259, 292, 291, 260, 261, 293, 260, 293, 292, 261, 262, 294, 261, 294, 293, 262, 263, 295, 262, 295, 294, 263, 264, 296, 263, 296, 295, 264, 265, 297, 264, 297, 296, 265, 266, 298, 265, 298, 297, 266, 267, 299, 266, 299, 298, 267, 268, 300, 267, 300, 299, 268, 269, 301, 268, 301, 300, 269, 270, 302, 269, 302, 301, 270, 271, 303, 270, 303, 302, 271, 272, 304, 271, 304, 303, 272, 273, 305, 272, 305, 304, 273, 274, 306, 273, 306, 305, 274, 275, 307, 274, 307, 306, 275, 276, 308, 275, 308, 307, 276, 277, 309, 276, 309, 308, 277, 278, 310, 277, 310, 309, 278, 279, 311, 278, 311, 310, 279, 280, 312, 279, 312, 311, 280, 281, 313, 280, 313, 312, 281, 282, 314, 281, 314, 313, 282, 283, 315, 282, 315, 314, 283, 284, 316, 283, 316, 315, 284, 285, 317, 284, 317, 316, 285, 286, 318, 285, 318, 317, 286, 287, 319, 286, 319, 318, 288, 289, 321, 288, 321, 320, 289, 290, 322, 289, 322, 321, 290, 291, 323, 290, 323, 322, 291, 292, 324, 291, 324, 323, 292, 293, 325, 292, 325, 324, 293, 294, 326, 293, 326, 325, 294, 295, 327, 294, 327, 326, 295, 296, 328, 295, 328, 327, 296, 297, 329, 296, 329, 328, 297, 298, 330, 297, 330, 329, 298, 299, 331, 298, 331, 330, 299, 300, 332, 299, 332, 331, 300, 301, 333, 300, 333, 332, 301, 302, 334, 301, 334, 333, 302, 303, 335, 302, 335, 334, 303, 304, 336, 303, 336, 335, 304, 305, 337, 304, 337, 336, 305, 306, 338, 305, 338, 337, 306, 307, 339, 306, 339, 338, 307, 308, 340, 307, 340, 339, 308, 309, 341, 308, 341, 340, 309, 310, 342, 309, 342, 341, 310, 311, 343, 310, 343, 342, 311, 312, 344, 311, 344, 343, 312, 313, 345, 312, 345, 344, 313, 314, 346, 313, 346, 345, 314, 315, 347, 314, 347, 346, 315, 316, 348, 315, 348, 347, 316, 317, 349, 316, 349, 348, 317, 318, 350, 317, 350, 349, 318, 319, 351, 318, 351, 350, 320, 321, 353, 320, 353, 352, 321, 322, 354, 321, 354, 353, 322, 323, 355, 322, 355, 354, 323, 324, 356, 323, 356, 355, 324, 325, 357, 324, 357, 356, 325, 326, 358, 325, 358, 357, 326, 327, 359, 326, 359, 358, 327, 328, 360, 327, 360, 359, 328, 329, 361, 328, 361, 360, 329, 330, 362, 329, 362, 361, 330, 331, 363, 330, 363, 362, 331, 332, 364, 331, 364, 363, 332, 333, 365, 332, 365, 364, 333, 334, 366, 333, 366, 365, 334, 335, 367, 334, 367, 366, 335, 336, 368, 335, 368, 367, 336, 337, 369, 336, 369, 368, 337, 338, 370, 337, 370, 369, 338, 339, 371, 338, 371, 370, 339, 340, 372, 339, 372, 371, 340, 341, 373, 340, 373, 372, 341, 342, 374, 341, 374, 373, 342, 343, 375, 342, 375, 374, 343, 344, 376, 343, 376, 375, 344, 345, 377, 344, 377, 376, 345, 346, 378, 345, 378, 377, 346, 347, 379, 346, 379, 378, 347, 348, 380, 347, 380, 379, 348, 349, 381, 348, 381, 380, 349, 350, 382, 349, 382, 381, 350, 351, 383, 350, 383, 382, 352, 353, 385, 352, 385, 384, 353, 354, 386, 353, 386, 385, 354, 355, 387, 354, 387, 386, 355, 356, 388, 355, 388, 387, 356, 357, 389, 356, 389, 388, 357, 358, 390, 357, 390, 389, 358, 359, 391, 358, 391, 390, 359, 360, 392, 359, 392, 391, 360, 361, 393, 360, 393, 392, 361, 362, 394, 361, 394, 393, 362, 363, 395, 362, 395, 394, 363, 364, 396, 363, 396, 395, 364, 365, 397, 364, 397, 396, 365, 366, 398, 365, 398, 397, 366, 367, 399, 366, 399, 398, 367, 368, 400, 367, 400, 399, 368, 369, 401, 368, 401, 400, 369, 370, 402, 369, 402, 401, 370, 371, 403, 370, 403, 402, 371, 372, 404, 371, 404, 403, 372, 373, 405, 372, 405, 404, 373, 374, 406, 373, 406, 405, 374, 375, 407, 374, 407, 406, 375, 376, 408, 375, 408, 407, 376, 377, 409, 376, 409, 408, 377, 378, 410, 377, 410, 409, 378, 379, 411, 378, 411, 410, 379, 380, 412, 379, 412, 411, 380, 381, 413, 380, 413, 412, 381, 382, 414, 381, 414, 413, 382, 383, 415, 382, 415, 414, 384, 385, 417, 384, 417, 416, 385, 386, 418, 385, 418, 417, 386, 387, 419, 386, 419, 418, 387, 388, 420, 387, 420, 419, 388, 389, 421, 388, 421, 420, 389, 390, 422, 389, 422, 421, 390, 391, 423, 390, 423, 422, 391, 392, 424, 391, 424, 423, 392, 393, 425, 392, 425, 424, 393, 394, 426, 393, 426, 425, 394, 395, 427, 394, 427, 426, 395, 396, 428, 395, 428, 427, 396, 397, 429, 396, 429, 428, 397, 398, 430, 397, 430, 429, 398, 399, 431, 398, 431, 430, 399, 400, 432, 399, 432, 431, 400, 401, 433, 400, 433, 432, 401, 402, 434, 401, 434, 433, 402, 403, 435, 402, 435, 434, 403, 404, 436, 403, 436, 435, 404, 405, 437, 404, 437, 436, 405, 406, 438, 405, 438, 437, 406, 407, 439, 406, 439, 438, 407, 408, 440, 407, 440, 439, 408, 409, 441, 408, 441, 440, 409, 410, 442, 409, 442, 441, 410, 411, 443, 410, 443, 442, 411, 412, 444, 411, 444, 443, 412, 413, 445, 412, 445, 444, 413, 414, 446, 413, 446, 445, 414, 415, 447, 414, 447, 446, 416, 417, 449, 416, 449, 448, 417, 418, 450, 417, 450, 449, 418, 419, 451, 418, 451, 450, 419, 420, 452, 419, 452, 451, 420, 421, 453, 420, 453, 452, 421, 422, 454, 421, 454, 453, 422, 423, 455, 422, 455, 454, 423, 424, 456, 423, 456, 455, 424, 425, 457, 424, 457, 456, 425, 426, 458, 425, 458, 457, 426, 427, 459, 426, 459, 458, 427, 428, 460, 427, 460, 459, 428, 429, 461, 428, 461, 460, 429, 430, 462, 429, 462, 461, 430, 431, 463, 430, 463, 462, 431, 432, 464, 431, 464, 463, 432, 433, 465, 432, 465, 464, 433, 434, 466, 433, 466, 465, 434, 435, 467, 434, 467, 466, 435, 436, 468, 435, 468, 467, 436, 437, 469, 436, 469, 468, 437, 438, 470, 437, 470, 469, 438, 439, 471, 438, 471, 470, 439, 440, 472, 439, 472, 471, 440, 441, 473, 440, 473, 472, 441, 442, 474, 441, 474, 473, 442, 443, 475, 442, 475, 474, 443, 444, 476, 443, 476, 475, 444, 445, 477, 444, 477, 476, 445, 446, 478, 445, 478, 477, 446, 447, 479, 446, 479, 478, 448, 449, 481, 448, 481, 480, 449, 450, 482, 449, 482, 481, 450, 451, 483, 450, 483, 482, 451, 452, 484, 451, 484, 483, 452, 453, 485, 452, 485, 484, 453, 454, 486, 453, 486, 485, 454, 455, 487, 454, 487, 486, 455, 456, 488, 455, 488, 487, 456, 457, 489, 456, 489, 488, 457, 458, 490, 457, 490, 489, 458, 459, 491, 458, 491, 490, 459, 460, 492, 459, 492, 491, 460, 461, 493, 460, 493, 492, 461, 462, 494, 461, 494, 493, 462, 463, 495, 462, 495, 494, 463, 464, 496, 463, 496, 495, 464, 465, 497, 464, 497, 496, 465, 466, 498, 465, 498, 497, 466, 467, 499, 466, 499, 498, 467, 468, 500, 467, 500, 499, 468, 469, 501, 468, 501, 500, 469, 470, 502, 469, 502, 501, 470, 471, 503, 470, 503, 502, 471, 472, 504, 471, 504, 503, 472, 473, 505, 472, 505, 504, 473, 474, 506, 473, 506, 505, 474, 475, 507, 474, 507, 506, 475, 476, 508, 475, 508, 507, 476, 477, 509, 476, 509, 508, 477, 478, 510, 477, 510, 509, 478, 479, 511, 478, 511, 510, 480, 481, 513, 480, 513, 512, 481, 482, 514, 481, 514, 513, 482, 483, 515, 482, 515, 514, 483, 484, 516, 483, 516, 515, 484, 485, 517, 484, 517, 516, 485, 486, 518, 485, 518, 517, 486, 487, 519, 486, 519, 518, 487, 488, 520, 487, 520, 519, 488, 489, 521, 488, 521, 520, 489, 490, 522, 489, 522, 521, 490, 491, 523, 490, 523, 522, 491, 492, 524, 491, 524, 523, 492, 493, 525, 492, 525, 524, 493, 494, 526, 493, 526, 525, 494, 495, 527, 494, 527, 526, 495, 496, 528, 495, 528, 527, 496, 497, 529, 496, 529, 528, 497, 498, 530, 497, 530, 529, 498, 499, 531, 498, 531, 530, 499, 500, 532, 499, 532, 531, 500, 501, 533, 500, 533, 532, 501, 502, 534, 501, 534, 533, 502, 503, 535, 502, 535, 534, 503, 504, 536, 503, 536, 535, 504, 505, 537, 504, 537, 536, 505, 506, 538, 505, 538, 537, 506, 507, 539, 506, 539, 538, 507, 508, 540, 507, 540, 539, 508, 509, 541, 508, 541, 540, 509, 510, 542, 509, 542, 541, 510, 511, 543, 510, 543, 542, 512, 513, 545, 512, 545, 544, 513, 514, 546, 513, 546, 545, 514, 515, 547, 514, 547, 546, 515, 516, 548, 515, 548, 547, 516, 517, 549, 516, 549, 548, 517, 518, 550, 517, 550, 549, 518, 519, 551, 518, 551, 550, 519, 520, 552, 519, 552, 551, 520, 521, 553, 520, 553, 552, 521, 522, 554, 521, 554, 553, 522, 523, 555, 522, 555, 554, 523, 524, 556, 523, 556, 555, 524, 525, 557, 524, 557, 556, 525, 526, 558, 525, 558, 557, 526, 527, 559, 526, 559, 558, 527, 528, 560, 527, 560, 559, 528, 529, 561, 528, 561, 560, 529, 530, 562, 529, 562, 561, 530, 531, 563, 530, 563, 562, 531, 532, 564, 531, 564, 563, 532, 533, 565, 532, 565, 564, 533, 534, 566, 533, 566, 565, 534, 535, 567, 534, 567, 566, 535, 536, 568, 535, 568, 567, 536, 537, 569, 536, 569, 568, 537, 538, 570, 537, 570, 569, 538, 539, 571, 538, 571, 570, 539, 540, 572, 539, 572, 571, 540, 541, 573, 540, 573, 572, 541, 542, 574, 541, 574, 573, 542, 543, 575, 542, 575, 574, 544, 545, 577, 544, 577, 576, 545, 546, 578, 545, 578, 577, 546, 547, 579, 546, 579, 578, 547, 548, 580, 547, 580, 579, 548, 549, 581, 548, 581, 580, 549, 550, 582, 549, 582, 581, 550, 551, 583, 550, 583, 582, 551, 552, 584, 551, 584, 583, 552, 553, 585, 552, 585, 584, 553, 554, 586, 553, 586, 585, 554, 555, 587, 554, 587, 586, 555, 556, 588, 555, 588, 587, 556, 557, 589, 556, 589, 588, 557, 558, 590, 557, 590, 589, 558, 559, 591, 558, 591, 590, 559, 560, 592, 559, 592, 591, 560, 561, 593, 560, 593, 592, 561, 562, 594, 561, 594, 593, 562, 563, 595, 562, 595, 594, 563, 564, 596, 563, 596, 595, 564, 565, 597, 564, 597, 596, 565, 566, 598, 565, 598, 597, 566, 567, 599, 566, 599, 598, 567, 568, 600, 567, 600, 599, 568, 569, 601, 568, 601, 600, 569, 570, 602, 569, 602, 601, 570, 571, 603, 570, 603, 602, 571, 572, 604, 571, 604, 603, 572, 573, 605, 572, 605, 604, 573, 574, 606, 573, 606, 605, 574, 575, 607, 574, 607, 606, 576, 577, 609, 576, 609, 608, 577, 578, 610, 577, 610, 609, 578, 579, 611, 578, 611, 610, 579, 580, 612, 579, 612, 611, 580, 581, 613, 580, 613, 612, 581, 582, 614, 581, 614, 613, 582, 583, 615, 582, 615, 614, 583, 584, 616, 583, 616, 615, 584, 585, 617, 584, 617, 616, 585, 586, 618, 585, 618, 617, 586, 587, 619, 586, 619, 618, 587, 588, 620, 587, 620, 619, 588, 589, 621, 588, 621, 620, 589, 590, 622, 589, 622, 621, 590, 591, 623, 590, 623, 622, 591, 592, 624, 591, 624, 623, 592, 593, 625, 592, 625, 624, 593, 594, 626, 593, 626, 625, 594, 595, 627, 594, 627, 626, 595, 596, 628, 595, 628, 627, 596, 597, 629, 596, 629, 628, 597, 598, 630, 597, 630, 629, 598, 599, 631, 598, 631, 630, 599, 600, 632, 599, 632, 631, 600, 601, 633, 600, 633, 632, 601, 602, 634, 601, 634, 633, 602, 603, 635, 602, 635, 634, 603, 604, 636, 603, 636, 635, 604, 605, 637, 604, 637, 636, 605, 606, 638, 605, 638, 637, 606, 607, 639, 606, 639, 638, 608, 609, 641, 608, 641, 640, 609, 610, 642, 609, 642, 641, 610, 611, 643, 610, 643, 642, 611, 612, 644, 611, 644, 643, 612, 613, 645, 612, 645, 644, 613, 614, 646, 613, 646, 645, 614, 615, 647, 614, 647, 646, 615, 616, 648, 615, 648, 647, 616, 617, 649, 616, 649, 648, 617, 618, 650, 617, 650, 649, 618, 619, 651, 618, 651, 650, 619, 620, 652, 619, 652, 651, 620, 621, 653, 620, 653, 652, 621, 622, 654, 621, 654, 653, 622, 623, 655, 622, 655, 654, 623, 624, 656, 623, 656, 655, 624, 625, 657, 624, 657, 656, 625, 626, 658, 625, 658, 657, 626, 627, 659, 626, 659, 658, 627, 628, 660, 627, 660, 659, 628, 629, 661, 628, 661, 660, 629, 630, 662, 629, 662, 661, 630, 631, 663, 630, 663, 662, 631, 632, 664, 631, 664, 663, 632, 633, 665, 632, 665, 664, 633, 634, 666, 633, 666, 665, 634, 635, 667, 634, 667, 666, 635, 636, 668, 635, 668, 667, 636, 637, 669, 636, 669, 668, 637, 638, 670, 637, 670, 669, 638, 639, 671, 638, 671, 670, 640, 641, 673, 640, 673, 672, 641, 642, 674, 641, 674, 673, 642, 643, 675, 642, 675, 674, 643, 644, 676, 643, 676, 675, 644, 645, 677, 644, 677, 676, 645, 646, 678, 645, 678, 677, 646, 647, 679, 646, 679, 678, 647, 648, 680, 647, 680, 679, 648, 649, 681, 648, 681, 680, 649, 650, 682, 649, 682, 681, 650, 651, 683, 650, 683, 682, 651, 652, 684, 651, 684, 683, 652, 653, 685, 652, 685, 684, 653, 654, 686, 653, 686, 685, 654, 655, 687, 654, 687, 686, 655, 656, 688, 655, 688, 687, 656, 657, 689, 656, 689, 688, 657, 658, 690, 657, 690, 689, 658, 659, 691, 658, 691, 690, 659, 660, 692, 659, 692, 691, 660, 661, 693, 660, 693, 692, 661, 662, 694, 661, 694, 693, 662, 663, 695, 662, 695, 694, 663, 664, 696, 663, 696, 695, 664, 665, 697, 664, 697, 696, 665, 666, 698, 665, 698, 697, 666, 667, 699, 666, 699, 698, 667, 668, 700, 667, 700, 699, 668, 669, 701, 668, 701, 700, 669, 670, 702, 669, 702, 701, 670, 671, 703, 670, 703, 702, 672, 673, 705, 672, 705, 704, 673, 674, 706, 673, 706, 705, 674, 675, 707, 674, 707, 706, 675, 676, 708, 675, 708, 707, 676, 677, 709, 676, 709, 708, 677, 678, 710, 677, 710, 709, 678, 679, 711, 678, 711, 710, 679, 680, 712, 679, 712, 711, 680, 681, 713, 680, 713, 712, 681, 682, 714, 681, 714, 713, 682, 683, 715, 682, 715, 714, 683, 684, 716, 683, 716, 715, 684, 685, 717, 684, 717, 716, 685, 686, 718, 685, 718, 717, 686, 687, 719, 686, 719, 718, 687, 688, 720, 687, 720, 719, 688, 689, 721, 688, 721, 720, 689, 690, 722, 689, 722, 721, 690, 691, 723, 690, 723, 722, 691, 692, 724, 691, 724, 723, 692, 693, 725, 692, 725, 724, 693, 694, 726, 693, 726, 725, 694, 695, 727, 694, 727, 726, 695, 696, 728, 695, 728, 727, 696, 697, 729, 696, 729, 728, 697, 698, 730, 697, 730, 729, 698, 699, 731, 698, 731, 730, 699, 700, 732, 699, 732, 731, 700, 701, 733, 700, 733, 732, 701, 702, 734, 701, 734, 733, 702, 703, 735, 702, 735, 734, 704, 705, 737, 704, 737, 736, 705, 706, 738, 705, 738, 737, 706, 707, 739, 706, 739, 738, 707, 708, 740, 707, 740, 739, 708, 709, 741, 708, 741, 740, 709, 710, 742, 709, 742, 741, 710, 711, 743, 710, 743, 742, 711, 712, 744, 711, 744, 743, 712, 713, 745, 712, 745, 744, 713, 714, 746, 713, 746, 745, 714, 715, 747, 714, 747, 746, 715, 716, 748, 715, 748, 747, 716, 717, 749, 716, 749, 748, 717, 718, 750, 717, 750, 749, 718, 719, 751, 718, 751, 750, 719, 720, 752, 719, 752, 751, 720, 721, 753, 720, 753, 752, 721, 722, 754, 721, 754, 753, 722, 723, 755, 722, 755, 754, 723, 724, 756, 723, 756, 755, 724, 725, 757, 724, 757, 756, 725, 726, 758, 725, 758, 757, 726, 727, 759, 726, 759, 758, 727, 728, 760, 727, 760, 759, 728, 729, 761, 728, 761, 760, 729, 730, 762, 729, 762, 761, 730, 731, 763, 730, 763, 762, 731, 732, 764, 731, 764, 763, 732, 733, 765, 732, 765, 764, 733, 734, 766, 733, 766, 765, 734, 735, 767, 734, 767, 766, 736, 737, 769, 736, 769, 768, 737, 738, 770, 737, 770, 769, 738, 739, 771, 738, 771, 770, 739, 740, 772, 739, 772, 771, 740, 741, 773, 740, 773, 772, 741, 742, 774, 741, 774, 773, 742, 743, 775, 742, 775, 774, 743, 744, 776, 743, 776, 775, 744, 745, 777, 744, 777, 776, 745, 746, 778, 745, 778, 777, 746, 747, 779, 746, 779, 778, 747, 748, 780, 747, 780, 779, 748, 749, 781, 748, 781, 780, 749, 750, 782, 749, 782, 781, 750, 751, 783, 750, 783, 782, 751, 752, 784, 751, 784, 783, 752, 753, 785, 752, 785, 784, 753, 754, 786, 753, 786, 785, 754, 755, 787, 754, 787, 786, 755, 756, 788, 755, 788, 787, 756, 757, 789, 756, 789, 788, 757, 758, 790, 757, 790, 789, 758, 759, 791, 758, 791, 790, 759, 760, 792, 759, 792, 791, 760, 761, 793, 760, 793, 792, 761, 762, 794, 761, 794, 793, 762, 763, 795, 762, 795, 794, 763, 764, 796, 763, 796, 795, 764, 765, 797, 764, 797, 796, 765, 766, 798, 765, 798, 797, 766, 767, 799, 766, 799, 798, 768, 769, 801, 768, 801, 800, 769, 770, 802, 769, 802, 801, 770, 771, 803, 770, 803, 802, 771, 772, 804, 771, 804, 803, 772, 773, 805, 772, 805, 804, 773, 774, 806, 773, 806, 805, 774, 775, 807, 774, 807, 806, 775, 776, 808, 775, 808, 807, 776, 777, 809, 776, 809, 808, 777, 778, 810, 777, 810, 809, 778, 779, 811, 778, 811, 810, 779, 780, 812, 779, 812, 811, 780, 781, 813, 780, 813, 812, 781, 782, 814, 781, 814, 813, 782, 783, 815, 782, 815, 814, 783, 784, 816, 783, 816, 815, 784, 785, 817, 784, 817, 816, 785, 786, 818, 785, 818, 817, 786, 787, 819, 786, 819, 818, 787, 788, 820, 787, 820, 819, 788, 789, 821, 788, 821, 820, 789, 790, 822, 789, 822, 821, 790, 791, 823, 790, 823, 822, 791, 792, 824, 791, 824, 823, 792, 793, 825, 792, 825, 824, 793, 794, 826, 793, 826, 825, 794, 795, 827, 794, 827, 826, 795, 796, 828, 795, 828, 827, 796, 797, 829, 796, 829, 828, 797, 798, 830, 797, 830, 829, 798, 799, 831, 798, 831, 830, 800, 801, 833, 800, 833, 832, 801, 802, 834, 801, 834, 833, 802, 803, 835, 802, 835, 834, 803, 804, 836, 803, 836, 835, 804, 805, 837, 804, 837, 836, 805, 806, 838, 805, 838, 837, 806, 807, 839, 806, 839, 838, 807, 808, 840, 807, 840, 839, 808, 809, 841, 808, 841, 840, 809, 810, 842, 809, 842, 841, 810, 811, 843, 810, 843, 842, 811, 812, 844, 811, 844, 843, 812, 813, 845, 812, 845, 844, 813, 814, 846, 813, 846, 845, 814, 815, 847, 814, 847, 846, 815, 816, 848, 815, 848, 847, 816, 817, 849, 816, 849, 848, 817, 818, 850, 817, 850, 849, 818, 819, 851, 818, 851, 850, 819, 820, 852, 819, 852, 851, 820, 821, 853, 820, 853, 852, 821, 822, 854, 821, 854, 853, 822, 823, 855, 822, 855, 854, 823, 824, 856, 823, 856, 855, 824, 825, 857, 824, 857, 856, 825, 826, 858, 825, 858, 857, 826, 827, 859, 826, 859, 858, 827, 828, 860, 827, 860, 859, 828, 829, 861, 828, 861, 860, 829, 830, 862, 829, 862, 861, 830, 831, 863, 830, 863, 862, 832, 833, 865, 832, 865, 864, 833, 834, 866, 833, 866, 865, 834, 835, 867, 834, 867, 866, 835, 836, 868, 835, 868, 867, 836, 837, 869, 836, 869, 868, 837, 838, 870, 837, 870, 869, 838, 839, 871, 838, 871, 870, 839, 840, 872, 839, 872, 871, 840, 841, 873, 840, 873, 872, 841, 842, 874, 841, 874, 873, 842, 843, 875, 842, 875, 874, 843, 844, 876, 843, 876, 875, 844, 845, 877, 844, 877, 876, 845, 846, 878, 845, 878, 877, 846, 847, 879, 846, 879, 878, 847, 848, 880, 847, 880, 879, 848, 849, 881, 848, 881, 880, 849, 850, 882, 849, 882, 881, 850, 851, 883, 850, 883, 882, 851, 852, 884, 851, 884, 883, 852, 853, 885, 852, 885, 884, 853, 854, 886, 853, 886, 885, 854, 855, 887, 854, 887, 886, 855, 856, 888, 855, 888, 887, 856, 857, 889, 856, 889, 888, 857, 858, 890, 857, 890, 889, 858, 859, 891, 858, 891, 890, 859, 860, 892, 859, 892, 891, 860, 861, 893, 860, 893, 892, 861, 862, 894, 861, 894, 893, 862, 863, 895, 862, 895, 894, 864, 865, 897, 864, 897, 896, 865, 866, 898, 865, 898, 897, 866, 867, 899, 866, 899, 898, 867, 868, 900, 867, 900, 899, 868, 869, 901, 868, 901, 900, 869, 870, 902, 869, 902, 901, 870, 871, 903, 870, 903, 902, 871, 872, 904, 871, 904, 903, 872, 873, 905, 872, 905, 904, 873, 874, 906, 873, 906, 905, 874, 875, 907, 874, 907, 906, 875, 876, 908, 875, 908, 907, 876, 877, 909, 876, 909, 908, 877, 878, 910, 877, 910, 909, 878, 879, 911, 878, 911, 910, 879, 880, 912, 879, 912, 911, 880, 881, 913, 880, 913, 912, 881, 882, 914, 881, 914, 913, 882, 883, 915, 882, 915, 914, 883, 884, 916, 883, 916, 915, 884, 885, 917, 884, 917, 916, 885, 886, 918, 885, 918, 917, 886, 887, 919, 886, 919, 918, 887, 888, 920, 887, 920, 919, 888, 889, 921, 888, 921, 920, 889, 890, 922, 889, 922, 921, 890, 891, 923, 890, 923, 922, 891, 892, 924, 891, 924, 923, 892, 893, 925, 892, 925, 924, 893, 894, 926, 893, 926, 925, 894, 895, 927, 894, 927, 926, 896, 897, 929, 896, 929, 928, 897, 898, 930, 897, 930, 929, 898, 899, 931, 898, 931, 930, 899, 900, 932, 899, 932, 931, 900, 901, 933, 900, 933, 932, 901, 902, 934, 901, 934, 933, 902, 903, 935, 902, 935, 934, 903, 904, 936, 903, 936, 935, 904, 905, 937, 904, 937, 936, 905, 906, 938, 905, 938, 937, 906, 907, 939, 906, 939, 938, 907, 908, 940, 907, 940, 939, 908, 909, 941, 908, 941, 940, 909, 910, 942, 909, 942, 941, 910, 911, 943, 910, 943, 942, 911, 912, 944, 911, 944, 943, 912, 913, 945, 912, 945, 944, 913, 914, 946, 913, 946, 945, 914, 915, 947, 914, 947, 946, 915, 916, 948, 915, 948, 947, 916, 917, 949, 916, 949, 948, 917, 918, 950, 917, 950, 949, 918, 919, 951, 918, 951, 950, 919, 920, 952, 919, 952, 951, 920, 921, 953, 920, 953, 952, 921, 922, 954, 921, 954, 953, 922, 923, 955, 922, 955, 954, 923, 924, 956, 923, 956, 955, 924, 925, 957, 924, 957, 956, 925, 926, 958, 925, 958, 957, 926, 927, 959, 926, 959, 958, 928, 929, 961, 928, 961, 960, 929, 930, 962, 929, 962, 961, 930, 931, 963, 930, 963, 962, 931, 932, 964, 931, 964, 963, 932, 933, 965, 932, 965, 964, 933, 934, 966, 933, 966, 965, 934, 935, 967, 934, 967, 966, 935, 936, 968, 935, 968, 967, 936, 937, 969, 936, 969, 968, 937, 938, 970, 937, 970, 969, 938, 939, 971, 938, 971, 970, 939, 940, 972, 939, 972, 971, 940, 941, 973, 940, 973, 972, 941, 942, 974, 941, 974, 973, 942, 943, 975, 942, 975, 974, 943, 944, 976, 943, 976, 975, 944, 945, 977, 944, 977, 976, 945, 946, 978, 945, 978, 977, 946, 947, 979, 946, 979, 978, 947, 948, 980, 947, 980, 979, 948, 949, 981, 948, 981, 980, 949, 950, 982, 949, 982, 981, 950, 951, 983, 950, 983, 982, 951, 952, 984, 951, 984, 983, 952, 953, 985, 952, 985, 984, 953, 954, 986, 953, 986, 985, 954, 955, 987, 954, 987, 986, 955, 956, 988, 955, 988, 987, 956, 957, 989, 956, 989, 988, 957, 958, 990, 957, 990, 989, 958, 959, 991, 958, 991, 990, 960, 961, 993, 960, 993, 992, 961, 962, 994, 961, 994, 993, 962, 963, 995, 962, 995, 994, 963, 964, 996, 963, 996, 995, 964, 965, 997, 964, 997, 996, 965, 966, 998, 965, 998, 997, 966, 967, 999, 966, 999, 998, 967, 968, 1000, 967, 1000, 999, 968, 969, 1001, 968, 1001, 1000, 969, 970, 1002, 969, 1002, 1001, 970, 971, 1003, 970, 1003, 1002, 971, 972, 1004, 971, 1004, 1003, 972, 973, 1005, 972, 1005, 1004, 973, 974, 1006, 973, 1006, 1005, 974, 975, 1007, 974, 1007, 1006, 975, 976, 1008, 975, 1008, 1007, 976, 977, 1009, 976, 1009, 1008, 977, 978, 1010, 977, 1010, 1009, 978, 979, 1011, 978, 1011, 1010, 979, 980, 1012, 979, 1012, 1011, 980, 981, 1013, 980, 1013, 1012, 981, 982, 1014, 981, 1014, 1013, 982, 983, 1015, 982, 1015, 1014, 983, 984, 1016, 983, 1016, 1015, 984, 985, 1017, 984, 1017, 1016, 985, 986, 1018, 985, 1018, 1017, 986, 987, 1019, 986, 1019, 1018, 987, 988, 1020, 987, 1020, 1019, 988, 989, 1021, 988, 1021, 1020, 989, 990, 1022, 989, 1022, 1021, 990, 991, 1023, 990, 1023, 1022] color3f[] primvars:displayColor = [(0.784314, 0.64705884, 0.1)] point3f[] points = [(0, 0, 20), (20, 0, 20), (40, 0, 20), (60, 0, 20), (80, 0, 20), (100, 0, 20), (120, 0, 20), (140, 0, 20), (160, 0, 20), (180, 0, 20), (200, 0, 20), (220, 0, 20), (240, 0, 20), (260, 0, 20), (280, 0, 20), (300, 0, 20), (320, 0, 20), (340, 0, 20), (360, 0, 20), (380, 0, 20), (400, 0, 20), (420, 0, 20), (440, 0, 20), (460, 0, 20), (480, 0, 20), (500, 0, 20), (520, 0, 20), (540, 0, 20), (560, 0, 20), (580, 0, 20), (600, 0, 20), (620, 0, 20), (0, 20, 20), (20, 20, 20), (40, 20, 20), (60, 20, 20), (80, 20, 20), (100, 20, 20), (120, 20, 20), (140, 20, 20), (160, 20, 20), (180, 20, 20), (200, 20, 20), (220, 20, 20), (240, 20, 20), (260, 20, 20), (280, 20, 20), (300, 20, 20), (320, 20, 20), (340, 20, 20), (360, 20, 20), (380, 20, 20), (400, 20, 20), (420, 20, 20), (440, 20, 20), (460, 20, 20), (480, 20, 20), (500, 20, 20), (520, 20, 20), (540, 20, 20), (560, 20, 20), (580, 20, 20), (600, 20, 20), (620, 20, 20), (0, 40, 20), (20, 40, 20), (40, 40, 20), (60, 40, 20), (80, 40, 20), (100, 40, 20), (120, 40, 20), (140, 40, 20), (160, 40, 20), (180, 40, 20), (200, 40, 20), (220, 40, 20), (240, 40, 20), (260, 40, 20), (280, 40, 20), (300, 40, 20), (320, 40, 20), (340, 40, 20), (360, 40, 20), (380, 40, 20), (400, 40, 20), (420, 40, 20), (440, 40, 20), (460, 40, 20), (480, 40, 20), (500, 40, 20), (520, 40, 20), (540, 40, 20), (560, 40, 20), (580, 40, 20), (600, 40, 20), (620, 40, 20), (0, 60, 20), (20, 60, 20), (40, 60, 20), (60, 60, 20), (80, 60, 20), (100, 60, 20), (120, 60, 20), (140, 60, 20), (160, 60, 20), (180, 60, 20), (200, 60, 20), (220, 60, 20), (240, 60, 20), (260, 60, 20), (280, 60, 20), (300, 60, 20), (320, 60, 20), (340, 60, 20), (360, 60, 20), (380, 60, 20), (400, 60, 20), (420, 60, 20), (440, 60, 20), (460, 60, 20), (480, 60, 20), (500, 60, 20), (520, 60, 20), (540, 60, 20), (560, 60, 20), (580, 60, 20), (600, 60, 20), (620, 60, 20), (0, 80, 20), (20, 80, 20), (40, 80, 20), (60, 80, 20), (80, 80, 20), (100, 80, 20), (120, 80, 20), (140, 80, 20), (160, 80, 20), (180, 80, 20), (200, 80, 20), (220, 80, 20), (240, 80, 20), (260, 80, 20), (280, 80, 20), (300, 80, 20), (320, 80, 20), (340, 80, 20), (360, 80, 20), (380, 80, 20), (400, 80, 20), (420, 80, 20), (440, 80, 20), (460, 80, 20), (480, 80, 20), (500, 80, 20), (520, 80, 20), (540, 80, 20), (560, 80, 20), (580, 80, 20), (600, 80, 20), (620, 80, 20), (0, 100, 20), (20, 100, 20), (40, 100, 20), (60, 100, 20), (80, 100, 20), (100, 100, 20), (120, 100, 20), (140, 100, 20), (160, 100, 20), (180, 100, 20), (200, 100, 20), (220, 100, 20), (240, 100, 20), (260, 100, 20), (280, 100, 20), (300, 100, 20), (320, 100, 20), (340, 100, 20), (360, 100, 20), (380, 100, 20), (400, 100, 20), (420, 100, 20), (440, 100, 20), (460, 100, 20), (480, 100, 20), (500, 100, 20), (520, 100, 20), (540, 100, 20), (560, 100, 20), (580, 100, 20), (600, 100, 20), (620, 100, 20), (0, 120, 20), (20, 120, 20), (40, 120, 20), (60, 120, 20), (80, 120, 20), (100, 120, 20), (120, 120, 20), (140, 120, 20), (160, 120, 20), (180, 120, 20), (200, 120, 20), (220, 120, 20), (240, 120, 20), (260, 120, 20), (280, 120, 20), (300, 120, 20), (320, 120, 20), (340, 120, 20), (360, 120, 20), (380, 120, 20), (400, 120, 20), (420, 120, 20), (440, 120, 20), (460, 120, 20), (480, 120, 20), (500, 120, 20), (520, 120, 20), (540, 120, 20), (560, 120, 20), (580, 120, 20), (600, 120, 20), (620, 120, 20), (0, 140, 20), (20, 140, 20), (40, 140, 20), (60, 140, 20), (80, 140, 20), (100, 140, 20), (120, 140, 20), (140, 140, 20), (160, 140, 20), (180, 140, 20), (200, 140, 20), (220, 140, 20), (240, 140, 20), (260, 140, 20), (280, 140, 20), (300, 140, 20), (320, 140, 20), (340, 140, 20), (360, 140, 20), (380, 140, 20), (400, 140, 20), (420, 140, 20), (440, 140, 20), (460, 140, 20), (480, 140, 20), (500, 140, 20), (520, 140, 20), (540, 140, 20), (560, 140, 20), (580, 140, 20), (600, 140, 20), (620, 140, 20), (0, 160, 20), (20, 160, 20), (40, 160, 20), (60, 160, 20), (80, 160, 20), (100, 160, 20), (120, 160, 20), (140, 160, 20), (160, 160, 20), (180, 160, 20), (200, 160, 20), (220, 160, 20), (240, 160, 20), (260, 160, 20), (280, 160, 20), (300, 160, 20), (320, 160, 20), (340, 160, 20), (360, 160, 20), (380, 160, 20), (400, 160, 20), (420, 160, 20), (440, 160, 20), (460, 160, 20), (480, 160, 20), (500, 160, 20), (520, 160, 20), (540, 160, 20), (560, 160, 20), (580, 160, 20), (600, 160, 20), (620, 160, 20), (0, 180, 20), (20, 180, 20), (40, 180, 20), (60, 180, 20), (80, 180, 20), (100, 180, 20), (120, 180, 20), (140, 180, 20), (160, 180, 20), (180, 180, 20), (200, 180, 20), (220, 180, 20), (240, 180, 20), (260, 180, 20), (280, 180, 20), (300, 180, 20), (320, 180, 20), (340, 180, 20), (360, 180, 20), (380, 180, 20), (400, 180, 20), (420, 180, 20), (440, 180, 20), (460, 180, 20), (480, 180, 20), (500, 180, 20), (520, 180, 20), (540, 180, 20), (560, 180, 20), (580, 180, 20), (600, 180, 20), (620, 180, 20), (0, 200, 20), (20, 200, 20), (40, 200, 20), (60, 200, 20), (80, 200, 20), (100, 200, 20), (120, 200, 20), (140, 200, 20), (160, 200, 20), (180, 200, 20), (200, 200, 20), (220, 200, 20), (240, 200, 20), (260, 200, 20), (280, 200, 20), (300, 200, 20), (320, 200, 20), (340, 200, 20), (360, 200, 20), (380, 200, 20), (400, 200, 20), (420, 200, 20), (440, 200, 20), (460, 200, 20), (480, 200, 20), (500, 200, 20), (520, 200, 20), (540, 200, 20), (560, 200, 20), (580, 200, 20), (600, 200, 20), (620, 200, 20), (0, 220, 20), (20, 220, 20), (40, 220, 20), (60, 220, 20), (80, 220, 20), (100, 220, 20), (120, 220, 20), (140, 220, 20), (160, 220, 20), (180, 220, 20), (200, 220, 20), (220, 220, 20), (240, 220, 20), (260, 220, 20), (280, 220, 20), (300, 220, 20), (320, 220, 20), (340, 220, 20), (360, 220, 20), (380, 220, 20), (400, 220, 20), (420, 220, 20), (440, 220, 20), (460, 220, 20), (480, 220, 20), (500, 220, 20), (520, 220, 20), (540, 220, 20), (560, 220, 20), (580, 220, 20), (600, 220, 20), (620, 220, 20), (0, 240, 20), (20, 240, 20), (40, 240, 20), (60, 240, 20), (80, 240, 20), (100, 240, 20), (120, 240, 20), (140, 240, 20), (160, 240, 20), (180, 240, 20), (200, 240, 20), (220, 240, 20), (240, 240, 20), (260, 240, 20), (280, 240, 20), (300, 240, 20), (320, 240, 20), (340, 240, 20), (360, 240, 20), (380, 240, 20), (400, 240, 20), (420, 240, 20), (440, 240, 20), (460, 240, 20), (480, 240, 20), (500, 240, 20), (520, 240, 20), (540, 240, 20), (560, 240, 20), (580, 240, 20), (600, 240, 20), (620, 240, 20), (0, 260, 20), (20, 260, 20), (40, 260, 20), (60, 260, 20), (80, 260, 20), (100, 260, 20), (120, 260, 20), (140, 260, 20), (160, 260, 20), (180, 260, 20), (200, 260, 20), (220, 260, 20), (240, 260, 20), (260, 260, 20), (280, 260, 20), (300, 260, 20), (320, 260, 20), (340, 260, 20), (360, 260, 20), (380, 260, 20), (400, 260, 20), (420, 260, 20), (440, 260, 20), (460, 260, 20), (480, 260, 20), (500, 260, 20), (520, 260, 20), (540, 260, 20), (560, 260, 20), (580, 260, 20), (600, 260, 20), (620, 260, 20), (0, 280, 20), (20, 280, 20), (40, 280, 20), (60, 280, 20), (80, 280, 20), (100, 280, 20), (120, 280, 20), (140, 280, 20), (160, 280, 20), (180, 280, 20), (200, 280, 20), (220, 280, 20), (240, 280, 20), (260, 280, 20), (280, 280, 20), (300, 280, 20), (320, 280, 20), (340, 280, 20), (360, 280, 20), (380, 280, 20), (400, 280, 20), (420, 280, 20), (440, 280, 20), (460, 280, 20), (480, 280, 20), (500, 280, 20), (520, 280, 20), (540, 280, 20), (560, 280, 20), (580, 280, 20), (600, 280, 20), (620, 280, 20), (0, 300, 20), (20, 300, 20), (40, 300, 20), (60, 300, 20), (80, 300, 20), (100, 300, 20), (120, 300, 20), (140, 300, 20), (160, 300, 20), (180, 300, 20), (200, 300, 20), (220, 300, 20), (240, 300, 20), (260, 300, 20), (280, 300, 20), (300, 300, 20), (320, 300, 20), (340, 300, 20), (360, 300, 20), (380, 300, 20), (400, 300, 20), (420, 300, 20), (440, 300, 20), (460, 300, 20), (480, 300, 20), (500, 300, 20), (520, 300, 20), (540, 300, 20), (560, 300, 20), (580, 300, 20), (600, 300, 20), (620, 300, 20), (0, 320, 20), (20, 320, 20), (40, 320, 20), (60, 320, 20), (80, 320, 20), (100, 320, 20), (120, 320, 20), (140, 320, 20), (160, 320, 20), (180, 320, 20), (200, 320, 20), (220, 320, 20), (240, 320, 20), (260, 320, 20), (280, 320, 20), (300, 320, 20), (320, 320, 20), (340, 320, 20), (360, 320, 20), (380, 320, 20), (400, 320, 20), (420, 320, 20), (440, 320, 20), (460, 320, 20), (480, 320, 20), (500, 320, 20), (520, 320, 20), (540, 320, 20), (560, 320, 20), (580, 320, 20), (600, 320, 20), (620, 320, 20), (0, 340, 20), (20, 340, 20), (40, 340, 20), (60, 340, 20), (80, 340, 20), (100, 340, 20), (120, 340, 20), (140, 340, 20), (160, 340, 20), (180, 340, 20), (200, 340, 20), (220, 340, 20), (240, 340, 20), (260, 340, 20), (280, 340, 20), (300, 340, 20), (320, 340, 20), (340, 340, 20), (360, 340, 20), (380, 340, 20), (400, 340, 20), (420, 340, 20), (440, 340, 20), (460, 340, 20), (480, 340, 20), (500, 340, 20), (520, 340, 20), (540, 340, 20), (560, 340, 20), (580, 340, 20), (600, 340, 20), (620, 340, 20), (0, 360, 20), (20, 360, 20), (40, 360, 20), (60, 360, 20), (80, 360, 20), (100, 360, 20), (120, 360, 20), (140, 360, 20), (160, 360, 20), (180, 360, 20), (200, 360, 20), (220, 360, 20), (240, 360, 20), (260, 360, 20), (280, 360, 20), (300, 360, 20), (320, 360, 20), (340, 360, 20), (360, 360, 20), (380, 360, 20), (400, 360, 20), (420, 360, 20), (440, 360, 20), (460, 360, 20), (480, 360, 20), (500, 360, 20), (520, 360, 20), (540, 360, 20), (560, 360, 20), (580, 360, 20), (600, 360, 20), (620, 360, 20), (0, 380, 20), (20, 380, 20), (40, 380, 20), (60, 380, 20), (80, 380, 20), (100, 380, 20), (120, 380, 20), (140, 380, 20), (160, 380, 20), (180, 380, 20), (200, 380, 20), (220, 380, 20), (240, 380, 20), (260, 380, 20), (280, 380, 20), (300, 380, 20), (320, 380, 20), (340, 380, 20), (360, 380, 20), (380, 380, 20), (400, 380, 20), (420, 380, 20), (440, 380, 20), (460, 380, 20), (480, 380, 20), (500, 380, 20), (520, 380, 20), (540, 380, 20), (560, 380, 20), (580, 380, 20), (600, 380, 20), (620, 380, 20), (0, 400, 20), (20, 400, 20), (40, 400, 20), (60, 400, 20), (80, 400, 20), (100, 400, 20), (120, 400, 20), (140, 400, 20), (160, 400, 20), (180, 400, 20), (200, 400, 20), (220, 400, 20), (240, 400, 20), (260, 400, 20), (280, 400, 20), (300, 400, 20), (320, 400, 20), (340, 400, 20), (360, 400, 20), (380, 400, 20), (400, 400, 20), (420, 400, 20), (440, 400, 20), (460, 400, 20), (480, 400, 20), (500, 400, 20), (520, 400, 20), (540, 400, 20), (560, 400, 20), (580, 400, 20), (600, 400, 20), (620, 400, 20), (0, 420, 20), (20, 420, 20), (40, 420, 20), (60, 420, 20), (80, 420, 20), (100, 420, 20), (120, 420, 20), (140, 420, 20), (160, 420, 20), (180, 420, 20), (200, 420, 20), (220, 420, 20), (240, 420, 20), (260, 420, 20), (280, 420, 20), (300, 420, 20), (320, 420, 20), (340, 420, 20), (360, 420, 20), (380, 420, 20), (400, 420, 20), (420, 420, 20), (440, 420, 20), (460, 420, 20), (480, 420, 20), (500, 420, 20), (520, 420, 20), (540, 420, 20), (560, 420, 20), (580, 420, 20), (600, 420, 20), (620, 420, 20), (0, 440, 20), (20, 440, 20), (40, 440, 20), (60, 440, 20), (80, 440, 20), (100, 440, 20), (120, 440, 20), (140, 440, 20), (160, 440, 20), (180, 440, 20), (200, 440, 20), (220, 440, 20), (240, 440, 20), (260, 440, 20), (280, 440, 20), (300, 440, 20), (320, 440, 20), (340, 440, 20), (360, 440, 20), (380, 440, 20), (400, 440, 20), (420, 440, 20), (440, 440, 20), (460, 440, 20), (480, 440, 20), (500, 440, 20), (520, 440, 20), (540, 440, 20), (560, 440, 20), (580, 440, 20), (600, 440, 20), (620, 440, 20), (0, 460, 20), (20, 460, 20), (40, 460, 20), (60, 460, 20), (80, 460, 20), (100, 460, 20), (120, 460, 20), (140, 460, 20), (160, 460, 20), (180, 460, 20), (200, 460, 20), (220, 460, 20), (240, 460, 20), (260, 460, 20), (280, 460, 20), (300, 460, 20), (320, 460, 20), (340, 460, 20), (360, 460, 20), (380, 460, 20), (400, 460, 20), (420, 460, 20), (440, 460, 20), (460, 460, 20), (480, 460, 20), (500, 460, 20), (520, 460, 20), (540, 460, 20), (560, 460, 20), (580, 460, 20), (600, 460, 20), (620, 460, 20), (0, 480, 20), (20, 480, 20), (40, 480, 20), (60, 480, 20), (80, 480, 20), (100, 480, 20), (120, 480, 20), (140, 480, 20), (160, 480, 20), (180, 480, 20), (200, 480, 20), (220, 480, 20), (240, 480, 20), (260, 480, 20), (280, 480, 20), (300, 480, 20), (320, 480, 20), (340, 480, 20), (360, 480, 20), (380, 480, 20), (400, 480, 20), (420, 480, 20), (440, 480, 20), (460, 480, 20), (480, 480, 20), (500, 480, 20), (520, 480, 20), (540, 480, 20), (560, 480, 20), (580, 480, 20), (600, 480, 20), (620, 480, 20), (0, 500, 20), (20, 500, 20), (40, 500, 20), (60, 500, 20), (80, 500, 20), (100, 500, 20), (120, 500, 20), (140, 500, 20), (160, 500, 20), (180, 500, 20), (200, 500, 20), (220, 500, 20), (240, 500, 20), (260, 500, 20), (280, 500, 20), (300, 500, 20), (320, 500, 20), (340, 500, 20), (360, 500, 20), (380, 500, 20), (400, 500, 20), (420, 500, 20), (440, 500, 20), (460, 500, 20), (480, 500, 20), (500, 500, 20), (520, 500, 20), (540, 500, 20), (560, 500, 20), (580, 500, 20), (600, 500, 20), (620, 500, 20), (0, 520, 20), (20, 520, 20), (40, 520, 20), (60, 520, 20), (80, 520, 20), (100, 520, 20), (120, 520, 20), (140, 520, 20), (160, 520, 20), (180, 520, 20), (200, 520, 20), (220, 520, 20), (240, 520, 20), (260, 520, 20), (280, 520, 20), (300, 520, 20), (320, 520, 20), (340, 520, 20), (360, 520, 20), (380, 520, 20), (400, 520, 20), (420, 520, 20), (440, 520, 20), (460, 520, 20), (480, 520, 20), (500, 520, 20), (520, 520, 20), (540, 520, 20), (560, 520, 20), (580, 520, 20), (600, 520, 20), (620, 520, 20), (0, 540, 20), (20, 540, 20), (40, 540, 20), (60, 540, 20), (80, 540, 20), (100, 540, 20), (120, 540, 20), (140, 540, 20), (160, 540, 20), (180, 540, 20), (200, 540, 20), (220, 540, 20), (240, 540, 20), (260, 540, 20), (280, 540, 20), (300, 540, 20), (320, 540, 20), (340, 540, 20), (360, 540, 20), (380, 540, 20), (400, 540, 20), (420, 540, 20), (440, 540, 20), (460, 540, 20), (480, 540, 20), (500, 540, 20), (520, 540, 20), (540, 540, 20), (560, 540, 20), (580, 540, 20), (600, 540, 20), (620, 540, 20), (0, 560, 20), (20, 560, 20), (40, 560, 20), (60, 560, 20), (80, 560, 20), (100, 560, 20), (120, 560, 20), (140, 560, 20), (160, 560, 20), (180, 560, 20), (200, 560, 20), (220, 560, 20), (240, 560, 20), (260, 560, 20), (280, 560, 20), (300, 560, 20), (320, 560, 20), (340, 560, 20), (360, 560, 20), (380, 560, 20), (400, 560, 20), (420, 560, 20), (440, 560, 20), (460, 560, 20), (480, 560, 20), (500, 560, 20), (520, 560, 20), (540, 560, 20), (560, 560, 20), (580, 560, 20), (600, 560, 20), (620, 560, 20), (0, 580, 20), (20, 580, 20), (40, 580, 20), (60, 580, 20), (80, 580, 20), (100, 580, 20), (120, 580, 20), (140, 580, 20), (160, 580, 20), (180, 580, 20), (200, 580, 20), (220, 580, 20), (240, 580, 20), (260, 580, 20), (280, 580, 20), (300, 580, 20), (320, 580, 20), (340, 580, 20), (360, 580, 20), (380, 580, 20), (400, 580, 20), (420, 580, 20), (440, 580, 20), (460, 580, 20), (480, 580, 20), (500, 580, 20), (520, 580, 20), (540, 580, 20), (560, 580, 20), (580, 580, 20), (600, 580, 20), (620, 580, 20), (0, 600, 20), (20, 600, 20), (40, 600, 20), (60, 600, 20), (80, 600, 20), (100, 600, 20), (120, 600, 20), (140, 600, 20), (160, 600, 20), (180, 600, 20), (200, 600, 20), (220, 600, 20), (240, 600, 20), (260, 600, 20), (280, 600, 20), (300, 600, 20), (320, 600, 20), (340, 600, 20), (360, 600, 20), (380, 600, 20), (400, 600, 20), (420, 600, 20), (440, 600, 20), (460, 600, 20), (480, 600, 20), (500, 600, 20), (520, 600, 20), (540, 600, 20), (560, 600, 20), (580, 600, 20), (600, 600, 20), (620, 600, 20), (0, 620, 20), (20, 620, 20), (40, 620, 20), (60, 620, 20), (80, 620, 20), (100, 620, 20), (120, 620, 20), (140, 620, 20), (160, 620, 20), (180, 620, 20), (200, 620, 20), (220, 620, 20), (240, 620, 20), (260, 620, 20), (280, 620, 20), (300, 620, 20), (320, 620, 20), (340, 620, 20), (360, 620, 20), (380, 620, 20), (400, 620, 20), (420, 620, 20), (440, 620, 20), (460, 620, 20), (480, 620, 20), (500, 620, 20), (520, 620, 20), (540, 620, 20), (560, 620, 20), (580, 620, 20), (600, 620, 20), (620, 620, 20)] point3f[] points.connect = </defaultPrim/innerPullGraph/deformer2.outputs:points> } }
omniverse-code/kit/exts/omni.graph/omni/graph/core/data/ExampleGridPrimDeformer.usda
#usda 1.0 ( doc = """Generated from Composed Stage of root layer """ ) def Xform "defaultPrim" { def Mesh "inputGrid" { uniform bool doubleSided = 1 int[] faceVertexCounts = [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 1, 33, 0, 33, 32, 1, 2, 34, 1, 34, 33, 2, 3, 35, 2, 35, 34, 3, 4, 36, 3, 36, 35, 4, 5, 37, 4, 37, 36, 5, 6, 38, 5, 38, 37, 6, 7, 39, 6, 39, 38, 7, 8, 40, 7, 40, 39, 8, 9, 41, 8, 41, 40, 9, 10, 42, 9, 42, 41, 10, 11, 43, 10, 43, 42, 11, 12, 44, 11, 44, 43, 12, 13, 45, 12, 45, 44, 13, 14, 46, 13, 46, 45, 14, 15, 47, 14, 47, 46, 15, 16, 48, 15, 48, 47, 16, 17, 49, 16, 49, 48, 17, 18, 50, 17, 50, 49, 18, 19, 51, 18, 51, 50, 19, 20, 52, 19, 52, 51, 20, 21, 53, 20, 53, 52, 21, 22, 54, 21, 54, 53, 22, 23, 55, 22, 55, 54, 23, 24, 56, 23, 56, 55, 24, 25, 57, 24, 57, 56, 25, 26, 58, 25, 58, 57, 26, 27, 59, 26, 59, 58, 27, 28, 60, 27, 60, 59, 28, 29, 61, 28, 61, 60, 29, 30, 62, 29, 62, 61, 30, 31, 63, 30, 63, 62, 32, 33, 65, 32, 65, 64, 33, 34, 66, 33, 66, 65, 34, 35, 67, 34, 67, 66, 35, 36, 68, 35, 68, 67, 36, 37, 69, 36, 69, 68, 37, 38, 70, 37, 70, 69, 38, 39, 71, 38, 71, 70, 39, 40, 72, 39, 72, 71, 40, 41, 73, 40, 73, 72, 41, 42, 74, 41, 74, 73, 42, 43, 75, 42, 75, 74, 43, 44, 76, 43, 76, 75, 44, 45, 77, 44, 77, 76, 45, 46, 78, 45, 78, 77, 46, 47, 79, 46, 79, 78, 47, 48, 80, 47, 80, 79, 48, 49, 81, 48, 81, 80, 49, 50, 82, 49, 82, 81, 50, 51, 83, 50, 83, 82, 51, 52, 84, 51, 84, 83, 52, 53, 85, 52, 85, 84, 53, 54, 86, 53, 86, 85, 54, 55, 87, 54, 87, 86, 55, 56, 88, 55, 88, 87, 56, 57, 89, 56, 89, 88, 57, 58, 90, 57, 90, 89, 58, 59, 91, 58, 91, 90, 59, 60, 92, 59, 92, 91, 60, 61, 93, 60, 93, 92, 61, 62, 94, 61, 94, 93, 62, 63, 95, 62, 95, 94, 64, 65, 97, 64, 97, 96, 65, 66, 98, 65, 98, 97, 66, 67, 99, 66, 99, 98, 67, 68, 100, 67, 100, 99, 68, 69, 101, 68, 101, 100, 69, 70, 102, 69, 102, 101, 70, 71, 103, 70, 103, 102, 71, 72, 104, 71, 104, 103, 72, 73, 105, 72, 105, 104, 73, 74, 106, 73, 106, 105, 74, 75, 107, 74, 107, 106, 75, 76, 108, 75, 108, 107, 76, 77, 109, 76, 109, 108, 77, 78, 110, 77, 110, 109, 78, 79, 111, 78, 111, 110, 79, 80, 112, 79, 112, 111, 80, 81, 113, 80, 113, 112, 81, 82, 114, 81, 114, 113, 82, 83, 115, 82, 115, 114, 83, 84, 116, 83, 116, 115, 84, 85, 117, 84, 117, 116, 85, 86, 118, 85, 118, 117, 86, 87, 119, 86, 119, 118, 87, 88, 120, 87, 120, 119, 88, 89, 121, 88, 121, 120, 89, 90, 122, 89, 122, 121, 90, 91, 123, 90, 123, 122, 91, 92, 124, 91, 124, 123, 92, 93, 125, 92, 125, 124, 93, 94, 126, 93, 126, 125, 94, 95, 127, 94, 127, 126, 96, 97, 129, 96, 129, 128, 97, 98, 130, 97, 130, 129, 98, 99, 131, 98, 131, 130, 99, 100, 132, 99, 132, 131, 100, 101, 133, 100, 133, 132, 101, 102, 134, 101, 134, 133, 102, 103, 135, 102, 135, 134, 103, 104, 136, 103, 136, 135, 104, 105, 137, 104, 137, 136, 105, 106, 138, 105, 138, 137, 106, 107, 139, 106, 139, 138, 107, 108, 140, 107, 140, 139, 108, 109, 141, 108, 141, 140, 109, 110, 142, 109, 142, 141, 110, 111, 143, 110, 143, 142, 111, 112, 144, 111, 144, 143, 112, 113, 145, 112, 145, 144, 113, 114, 146, 113, 146, 145, 114, 115, 147, 114, 147, 146, 115, 116, 148, 115, 148, 147, 116, 117, 149, 116, 149, 148, 117, 118, 150, 117, 150, 149, 118, 119, 151, 118, 151, 150, 119, 120, 152, 119, 152, 151, 120, 121, 153, 120, 153, 152, 121, 122, 154, 121, 154, 153, 122, 123, 155, 122, 155, 154, 123, 124, 156, 123, 156, 155, 124, 125, 157, 124, 157, 156, 125, 126, 158, 125, 158, 157, 126, 127, 159, 126, 159, 158, 128, 129, 161, 128, 161, 160, 129, 130, 162, 129, 162, 161, 130, 131, 163, 130, 163, 162, 131, 132, 164, 131, 164, 163, 132, 133, 165, 132, 165, 164, 133, 134, 166, 133, 166, 165, 134, 135, 167, 134, 167, 166, 135, 136, 168, 135, 168, 167, 136, 137, 169, 136, 169, 168, 137, 138, 170, 137, 170, 169, 138, 139, 171, 138, 171, 170, 139, 140, 172, 139, 172, 171, 140, 141, 173, 140, 173, 172, 141, 142, 174, 141, 174, 173, 142, 143, 175, 142, 175, 174, 143, 144, 176, 143, 176, 175, 144, 145, 177, 144, 177, 176, 145, 146, 178, 145, 178, 177, 146, 147, 179, 146, 179, 178, 147, 148, 180, 147, 180, 179, 148, 149, 181, 148, 181, 180, 149, 150, 182, 149, 182, 181, 150, 151, 183, 150, 183, 182, 151, 152, 184, 151, 184, 183, 152, 153, 185, 152, 185, 184, 153, 154, 186, 153, 186, 185, 154, 155, 187, 154, 187, 186, 155, 156, 188, 155, 188, 187, 156, 157, 189, 156, 189, 188, 157, 158, 190, 157, 190, 189, 158, 159, 191, 158, 191, 190, 160, 161, 193, 160, 193, 192, 161, 162, 194, 161, 194, 193, 162, 163, 195, 162, 195, 194, 163, 164, 196, 163, 196, 195, 164, 165, 197, 164, 197, 196, 165, 166, 198, 165, 198, 197, 166, 167, 199, 166, 199, 198, 167, 168, 200, 167, 200, 199, 168, 169, 201, 168, 201, 200, 169, 170, 202, 169, 202, 201, 170, 171, 203, 170, 203, 202, 171, 172, 204, 171, 204, 203, 172, 173, 205, 172, 205, 204, 173, 174, 206, 173, 206, 205, 174, 175, 207, 174, 207, 206, 175, 176, 208, 175, 208, 207, 176, 177, 209, 176, 209, 208, 177, 178, 210, 177, 210, 209, 178, 179, 211, 178, 211, 210, 179, 180, 212, 179, 212, 211, 180, 181, 213, 180, 213, 212, 181, 182, 214, 181, 214, 213, 182, 183, 215, 182, 215, 214, 183, 184, 216, 183, 216, 215, 184, 185, 217, 184, 217, 216, 185, 186, 218, 185, 218, 217, 186, 187, 219, 186, 219, 218, 187, 188, 220, 187, 220, 219, 188, 189, 221, 188, 221, 220, 189, 190, 222, 189, 222, 221, 190, 191, 223, 190, 223, 222, 192, 193, 225, 192, 225, 224, 193, 194, 226, 193, 226, 225, 194, 195, 227, 194, 227, 226, 195, 196, 228, 195, 228, 227, 196, 197, 229, 196, 229, 228, 197, 198, 230, 197, 230, 229, 198, 199, 231, 198, 231, 230, 199, 200, 232, 199, 232, 231, 200, 201, 233, 200, 233, 232, 201, 202, 234, 201, 234, 233, 202, 203, 235, 202, 235, 234, 203, 204, 236, 203, 236, 235, 204, 205, 237, 204, 237, 236, 205, 206, 238, 205, 238, 237, 206, 207, 239, 206, 239, 238, 207, 208, 240, 207, 240, 239, 208, 209, 241, 208, 241, 240, 209, 210, 242, 209, 242, 241, 210, 211, 243, 210, 243, 242, 211, 212, 244, 211, 244, 243, 212, 213, 245, 212, 245, 244, 213, 214, 246, 213, 246, 245, 214, 215, 247, 214, 247, 246, 215, 216, 248, 215, 248, 247, 216, 217, 249, 216, 249, 248, 217, 218, 250, 217, 250, 249, 218, 219, 251, 218, 251, 250, 219, 220, 252, 219, 252, 251, 220, 221, 253, 220, 253, 252, 221, 222, 254, 221, 254, 253, 222, 223, 255, 222, 255, 254, 224, 225, 257, 224, 257, 256, 225, 226, 258, 225, 258, 257, 226, 227, 259, 226, 259, 258, 227, 228, 260, 227, 260, 259, 228, 229, 261, 228, 261, 260, 229, 230, 262, 229, 262, 261, 230, 231, 263, 230, 263, 262, 231, 232, 264, 231, 264, 263, 232, 233, 265, 232, 265, 264, 233, 234, 266, 233, 266, 265, 234, 235, 267, 234, 267, 266, 235, 236, 268, 235, 268, 267, 236, 237, 269, 236, 269, 268, 237, 238, 270, 237, 270, 269, 238, 239, 271, 238, 271, 270, 239, 240, 272, 239, 272, 271, 240, 241, 273, 240, 273, 272, 241, 242, 274, 241, 274, 273, 242, 243, 275, 242, 275, 274, 243, 244, 276, 243, 276, 275, 244, 245, 277, 244, 277, 276, 245, 246, 278, 245, 278, 277, 246, 247, 279, 246, 279, 278, 247, 248, 280, 247, 280, 279, 248, 249, 281, 248, 281, 280, 249, 250, 282, 249, 282, 281, 250, 251, 283, 250, 283, 282, 251, 252, 284, 251, 284, 283, 252, 253, 285, 252, 285, 284, 253, 254, 286, 253, 286, 285, 254, 255, 287, 254, 287, 286, 256, 257, 289, 256, 289, 288, 257, 258, 290, 257, 290, 289, 258, 259, 291, 258, 291, 290, 259, 260, 292, 259, 292, 291, 260, 261, 293, 260, 293, 292, 261, 262, 294, 261, 294, 293, 262, 263, 295, 262, 295, 294, 263, 264, 296, 263, 296, 295, 264, 265, 297, 264, 297, 296, 265, 266, 298, 265, 298, 297, 266, 267, 299, 266, 299, 298, 267, 268, 300, 267, 300, 299, 268, 269, 301, 268, 301, 300, 269, 270, 302, 269, 302, 301, 270, 271, 303, 270, 303, 302, 271, 272, 304, 271, 304, 303, 272, 273, 305, 272, 305, 304, 273, 274, 306, 273, 306, 305, 274, 275, 307, 274, 307, 306, 275, 276, 308, 275, 308, 307, 276, 277, 309, 276, 309, 308, 277, 278, 310, 277, 310, 309, 278, 279, 311, 278, 311, 310, 279, 280, 312, 279, 312, 311, 280, 281, 313, 280, 313, 312, 281, 282, 314, 281, 314, 313, 282, 283, 315, 282, 315, 314, 283, 284, 316, 283, 316, 315, 284, 285, 317, 284, 317, 316, 285, 286, 318, 285, 318, 317, 286, 287, 319, 286, 319, 318, 288, 289, 321, 288, 321, 320, 289, 290, 322, 289, 322, 321, 290, 291, 323, 290, 323, 322, 291, 292, 324, 291, 324, 323, 292, 293, 325, 292, 325, 324, 293, 294, 326, 293, 326, 325, 294, 295, 327, 294, 327, 326, 295, 296, 328, 295, 328, 327, 296, 297, 329, 296, 329, 328, 297, 298, 330, 297, 330, 329, 298, 299, 331, 298, 331, 330, 299, 300, 332, 299, 332, 331, 300, 301, 333, 300, 333, 332, 301, 302, 334, 301, 334, 333, 302, 303, 335, 302, 335, 334, 303, 304, 336, 303, 336, 335, 304, 305, 337, 304, 337, 336, 305, 306, 338, 305, 338, 337, 306, 307, 339, 306, 339, 338, 307, 308, 340, 307, 340, 339, 308, 309, 341, 308, 341, 340, 309, 310, 342, 309, 342, 341, 310, 311, 343, 310, 343, 342, 311, 312, 344, 311, 344, 343, 312, 313, 345, 312, 345, 344, 313, 314, 346, 313, 346, 345, 314, 315, 347, 314, 347, 346, 315, 316, 348, 315, 348, 347, 316, 317, 349, 316, 349, 348, 317, 318, 350, 317, 350, 349, 318, 319, 351, 318, 351, 350, 320, 321, 353, 320, 353, 352, 321, 322, 354, 321, 354, 353, 322, 323, 355, 322, 355, 354, 323, 324, 356, 323, 356, 355, 324, 325, 357, 324, 357, 356, 325, 326, 358, 325, 358, 357, 326, 327, 359, 326, 359, 358, 327, 328, 360, 327, 360, 359, 328, 329, 361, 328, 361, 360, 329, 330, 362, 329, 362, 361, 330, 331, 363, 330, 363, 362, 331, 332, 364, 331, 364, 363, 332, 333, 365, 332, 365, 364, 333, 334, 366, 333, 366, 365, 334, 335, 367, 334, 367, 366, 335, 336, 368, 335, 368, 367, 336, 337, 369, 336, 369, 368, 337, 338, 370, 337, 370, 369, 338, 339, 371, 338, 371, 370, 339, 340, 372, 339, 372, 371, 340, 341, 373, 340, 373, 372, 341, 342, 374, 341, 374, 373, 342, 343, 375, 342, 375, 374, 343, 344, 376, 343, 376, 375, 344, 345, 377, 344, 377, 376, 345, 346, 378, 345, 378, 377, 346, 347, 379, 346, 379, 378, 347, 348, 380, 347, 380, 379, 348, 349, 381, 348, 381, 380, 349, 350, 382, 349, 382, 381, 350, 351, 383, 350, 383, 382, 352, 353, 385, 352, 385, 384, 353, 354, 386, 353, 386, 385, 354, 355, 387, 354, 387, 386, 355, 356, 388, 355, 388, 387, 356, 357, 389, 356, 389, 388, 357, 358, 390, 357, 390, 389, 358, 359, 391, 358, 391, 390, 359, 360, 392, 359, 392, 391, 360, 361, 393, 360, 393, 392, 361, 362, 394, 361, 394, 393, 362, 363, 395, 362, 395, 394, 363, 364, 396, 363, 396, 395, 364, 365, 397, 364, 397, 396, 365, 366, 398, 365, 398, 397, 366, 367, 399, 366, 399, 398, 367, 368, 400, 367, 400, 399, 368, 369, 401, 368, 401, 400, 369, 370, 402, 369, 402, 401, 370, 371, 403, 370, 403, 402, 371, 372, 404, 371, 404, 403, 372, 373, 405, 372, 405, 404, 373, 374, 406, 373, 406, 405, 374, 375, 407, 374, 407, 406, 375, 376, 408, 375, 408, 407, 376, 377, 409, 376, 409, 408, 377, 378, 410, 377, 410, 409, 378, 379, 411, 378, 411, 410, 379, 380, 412, 379, 412, 411, 380, 381, 413, 380, 413, 412, 381, 382, 414, 381, 414, 413, 382, 383, 415, 382, 415, 414, 384, 385, 417, 384, 417, 416, 385, 386, 418, 385, 418, 417, 386, 387, 419, 386, 419, 418, 387, 388, 420, 387, 420, 419, 388, 389, 421, 388, 421, 420, 389, 390, 422, 389, 422, 421, 390, 391, 423, 390, 423, 422, 391, 392, 424, 391, 424, 423, 392, 393, 425, 392, 425, 424, 393, 394, 426, 393, 426, 425, 394, 395, 427, 394, 427, 426, 395, 396, 428, 395, 428, 427, 396, 397, 429, 396, 429, 428, 397, 398, 430, 397, 430, 429, 398, 399, 431, 398, 431, 430, 399, 400, 432, 399, 432, 431, 400, 401, 433, 400, 433, 432, 401, 402, 434, 401, 434, 433, 402, 403, 435, 402, 435, 434, 403, 404, 436, 403, 436, 435, 404, 405, 437, 404, 437, 436, 405, 406, 438, 405, 438, 437, 406, 407, 439, 406, 439, 438, 407, 408, 440, 407, 440, 439, 408, 409, 441, 408, 441, 440, 409, 410, 442, 409, 442, 441, 410, 411, 443, 410, 443, 442, 411, 412, 444, 411, 444, 443, 412, 413, 445, 412, 445, 444, 413, 414, 446, 413, 446, 445, 414, 415, 447, 414, 447, 446, 416, 417, 449, 416, 449, 448, 417, 418, 450, 417, 450, 449, 418, 419, 451, 418, 451, 450, 419, 420, 452, 419, 452, 451, 420, 421, 453, 420, 453, 452, 421, 422, 454, 421, 454, 453, 422, 423, 455, 422, 455, 454, 423, 424, 456, 423, 456, 455, 424, 425, 457, 424, 457, 456, 425, 426, 458, 425, 458, 457, 426, 427, 459, 426, 459, 458, 427, 428, 460, 427, 460, 459, 428, 429, 461, 428, 461, 460, 429, 430, 462, 429, 462, 461, 430, 431, 463, 430, 463, 462, 431, 432, 464, 431, 464, 463, 432, 433, 465, 432, 465, 464, 433, 434, 466, 433, 466, 465, 434, 435, 467, 434, 467, 466, 435, 436, 468, 435, 468, 467, 436, 437, 469, 436, 469, 468, 437, 438, 470, 437, 470, 469, 438, 439, 471, 438, 471, 470, 439, 440, 472, 439, 472, 471, 440, 441, 473, 440, 473, 472, 441, 442, 474, 441, 474, 473, 442, 443, 475, 442, 475, 474, 443, 444, 476, 443, 476, 475, 444, 445, 477, 444, 477, 476, 445, 446, 478, 445, 478, 477, 446, 447, 479, 446, 479, 478, 448, 449, 481, 448, 481, 480, 449, 450, 482, 449, 482, 481, 450, 451, 483, 450, 483, 482, 451, 452, 484, 451, 484, 483, 452, 453, 485, 452, 485, 484, 453, 454, 486, 453, 486, 485, 454, 455, 487, 454, 487, 486, 455, 456, 488, 455, 488, 487, 456, 457, 489, 456, 489, 488, 457, 458, 490, 457, 490, 489, 458, 459, 491, 458, 491, 490, 459, 460, 492, 459, 492, 491, 460, 461, 493, 460, 493, 492, 461, 462, 494, 461, 494, 493, 462, 463, 495, 462, 495, 494, 463, 464, 496, 463, 496, 495, 464, 465, 497, 464, 497, 496, 465, 466, 498, 465, 498, 497, 466, 467, 499, 466, 499, 498, 467, 468, 500, 467, 500, 499, 468, 469, 501, 468, 501, 500, 469, 470, 502, 469, 502, 501, 470, 471, 503, 470, 503, 502, 471, 472, 504, 471, 504, 503, 472, 473, 505, 472, 505, 504, 473, 474, 506, 473, 506, 505, 474, 475, 507, 474, 507, 506, 475, 476, 508, 475, 508, 507, 476, 477, 509, 476, 509, 508, 477, 478, 510, 477, 510, 509, 478, 479, 511, 478, 511, 510, 480, 481, 513, 480, 513, 512, 481, 482, 514, 481, 514, 513, 482, 483, 515, 482, 515, 514, 483, 484, 516, 483, 516, 515, 484, 485, 517, 484, 517, 516, 485, 486, 518, 485, 518, 517, 486, 487, 519, 486, 519, 518, 487, 488, 520, 487, 520, 519, 488, 489, 521, 488, 521, 520, 489, 490, 522, 489, 522, 521, 490, 491, 523, 490, 523, 522, 491, 492, 524, 491, 524, 523, 492, 493, 525, 492, 525, 524, 493, 494, 526, 493, 526, 525, 494, 495, 527, 494, 527, 526, 495, 496, 528, 495, 528, 527, 496, 497, 529, 496, 529, 528, 497, 498, 530, 497, 530, 529, 498, 499, 531, 498, 531, 530, 499, 500, 532, 499, 532, 531, 500, 501, 533, 500, 533, 532, 501, 502, 534, 501, 534, 533, 502, 503, 535, 502, 535, 534, 503, 504, 536, 503, 536, 535, 504, 505, 537, 504, 537, 536, 505, 506, 538, 505, 538, 537, 506, 507, 539, 506, 539, 538, 507, 508, 540, 507, 540, 539, 508, 509, 541, 508, 541, 540, 509, 510, 542, 509, 542, 541, 510, 511, 543, 510, 543, 542, 512, 513, 545, 512, 545, 544, 513, 514, 546, 513, 546, 545, 514, 515, 547, 514, 547, 546, 515, 516, 548, 515, 548, 547, 516, 517, 549, 516, 549, 548, 517, 518, 550, 517, 550, 549, 518, 519, 551, 518, 551, 550, 519, 520, 552, 519, 552, 551, 520, 521, 553, 520, 553, 552, 521, 522, 554, 521, 554, 553, 522, 523, 555, 522, 555, 554, 523, 524, 556, 523, 556, 555, 524, 525, 557, 524, 557, 556, 525, 526, 558, 525, 558, 557, 526, 527, 559, 526, 559, 558, 527, 528, 560, 527, 560, 559, 528, 529, 561, 528, 561, 560, 529, 530, 562, 529, 562, 561, 530, 531, 563, 530, 563, 562, 531, 532, 564, 531, 564, 563, 532, 533, 565, 532, 565, 564, 533, 534, 566, 533, 566, 565, 534, 535, 567, 534, 567, 566, 535, 536, 568, 535, 568, 567, 536, 537, 569, 536, 569, 568, 537, 538, 570, 537, 570, 569, 538, 539, 571, 538, 571, 570, 539, 540, 572, 539, 572, 571, 540, 541, 573, 540, 573, 572, 541, 542, 574, 541, 574, 573, 542, 543, 575, 542, 575, 574, 544, 545, 577, 544, 577, 576, 545, 546, 578, 545, 578, 577, 546, 547, 579, 546, 579, 578, 547, 548, 580, 547, 580, 579, 548, 549, 581, 548, 581, 580, 549, 550, 582, 549, 582, 581, 550, 551, 583, 550, 583, 582, 551, 552, 584, 551, 584, 583, 552, 553, 585, 552, 585, 584, 553, 554, 586, 553, 586, 585, 554, 555, 587, 554, 587, 586, 555, 556, 588, 555, 588, 587, 556, 557, 589, 556, 589, 588, 557, 558, 590, 557, 590, 589, 558, 559, 591, 558, 591, 590, 559, 560, 592, 559, 592, 591, 560, 561, 593, 560, 593, 592, 561, 562, 594, 561, 594, 593, 562, 563, 595, 562, 595, 594, 563, 564, 596, 563, 596, 595, 564, 565, 597, 564, 597, 596, 565, 566, 598, 565, 598, 597, 566, 567, 599, 566, 599, 598, 567, 568, 600, 567, 600, 599, 568, 569, 601, 568, 601, 600, 569, 570, 602, 569, 602, 601, 570, 571, 603, 570, 603, 602, 571, 572, 604, 571, 604, 603, 572, 573, 605, 572, 605, 604, 573, 574, 606, 573, 606, 605, 574, 575, 607, 574, 607, 606, 576, 577, 609, 576, 609, 608, 577, 578, 610, 577, 610, 609, 578, 579, 611, 578, 611, 610, 579, 580, 612, 579, 612, 611, 580, 581, 613, 580, 613, 612, 581, 582, 614, 581, 614, 613, 582, 583, 615, 582, 615, 614, 583, 584, 616, 583, 616, 615, 584, 585, 617, 584, 617, 616, 585, 586, 618, 585, 618, 617, 586, 587, 619, 586, 619, 618, 587, 588, 620, 587, 620, 619, 588, 589, 621, 588, 621, 620, 589, 590, 622, 589, 622, 621, 590, 591, 623, 590, 623, 622, 591, 592, 624, 591, 624, 623, 592, 593, 625, 592, 625, 624, 593, 594, 626, 593, 626, 625, 594, 595, 627, 594, 627, 626, 595, 596, 628, 595, 628, 627, 596, 597, 629, 596, 629, 628, 597, 598, 630, 597, 630, 629, 598, 599, 631, 598, 631, 630, 599, 600, 632, 599, 632, 631, 600, 601, 633, 600, 633, 632, 601, 602, 634, 601, 634, 633, 602, 603, 635, 602, 635, 634, 603, 604, 636, 603, 636, 635, 604, 605, 637, 604, 637, 636, 605, 606, 638, 605, 638, 637, 606, 607, 639, 606, 639, 638, 608, 609, 641, 608, 641, 640, 609, 610, 642, 609, 642, 641, 610, 611, 643, 610, 643, 642, 611, 612, 644, 611, 644, 643, 612, 613, 645, 612, 645, 644, 613, 614, 646, 613, 646, 645, 614, 615, 647, 614, 647, 646, 615, 616, 648, 615, 648, 647, 616, 617, 649, 616, 649, 648, 617, 618, 650, 617, 650, 649, 618, 619, 651, 618, 651, 650, 619, 620, 652, 619, 652, 651, 620, 621, 653, 620, 653, 652, 621, 622, 654, 621, 654, 653, 622, 623, 655, 622, 655, 654, 623, 624, 656, 623, 656, 655, 624, 625, 657, 624, 657, 656, 625, 626, 658, 625, 658, 657, 626, 627, 659, 626, 659, 658, 627, 628, 660, 627, 660, 659, 628, 629, 661, 628, 661, 660, 629, 630, 662, 629, 662, 661, 630, 631, 663, 630, 663, 662, 631, 632, 664, 631, 664, 663, 632, 633, 665, 632, 665, 664, 633, 634, 666, 633, 666, 665, 634, 635, 667, 634, 667, 666, 635, 636, 668, 635, 668, 667, 636, 637, 669, 636, 669, 668, 637, 638, 670, 637, 670, 669, 638, 639, 671, 638, 671, 670, 640, 641, 673, 640, 673, 672, 641, 642, 674, 641, 674, 673, 642, 643, 675, 642, 675, 674, 643, 644, 676, 643, 676, 675, 644, 645, 677, 644, 677, 676, 645, 646, 678, 645, 678, 677, 646, 647, 679, 646, 679, 678, 647, 648, 680, 647, 680, 679, 648, 649, 681, 648, 681, 680, 649, 650, 682, 649, 682, 681, 650, 651, 683, 650, 683, 682, 651, 652, 684, 651, 684, 683, 652, 653, 685, 652, 685, 684, 653, 654, 686, 653, 686, 685, 654, 655, 687, 654, 687, 686, 655, 656, 688, 655, 688, 687, 656, 657, 689, 656, 689, 688, 657, 658, 690, 657, 690, 689, 658, 659, 691, 658, 691, 690, 659, 660, 692, 659, 692, 691, 660, 661, 693, 660, 693, 692, 661, 662, 694, 661, 694, 693, 662, 663, 695, 662, 695, 694, 663, 664, 696, 663, 696, 695, 664, 665, 697, 664, 697, 696, 665, 666, 698, 665, 698, 697, 666, 667, 699, 666, 699, 698, 667, 668, 700, 667, 700, 699, 668, 669, 701, 668, 701, 700, 669, 670, 702, 669, 702, 701, 670, 671, 703, 670, 703, 702, 672, 673, 705, 672, 705, 704, 673, 674, 706, 673, 706, 705, 674, 675, 707, 674, 707, 706, 675, 676, 708, 675, 708, 707, 676, 677, 709, 676, 709, 708, 677, 678, 710, 677, 710, 709, 678, 679, 711, 678, 711, 710, 679, 680, 712, 679, 712, 711, 680, 681, 713, 680, 713, 712, 681, 682, 714, 681, 714, 713, 682, 683, 715, 682, 715, 714, 683, 684, 716, 683, 716, 715, 684, 685, 717, 684, 717, 716, 685, 686, 718, 685, 718, 717, 686, 687, 719, 686, 719, 718, 687, 688, 720, 687, 720, 719, 688, 689, 721, 688, 721, 720, 689, 690, 722, 689, 722, 721, 690, 691, 723, 690, 723, 722, 691, 692, 724, 691, 724, 723, 692, 693, 725, 692, 725, 724, 693, 694, 726, 693, 726, 725, 694, 695, 727, 694, 727, 726, 695, 696, 728, 695, 728, 727, 696, 697, 729, 696, 729, 728, 697, 698, 730, 697, 730, 729, 698, 699, 731, 698, 731, 730, 699, 700, 732, 699, 732, 731, 700, 701, 733, 700, 733, 732, 701, 702, 734, 701, 734, 733, 702, 703, 735, 702, 735, 734, 704, 705, 737, 704, 737, 736, 705, 706, 738, 705, 738, 737, 706, 707, 739, 706, 739, 738, 707, 708, 740, 707, 740, 739, 708, 709, 741, 708, 741, 740, 709, 710, 742, 709, 742, 741, 710, 711, 743, 710, 743, 742, 711, 712, 744, 711, 744, 743, 712, 713, 745, 712, 745, 744, 713, 714, 746, 713, 746, 745, 714, 715, 747, 714, 747, 746, 715, 716, 748, 715, 748, 747, 716, 717, 749, 716, 749, 748, 717, 718, 750, 717, 750, 749, 718, 719, 751, 718, 751, 750, 719, 720, 752, 719, 752, 751, 720, 721, 753, 720, 753, 752, 721, 722, 754, 721, 754, 753, 722, 723, 755, 722, 755, 754, 723, 724, 756, 723, 756, 755, 724, 725, 757, 724, 757, 756, 725, 726, 758, 725, 758, 757, 726, 727, 759, 726, 759, 758, 727, 728, 760, 727, 760, 759, 728, 729, 761, 728, 761, 760, 729, 730, 762, 729, 762, 761, 730, 731, 763, 730, 763, 762, 731, 732, 764, 731, 764, 763, 732, 733, 765, 732, 765, 764, 733, 734, 766, 733, 766, 765, 734, 735, 767, 734, 767, 766, 736, 737, 769, 736, 769, 768, 737, 738, 770, 737, 770, 769, 738, 739, 771, 738, 771, 770, 739, 740, 772, 739, 772, 771, 740, 741, 773, 740, 773, 772, 741, 742, 774, 741, 774, 773, 742, 743, 775, 742, 775, 774, 743, 744, 776, 743, 776, 775, 744, 745, 777, 744, 777, 776, 745, 746, 778, 745, 778, 777, 746, 747, 779, 746, 779, 778, 747, 748, 780, 747, 780, 779, 748, 749, 781, 748, 781, 780, 749, 750, 782, 749, 782, 781, 750, 751, 783, 750, 783, 782, 751, 752, 784, 751, 784, 783, 752, 753, 785, 752, 785, 784, 753, 754, 786, 753, 786, 785, 754, 755, 787, 754, 787, 786, 755, 756, 788, 755, 788, 787, 756, 757, 789, 756, 789, 788, 757, 758, 790, 757, 790, 789, 758, 759, 791, 758, 791, 790, 759, 760, 792, 759, 792, 791, 760, 761, 793, 760, 793, 792, 761, 762, 794, 761, 794, 793, 762, 763, 795, 762, 795, 794, 763, 764, 796, 763, 796, 795, 764, 765, 797, 764, 797, 796, 765, 766, 798, 765, 798, 797, 766, 767, 799, 766, 799, 798, 768, 769, 801, 768, 801, 800, 769, 770, 802, 769, 802, 801, 770, 771, 803, 770, 803, 802, 771, 772, 804, 771, 804, 803, 772, 773, 805, 772, 805, 804, 773, 774, 806, 773, 806, 805, 774, 775, 807, 774, 807, 806, 775, 776, 808, 775, 808, 807, 776, 777, 809, 776, 809, 808, 777, 778, 810, 777, 810, 809, 778, 779, 811, 778, 811, 810, 779, 780, 812, 779, 812, 811, 780, 781, 813, 780, 813, 812, 781, 782, 814, 781, 814, 813, 782, 783, 815, 782, 815, 814, 783, 784, 816, 783, 816, 815, 784, 785, 817, 784, 817, 816, 785, 786, 818, 785, 818, 817, 786, 787, 819, 786, 819, 818, 787, 788, 820, 787, 820, 819, 788, 789, 821, 788, 821, 820, 789, 790, 822, 789, 822, 821, 790, 791, 823, 790, 823, 822, 791, 792, 824, 791, 824, 823, 792, 793, 825, 792, 825, 824, 793, 794, 826, 793, 826, 825, 794, 795, 827, 794, 827, 826, 795, 796, 828, 795, 828, 827, 796, 797, 829, 796, 829, 828, 797, 798, 830, 797, 830, 829, 798, 799, 831, 798, 831, 830, 800, 801, 833, 800, 833, 832, 801, 802, 834, 801, 834, 833, 802, 803, 835, 802, 835, 834, 803, 804, 836, 803, 836, 835, 804, 805, 837, 804, 837, 836, 805, 806, 838, 805, 838, 837, 806, 807, 839, 806, 839, 838, 807, 808, 840, 807, 840, 839, 808, 809, 841, 808, 841, 840, 809, 810, 842, 809, 842, 841, 810, 811, 843, 810, 843, 842, 811, 812, 844, 811, 844, 843, 812, 813, 845, 812, 845, 844, 813, 814, 846, 813, 846, 845, 814, 815, 847, 814, 847, 846, 815, 816, 848, 815, 848, 847, 816, 817, 849, 816, 849, 848, 817, 818, 850, 817, 850, 849, 818, 819, 851, 818, 851, 850, 819, 820, 852, 819, 852, 851, 820, 821, 853, 820, 853, 852, 821, 822, 854, 821, 854, 853, 822, 823, 855, 822, 855, 854, 823, 824, 856, 823, 856, 855, 824, 825, 857, 824, 857, 856, 825, 826, 858, 825, 858, 857, 826, 827, 859, 826, 859, 858, 827, 828, 860, 827, 860, 859, 828, 829, 861, 828, 861, 860, 829, 830, 862, 829, 862, 861, 830, 831, 863, 830, 863, 862, 832, 833, 865, 832, 865, 864, 833, 834, 866, 833, 866, 865, 834, 835, 867, 834, 867, 866, 835, 836, 868, 835, 868, 867, 836, 837, 869, 836, 869, 868, 837, 838, 870, 837, 870, 869, 838, 839, 871, 838, 871, 870, 839, 840, 872, 839, 872, 871, 840, 841, 873, 840, 873, 872, 841, 842, 874, 841, 874, 873, 842, 843, 875, 842, 875, 874, 843, 844, 876, 843, 876, 875, 844, 845, 877, 844, 877, 876, 845, 846, 878, 845, 878, 877, 846, 847, 879, 846, 879, 878, 847, 848, 880, 847, 880, 879, 848, 849, 881, 848, 881, 880, 849, 850, 882, 849, 882, 881, 850, 851, 883, 850, 883, 882, 851, 852, 884, 851, 884, 883, 852, 853, 885, 852, 885, 884, 853, 854, 886, 853, 886, 885, 854, 855, 887, 854, 887, 886, 855, 856, 888, 855, 888, 887, 856, 857, 889, 856, 889, 888, 857, 858, 890, 857, 890, 889, 858, 859, 891, 858, 891, 890, 859, 860, 892, 859, 892, 891, 860, 861, 893, 860, 893, 892, 861, 862, 894, 861, 894, 893, 862, 863, 895, 862, 895, 894, 864, 865, 897, 864, 897, 896, 865, 866, 898, 865, 898, 897, 866, 867, 899, 866, 899, 898, 867, 868, 900, 867, 900, 899, 868, 869, 901, 868, 901, 900, 869, 870, 902, 869, 902, 901, 870, 871, 903, 870, 903, 902, 871, 872, 904, 871, 904, 903, 872, 873, 905, 872, 905, 904, 873, 874, 906, 873, 906, 905, 874, 875, 907, 874, 907, 906, 875, 876, 908, 875, 908, 907, 876, 877, 909, 876, 909, 908, 877, 878, 910, 877, 910, 909, 878, 879, 911, 878, 911, 910, 879, 880, 912, 879, 912, 911, 880, 881, 913, 880, 913, 912, 881, 882, 914, 881, 914, 913, 882, 883, 915, 882, 915, 914, 883, 884, 916, 883, 916, 915, 884, 885, 917, 884, 917, 916, 885, 886, 918, 885, 918, 917, 886, 887, 919, 886, 919, 918, 887, 888, 920, 887, 920, 919, 888, 889, 921, 888, 921, 920, 889, 890, 922, 889, 922, 921, 890, 891, 923, 890, 923, 922, 891, 892, 924, 891, 924, 923, 892, 893, 925, 892, 925, 924, 893, 894, 926, 893, 926, 925, 894, 895, 927, 894, 927, 926, 896, 897, 929, 896, 929, 928, 897, 898, 930, 897, 930, 929, 898, 899, 931, 898, 931, 930, 899, 900, 932, 899, 932, 931, 900, 901, 933, 900, 933, 932, 901, 902, 934, 901, 934, 933, 902, 903, 935, 902, 935, 934, 903, 904, 936, 903, 936, 935, 904, 905, 937, 904, 937, 936, 905, 906, 938, 905, 938, 937, 906, 907, 939, 906, 939, 938, 907, 908, 940, 907, 940, 939, 908, 909, 941, 908, 941, 940, 909, 910, 942, 909, 942, 941, 910, 911, 943, 910, 943, 942, 911, 912, 944, 911, 944, 943, 912, 913, 945, 912, 945, 944, 913, 914, 946, 913, 946, 945, 914, 915, 947, 914, 947, 946, 915, 916, 948, 915, 948, 947, 916, 917, 949, 916, 949, 948, 917, 918, 950, 917, 950, 949, 918, 919, 951, 918, 951, 950, 919, 920, 952, 919, 952, 951, 920, 921, 953, 920, 953, 952, 921, 922, 954, 921, 954, 953, 922, 923, 955, 922, 955, 954, 923, 924, 956, 923, 956, 955, 924, 925, 957, 924, 957, 956, 925, 926, 958, 925, 958, 957, 926, 927, 959, 926, 959, 958, 928, 929, 961, 928, 961, 960, 929, 930, 962, 929, 962, 961, 930, 931, 963, 930, 963, 962, 931, 932, 964, 931, 964, 963, 932, 933, 965, 932, 965, 964, 933, 934, 966, 933, 966, 965, 934, 935, 967, 934, 967, 966, 935, 936, 968, 935, 968, 967, 936, 937, 969, 936, 969, 968, 937, 938, 970, 937, 970, 969, 938, 939, 971, 938, 971, 970, 939, 940, 972, 939, 972, 971, 940, 941, 973, 940, 973, 972, 941, 942, 974, 941, 974, 973, 942, 943, 975, 942, 975, 974, 943, 944, 976, 943, 976, 975, 944, 945, 977, 944, 977, 976, 945, 946, 978, 945, 978, 977, 946, 947, 979, 946, 979, 978, 947, 948, 980, 947, 980, 979, 948, 949, 981, 948, 981, 980, 949, 950, 982, 949, 982, 981, 950, 951, 983, 950, 983, 982, 951, 952, 984, 951, 984, 983, 952, 953, 985, 952, 985, 984, 953, 954, 986, 953, 986, 985, 954, 955, 987, 954, 987, 986, 955, 956, 988, 955, 988, 987, 956, 957, 989, 956, 989, 988, 957, 958, 990, 957, 990, 989, 958, 959, 991, 958, 991, 990, 960, 961, 993, 960, 993, 992, 961, 962, 994, 961, 994, 993, 962, 963, 995, 962, 995, 994, 963, 964, 996, 963, 996, 995, 964, 965, 997, 964, 997, 996, 965, 966, 998, 965, 998, 997, 966, 967, 999, 966, 999, 998, 967, 968, 1000, 967, 1000, 999, 968, 969, 1001, 968, 1001, 1000, 969, 970, 1002, 969, 1002, 1001, 970, 971, 1003, 970, 1003, 1002, 971, 972, 1004, 971, 1004, 1003, 972, 973, 1005, 972, 1005, 1004, 973, 974, 1006, 973, 1006, 1005, 974, 975, 1007, 974, 1007, 1006, 975, 976, 1008, 975, 1008, 1007, 976, 977, 1009, 976, 1009, 1008, 977, 978, 1010, 977, 1010, 1009, 978, 979, 1011, 978, 1011, 1010, 979, 980, 1012, 979, 1012, 1011, 980, 981, 1013, 980, 1013, 1012, 981, 982, 1014, 981, 1014, 1013, 982, 983, 1015, 982, 1015, 1014, 983, 984, 1016, 983, 1016, 1015, 984, 985, 1017, 984, 1017, 1016, 985, 986, 1018, 985, 1018, 1017, 986, 987, 1019, 986, 1019, 1018, 987, 988, 1020, 987, 1020, 1019, 988, 989, 1021, 988, 1021, 1020, 989, 990, 1022, 989, 1022, 1021, 990, 991, 1023, 990, 1023, 1022] point3f[] points = [(0, 0, 20), (20, 0, 20), (40, 0, 20), (60, 0, 20), (80, 0, 20), (100, 0, 20), (120, 0, 20), (140, 0, 20), (160, 0, 20), (180, 0, 20), (200, 0, 20), (220, 0, 20), (240, 0, 20), (260, 0, 20), (280, 0, 20), (300, 0, 20), (320, 0, 20), (340, 0, 20), (360, 0, 20), (380, 0, 20), (400, 0, 20), (420, 0, 20), (440, 0, 20), (460, 0, 20), (480, 0, 20), (500, 0, 20), (520, 0, 20), (540, 0, 20), (560, 0, 20), (580, 0, 20), (600, 0, 20), (620, 0, 20), (0, 20, 20), (20, 20, 20), (40, 20, 20), (60, 20, 20), (80, 20, 20), (100, 20, 20), (120, 20, 20), (140, 20, 20), (160, 20, 20), (180, 20, 20), (200, 20, 20), (220, 20, 20), (240, 20, 20), (260, 20, 20), (280, 20, 20), (300, 20, 20), (320, 20, 20), (340, 20, 20), (360, 20, 20), (380, 20, 20), (400, 20, 20), (420, 20, 20), (440, 20, 20), (460, 20, 20), (480, 20, 20), (500, 20, 20), (520, 20, 20), (540, 20, 20), (560, 20, 20), (580, 20, 20), (600, 20, 20), (620, 20, 20), (0, 40, 20), (20, 40, 20), (40, 40, 20), (60, 40, 20), (80, 40, 20), (100, 40, 20), (120, 40, 20), (140, 40, 20), (160, 40, 20), (180, 40, 20), (200, 40, 20), (220, 40, 20), (240, 40, 20), (260, 40, 20), (280, 40, 20), (300, 40, 20), (320, 40, 20), (340, 40, 20), (360, 40, 20), (380, 40, 20), (400, 40, 20), (420, 40, 20), (440, 40, 20), (460, 40, 20), (480, 40, 20), (500, 40, 20), (520, 40, 20), (540, 40, 20), (560, 40, 20), (580, 40, 20), (600, 40, 20), (620, 40, 20), (0, 60, 20), (20, 60, 20), (40, 60, 20), (60, 60, 20), (80, 60, 20), (100, 60, 20), (120, 60, 20), (140, 60, 20), (160, 60, 20), (180, 60, 20), (200, 60, 20), (220, 60, 20), (240, 60, 20), (260, 60, 20), (280, 60, 20), (300, 60, 20), (320, 60, 20), (340, 60, 20), (360, 60, 20), (380, 60, 20), (400, 60, 20), (420, 60, 20), (440, 60, 20), (460, 60, 20), (480, 60, 20), (500, 60, 20), (520, 60, 20), (540, 60, 20), (560, 60, 20), (580, 60, 20), (600, 60, 20), (620, 60, 20), (0, 80, 20), (20, 80, 20), (40, 80, 20), (60, 80, 20), (80, 80, 20), (100, 80, 20), (120, 80, 20), (140, 80, 20), (160, 80, 20), (180, 80, 20), (200, 80, 20), (220, 80, 20), (240, 80, 20), (260, 80, 20), (280, 80, 20), (300, 80, 20), (320, 80, 20), (340, 80, 20), (360, 80, 20), (380, 80, 20), (400, 80, 20), (420, 80, 20), (440, 80, 20), (460, 80, 20), (480, 80, 20), (500, 80, 20), (520, 80, 20), (540, 80, 20), (560, 80, 20), (580, 80, 20), (600, 80, 20), (620, 80, 20), (0, 100, 20), (20, 100, 20), (40, 100, 20), (60, 100, 20), (80, 100, 20), (100, 100, 20), (120, 100, 20), (140, 100, 20), (160, 100, 20), (180, 100, 20), (200, 100, 20), (220, 100, 20), (240, 100, 20), (260, 100, 20), (280, 100, 20), (300, 100, 20), (320, 100, 20), (340, 100, 20), (360, 100, 20), (380, 100, 20), (400, 100, 20), (420, 100, 20), (440, 100, 20), (460, 100, 20), (480, 100, 20), (500, 100, 20), (520, 100, 20), (540, 100, 20), (560, 100, 20), (580, 100, 20), (600, 100, 20), (620, 100, 20), (0, 120, 20), (20, 120, 20), (40, 120, 20), (60, 120, 20), (80, 120, 20), (100, 120, 20), (120, 120, 20), (140, 120, 20), (160, 120, 20), (180, 120, 20), (200, 120, 20), (220, 120, 20), (240, 120, 20), (260, 120, 20), (280, 120, 20), (300, 120, 20), (320, 120, 20), (340, 120, 20), (360, 120, 20), (380, 120, 20), (400, 120, 20), (420, 120, 20), (440, 120, 20), (460, 120, 20), (480, 120, 20), (500, 120, 20), (520, 120, 20), (540, 120, 20), (560, 120, 20), (580, 120, 20), (600, 120, 20), (620, 120, 20), (0, 140, 20), (20, 140, 20), (40, 140, 20), (60, 140, 20), (80, 140, 20), (100, 140, 20), (120, 140, 20), (140, 140, 20), (160, 140, 20), (180, 140, 20), (200, 140, 20), (220, 140, 20), (240, 140, 20), (260, 140, 20), (280, 140, 20), (300, 140, 20), (320, 140, 20), (340, 140, 20), (360, 140, 20), (380, 140, 20), (400, 140, 20), (420, 140, 20), (440, 140, 20), (460, 140, 20), (480, 140, 20), (500, 140, 20), (520, 140, 20), (540, 140, 20), (560, 140, 20), (580, 140, 20), (600, 140, 20), (620, 140, 20), (0, 160, 20), (20, 160, 20), (40, 160, 20), (60, 160, 20), (80, 160, 20), (100, 160, 20), (120, 160, 20), (140, 160, 20), (160, 160, 20), (180, 160, 20), (200, 160, 20), (220, 160, 20), (240, 160, 20), (260, 160, 20), (280, 160, 20), (300, 160, 20), (320, 160, 20), (340, 160, 20), (360, 160, 20), (380, 160, 20), (400, 160, 20), (420, 160, 20), (440, 160, 20), (460, 160, 20), (480, 160, 20), (500, 160, 20), (520, 160, 20), (540, 160, 20), (560, 160, 20), (580, 160, 20), (600, 160, 20), (620, 160, 20), (0, 180, 20), (20, 180, 20), (40, 180, 20), (60, 180, 20), (80, 180, 20), (100, 180, 20), (120, 180, 20), (140, 180, 20), (160, 180, 20), (180, 180, 20), (200, 180, 20), (220, 180, 20), (240, 180, 20), (260, 180, 20), (280, 180, 20), (300, 180, 20), (320, 180, 20), (340, 180, 20), (360, 180, 20), (380, 180, 20), (400, 180, 20), (420, 180, 20), (440, 180, 20), (460, 180, 20), (480, 180, 20), (500, 180, 20), (520, 180, 20), (540, 180, 20), (560, 180, 20), (580, 180, 20), (600, 180, 20), (620, 180, 20), (0, 200, 20), (20, 200, 20), (40, 200, 20), (60, 200, 20), (80, 200, 20), (100, 200, 20), (120, 200, 20), (140, 200, 20), (160, 200, 20), (180, 200, 20), (200, 200, 20), (220, 200, 20), (240, 200, 20), (260, 200, 20), (280, 200, 20), (300, 200, 20), (320, 200, 20), (340, 200, 20), (360, 200, 20), (380, 200, 20), (400, 200, 20), (420, 200, 20), (440, 200, 20), (460, 200, 20), (480, 200, 20), (500, 200, 20), (520, 200, 20), (540, 200, 20), (560, 200, 20), (580, 200, 20), (600, 200, 20), (620, 200, 20), (0, 220, 20), (20, 220, 20), (40, 220, 20), (60, 220, 20), (80, 220, 20), (100, 220, 20), (120, 220, 20), (140, 220, 20), (160, 220, 20), (180, 220, 20), (200, 220, 20), (220, 220, 20), (240, 220, 20), (260, 220, 20), (280, 220, 20), (300, 220, 20), (320, 220, 20), (340, 220, 20), (360, 220, 20), (380, 220, 20), (400, 220, 20), (420, 220, 20), (440, 220, 20), (460, 220, 20), (480, 220, 20), (500, 220, 20), (520, 220, 20), (540, 220, 20), (560, 220, 20), (580, 220, 20), (600, 220, 20), (620, 220, 20), (0, 240, 20), (20, 240, 20), (40, 240, 20), (60, 240, 20), (80, 240, 20), (100, 240, 20), (120, 240, 20), (140, 240, 20), (160, 240, 20), (180, 240, 20), (200, 240, 20), (220, 240, 20), (240, 240, 20), (260, 240, 20), (280, 240, 20), (300, 240, 20), (320, 240, 20), (340, 240, 20), (360, 240, 20), (380, 240, 20), (400, 240, 20), (420, 240, 20), (440, 240, 20), (460, 240, 20), (480, 240, 20), (500, 240, 20), (520, 240, 20), (540, 240, 20), (560, 240, 20), (580, 240, 20), (600, 240, 20), (620, 240, 20), (0, 260, 20), (20, 260, 20), (40, 260, 20), (60, 260, 20), (80, 260, 20), (100, 260, 20), (120, 260, 20), (140, 260, 20), (160, 260, 20), (180, 260, 20), (200, 260, 20), (220, 260, 20), (240, 260, 20), (260, 260, 20), (280, 260, 20), (300, 260, 20), (320, 260, 20), (340, 260, 20), (360, 260, 20), (380, 260, 20), (400, 260, 20), (420, 260, 20), (440, 260, 20), (460, 260, 20), (480, 260, 20), (500, 260, 20), (520, 260, 20), (540, 260, 20), (560, 260, 20), (580, 260, 20), (600, 260, 20), (620, 260, 20), (0, 280, 20), (20, 280, 20), (40, 280, 20), (60, 280, 20), (80, 280, 20), (100, 280, 20), (120, 280, 20), (140, 280, 20), (160, 280, 20), (180, 280, 20), (200, 280, 20), (220, 280, 20), (240, 280, 20), (260, 280, 20), (280, 280, 20), (300, 280, 20), (320, 280, 20), (340, 280, 20), (360, 280, 20), (380, 280, 20), (400, 280, 20), (420, 280, 20), (440, 280, 20), (460, 280, 20), (480, 280, 20), (500, 280, 20), (520, 280, 20), (540, 280, 20), (560, 280, 20), (580, 280, 20), (600, 280, 20), (620, 280, 20), (0, 300, 20), (20, 300, 20), (40, 300, 20), (60, 300, 20), (80, 300, 20), (100, 300, 20), (120, 300, 20), (140, 300, 20), (160, 300, 20), (180, 300, 20), (200, 300, 20), (220, 300, 20), (240, 300, 20), (260, 300, 20), (280, 300, 20), (300, 300, 20), (320, 300, 20), (340, 300, 20), (360, 300, 20), (380, 300, 20), (400, 300, 20), (420, 300, 20), (440, 300, 20), (460, 300, 20), (480, 300, 20), (500, 300, 20), (520, 300, 20), (540, 300, 20), (560, 300, 20), (580, 300, 20), (600, 300, 20), (620, 300, 20), (0, 320, 20), (20, 320, 20), (40, 320, 20), (60, 320, 20), (80, 320, 20), (100, 320, 20), (120, 320, 20), (140, 320, 20), (160, 320, 20), (180, 320, 20), (200, 320, 20), (220, 320, 20), (240, 320, 20), (260, 320, 20), (280, 320, 20), (300, 320, 20), (320, 320, 20), (340, 320, 20), (360, 320, 20), (380, 320, 20), (400, 320, 20), (420, 320, 20), (440, 320, 20), (460, 320, 20), (480, 320, 20), (500, 320, 20), (520, 320, 20), (540, 320, 20), (560, 320, 20), (580, 320, 20), (600, 320, 20), (620, 320, 20), (0, 340, 20), (20, 340, 20), (40, 340, 20), (60, 340, 20), (80, 340, 20), (100, 340, 20), (120, 340, 20), (140, 340, 20), (160, 340, 20), (180, 340, 20), (200, 340, 20), (220, 340, 20), (240, 340, 20), (260, 340, 20), (280, 340, 20), (300, 340, 20), (320, 340, 20), (340, 340, 20), (360, 340, 20), (380, 340, 20), (400, 340, 20), (420, 340, 20), (440, 340, 20), (460, 340, 20), (480, 340, 20), (500, 340, 20), (520, 340, 20), (540, 340, 20), (560, 340, 20), (580, 340, 20), (600, 340, 20), (620, 340, 20), (0, 360, 20), (20, 360, 20), (40, 360, 20), (60, 360, 20), (80, 360, 20), (100, 360, 20), (120, 360, 20), (140, 360, 20), (160, 360, 20), (180, 360, 20), (200, 360, 20), (220, 360, 20), (240, 360, 20), (260, 360, 20), (280, 360, 20), (300, 360, 20), (320, 360, 20), (340, 360, 20), (360, 360, 20), (380, 360, 20), (400, 360, 20), (420, 360, 20), (440, 360, 20), (460, 360, 20), (480, 360, 20), (500, 360, 20), (520, 360, 20), (540, 360, 20), (560, 360, 20), (580, 360, 20), (600, 360, 20), (620, 360, 20), (0, 380, 20), (20, 380, 20), (40, 380, 20), (60, 380, 20), (80, 380, 20), (100, 380, 20), (120, 380, 20), (140, 380, 20), (160, 380, 20), (180, 380, 20), (200, 380, 20), (220, 380, 20), (240, 380, 20), (260, 380, 20), (280, 380, 20), (300, 380, 20), (320, 380, 20), (340, 380, 20), (360, 380, 20), (380, 380, 20), (400, 380, 20), (420, 380, 20), (440, 380, 20), (460, 380, 20), (480, 380, 20), (500, 380, 20), (520, 380, 20), (540, 380, 20), (560, 380, 20), (580, 380, 20), (600, 380, 20), (620, 380, 20), (0, 400, 20), (20, 400, 20), (40, 400, 20), (60, 400, 20), (80, 400, 20), (100, 400, 20), (120, 400, 20), (140, 400, 20), (160, 400, 20), (180, 400, 20), (200, 400, 20), (220, 400, 20), (240, 400, 20), (260, 400, 20), (280, 400, 20), (300, 400, 20), (320, 400, 20), (340, 400, 20), (360, 400, 20), (380, 400, 20), (400, 400, 20), (420, 400, 20), (440, 400, 20), (460, 400, 20), (480, 400, 20), (500, 400, 20), (520, 400, 20), (540, 400, 20), (560, 400, 20), (580, 400, 20), (600, 400, 20), (620, 400, 20), (0, 420, 20), (20, 420, 20), (40, 420, 20), (60, 420, 20), (80, 420, 20), (100, 420, 20), (120, 420, 20), (140, 420, 20), (160, 420, 20), (180, 420, 20), (200, 420, 20), (220, 420, 20), (240, 420, 20), (260, 420, 20), (280, 420, 20), (300, 420, 20), (320, 420, 20), (340, 420, 20), (360, 420, 20), (380, 420, 20), (400, 420, 20), (420, 420, 20), (440, 420, 20), (460, 420, 20), (480, 420, 20), (500, 420, 20), (520, 420, 20), (540, 420, 20), (560, 420, 20), (580, 420, 20), (600, 420, 20), (620, 420, 20), (0, 440, 20), (20, 440, 20), (40, 440, 20), (60, 440, 20), (80, 440, 20), (100, 440, 20), (120, 440, 20), (140, 440, 20), (160, 440, 20), (180, 440, 20), (200, 440, 20), (220, 440, 20), (240, 440, 20), (260, 440, 20), (280, 440, 20), (300, 440, 20), (320, 440, 20), (340, 440, 20), (360, 440, 20), (380, 440, 20), (400, 440, 20), (420, 440, 20), (440, 440, 20), (460, 440, 20), (480, 440, 20), (500, 440, 20), (520, 440, 20), (540, 440, 20), (560, 440, 20), (580, 440, 20), (600, 440, 20), (620, 440, 20), (0, 460, 20), (20, 460, 20), (40, 460, 20), (60, 460, 20), (80, 460, 20), (100, 460, 20), (120, 460, 20), (140, 460, 20), (160, 460, 20), (180, 460, 20), (200, 460, 20), (220, 460, 20), (240, 460, 20), (260, 460, 20), (280, 460, 20), (300, 460, 20), (320, 460, 20), (340, 460, 20), (360, 460, 20), (380, 460, 20), (400, 460, 20), (420, 460, 20), (440, 460, 20), (460, 460, 20), (480, 460, 20), (500, 460, 20), (520, 460, 20), (540, 460, 20), (560, 460, 20), (580, 460, 20), (600, 460, 20), (620, 460, 20), (0, 480, 20), (20, 480, 20), (40, 480, 20), (60, 480, 20), (80, 480, 20), (100, 480, 20), (120, 480, 20), (140, 480, 20), (160, 480, 20), (180, 480, 20), (200, 480, 20), (220, 480, 20), (240, 480, 20), (260, 480, 20), (280, 480, 20), (300, 480, 20), (320, 480, 20), (340, 480, 20), (360, 480, 20), (380, 480, 20), (400, 480, 20), (420, 480, 20), (440, 480, 20), (460, 480, 20), (480, 480, 20), (500, 480, 20), (520, 480, 20), (540, 480, 20), (560, 480, 20), (580, 480, 20), (600, 480, 20), (620, 480, 20), (0, 500, 20), (20, 500, 20), (40, 500, 20), (60, 500, 20), (80, 500, 20), (100, 500, 20), (120, 500, 20), (140, 500, 20), (160, 500, 20), (180, 500, 20), (200, 500, 20), (220, 500, 20), (240, 500, 20), (260, 500, 20), (280, 500, 20), (300, 500, 20), (320, 500, 20), (340, 500, 20), (360, 500, 20), (380, 500, 20), (400, 500, 20), (420, 500, 20), (440, 500, 20), (460, 500, 20), (480, 500, 20), (500, 500, 20), (520, 500, 20), (540, 500, 20), (560, 500, 20), (580, 500, 20), (600, 500, 20), (620, 500, 20), (0, 520, 20), (20, 520, 20), (40, 520, 20), (60, 520, 20), (80, 520, 20), (100, 520, 20), (120, 520, 20), (140, 520, 20), (160, 520, 20), (180, 520, 20), (200, 520, 20), (220, 520, 20), (240, 520, 20), (260, 520, 20), (280, 520, 20), (300, 520, 20), (320, 520, 20), (340, 520, 20), (360, 520, 20), (380, 520, 20), (400, 520, 20), (420, 520, 20), (440, 520, 20), (460, 520, 20), (480, 520, 20), (500, 520, 20), (520, 520, 20), (540, 520, 20), (560, 520, 20), (580, 520, 20), (600, 520, 20), (620, 520, 20), (0, 540, 20), (20, 540, 20), (40, 540, 20), (60, 540, 20), (80, 540, 20), (100, 540, 20), (120, 540, 20), (140, 540, 20), (160, 540, 20), (180, 540, 20), (200, 540, 20), (220, 540, 20), (240, 540, 20), (260, 540, 20), (280, 540, 20), (300, 540, 20), (320, 540, 20), (340, 540, 20), (360, 540, 20), (380, 540, 20), (400, 540, 20), (420, 540, 20), (440, 540, 20), (460, 540, 20), (480, 540, 20), (500, 540, 20), (520, 540, 20), (540, 540, 20), (560, 540, 20), (580, 540, 20), (600, 540, 20), (620, 540, 20), (0, 560, 20), (20, 560, 20), (40, 560, 20), (60, 560, 20), (80, 560, 20), (100, 560, 20), (120, 560, 20), (140, 560, 20), (160, 560, 20), (180, 560, 20), (200, 560, 20), (220, 560, 20), (240, 560, 20), (260, 560, 20), (280, 560, 20), (300, 560, 20), (320, 560, 20), (340, 560, 20), (360, 560, 20), (380, 560, 20), (400, 560, 20), (420, 560, 20), (440, 560, 20), (460, 560, 20), (480, 560, 20), (500, 560, 20), (520, 560, 20), (540, 560, 20), (560, 560, 20), (580, 560, 20), (600, 560, 20), (620, 560, 20), (0, 580, 20), (20, 580, 20), (40, 580, 20), (60, 580, 20), (80, 580, 20), (100, 580, 20), (120, 580, 20), (140, 580, 20), (160, 580, 20), (180, 580, 20), (200, 580, 20), (220, 580, 20), (240, 580, 20), (260, 580, 20), (280, 580, 20), (300, 580, 20), (320, 580, 20), (340, 580, 20), (360, 580, 20), (380, 580, 20), (400, 580, 20), (420, 580, 20), (440, 580, 20), (460, 580, 20), (480, 580, 20), (500, 580, 20), (520, 580, 20), (540, 580, 20), (560, 580, 20), (580, 580, 20), (600, 580, 20), (620, 580, 20), (0, 600, 20), (20, 600, 20), (40, 600, 20), (60, 600, 20), (80, 600, 20), (100, 600, 20), (120, 600, 20), (140, 600, 20), (160, 600, 20), (180, 600, 20), (200, 600, 20), (220, 600, 20), (240, 600, 20), (260, 600, 20), (280, 600, 20), (300, 600, 20), (320, 600, 20), (340, 600, 20), (360, 600, 20), (380, 600, 20), (400, 600, 20), (420, 600, 20), (440, 600, 20), (460, 600, 20), (480, 600, 20), (500, 600, 20), (520, 600, 20), (540, 600, 20), (560, 600, 20), (580, 600, 20), (600, 600, 20), (620, 600, 20), (0, 620, 20), (20, 620, 20), (40, 620, 20), (60, 620, 20), (80, 620, 20), (100, 620, 20), (120, 620, 20), (140, 620, 20), (160, 620, 20), (180, 620, 20), (200, 620, 20), (220, 620, 20), (240, 620, 20), (260, 620, 20), (280, 620, 20), (300, 620, 20), (320, 620, 20), (340, 620, 20), (360, 620, 20), (380, 620, 20), (400, 620, 20), (420, 620, 20), (440, 620, 20), (460, 620, 20), (480, 620, 20), (500, 620, 20), (520, 620, 20), (540, 620, 20), (560, 620, 20), (580, 620, 20), (600, 620, 20), (620, 620, 20)] color3f[] primvars:displayColor = [(0.2784314, 0.64705884, 1)] } def ComputeNode "testDeformer" { rel inputMesh = </defaultPrim/inputGrid> custom token node:type = "omni.graph.examples.cpp.PrimDeformer1" float multiplier = 3 float wavelength = 310 def Output "outputMesh" { int[] faceVertexCounts int[] faceVertexIndices point3f[] points } } def Mesh "outputGrid" { int[] faceVertexCounts.connect = </defaultPrim/testDeformer/outputMesh.faceVertexCounts> int[] faceVertexIndices.connect = </defaultPrim/testDeformer/outputMesh.faceVertexIndices> point3f[] points.connect = </defaultPrim/testDeformer/outputMesh.points> uniform bool doubleSided = 1 color3f[] primvars:displayColor = [(0.784314, 0.64705884, 0.1)] } }
omniverse-code/kit/exts/omni.graph/omni/graph/core/data/ExampleThreeDeformersTruePull.usda
#usda 1.0 ( doc = """Generated from Composed Stage of root layer """ ) def Xform "defaultPrim" { def Mesh "inputGrid" { uniform bool doubleSided = 1 int[] faceVertexCounts = [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 1, 33, 0, 33, 32, 1, 2, 34, 1, 34, 33, 2, 3, 35, 2, 35, 34, 3, 4, 36, 3, 36, 35, 4, 5, 37, 4, 37, 36, 5, 6, 38, 5, 38, 37, 6, 7, 39, 6, 39, 38, 7, 8, 40, 7, 40, 39, 8, 9, 41, 8, 41, 40, 9, 10, 42, 9, 42, 41, 10, 11, 43, 10, 43, 42, 11, 12, 44, 11, 44, 43, 12, 13, 45, 12, 45, 44, 13, 14, 46, 13, 46, 45, 14, 15, 47, 14, 47, 46, 15, 16, 48, 15, 48, 47, 16, 17, 49, 16, 49, 48, 17, 18, 50, 17, 50, 49, 18, 19, 51, 18, 51, 50, 19, 20, 52, 19, 52, 51, 20, 21, 53, 20, 53, 52, 21, 22, 54, 21, 54, 53, 22, 23, 55, 22, 55, 54, 23, 24, 56, 23, 56, 55, 24, 25, 57, 24, 57, 56, 25, 26, 58, 25, 58, 57, 26, 27, 59, 26, 59, 58, 27, 28, 60, 27, 60, 59, 28, 29, 61, 28, 61, 60, 29, 30, 62, 29, 62, 61, 30, 31, 63, 30, 63, 62, 32, 33, 65, 32, 65, 64, 33, 34, 66, 33, 66, 65, 34, 35, 67, 34, 67, 66, 35, 36, 68, 35, 68, 67, 36, 37, 69, 36, 69, 68, 37, 38, 70, 37, 70, 69, 38, 39, 71, 38, 71, 70, 39, 40, 72, 39, 72, 71, 40, 41, 73, 40, 73, 72, 41, 42, 74, 41, 74, 73, 42, 43, 75, 42, 75, 74, 43, 44, 76, 43, 76, 75, 44, 45, 77, 44, 77, 76, 45, 46, 78, 45, 78, 77, 46, 47, 79, 46, 79, 78, 47, 48, 80, 47, 80, 79, 48, 49, 81, 48, 81, 80, 49, 50, 82, 49, 82, 81, 50, 51, 83, 50, 83, 82, 51, 52, 84, 51, 84, 83, 52, 53, 85, 52, 85, 84, 53, 54, 86, 53, 86, 85, 54, 55, 87, 54, 87, 86, 55, 56, 88, 55, 88, 87, 56, 57, 89, 56, 89, 88, 57, 58, 90, 57, 90, 89, 58, 59, 91, 58, 91, 90, 59, 60, 92, 59, 92, 91, 60, 61, 93, 60, 93, 92, 61, 62, 94, 61, 94, 93, 62, 63, 95, 62, 95, 94, 64, 65, 97, 64, 97, 96, 65, 66, 98, 65, 98, 97, 66, 67, 99, 66, 99, 98, 67, 68, 100, 67, 100, 99, 68, 69, 101, 68, 101, 100, 69, 70, 102, 69, 102, 101, 70, 71, 103, 70, 103, 102, 71, 72, 104, 71, 104, 103, 72, 73, 105, 72, 105, 104, 73, 74, 106, 73, 106, 105, 74, 75, 107, 74, 107, 106, 75, 76, 108, 75, 108, 107, 76, 77, 109, 76, 109, 108, 77, 78, 110, 77, 110, 109, 78, 79, 111, 78, 111, 110, 79, 80, 112, 79, 112, 111, 80, 81, 113, 80, 113, 112, 81, 82, 114, 81, 114, 113, 82, 83, 115, 82, 115, 114, 83, 84, 116, 83, 116, 115, 84, 85, 117, 84, 117, 116, 85, 86, 118, 85, 118, 117, 86, 87, 119, 86, 119, 118, 87, 88, 120, 87, 120, 119, 88, 89, 121, 88, 121, 120, 89, 90, 122, 89, 122, 121, 90, 91, 123, 90, 123, 122, 91, 92, 124, 91, 124, 123, 92, 93, 125, 92, 125, 124, 93, 94, 126, 93, 126, 125, 94, 95, 127, 94, 127, 126, 96, 97, 129, 96, 129, 128, 97, 98, 130, 97, 130, 129, 98, 99, 131, 98, 131, 130, 99, 100, 132, 99, 132, 131, 100, 101, 133, 100, 133, 132, 101, 102, 134, 101, 134, 133, 102, 103, 135, 102, 135, 134, 103, 104, 136, 103, 136, 135, 104, 105, 137, 104, 137, 136, 105, 106, 138, 105, 138, 137, 106, 107, 139, 106, 139, 138, 107, 108, 140, 107, 140, 139, 108, 109, 141, 108, 141, 140, 109, 110, 142, 109, 142, 141, 110, 111, 143, 110, 143, 142, 111, 112, 144, 111, 144, 143, 112, 113, 145, 112, 145, 144, 113, 114, 146, 113, 146, 145, 114, 115, 147, 114, 147, 146, 115, 116, 148, 115, 148, 147, 116, 117, 149, 116, 149, 148, 117, 118, 150, 117, 150, 149, 118, 119, 151, 118, 151, 150, 119, 120, 152, 119, 152, 151, 120, 121, 153, 120, 153, 152, 121, 122, 154, 121, 154, 153, 122, 123, 155, 122, 155, 154, 123, 124, 156, 123, 156, 155, 124, 125, 157, 124, 157, 156, 125, 126, 158, 125, 158, 157, 126, 127, 159, 126, 159, 158, 128, 129, 161, 128, 161, 160, 129, 130, 162, 129, 162, 161, 130, 131, 163, 130, 163, 162, 131, 132, 164, 131, 164, 163, 132, 133, 165, 132, 165, 164, 133, 134, 166, 133, 166, 165, 134, 135, 167, 134, 167, 166, 135, 136, 168, 135, 168, 167, 136, 137, 169, 136, 169, 168, 137, 138, 170, 137, 170, 169, 138, 139, 171, 138, 171, 170, 139, 140, 172, 139, 172, 171, 140, 141, 173, 140, 173, 172, 141, 142, 174, 141, 174, 173, 142, 143, 175, 142, 175, 174, 143, 144, 176, 143, 176, 175, 144, 145, 177, 144, 177, 176, 145, 146, 178, 145, 178, 177, 146, 147, 179, 146, 179, 178, 147, 148, 180, 147, 180, 179, 148, 149, 181, 148, 181, 180, 149, 150, 182, 149, 182, 181, 150, 151, 183, 150, 183, 182, 151, 152, 184, 151, 184, 183, 152, 153, 185, 152, 185, 184, 153, 154, 186, 153, 186, 185, 154, 155, 187, 154, 187, 186, 155, 156, 188, 155, 188, 187, 156, 157, 189, 156, 189, 188, 157, 158, 190, 157, 190, 189, 158, 159, 191, 158, 191, 190, 160, 161, 193, 160, 193, 192, 161, 162, 194, 161, 194, 193, 162, 163, 195, 162, 195, 194, 163, 164, 196, 163, 196, 195, 164, 165, 197, 164, 197, 196, 165, 166, 198, 165, 198, 197, 166, 167, 199, 166, 199, 198, 167, 168, 200, 167, 200, 199, 168, 169, 201, 168, 201, 200, 169, 170, 202, 169, 202, 201, 170, 171, 203, 170, 203, 202, 171, 172, 204, 171, 204, 203, 172, 173, 205, 172, 205, 204, 173, 174, 206, 173, 206, 205, 174, 175, 207, 174, 207, 206, 175, 176, 208, 175, 208, 207, 176, 177, 209, 176, 209, 208, 177, 178, 210, 177, 210, 209, 178, 179, 211, 178, 211, 210, 179, 180, 212, 179, 212, 211, 180, 181, 213, 180, 213, 212, 181, 182, 214, 181, 214, 213, 182, 183, 215, 182, 215, 214, 183, 184, 216, 183, 216, 215, 184, 185, 217, 184, 217, 216, 185, 186, 218, 185, 218, 217, 186, 187, 219, 186, 219, 218, 187, 188, 220, 187, 220, 219, 188, 189, 221, 188, 221, 220, 189, 190, 222, 189, 222, 221, 190, 191, 223, 190, 223, 222, 192, 193, 225, 192, 225, 224, 193, 194, 226, 193, 226, 225, 194, 195, 227, 194, 227, 226, 195, 196, 228, 195, 228, 227, 196, 197, 229, 196, 229, 228, 197, 198, 230, 197, 230, 229, 198, 199, 231, 198, 231, 230, 199, 200, 232, 199, 232, 231, 200, 201, 233, 200, 233, 232, 201, 202, 234, 201, 234, 233, 202, 203, 235, 202, 235, 234, 203, 204, 236, 203, 236, 235, 204, 205, 237, 204, 237, 236, 205, 206, 238, 205, 238, 237, 206, 207, 239, 206, 239, 238, 207, 208, 240, 207, 240, 239, 208, 209, 241, 208, 241, 240, 209, 210, 242, 209, 242, 241, 210, 211, 243, 210, 243, 242, 211, 212, 244, 211, 244, 243, 212, 213, 245, 212, 245, 244, 213, 214, 246, 213, 246, 245, 214, 215, 247, 214, 247, 246, 215, 216, 248, 215, 248, 247, 216, 217, 249, 216, 249, 248, 217, 218, 250, 217, 250, 249, 218, 219, 251, 218, 251, 250, 219, 220, 252, 219, 252, 251, 220, 221, 253, 220, 253, 252, 221, 222, 254, 221, 254, 253, 222, 223, 255, 222, 255, 254, 224, 225, 257, 224, 257, 256, 225, 226, 258, 225, 258, 257, 226, 227, 259, 226, 259, 258, 227, 228, 260, 227, 260, 259, 228, 229, 261, 228, 261, 260, 229, 230, 262, 229, 262, 261, 230, 231, 263, 230, 263, 262, 231, 232, 264, 231, 264, 263, 232, 233, 265, 232, 265, 264, 233, 234, 266, 233, 266, 265, 234, 235, 267, 234, 267, 266, 235, 236, 268, 235, 268, 267, 236, 237, 269, 236, 269, 268, 237, 238, 270, 237, 270, 269, 238, 239, 271, 238, 271, 270, 239, 240, 272, 239, 272, 271, 240, 241, 273, 240, 273, 272, 241, 242, 274, 241, 274, 273, 242, 243, 275, 242, 275, 274, 243, 244, 276, 243, 276, 275, 244, 245, 277, 244, 277, 276, 245, 246, 278, 245, 278, 277, 246, 247, 279, 246, 279, 278, 247, 248, 280, 247, 280, 279, 248, 249, 281, 248, 281, 280, 249, 250, 282, 249, 282, 281, 250, 251, 283, 250, 283, 282, 251, 252, 284, 251, 284, 283, 252, 253, 285, 252, 285, 284, 253, 254, 286, 253, 286, 285, 254, 255, 287, 254, 287, 286, 256, 257, 289, 256, 289, 288, 257, 258, 290, 257, 290, 289, 258, 259, 291, 258, 291, 290, 259, 260, 292, 259, 292, 291, 260, 261, 293, 260, 293, 292, 261, 262, 294, 261, 294, 293, 262, 263, 295, 262, 295, 294, 263, 264, 296, 263, 296, 295, 264, 265, 297, 264, 297, 296, 265, 266, 298, 265, 298, 297, 266, 267, 299, 266, 299, 298, 267, 268, 300, 267, 300, 299, 268, 269, 301, 268, 301, 300, 269, 270, 302, 269, 302, 301, 270, 271, 303, 270, 303, 302, 271, 272, 304, 271, 304, 303, 272, 273, 305, 272, 305, 304, 273, 274, 306, 273, 306, 305, 274, 275, 307, 274, 307, 306, 275, 276, 308, 275, 308, 307, 276, 277, 309, 276, 309, 308, 277, 278, 310, 277, 310, 309, 278, 279, 311, 278, 311, 310, 279, 280, 312, 279, 312, 311, 280, 281, 313, 280, 313, 312, 281, 282, 314, 281, 314, 313, 282, 283, 315, 282, 315, 314, 283, 284, 316, 283, 316, 315, 284, 285, 317, 284, 317, 316, 285, 286, 318, 285, 318, 317, 286, 287, 319, 286, 319, 318, 288, 289, 321, 288, 321, 320, 289, 290, 322, 289, 322, 321, 290, 291, 323, 290, 323, 322, 291, 292, 324, 291, 324, 323, 292, 293, 325, 292, 325, 324, 293, 294, 326, 293, 326, 325, 294, 295, 327, 294, 327, 326, 295, 296, 328, 295, 328, 327, 296, 297, 329, 296, 329, 328, 297, 298, 330, 297, 330, 329, 298, 299, 331, 298, 331, 330, 299, 300, 332, 299, 332, 331, 300, 301, 333, 300, 333, 332, 301, 302, 334, 301, 334, 333, 302, 303, 335, 302, 335, 334, 303, 304, 336, 303, 336, 335, 304, 305, 337, 304, 337, 336, 305, 306, 338, 305, 338, 337, 306, 307, 339, 306, 339, 338, 307, 308, 340, 307, 340, 339, 308, 309, 341, 308, 341, 340, 309, 310, 342, 309, 342, 341, 310, 311, 343, 310, 343, 342, 311, 312, 344, 311, 344, 343, 312, 313, 345, 312, 345, 344, 313, 314, 346, 313, 346, 345, 314, 315, 347, 314, 347, 346, 315, 316, 348, 315, 348, 347, 316, 317, 349, 316, 349, 348, 317, 318, 350, 317, 350, 349, 318, 319, 351, 318, 351, 350, 320, 321, 353, 320, 353, 352, 321, 322, 354, 321, 354, 353, 322, 323, 355, 322, 355, 354, 323, 324, 356, 323, 356, 355, 324, 325, 357, 324, 357, 356, 325, 326, 358, 325, 358, 357, 326, 327, 359, 326, 359, 358, 327, 328, 360, 327, 360, 359, 328, 329, 361, 328, 361, 360, 329, 330, 362, 329, 362, 361, 330, 331, 363, 330, 363, 362, 331, 332, 364, 331, 364, 363, 332, 333, 365, 332, 365, 364, 333, 334, 366, 333, 366, 365, 334, 335, 367, 334, 367, 366, 335, 336, 368, 335, 368, 367, 336, 337, 369, 336, 369, 368, 337, 338, 370, 337, 370, 369, 338, 339, 371, 338, 371, 370, 339, 340, 372, 339, 372, 371, 340, 341, 373, 340, 373, 372, 341, 342, 374, 341, 374, 373, 342, 343, 375, 342, 375, 374, 343, 344, 376, 343, 376, 375, 344, 345, 377, 344, 377, 376, 345, 346, 378, 345, 378, 377, 346, 347, 379, 346, 379, 378, 347, 348, 380, 347, 380, 379, 348, 349, 381, 348, 381, 380, 349, 350, 382, 349, 382, 381, 350, 351, 383, 350, 383, 382, 352, 353, 385, 352, 385, 384, 353, 354, 386, 353, 386, 385, 354, 355, 387, 354, 387, 386, 355, 356, 388, 355, 388, 387, 356, 357, 389, 356, 389, 388, 357, 358, 390, 357, 390, 389, 358, 359, 391, 358, 391, 390, 359, 360, 392, 359, 392, 391, 360, 361, 393, 360, 393, 392, 361, 362, 394, 361, 394, 393, 362, 363, 395, 362, 395, 394, 363, 364, 396, 363, 396, 395, 364, 365, 397, 364, 397, 396, 365, 366, 398, 365, 398, 397, 366, 367, 399, 366, 399, 398, 367, 368, 400, 367, 400, 399, 368, 369, 401, 368, 401, 400, 369, 370, 402, 369, 402, 401, 370, 371, 403, 370, 403, 402, 371, 372, 404, 371, 404, 403, 372, 373, 405, 372, 405, 404, 373, 374, 406, 373, 406, 405, 374, 375, 407, 374, 407, 406, 375, 376, 408, 375, 408, 407, 376, 377, 409, 376, 409, 408, 377, 378, 410, 377, 410, 409, 378, 379, 411, 378, 411, 410, 379, 380, 412, 379, 412, 411, 380, 381, 413, 380, 413, 412, 381, 382, 414, 381, 414, 413, 382, 383, 415, 382, 415, 414, 384, 385, 417, 384, 417, 416, 385, 386, 418, 385, 418, 417, 386, 387, 419, 386, 419, 418, 387, 388, 420, 387, 420, 419, 388, 389, 421, 388, 421, 420, 389, 390, 422, 389, 422, 421, 390, 391, 423, 390, 423, 422, 391, 392, 424, 391, 424, 423, 392, 393, 425, 392, 425, 424, 393, 394, 426, 393, 426, 425, 394, 395, 427, 394, 427, 426, 395, 396, 428, 395, 428, 427, 396, 397, 429, 396, 429, 428, 397, 398, 430, 397, 430, 429, 398, 399, 431, 398, 431, 430, 399, 400, 432, 399, 432, 431, 400, 401, 433, 400, 433, 432, 401, 402, 434, 401, 434, 433, 402, 403, 435, 402, 435, 434, 403, 404, 436, 403, 436, 435, 404, 405, 437, 404, 437, 436, 405, 406, 438, 405, 438, 437, 406, 407, 439, 406, 439, 438, 407, 408, 440, 407, 440, 439, 408, 409, 441, 408, 441, 440, 409, 410, 442, 409, 442, 441, 410, 411, 443, 410, 443, 442, 411, 412, 444, 411, 444, 443, 412, 413, 445, 412, 445, 444, 413, 414, 446, 413, 446, 445, 414, 415, 447, 414, 447, 446, 416, 417, 449, 416, 449, 448, 417, 418, 450, 417, 450, 449, 418, 419, 451, 418, 451, 450, 419, 420, 452, 419, 452, 451, 420, 421, 453, 420, 453, 452, 421, 422, 454, 421, 454, 453, 422, 423, 455, 422, 455, 454, 423, 424, 456, 423, 456, 455, 424, 425, 457, 424, 457, 456, 425, 426, 458, 425, 458, 457, 426, 427, 459, 426, 459, 458, 427, 428, 460, 427, 460, 459, 428, 429, 461, 428, 461, 460, 429, 430, 462, 429, 462, 461, 430, 431, 463, 430, 463, 462, 431, 432, 464, 431, 464, 463, 432, 433, 465, 432, 465, 464, 433, 434, 466, 433, 466, 465, 434, 435, 467, 434, 467, 466, 435, 436, 468, 435, 468, 467, 436, 437, 469, 436, 469, 468, 437, 438, 470, 437, 470, 469, 438, 439, 471, 438, 471, 470, 439, 440, 472, 439, 472, 471, 440, 441, 473, 440, 473, 472, 441, 442, 474, 441, 474, 473, 442, 443, 475, 442, 475, 474, 443, 444, 476, 443, 476, 475, 444, 445, 477, 444, 477, 476, 445, 446, 478, 445, 478, 477, 446, 447, 479, 446, 479, 478, 448, 449, 481, 448, 481, 480, 449, 450, 482, 449, 482, 481, 450, 451, 483, 450, 483, 482, 451, 452, 484, 451, 484, 483, 452, 453, 485, 452, 485, 484, 453, 454, 486, 453, 486, 485, 454, 455, 487, 454, 487, 486, 455, 456, 488, 455, 488, 487, 456, 457, 489, 456, 489, 488, 457, 458, 490, 457, 490, 489, 458, 459, 491, 458, 491, 490, 459, 460, 492, 459, 492, 491, 460, 461, 493, 460, 493, 492, 461, 462, 494, 461, 494, 493, 462, 463, 495, 462, 495, 494, 463, 464, 496, 463, 496, 495, 464, 465, 497, 464, 497, 496, 465, 466, 498, 465, 498, 497, 466, 467, 499, 466, 499, 498, 467, 468, 500, 467, 500, 499, 468, 469, 501, 468, 501, 500, 469, 470, 502, 469, 502, 501, 470, 471, 503, 470, 503, 502, 471, 472, 504, 471, 504, 503, 472, 473, 505, 472, 505, 504, 473, 474, 506, 473, 506, 505, 474, 475, 507, 474, 507, 506, 475, 476, 508, 475, 508, 507, 476, 477, 509, 476, 509, 508, 477, 478, 510, 477, 510, 509, 478, 479, 511, 478, 511, 510, 480, 481, 513, 480, 513, 512, 481, 482, 514, 481, 514, 513, 482, 483, 515, 482, 515, 514, 483, 484, 516, 483, 516, 515, 484, 485, 517, 484, 517, 516, 485, 486, 518, 485, 518, 517, 486, 487, 519, 486, 519, 518, 487, 488, 520, 487, 520, 519, 488, 489, 521, 488, 521, 520, 489, 490, 522, 489, 522, 521, 490, 491, 523, 490, 523, 522, 491, 492, 524, 491, 524, 523, 492, 493, 525, 492, 525, 524, 493, 494, 526, 493, 526, 525, 494, 495, 527, 494, 527, 526, 495, 496, 528, 495, 528, 527, 496, 497, 529, 496, 529, 528, 497, 498, 530, 497, 530, 529, 498, 499, 531, 498, 531, 530, 499, 500, 532, 499, 532, 531, 500, 501, 533, 500, 533, 532, 501, 502, 534, 501, 534, 533, 502, 503, 535, 502, 535, 534, 503, 504, 536, 503, 536, 535, 504, 505, 537, 504, 537, 536, 505, 506, 538, 505, 538, 537, 506, 507, 539, 506, 539, 538, 507, 508, 540, 507, 540, 539, 508, 509, 541, 508, 541, 540, 509, 510, 542, 509, 542, 541, 510, 511, 543, 510, 543, 542, 512, 513, 545, 512, 545, 544, 513, 514, 546, 513, 546, 545, 514, 515, 547, 514, 547, 546, 515, 516, 548, 515, 548, 547, 516, 517, 549, 516, 549, 548, 517, 518, 550, 517, 550, 549, 518, 519, 551, 518, 551, 550, 519, 520, 552, 519, 552, 551, 520, 521, 553, 520, 553, 552, 521, 522, 554, 521, 554, 553, 522, 523, 555, 522, 555, 554, 523, 524, 556, 523, 556, 555, 524, 525, 557, 524, 557, 556, 525, 526, 558, 525, 558, 557, 526, 527, 559, 526, 559, 558, 527, 528, 560, 527, 560, 559, 528, 529, 561, 528, 561, 560, 529, 530, 562, 529, 562, 561, 530, 531, 563, 530, 563, 562, 531, 532, 564, 531, 564, 563, 532, 533, 565, 532, 565, 564, 533, 534, 566, 533, 566, 565, 534, 535, 567, 534, 567, 566, 535, 536, 568, 535, 568, 567, 536, 537, 569, 536, 569, 568, 537, 538, 570, 537, 570, 569, 538, 539, 571, 538, 571, 570, 539, 540, 572, 539, 572, 571, 540, 541, 573, 540, 573, 572, 541, 542, 574, 541, 574, 573, 542, 543, 575, 542, 575, 574, 544, 545, 577, 544, 577, 576, 545, 546, 578, 545, 578, 577, 546, 547, 579, 546, 579, 578, 547, 548, 580, 547, 580, 579, 548, 549, 581, 548, 581, 580, 549, 550, 582, 549, 582, 581, 550, 551, 583, 550, 583, 582, 551, 552, 584, 551, 584, 583, 552, 553, 585, 552, 585, 584, 553, 554, 586, 553, 586, 585, 554, 555, 587, 554, 587, 586, 555, 556, 588, 555, 588, 587, 556, 557, 589, 556, 589, 588, 557, 558, 590, 557, 590, 589, 558, 559, 591, 558, 591, 590, 559, 560, 592, 559, 592, 591, 560, 561, 593, 560, 593, 592, 561, 562, 594, 561, 594, 593, 562, 563, 595, 562, 595, 594, 563, 564, 596, 563, 596, 595, 564, 565, 597, 564, 597, 596, 565, 566, 598, 565, 598, 597, 566, 567, 599, 566, 599, 598, 567, 568, 600, 567, 600, 599, 568, 569, 601, 568, 601, 600, 569, 570, 602, 569, 602, 601, 570, 571, 603, 570, 603, 602, 571, 572, 604, 571, 604, 603, 572, 573, 605, 572, 605, 604, 573, 574, 606, 573, 606, 605, 574, 575, 607, 574, 607, 606, 576, 577, 609, 576, 609, 608, 577, 578, 610, 577, 610, 609, 578, 579, 611, 578, 611, 610, 579, 580, 612, 579, 612, 611, 580, 581, 613, 580, 613, 612, 581, 582, 614, 581, 614, 613, 582, 583, 615, 582, 615, 614, 583, 584, 616, 583, 616, 615, 584, 585, 617, 584, 617, 616, 585, 586, 618, 585, 618, 617, 586, 587, 619, 586, 619, 618, 587, 588, 620, 587, 620, 619, 588, 589, 621, 588, 621, 620, 589, 590, 622, 589, 622, 621, 590, 591, 623, 590, 623, 622, 591, 592, 624, 591, 624, 623, 592, 593, 625, 592, 625, 624, 593, 594, 626, 593, 626, 625, 594, 595, 627, 594, 627, 626, 595, 596, 628, 595, 628, 627, 596, 597, 629, 596, 629, 628, 597, 598, 630, 597, 630, 629, 598, 599, 631, 598, 631, 630, 599, 600, 632, 599, 632, 631, 600, 601, 633, 600, 633, 632, 601, 602, 634, 601, 634, 633, 602, 603, 635, 602, 635, 634, 603, 604, 636, 603, 636, 635, 604, 605, 637, 604, 637, 636, 605, 606, 638, 605, 638, 637, 606, 607, 639, 606, 639, 638, 608, 609, 641, 608, 641, 640, 609, 610, 642, 609, 642, 641, 610, 611, 643, 610, 643, 642, 611, 612, 644, 611, 644, 643, 612, 613, 645, 612, 645, 644, 613, 614, 646, 613, 646, 645, 614, 615, 647, 614, 647, 646, 615, 616, 648, 615, 648, 647, 616, 617, 649, 616, 649, 648, 617, 618, 650, 617, 650, 649, 618, 619, 651, 618, 651, 650, 619, 620, 652, 619, 652, 651, 620, 621, 653, 620, 653, 652, 621, 622, 654, 621, 654, 653, 622, 623, 655, 622, 655, 654, 623, 624, 656, 623, 656, 655, 624, 625, 657, 624, 657, 656, 625, 626, 658, 625, 658, 657, 626, 627, 659, 626, 659, 658, 627, 628, 660, 627, 660, 659, 628, 629, 661, 628, 661, 660, 629, 630, 662, 629, 662, 661, 630, 631, 663, 630, 663, 662, 631, 632, 664, 631, 664, 663, 632, 633, 665, 632, 665, 664, 633, 634, 666, 633, 666, 665, 634, 635, 667, 634, 667, 666, 635, 636, 668, 635, 668, 667, 636, 637, 669, 636, 669, 668, 637, 638, 670, 637, 670, 669, 638, 639, 671, 638, 671, 670, 640, 641, 673, 640, 673, 672, 641, 642, 674, 641, 674, 673, 642, 643, 675, 642, 675, 674, 643, 644, 676, 643, 676, 675, 644, 645, 677, 644, 677, 676, 645, 646, 678, 645, 678, 677, 646, 647, 679, 646, 679, 678, 647, 648, 680, 647, 680, 679, 648, 649, 681, 648, 681, 680, 649, 650, 682, 649, 682, 681, 650, 651, 683, 650, 683, 682, 651, 652, 684, 651, 684, 683, 652, 653, 685, 652, 685, 684, 653, 654, 686, 653, 686, 685, 654, 655, 687, 654, 687, 686, 655, 656, 688, 655, 688, 687, 656, 657, 689, 656, 689, 688, 657, 658, 690, 657, 690, 689, 658, 659, 691, 658, 691, 690, 659, 660, 692, 659, 692, 691, 660, 661, 693, 660, 693, 692, 661, 662, 694, 661, 694, 693, 662, 663, 695, 662, 695, 694, 663, 664, 696, 663, 696, 695, 664, 665, 697, 664, 697, 696, 665, 666, 698, 665, 698, 697, 666, 667, 699, 666, 699, 698, 667, 668, 700, 667, 700, 699, 668, 669, 701, 668, 701, 700, 669, 670, 702, 669, 702, 701, 670, 671, 703, 670, 703, 702, 672, 673, 705, 672, 705, 704, 673, 674, 706, 673, 706, 705, 674, 675, 707, 674, 707, 706, 675, 676, 708, 675, 708, 707, 676, 677, 709, 676, 709, 708, 677, 678, 710, 677, 710, 709, 678, 679, 711, 678, 711, 710, 679, 680, 712, 679, 712, 711, 680, 681, 713, 680, 713, 712, 681, 682, 714, 681, 714, 713, 682, 683, 715, 682, 715, 714, 683, 684, 716, 683, 716, 715, 684, 685, 717, 684, 717, 716, 685, 686, 718, 685, 718, 717, 686, 687, 719, 686, 719, 718, 687, 688, 720, 687, 720, 719, 688, 689, 721, 688, 721, 720, 689, 690, 722, 689, 722, 721, 690, 691, 723, 690, 723, 722, 691, 692, 724, 691, 724, 723, 692, 693, 725, 692, 725, 724, 693, 694, 726, 693, 726, 725, 694, 695, 727, 694, 727, 726, 695, 696, 728, 695, 728, 727, 696, 697, 729, 696, 729, 728, 697, 698, 730, 697, 730, 729, 698, 699, 731, 698, 731, 730, 699, 700, 732, 699, 732, 731, 700, 701, 733, 700, 733, 732, 701, 702, 734, 701, 734, 733, 702, 703, 735, 702, 735, 734, 704, 705, 737, 704, 737, 736, 705, 706, 738, 705, 738, 737, 706, 707, 739, 706, 739, 738, 707, 708, 740, 707, 740, 739, 708, 709, 741, 708, 741, 740, 709, 710, 742, 709, 742, 741, 710, 711, 743, 710, 743, 742, 711, 712, 744, 711, 744, 743, 712, 713, 745, 712, 745, 744, 713, 714, 746, 713, 746, 745, 714, 715, 747, 714, 747, 746, 715, 716, 748, 715, 748, 747, 716, 717, 749, 716, 749, 748, 717, 718, 750, 717, 750, 749, 718, 719, 751, 718, 751, 750, 719, 720, 752, 719, 752, 751, 720, 721, 753, 720, 753, 752, 721, 722, 754, 721, 754, 753, 722, 723, 755, 722, 755, 754, 723, 724, 756, 723, 756, 755, 724, 725, 757, 724, 757, 756, 725, 726, 758, 725, 758, 757, 726, 727, 759, 726, 759, 758, 727, 728, 760, 727, 760, 759, 728, 729, 761, 728, 761, 760, 729, 730, 762, 729, 762, 761, 730, 731, 763, 730, 763, 762, 731, 732, 764, 731, 764, 763, 732, 733, 765, 732, 765, 764, 733, 734, 766, 733, 766, 765, 734, 735, 767, 734, 767, 766, 736, 737, 769, 736, 769, 768, 737, 738, 770, 737, 770, 769, 738, 739, 771, 738, 771, 770, 739, 740, 772, 739, 772, 771, 740, 741, 773, 740, 773, 772, 741, 742, 774, 741, 774, 773, 742, 743, 775, 742, 775, 774, 743, 744, 776, 743, 776, 775, 744, 745, 777, 744, 777, 776, 745, 746, 778, 745, 778, 777, 746, 747, 779, 746, 779, 778, 747, 748, 780, 747, 780, 779, 748, 749, 781, 748, 781, 780, 749, 750, 782, 749, 782, 781, 750, 751, 783, 750, 783, 782, 751, 752, 784, 751, 784, 783, 752, 753, 785, 752, 785, 784, 753, 754, 786, 753, 786, 785, 754, 755, 787, 754, 787, 786, 755, 756, 788, 755, 788, 787, 756, 757, 789, 756, 789, 788, 757, 758, 790, 757, 790, 789, 758, 759, 791, 758, 791, 790, 759, 760, 792, 759, 792, 791, 760, 761, 793, 760, 793, 792, 761, 762, 794, 761, 794, 793, 762, 763, 795, 762, 795, 794, 763, 764, 796, 763, 796, 795, 764, 765, 797, 764, 797, 796, 765, 766, 798, 765, 798, 797, 766, 767, 799, 766, 799, 798, 768, 769, 801, 768, 801, 800, 769, 770, 802, 769, 802, 801, 770, 771, 803, 770, 803, 802, 771, 772, 804, 771, 804, 803, 772, 773, 805, 772, 805, 804, 773, 774, 806, 773, 806, 805, 774, 775, 807, 774, 807, 806, 775, 776, 808, 775, 808, 807, 776, 777, 809, 776, 809, 808, 777, 778, 810, 777, 810, 809, 778, 779, 811, 778, 811, 810, 779, 780, 812, 779, 812, 811, 780, 781, 813, 780, 813, 812, 781, 782, 814, 781, 814, 813, 782, 783, 815, 782, 815, 814, 783, 784, 816, 783, 816, 815, 784, 785, 817, 784, 817, 816, 785, 786, 818, 785, 818, 817, 786, 787, 819, 786, 819, 818, 787, 788, 820, 787, 820, 819, 788, 789, 821, 788, 821, 820, 789, 790, 822, 789, 822, 821, 790, 791, 823, 790, 823, 822, 791, 792, 824, 791, 824, 823, 792, 793, 825, 792, 825, 824, 793, 794, 826, 793, 826, 825, 794, 795, 827, 794, 827, 826, 795, 796, 828, 795, 828, 827, 796, 797, 829, 796, 829, 828, 797, 798, 830, 797, 830, 829, 798, 799, 831, 798, 831, 830, 800, 801, 833, 800, 833, 832, 801, 802, 834, 801, 834, 833, 802, 803, 835, 802, 835, 834, 803, 804, 836, 803, 836, 835, 804, 805, 837, 804, 837, 836, 805, 806, 838, 805, 838, 837, 806, 807, 839, 806, 839, 838, 807, 808, 840, 807, 840, 839, 808, 809, 841, 808, 841, 840, 809, 810, 842, 809, 842, 841, 810, 811, 843, 810, 843, 842, 811, 812, 844, 811, 844, 843, 812, 813, 845, 812, 845, 844, 813, 814, 846, 813, 846, 845, 814, 815, 847, 814, 847, 846, 815, 816, 848, 815, 848, 847, 816, 817, 849, 816, 849, 848, 817, 818, 850, 817, 850, 849, 818, 819, 851, 818, 851, 850, 819, 820, 852, 819, 852, 851, 820, 821, 853, 820, 853, 852, 821, 822, 854, 821, 854, 853, 822, 823, 855, 822, 855, 854, 823, 824, 856, 823, 856, 855, 824, 825, 857, 824, 857, 856, 825, 826, 858, 825, 858, 857, 826, 827, 859, 826, 859, 858, 827, 828, 860, 827, 860, 859, 828, 829, 861, 828, 861, 860, 829, 830, 862, 829, 862, 861, 830, 831, 863, 830, 863, 862, 832, 833, 865, 832, 865, 864, 833, 834, 866, 833, 866, 865, 834, 835, 867, 834, 867, 866, 835, 836, 868, 835, 868, 867, 836, 837, 869, 836, 869, 868, 837, 838, 870, 837, 870, 869, 838, 839, 871, 838, 871, 870, 839, 840, 872, 839, 872, 871, 840, 841, 873, 840, 873, 872, 841, 842, 874, 841, 874, 873, 842, 843, 875, 842, 875, 874, 843, 844, 876, 843, 876, 875, 844, 845, 877, 844, 877, 876, 845, 846, 878, 845, 878, 877, 846, 847, 879, 846, 879, 878, 847, 848, 880, 847, 880, 879, 848, 849, 881, 848, 881, 880, 849, 850, 882, 849, 882, 881, 850, 851, 883, 850, 883, 882, 851, 852, 884, 851, 884, 883, 852, 853, 885, 852, 885, 884, 853, 854, 886, 853, 886, 885, 854, 855, 887, 854, 887, 886, 855, 856, 888, 855, 888, 887, 856, 857, 889, 856, 889, 888, 857, 858, 890, 857, 890, 889, 858, 859, 891, 858, 891, 890, 859, 860, 892, 859, 892, 891, 860, 861, 893, 860, 893, 892, 861, 862, 894, 861, 894, 893, 862, 863, 895, 862, 895, 894, 864, 865, 897, 864, 897, 896, 865, 866, 898, 865, 898, 897, 866, 867, 899, 866, 899, 898, 867, 868, 900, 867, 900, 899, 868, 869, 901, 868, 901, 900, 869, 870, 902, 869, 902, 901, 870, 871, 903, 870, 903, 902, 871, 872, 904, 871, 904, 903, 872, 873, 905, 872, 905, 904, 873, 874, 906, 873, 906, 905, 874, 875, 907, 874, 907, 906, 875, 876, 908, 875, 908, 907, 876, 877, 909, 876, 909, 908, 877, 878, 910, 877, 910, 909, 878, 879, 911, 878, 911, 910, 879, 880, 912, 879, 912, 911, 880, 881, 913, 880, 913, 912, 881, 882, 914, 881, 914, 913, 882, 883, 915, 882, 915, 914, 883, 884, 916, 883, 916, 915, 884, 885, 917, 884, 917, 916, 885, 886, 918, 885, 918, 917, 886, 887, 919, 886, 919, 918, 887, 888, 920, 887, 920, 919, 888, 889, 921, 888, 921, 920, 889, 890, 922, 889, 922, 921, 890, 891, 923, 890, 923, 922, 891, 892, 924, 891, 924, 923, 892, 893, 925, 892, 925, 924, 893, 894, 926, 893, 926, 925, 894, 895, 927, 894, 927, 926, 896, 897, 929, 896, 929, 928, 897, 898, 930, 897, 930, 929, 898, 899, 931, 898, 931, 930, 899, 900, 932, 899, 932, 931, 900, 901, 933, 900, 933, 932, 901, 902, 934, 901, 934, 933, 902, 903, 935, 902, 935, 934, 903, 904, 936, 903, 936, 935, 904, 905, 937, 904, 937, 936, 905, 906, 938, 905, 938, 937, 906, 907, 939, 906, 939, 938, 907, 908, 940, 907, 940, 939, 908, 909, 941, 908, 941, 940, 909, 910, 942, 909, 942, 941, 910, 911, 943, 910, 943, 942, 911, 912, 944, 911, 944, 943, 912, 913, 945, 912, 945, 944, 913, 914, 946, 913, 946, 945, 914, 915, 947, 914, 947, 946, 915, 916, 948, 915, 948, 947, 916, 917, 949, 916, 949, 948, 917, 918, 950, 917, 950, 949, 918, 919, 951, 918, 951, 950, 919, 920, 952, 919, 952, 951, 920, 921, 953, 920, 953, 952, 921, 922, 954, 921, 954, 953, 922, 923, 955, 922, 955, 954, 923, 924, 956, 923, 956, 955, 924, 925, 957, 924, 957, 956, 925, 926, 958, 925, 958, 957, 926, 927, 959, 926, 959, 958, 928, 929, 961, 928, 961, 960, 929, 930, 962, 929, 962, 961, 930, 931, 963, 930, 963, 962, 931, 932, 964, 931, 964, 963, 932, 933, 965, 932, 965, 964, 933, 934, 966, 933, 966, 965, 934, 935, 967, 934, 967, 966, 935, 936, 968, 935, 968, 967, 936, 937, 969, 936, 969, 968, 937, 938, 970, 937, 970, 969, 938, 939, 971, 938, 971, 970, 939, 940, 972, 939, 972, 971, 940, 941, 973, 940, 973, 972, 941, 942, 974, 941, 974, 973, 942, 943, 975, 942, 975, 974, 943, 944, 976, 943, 976, 975, 944, 945, 977, 944, 977, 976, 945, 946, 978, 945, 978, 977, 946, 947, 979, 946, 979, 978, 947, 948, 980, 947, 980, 979, 948, 949, 981, 948, 981, 980, 949, 950, 982, 949, 982, 981, 950, 951, 983, 950, 983, 982, 951, 952, 984, 951, 984, 983, 952, 953, 985, 952, 985, 984, 953, 954, 986, 953, 986, 985, 954, 955, 987, 954, 987, 986, 955, 956, 988, 955, 988, 987, 956, 957, 989, 956, 989, 988, 957, 958, 990, 957, 990, 989, 958, 959, 991, 958, 991, 990, 960, 961, 993, 960, 993, 992, 961, 962, 994, 961, 994, 993, 962, 963, 995, 962, 995, 994, 963, 964, 996, 963, 996, 995, 964, 965, 997, 964, 997, 996, 965, 966, 998, 965, 998, 997, 966, 967, 999, 966, 999, 998, 967, 968, 1000, 967, 1000, 999, 968, 969, 1001, 968, 1001, 1000, 969, 970, 1002, 969, 1002, 1001, 970, 971, 1003, 970, 1003, 1002, 971, 972, 1004, 971, 1004, 1003, 972, 973, 1005, 972, 1005, 1004, 973, 974, 1006, 973, 1006, 1005, 974, 975, 1007, 974, 1007, 1006, 975, 976, 1008, 975, 1008, 1007, 976, 977, 1009, 976, 1009, 1008, 977, 978, 1010, 977, 1010, 1009, 978, 979, 1011, 978, 1011, 1010, 979, 980, 1012, 979, 1012, 1011, 980, 981, 1013, 980, 1013, 1012, 981, 982, 1014, 981, 1014, 1013, 982, 983, 1015, 982, 1015, 1014, 983, 984, 1016, 983, 1016, 1015, 984, 985, 1017, 984, 1017, 1016, 985, 986, 1018, 985, 1018, 1017, 986, 987, 1019, 986, 1019, 1018, 987, 988, 1020, 987, 1020, 1019, 988, 989, 1021, 988, 1021, 1020, 989, 990, 1022, 989, 1022, 1021, 990, 991, 1023, 990, 1023, 1022] point3f[] points = [(0, 0, 20), (20, 0, 20), (40, 0, 20), (60, 0, 20), (80, 0, 20), (100, 0, 20), (120, 0, 20), (140, 0, 20), (160, 0, 20), (180, 0, 20), (200, 0, 20), (220, 0, 20), (240, 0, 20), (260, 0, 20), (280, 0, 20), (300, 0, 20), (320, 0, 20), (340, 0, 20), (360, 0, 20), (380, 0, 20), (400, 0, 20), (420, 0, 20), (440, 0, 20), (460, 0, 20), (480, 0, 20), (500, 0, 20), (520, 0, 20), (540, 0, 20), (560, 0, 20), (580, 0, 20), (600, 0, 20), (620, 0, 20), (0, 20, 20), (20, 20, 20), (40, 20, 20), (60, 20, 20), (80, 20, 20), (100, 20, 20), (120, 20, 20), (140, 20, 20), (160, 20, 20), (180, 20, 20), (200, 20, 20), (220, 20, 20), (240, 20, 20), (260, 20, 20), (280, 20, 20), (300, 20, 20), (320, 20, 20), (340, 20, 20), (360, 20, 20), (380, 20, 20), (400, 20, 20), (420, 20, 20), (440, 20, 20), (460, 20, 20), (480, 20, 20), (500, 20, 20), (520, 20, 20), (540, 20, 20), (560, 20, 20), (580, 20, 20), (600, 20, 20), (620, 20, 20), (0, 40, 20), (20, 40, 20), (40, 40, 20), (60, 40, 20), (80, 40, 20), (100, 40, 20), (120, 40, 20), (140, 40, 20), (160, 40, 20), (180, 40, 20), (200, 40, 20), (220, 40, 20), (240, 40, 20), (260, 40, 20), (280, 40, 20), (300, 40, 20), (320, 40, 20), (340, 40, 20), (360, 40, 20), (380, 40, 20), (400, 40, 20), (420, 40, 20), (440, 40, 20), (460, 40, 20), (480, 40, 20), (500, 40, 20), (520, 40, 20), (540, 40, 20), (560, 40, 20), (580, 40, 20), (600, 40, 20), (620, 40, 20), (0, 60, 20), (20, 60, 20), (40, 60, 20), (60, 60, 20), (80, 60, 20), (100, 60, 20), (120, 60, 20), (140, 60, 20), (160, 60, 20), (180, 60, 20), (200, 60, 20), (220, 60, 20), (240, 60, 20), (260, 60, 20), (280, 60, 20), (300, 60, 20), (320, 60, 20), (340, 60, 20), (360, 60, 20), (380, 60, 20), (400, 60, 20), (420, 60, 20), (440, 60, 20), (460, 60, 20), (480, 60, 20), (500, 60, 20), (520, 60, 20), (540, 60, 20), (560, 60, 20), (580, 60, 20), (600, 60, 20), (620, 60, 20), (0, 80, 20), (20, 80, 20), (40, 80, 20), (60, 80, 20), (80, 80, 20), (100, 80, 20), (120, 80, 20), (140, 80, 20), (160, 80, 20), (180, 80, 20), (200, 80, 20), (220, 80, 20), (240, 80, 20), (260, 80, 20), (280, 80, 20), (300, 80, 20), (320, 80, 20), (340, 80, 20), (360, 80, 20), (380, 80, 20), (400, 80, 20), (420, 80, 20), (440, 80, 20), (460, 80, 20), (480, 80, 20), (500, 80, 20), (520, 80, 20), (540, 80, 20), (560, 80, 20), (580, 80, 20), (600, 80, 20), (620, 80, 20), (0, 100, 20), (20, 100, 20), (40, 100, 20), (60, 100, 20), (80, 100, 20), (100, 100, 20), (120, 100, 20), (140, 100, 20), (160, 100, 20), (180, 100, 20), (200, 100, 20), (220, 100, 20), (240, 100, 20), (260, 100, 20), (280, 100, 20), (300, 100, 20), (320, 100, 20), (340, 100, 20), (360, 100, 20), (380, 100, 20), (400, 100, 20), (420, 100, 20), (440, 100, 20), (460, 100, 20), (480, 100, 20), (500, 100, 20), (520, 100, 20), (540, 100, 20), (560, 100, 20), (580, 100, 20), (600, 100, 20), (620, 100, 20), (0, 120, 20), (20, 120, 20), (40, 120, 20), (60, 120, 20), (80, 120, 20), (100, 120, 20), (120, 120, 20), (140, 120, 20), (160, 120, 20), (180, 120, 20), (200, 120, 20), (220, 120, 20), (240, 120, 20), (260, 120, 20), (280, 120, 20), (300, 120, 20), (320, 120, 20), (340, 120, 20), (360, 120, 20), (380, 120, 20), (400, 120, 20), (420, 120, 20), (440, 120, 20), (460, 120, 20), (480, 120, 20), (500, 120, 20), (520, 120, 20), (540, 120, 20), (560, 120, 20), (580, 120, 20), (600, 120, 20), (620, 120, 20), (0, 140, 20), (20, 140, 20), (40, 140, 20), (60, 140, 20), (80, 140, 20), (100, 140, 20), (120, 140, 20), (140, 140, 20), (160, 140, 20), (180, 140, 20), (200, 140, 20), (220, 140, 20), (240, 140, 20), (260, 140, 20), (280, 140, 20), (300, 140, 20), (320, 140, 20), (340, 140, 20), (360, 140, 20), (380, 140, 20), (400, 140, 20), (420, 140, 20), (440, 140, 20), (460, 140, 20), (480, 140, 20), (500, 140, 20), (520, 140, 20), (540, 140, 20), (560, 140, 20), (580, 140, 20), (600, 140, 20), (620, 140, 20), (0, 160, 20), (20, 160, 20), (40, 160, 20), (60, 160, 20), (80, 160, 20), (100, 160, 20), (120, 160, 20), (140, 160, 20), (160, 160, 20), (180, 160, 20), (200, 160, 20), (220, 160, 20), (240, 160, 20), (260, 160, 20), (280, 160, 20), (300, 160, 20), (320, 160, 20), (340, 160, 20), (360, 160, 20), (380, 160, 20), (400, 160, 20), (420, 160, 20), (440, 160, 20), (460, 160, 20), (480, 160, 20), (500, 160, 20), (520, 160, 20), (540, 160, 20), (560, 160, 20), (580, 160, 20), (600, 160, 20), (620, 160, 20), (0, 180, 20), (20, 180, 20), (40, 180, 20), (60, 180, 20), (80, 180, 20), (100, 180, 20), (120, 180, 20), (140, 180, 20), (160, 180, 20), (180, 180, 20), (200, 180, 20), (220, 180, 20), (240, 180, 20), (260, 180, 20), (280, 180, 20), (300, 180, 20), (320, 180, 20), (340, 180, 20), (360, 180, 20), (380, 180, 20), (400, 180, 20), (420, 180, 20), (440, 180, 20), (460, 180, 20), (480, 180, 20), (500, 180, 20), (520, 180, 20), (540, 180, 20), (560, 180, 20), (580, 180, 20), (600, 180, 20), (620, 180, 20), (0, 200, 20), (20, 200, 20), (40, 200, 20), (60, 200, 20), (80, 200, 20), (100, 200, 20), (120, 200, 20), (140, 200, 20), (160, 200, 20), (180, 200, 20), (200, 200, 20), (220, 200, 20), (240, 200, 20), (260, 200, 20), (280, 200, 20), (300, 200, 20), (320, 200, 20), (340, 200, 20), (360, 200, 20), (380, 200, 20), (400, 200, 20), (420, 200, 20), (440, 200, 20), (460, 200, 20), (480, 200, 20), (500, 200, 20), (520, 200, 20), (540, 200, 20), (560, 200, 20), (580, 200, 20), (600, 200, 20), (620, 200, 20), (0, 220, 20), (20, 220, 20), (40, 220, 20), (60, 220, 20), (80, 220, 20), (100, 220, 20), (120, 220, 20), (140, 220, 20), (160, 220, 20), (180, 220, 20), (200, 220, 20), (220, 220, 20), (240, 220, 20), (260, 220, 20), (280, 220, 20), (300, 220, 20), (320, 220, 20), (340, 220, 20), (360, 220, 20), (380, 220, 20), (400, 220, 20), (420, 220, 20), (440, 220, 20), (460, 220, 20), (480, 220, 20), (500, 220, 20), (520, 220, 20), (540, 220, 20), (560, 220, 20), (580, 220, 20), (600, 220, 20), (620, 220, 20), (0, 240, 20), (20, 240, 20), (40, 240, 20), (60, 240, 20), (80, 240, 20), (100, 240, 20), (120, 240, 20), (140, 240, 20), (160, 240, 20), (180, 240, 20), (200, 240, 20), (220, 240, 20), (240, 240, 20), (260, 240, 20), (280, 240, 20), (300, 240, 20), (320, 240, 20), (340, 240, 20), (360, 240, 20), (380, 240, 20), (400, 240, 20), (420, 240, 20), (440, 240, 20), (460, 240, 20), (480, 240, 20), (500, 240, 20), (520, 240, 20), (540, 240, 20), (560, 240, 20), (580, 240, 20), (600, 240, 20), (620, 240, 20), (0, 260, 20), (20, 260, 20), (40, 260, 20), (60, 260, 20), (80, 260, 20), (100, 260, 20), (120, 260, 20), (140, 260, 20), (160, 260, 20), (180, 260, 20), (200, 260, 20), (220, 260, 20), (240, 260, 20), (260, 260, 20), (280, 260, 20), (300, 260, 20), (320, 260, 20), (340, 260, 20), (360, 260, 20), (380, 260, 20), (400, 260, 20), (420, 260, 20), (440, 260, 20), (460, 260, 20), (480, 260, 20), (500, 260, 20), (520, 260, 20), (540, 260, 20), (560, 260, 20), (580, 260, 20), (600, 260, 20), (620, 260, 20), (0, 280, 20), (20, 280, 20), (40, 280, 20), (60, 280, 20), (80, 280, 20), (100, 280, 20), (120, 280, 20), (140, 280, 20), (160, 280, 20), (180, 280, 20), (200, 280, 20), (220, 280, 20), (240, 280, 20), (260, 280, 20), (280, 280, 20), (300, 280, 20), (320, 280, 20), (340, 280, 20), (360, 280, 20), (380, 280, 20), (400, 280, 20), (420, 280, 20), (440, 280, 20), (460, 280, 20), (480, 280, 20), (500, 280, 20), (520, 280, 20), (540, 280, 20), (560, 280, 20), (580, 280, 20), (600, 280, 20), (620, 280, 20), (0, 300, 20), (20, 300, 20), (40, 300, 20), (60, 300, 20), (80, 300, 20), (100, 300, 20), (120, 300, 20), (140, 300, 20), (160, 300, 20), (180, 300, 20), (200, 300, 20), (220, 300, 20), (240, 300, 20), (260, 300, 20), (280, 300, 20), (300, 300, 20), (320, 300, 20), (340, 300, 20), (360, 300, 20), (380, 300, 20), (400, 300, 20), (420, 300, 20), (440, 300, 20), (460, 300, 20), (480, 300, 20), (500, 300, 20), (520, 300, 20), (540, 300, 20), (560, 300, 20), (580, 300, 20), (600, 300, 20), (620, 300, 20), (0, 320, 20), (20, 320, 20), (40, 320, 20), (60, 320, 20), (80, 320, 20), (100, 320, 20), (120, 320, 20), (140, 320, 20), (160, 320, 20), (180, 320, 20), (200, 320, 20), (220, 320, 20), (240, 320, 20), (260, 320, 20), (280, 320, 20), (300, 320, 20), (320, 320, 20), (340, 320, 20), (360, 320, 20), (380, 320, 20), (400, 320, 20), (420, 320, 20), (440, 320, 20), (460, 320, 20), (480, 320, 20), (500, 320, 20), (520, 320, 20), (540, 320, 20), (560, 320, 20), (580, 320, 20), (600, 320, 20), (620, 320, 20), (0, 340, 20), (20, 340, 20), (40, 340, 20), (60, 340, 20), (80, 340, 20), (100, 340, 20), (120, 340, 20), (140, 340, 20), (160, 340, 20), (180, 340, 20), (200, 340, 20), (220, 340, 20), (240, 340, 20), (260, 340, 20), (280, 340, 20), (300, 340, 20), (320, 340, 20), (340, 340, 20), (360, 340, 20), (380, 340, 20), (400, 340, 20), (420, 340, 20), (440, 340, 20), (460, 340, 20), (480, 340, 20), (500, 340, 20), (520, 340, 20), (540, 340, 20), (560, 340, 20), (580, 340, 20), (600, 340, 20), (620, 340, 20), (0, 360, 20), (20, 360, 20), (40, 360, 20), (60, 360, 20), (80, 360, 20), (100, 360, 20), (120, 360, 20), (140, 360, 20), (160, 360, 20), (180, 360, 20), (200, 360, 20), (220, 360, 20), (240, 360, 20), (260, 360, 20), (280, 360, 20), (300, 360, 20), (320, 360, 20), (340, 360, 20), (360, 360, 20), (380, 360, 20), (400, 360, 20), (420, 360, 20), (440, 360, 20), (460, 360, 20), (480, 360, 20), (500, 360, 20), (520, 360, 20), (540, 360, 20), (560, 360, 20), (580, 360, 20), (600, 360, 20), (620, 360, 20), (0, 380, 20), (20, 380, 20), (40, 380, 20), (60, 380, 20), (80, 380, 20), (100, 380, 20), (120, 380, 20), (140, 380, 20), (160, 380, 20), (180, 380, 20), (200, 380, 20), (220, 380, 20), (240, 380, 20), (260, 380, 20), (280, 380, 20), (300, 380, 20), (320, 380, 20), (340, 380, 20), (360, 380, 20), (380, 380, 20), (400, 380, 20), (420, 380, 20), (440, 380, 20), (460, 380, 20), (480, 380, 20), (500, 380, 20), (520, 380, 20), (540, 380, 20), (560, 380, 20), (580, 380, 20), (600, 380, 20), (620, 380, 20), (0, 400, 20), (20, 400, 20), (40, 400, 20), (60, 400, 20), (80, 400, 20), (100, 400, 20), (120, 400, 20), (140, 400, 20), (160, 400, 20), (180, 400, 20), (200, 400, 20), (220, 400, 20), (240, 400, 20), (260, 400, 20), (280, 400, 20), (300, 400, 20), (320, 400, 20), (340, 400, 20), (360, 400, 20), (380, 400, 20), (400, 400, 20), (420, 400, 20), (440, 400, 20), (460, 400, 20), (480, 400, 20), (500, 400, 20), (520, 400, 20), (540, 400, 20), (560, 400, 20), (580, 400, 20), (600, 400, 20), (620, 400, 20), (0, 420, 20), (20, 420, 20), (40, 420, 20), (60, 420, 20), (80, 420, 20), (100, 420, 20), (120, 420, 20), (140, 420, 20), (160, 420, 20), (180, 420, 20), (200, 420, 20), (220, 420, 20), (240, 420, 20), (260, 420, 20), (280, 420, 20), (300, 420, 20), (320, 420, 20), (340, 420, 20), (360, 420, 20), (380, 420, 20), (400, 420, 20), (420, 420, 20), (440, 420, 20), (460, 420, 20), (480, 420, 20), (500, 420, 20), (520, 420, 20), (540, 420, 20), (560, 420, 20), (580, 420, 20), (600, 420, 20), (620, 420, 20), (0, 440, 20), (20, 440, 20), (40, 440, 20), (60, 440, 20), (80, 440, 20), (100, 440, 20), (120, 440, 20), (140, 440, 20), (160, 440, 20), (180, 440, 20), (200, 440, 20), (220, 440, 20), (240, 440, 20), (260, 440, 20), (280, 440, 20), (300, 440, 20), (320, 440, 20), (340, 440, 20), (360, 440, 20), (380, 440, 20), (400, 440, 20), (420, 440, 20), (440, 440, 20), (460, 440, 20), (480, 440, 20), (500, 440, 20), (520, 440, 20), (540, 440, 20), (560, 440, 20), (580, 440, 20), (600, 440, 20), (620, 440, 20), (0, 460, 20), (20, 460, 20), (40, 460, 20), (60, 460, 20), (80, 460, 20), (100, 460, 20), (120, 460, 20), (140, 460, 20), (160, 460, 20), (180, 460, 20), (200, 460, 20), (220, 460, 20), (240, 460, 20), (260, 460, 20), (280, 460, 20), (300, 460, 20), (320, 460, 20), (340, 460, 20), (360, 460, 20), (380, 460, 20), (400, 460, 20), (420, 460, 20), (440, 460, 20), (460, 460, 20), (480, 460, 20), (500, 460, 20), (520, 460, 20), (540, 460, 20), (560, 460, 20), (580, 460, 20), (600, 460, 20), (620, 460, 20), (0, 480, 20), (20, 480, 20), (40, 480, 20), (60, 480, 20), (80, 480, 20), (100, 480, 20), (120, 480, 20), (140, 480, 20), (160, 480, 20), (180, 480, 20), (200, 480, 20), (220, 480, 20), (240, 480, 20), (260, 480, 20), (280, 480, 20), (300, 480, 20), (320, 480, 20), (340, 480, 20), (360, 480, 20), (380, 480, 20), (400, 480, 20), (420, 480, 20), (440, 480, 20), (460, 480, 20), (480, 480, 20), (500, 480, 20), (520, 480, 20), (540, 480, 20), (560, 480, 20), (580, 480, 20), (600, 480, 20), (620, 480, 20), (0, 500, 20), (20, 500, 20), (40, 500, 20), (60, 500, 20), (80, 500, 20), (100, 500, 20), (120, 500, 20), (140, 500, 20), (160, 500, 20), (180, 500, 20), (200, 500, 20), (220, 500, 20), (240, 500, 20), (260, 500, 20), (280, 500, 20), (300, 500, 20), (320, 500, 20), (340, 500, 20), (360, 500, 20), (380, 500, 20), (400, 500, 20), (420, 500, 20), (440, 500, 20), (460, 500, 20), (480, 500, 20), (500, 500, 20), (520, 500, 20), (540, 500, 20), (560, 500, 20), (580, 500, 20), (600, 500, 20), (620, 500, 20), (0, 520, 20), (20, 520, 20), (40, 520, 20), (60, 520, 20), (80, 520, 20), (100, 520, 20), (120, 520, 20), (140, 520, 20), (160, 520, 20), (180, 520, 20), (200, 520, 20), (220, 520, 20), (240, 520, 20), (260, 520, 20), (280, 520, 20), (300, 520, 20), (320, 520, 20), (340, 520, 20), (360, 520, 20), (380, 520, 20), (400, 520, 20), (420, 520, 20), (440, 520, 20), (460, 520, 20), (480, 520, 20), (500, 520, 20), (520, 520, 20), (540, 520, 20), (560, 520, 20), (580, 520, 20), (600, 520, 20), (620, 520, 20), (0, 540, 20), (20, 540, 20), (40, 540, 20), (60, 540, 20), (80, 540, 20), (100, 540, 20), (120, 540, 20), (140, 540, 20), (160, 540, 20), (180, 540, 20), (200, 540, 20), (220, 540, 20), (240, 540, 20), (260, 540, 20), (280, 540, 20), (300, 540, 20), (320, 540, 20), (340, 540, 20), (360, 540, 20), (380, 540, 20), (400, 540, 20), (420, 540, 20), (440, 540, 20), (460, 540, 20), (480, 540, 20), (500, 540, 20), (520, 540, 20), (540, 540, 20), (560, 540, 20), (580, 540, 20), (600, 540, 20), (620, 540, 20), (0, 560, 20), (20, 560, 20), (40, 560, 20), (60, 560, 20), (80, 560, 20), (100, 560, 20), (120, 560, 20), (140, 560, 20), (160, 560, 20), (180, 560, 20), (200, 560, 20), (220, 560, 20), (240, 560, 20), (260, 560, 20), (280, 560, 20), (300, 560, 20), (320, 560, 20), (340, 560, 20), (360, 560, 20), (380, 560, 20), (400, 560, 20), (420, 560, 20), (440, 560, 20), (460, 560, 20), (480, 560, 20), (500, 560, 20), (520, 560, 20), (540, 560, 20), (560, 560, 20), (580, 560, 20), (600, 560, 20), (620, 560, 20), (0, 580, 20), (20, 580, 20), (40, 580, 20), (60, 580, 20), (80, 580, 20), (100, 580, 20), (120, 580, 20), (140, 580, 20), (160, 580, 20), (180, 580, 20), (200, 580, 20), (220, 580, 20), (240, 580, 20), (260, 580, 20), (280, 580, 20), (300, 580, 20), (320, 580, 20), (340, 580, 20), (360, 580, 20), (380, 580, 20), (400, 580, 20), (420, 580, 20), (440, 580, 20), (460, 580, 20), (480, 580, 20), (500, 580, 20), (520, 580, 20), (540, 580, 20), (560, 580, 20), (580, 580, 20), (600, 580, 20), (620, 580, 20), (0, 600, 20), (20, 600, 20), (40, 600, 20), (60, 600, 20), (80, 600, 20), (100, 600, 20), (120, 600, 20), (140, 600, 20), (160, 600, 20), (180, 600, 20), (200, 600, 20), (220, 600, 20), (240, 600, 20), (260, 600, 20), (280, 600, 20), (300, 600, 20), (320, 600, 20), (340, 600, 20), (360, 600, 20), (380, 600, 20), (400, 600, 20), (420, 600, 20), (440, 600, 20), (460, 600, 20), (480, 600, 20), (500, 600, 20), (520, 600, 20), (540, 600, 20), (560, 600, 20), (580, 600, 20), (600, 600, 20), (620, 600, 20), (0, 620, 20), (20, 620, 20), (40, 620, 20), (60, 620, 20), (80, 620, 20), (100, 620, 20), (120, 620, 20), (140, 620, 20), (160, 620, 20), (180, 620, 20), (200, 620, 20), (220, 620, 20), (240, 620, 20), (260, 620, 20), (280, 620, 20), (300, 620, 20), (320, 620, 20), (340, 620, 20), (360, 620, 20), (380, 620, 20), (400, 620, 20), (420, 620, 20), (440, 620, 20), (460, 620, 20), (480, 620, 20), (500, 620, 20), (520, 620, 20), (540, 620, 20), (560, 620, 20), (580, 620, 20), (600, 620, 20), (620, 620, 20)] color3f[] primvars:displayColor = [(0.2784314, 0.64705884, 1)] } def ComputeGraphSettings "computegraphSettings" { custom token evaluator:type = "pull" custom token graph:path = "/defaultPrim" } def ComputeNode "deformer1" { custom token node:type = "omni.graph.examples.cpp.Deformer1" point3f[] inputs:points.connect = </defaultPrim/inputGrid.points> float inputs:multiplier = 3 point3f[] outputs:points } def ComputeGraph "innerPullGraph" { custom token graph:name = "pullgraph" def ComputeNode "deformer2" { custom token node:type = "omni.graph.examples.cpp.Deformer1" point3f[] inputs:points.connect = </defaultPrim/deformer1.outputs:points> float inputs:multiplier = 10 point3f[] outputs:points } def ComputeNode "deformer3" { custom token node:type = "omni.graph.examples.cpp.Deformer2" point3f[] inputs:points.connect = </defaultPrim/innerPullGraph/deformer2.outputs:points> float inputs:threshold = 10 point3f[] outputs:points } def ComputeGraphSettings "computegraphSettings" { custom token evaluator:type = "pull" } } def Mesh "outputGrid" { uniform bool doubleSided = 1 int[] faceVertexCounts = [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 1, 33, 0, 33, 32, 1, 2, 34, 1, 34, 33, 2, 3, 35, 2, 35, 34, 3, 4, 36, 3, 36, 35, 4, 5, 37, 4, 37, 36, 5, 6, 38, 5, 38, 37, 6, 7, 39, 6, 39, 38, 7, 8, 40, 7, 40, 39, 8, 9, 41, 8, 41, 40, 9, 10, 42, 9, 42, 41, 10, 11, 43, 10, 43, 42, 11, 12, 44, 11, 44, 43, 12, 13, 45, 12, 45, 44, 13, 14, 46, 13, 46, 45, 14, 15, 47, 14, 47, 46, 15, 16, 48, 15, 48, 47, 16, 17, 49, 16, 49, 48, 17, 18, 50, 17, 50, 49, 18, 19, 51, 18, 51, 50, 19, 20, 52, 19, 52, 51, 20, 21, 53, 20, 53, 52, 21, 22, 54, 21, 54, 53, 22, 23, 55, 22, 55, 54, 23, 24, 56, 23, 56, 55, 24, 25, 57, 24, 57, 56, 25, 26, 58, 25, 58, 57, 26, 27, 59, 26, 59, 58, 27, 28, 60, 27, 60, 59, 28, 29, 61, 28, 61, 60, 29, 30, 62, 29, 62, 61, 30, 31, 63, 30, 63, 62, 32, 33, 65, 32, 65, 64, 33, 34, 66, 33, 66, 65, 34, 35, 67, 34, 67, 66, 35, 36, 68, 35, 68, 67, 36, 37, 69, 36, 69, 68, 37, 38, 70, 37, 70, 69, 38, 39, 71, 38, 71, 70, 39, 40, 72, 39, 72, 71, 40, 41, 73, 40, 73, 72, 41, 42, 74, 41, 74, 73, 42, 43, 75, 42, 75, 74, 43, 44, 76, 43, 76, 75, 44, 45, 77, 44, 77, 76, 45, 46, 78, 45, 78, 77, 46, 47, 79, 46, 79, 78, 47, 48, 80, 47, 80, 79, 48, 49, 81, 48, 81, 80, 49, 50, 82, 49, 82, 81, 50, 51, 83, 50, 83, 82, 51, 52, 84, 51, 84, 83, 52, 53, 85, 52, 85, 84, 53, 54, 86, 53, 86, 85, 54, 55, 87, 54, 87, 86, 55, 56, 88, 55, 88, 87, 56, 57, 89, 56, 89, 88, 57, 58, 90, 57, 90, 89, 58, 59, 91, 58, 91, 90, 59, 60, 92, 59, 92, 91, 60, 61, 93, 60, 93, 92, 61, 62, 94, 61, 94, 93, 62, 63, 95, 62, 95, 94, 64, 65, 97, 64, 97, 96, 65, 66, 98, 65, 98, 97, 66, 67, 99, 66, 99, 98, 67, 68, 100, 67, 100, 99, 68, 69, 101, 68, 101, 100, 69, 70, 102, 69, 102, 101, 70, 71, 103, 70, 103, 102, 71, 72, 104, 71, 104, 103, 72, 73, 105, 72, 105, 104, 73, 74, 106, 73, 106, 105, 74, 75, 107, 74, 107, 106, 75, 76, 108, 75, 108, 107, 76, 77, 109, 76, 109, 108, 77, 78, 110, 77, 110, 109, 78, 79, 111, 78, 111, 110, 79, 80, 112, 79, 112, 111, 80, 81, 113, 80, 113, 112, 81, 82, 114, 81, 114, 113, 82, 83, 115, 82, 115, 114, 83, 84, 116, 83, 116, 115, 84, 85, 117, 84, 117, 116, 85, 86, 118, 85, 118, 117, 86, 87, 119, 86, 119, 118, 87, 88, 120, 87, 120, 119, 88, 89, 121, 88, 121, 120, 89, 90, 122, 89, 122, 121, 90, 91, 123, 90, 123, 122, 91, 92, 124, 91, 124, 123, 92, 93, 125, 92, 125, 124, 93, 94, 126, 93, 126, 125, 94, 95, 127, 94, 127, 126, 96, 97, 129, 96, 129, 128, 97, 98, 130, 97, 130, 129, 98, 99, 131, 98, 131, 130, 99, 100, 132, 99, 132, 131, 100, 101, 133, 100, 133, 132, 101, 102, 134, 101, 134, 133, 102, 103, 135, 102, 135, 134, 103, 104, 136, 103, 136, 135, 104, 105, 137, 104, 137, 136, 105, 106, 138, 105, 138, 137, 106, 107, 139, 106, 139, 138, 107, 108, 140, 107, 140, 139, 108, 109, 141, 108, 141, 140, 109, 110, 142, 109, 142, 141, 110, 111, 143, 110, 143, 142, 111, 112, 144, 111, 144, 143, 112, 113, 145, 112, 145, 144, 113, 114, 146, 113, 146, 145, 114, 115, 147, 114, 147, 146, 115, 116, 148, 115, 148, 147, 116, 117, 149, 116, 149, 148, 117, 118, 150, 117, 150, 149, 118, 119, 151, 118, 151, 150, 119, 120, 152, 119, 152, 151, 120, 121, 153, 120, 153, 152, 121, 122, 154, 121, 154, 153, 122, 123, 155, 122, 155, 154, 123, 124, 156, 123, 156, 155, 124, 125, 157, 124, 157, 156, 125, 126, 158, 125, 158, 157, 126, 127, 159, 126, 159, 158, 128, 129, 161, 128, 161, 160, 129, 130, 162, 129, 162, 161, 130, 131, 163, 130, 163, 162, 131, 132, 164, 131, 164, 163, 132, 133, 165, 132, 165, 164, 133, 134, 166, 133, 166, 165, 134, 135, 167, 134, 167, 166, 135, 136, 168, 135, 168, 167, 136, 137, 169, 136, 169, 168, 137, 138, 170, 137, 170, 169, 138, 139, 171, 138, 171, 170, 139, 140, 172, 139, 172, 171, 140, 141, 173, 140, 173, 172, 141, 142, 174, 141, 174, 173, 142, 143, 175, 142, 175, 174, 143, 144, 176, 143, 176, 175, 144, 145, 177, 144, 177, 176, 145, 146, 178, 145, 178, 177, 146, 147, 179, 146, 179, 178, 147, 148, 180, 147, 180, 179, 148, 149, 181, 148, 181, 180, 149, 150, 182, 149, 182, 181, 150, 151, 183, 150, 183, 182, 151, 152, 184, 151, 184, 183, 152, 153, 185, 152, 185, 184, 153, 154, 186, 153, 186, 185, 154, 155, 187, 154, 187, 186, 155, 156, 188, 155, 188, 187, 156, 157, 189, 156, 189, 188, 157, 158, 190, 157, 190, 189, 158, 159, 191, 158, 191, 190, 160, 161, 193, 160, 193, 192, 161, 162, 194, 161, 194, 193, 162, 163, 195, 162, 195, 194, 163, 164, 196, 163, 196, 195, 164, 165, 197, 164, 197, 196, 165, 166, 198, 165, 198, 197, 166, 167, 199, 166, 199, 198, 167, 168, 200, 167, 200, 199, 168, 169, 201, 168, 201, 200, 169, 170, 202, 169, 202, 201, 170, 171, 203, 170, 203, 202, 171, 172, 204, 171, 204, 203, 172, 173, 205, 172, 205, 204, 173, 174, 206, 173, 206, 205, 174, 175, 207, 174, 207, 206, 175, 176, 208, 175, 208, 207, 176, 177, 209, 176, 209, 208, 177, 178, 210, 177, 210, 209, 178, 179, 211, 178, 211, 210, 179, 180, 212, 179, 212, 211, 180, 181, 213, 180, 213, 212, 181, 182, 214, 181, 214, 213, 182, 183, 215, 182, 215, 214, 183, 184, 216, 183, 216, 215, 184, 185, 217, 184, 217, 216, 185, 186, 218, 185, 218, 217, 186, 187, 219, 186, 219, 218, 187, 188, 220, 187, 220, 219, 188, 189, 221, 188, 221, 220, 189, 190, 222, 189, 222, 221, 190, 191, 223, 190, 223, 222, 192, 193, 225, 192, 225, 224, 193, 194, 226, 193, 226, 225, 194, 195, 227, 194, 227, 226, 195, 196, 228, 195, 228, 227, 196, 197, 229, 196, 229, 228, 197, 198, 230, 197, 230, 229, 198, 199, 231, 198, 231, 230, 199, 200, 232, 199, 232, 231, 200, 201, 233, 200, 233, 232, 201, 202, 234, 201, 234, 233, 202, 203, 235, 202, 235, 234, 203, 204, 236, 203, 236, 235, 204, 205, 237, 204, 237, 236, 205, 206, 238, 205, 238, 237, 206, 207, 239, 206, 239, 238, 207, 208, 240, 207, 240, 239, 208, 209, 241, 208, 241, 240, 209, 210, 242, 209, 242, 241, 210, 211, 243, 210, 243, 242, 211, 212, 244, 211, 244, 243, 212, 213, 245, 212, 245, 244, 213, 214, 246, 213, 246, 245, 214, 215, 247, 214, 247, 246, 215, 216, 248, 215, 248, 247, 216, 217, 249, 216, 249, 248, 217, 218, 250, 217, 250, 249, 218, 219, 251, 218, 251, 250, 219, 220, 252, 219, 252, 251, 220, 221, 253, 220, 253, 252, 221, 222, 254, 221, 254, 253, 222, 223, 255, 222, 255, 254, 224, 225, 257, 224, 257, 256, 225, 226, 258, 225, 258, 257, 226, 227, 259, 226, 259, 258, 227, 228, 260, 227, 260, 259, 228, 229, 261, 228, 261, 260, 229, 230, 262, 229, 262, 261, 230, 231, 263, 230, 263, 262, 231, 232, 264, 231, 264, 263, 232, 233, 265, 232, 265, 264, 233, 234, 266, 233, 266, 265, 234, 235, 267, 234, 267, 266, 235, 236, 268, 235, 268, 267, 236, 237, 269, 236, 269, 268, 237, 238, 270, 237, 270, 269, 238, 239, 271, 238, 271, 270, 239, 240, 272, 239, 272, 271, 240, 241, 273, 240, 273, 272, 241, 242, 274, 241, 274, 273, 242, 243, 275, 242, 275, 274, 243, 244, 276, 243, 276, 275, 244, 245, 277, 244, 277, 276, 245, 246, 278, 245, 278, 277, 246, 247, 279, 246, 279, 278, 247, 248, 280, 247, 280, 279, 248, 249, 281, 248, 281, 280, 249, 250, 282, 249, 282, 281, 250, 251, 283, 250, 283, 282, 251, 252, 284, 251, 284, 283, 252, 253, 285, 252, 285, 284, 253, 254, 286, 253, 286, 285, 254, 255, 287, 254, 287, 286, 256, 257, 289, 256, 289, 288, 257, 258, 290, 257, 290, 289, 258, 259, 291, 258, 291, 290, 259, 260, 292, 259, 292, 291, 260, 261, 293, 260, 293, 292, 261, 262, 294, 261, 294, 293, 262, 263, 295, 262, 295, 294, 263, 264, 296, 263, 296, 295, 264, 265, 297, 264, 297, 296, 265, 266, 298, 265, 298, 297, 266, 267, 299, 266, 299, 298, 267, 268, 300, 267, 300, 299, 268, 269, 301, 268, 301, 300, 269, 270, 302, 269, 302, 301, 270, 271, 303, 270, 303, 302, 271, 272, 304, 271, 304, 303, 272, 273, 305, 272, 305, 304, 273, 274, 306, 273, 306, 305, 274, 275, 307, 274, 307, 306, 275, 276, 308, 275, 308, 307, 276, 277, 309, 276, 309, 308, 277, 278, 310, 277, 310, 309, 278, 279, 311, 278, 311, 310, 279, 280, 312, 279, 312, 311, 280, 281, 313, 280, 313, 312, 281, 282, 314, 281, 314, 313, 282, 283, 315, 282, 315, 314, 283, 284, 316, 283, 316, 315, 284, 285, 317, 284, 317, 316, 285, 286, 318, 285, 318, 317, 286, 287, 319, 286, 319, 318, 288, 289, 321, 288, 321, 320, 289, 290, 322, 289, 322, 321, 290, 291, 323, 290, 323, 322, 291, 292, 324, 291, 324, 323, 292, 293, 325, 292, 325, 324, 293, 294, 326, 293, 326, 325, 294, 295, 327, 294, 327, 326, 295, 296, 328, 295, 328, 327, 296, 297, 329, 296, 329, 328, 297, 298, 330, 297, 330, 329, 298, 299, 331, 298, 331, 330, 299, 300, 332, 299, 332, 331, 300, 301, 333, 300, 333, 332, 301, 302, 334, 301, 334, 333, 302, 303, 335, 302, 335, 334, 303, 304, 336, 303, 336, 335, 304, 305, 337, 304, 337, 336, 305, 306, 338, 305, 338, 337, 306, 307, 339, 306, 339, 338, 307, 308, 340, 307, 340, 339, 308, 309, 341, 308, 341, 340, 309, 310, 342, 309, 342, 341, 310, 311, 343, 310, 343, 342, 311, 312, 344, 311, 344, 343, 312, 313, 345, 312, 345, 344, 313, 314, 346, 313, 346, 345, 314, 315, 347, 314, 347, 346, 315, 316, 348, 315, 348, 347, 316, 317, 349, 316, 349, 348, 317, 318, 350, 317, 350, 349, 318, 319, 351, 318, 351, 350, 320, 321, 353, 320, 353, 352, 321, 322, 354, 321, 354, 353, 322, 323, 355, 322, 355, 354, 323, 324, 356, 323, 356, 355, 324, 325, 357, 324, 357, 356, 325, 326, 358, 325, 358, 357, 326, 327, 359, 326, 359, 358, 327, 328, 360, 327, 360, 359, 328, 329, 361, 328, 361, 360, 329, 330, 362, 329, 362, 361, 330, 331, 363, 330, 363, 362, 331, 332, 364, 331, 364, 363, 332, 333, 365, 332, 365, 364, 333, 334, 366, 333, 366, 365, 334, 335, 367, 334, 367, 366, 335, 336, 368, 335, 368, 367, 336, 337, 369, 336, 369, 368, 337, 338, 370, 337, 370, 369, 338, 339, 371, 338, 371, 370, 339, 340, 372, 339, 372, 371, 340, 341, 373, 340, 373, 372, 341, 342, 374, 341, 374, 373, 342, 343, 375, 342, 375, 374, 343, 344, 376, 343, 376, 375, 344, 345, 377, 344, 377, 376, 345, 346, 378, 345, 378, 377, 346, 347, 379, 346, 379, 378, 347, 348, 380, 347, 380, 379, 348, 349, 381, 348, 381, 380, 349, 350, 382, 349, 382, 381, 350, 351, 383, 350, 383, 382, 352, 353, 385, 352, 385, 384, 353, 354, 386, 353, 386, 385, 354, 355, 387, 354, 387, 386, 355, 356, 388, 355, 388, 387, 356, 357, 389, 356, 389, 388, 357, 358, 390, 357, 390, 389, 358, 359, 391, 358, 391, 390, 359, 360, 392, 359, 392, 391, 360, 361, 393, 360, 393, 392, 361, 362, 394, 361, 394, 393, 362, 363, 395, 362, 395, 394, 363, 364, 396, 363, 396, 395, 364, 365, 397, 364, 397, 396, 365, 366, 398, 365, 398, 397, 366, 367, 399, 366, 399, 398, 367, 368, 400, 367, 400, 399, 368, 369, 401, 368, 401, 400, 369, 370, 402, 369, 402, 401, 370, 371, 403, 370, 403, 402, 371, 372, 404, 371, 404, 403, 372, 373, 405, 372, 405, 404, 373, 374, 406, 373, 406, 405, 374, 375, 407, 374, 407, 406, 375, 376, 408, 375, 408, 407, 376, 377, 409, 376, 409, 408, 377, 378, 410, 377, 410, 409, 378, 379, 411, 378, 411, 410, 379, 380, 412, 379, 412, 411, 380, 381, 413, 380, 413, 412, 381, 382, 414, 381, 414, 413, 382, 383, 415, 382, 415, 414, 384, 385, 417, 384, 417, 416, 385, 386, 418, 385, 418, 417, 386, 387, 419, 386, 419, 418, 387, 388, 420, 387, 420, 419, 388, 389, 421, 388, 421, 420, 389, 390, 422, 389, 422, 421, 390, 391, 423, 390, 423, 422, 391, 392, 424, 391, 424, 423, 392, 393, 425, 392, 425, 424, 393, 394, 426, 393, 426, 425, 394, 395, 427, 394, 427, 426, 395, 396, 428, 395, 428, 427, 396, 397, 429, 396, 429, 428, 397, 398, 430, 397, 430, 429, 398, 399, 431, 398, 431, 430, 399, 400, 432, 399, 432, 431, 400, 401, 433, 400, 433, 432, 401, 402, 434, 401, 434, 433, 402, 403, 435, 402, 435, 434, 403, 404, 436, 403, 436, 435, 404, 405, 437, 404, 437, 436, 405, 406, 438, 405, 438, 437, 406, 407, 439, 406, 439, 438, 407, 408, 440, 407, 440, 439, 408, 409, 441, 408, 441, 440, 409, 410, 442, 409, 442, 441, 410, 411, 443, 410, 443, 442, 411, 412, 444, 411, 444, 443, 412, 413, 445, 412, 445, 444, 413, 414, 446, 413, 446, 445, 414, 415, 447, 414, 447, 446, 416, 417, 449, 416, 449, 448, 417, 418, 450, 417, 450, 449, 418, 419, 451, 418, 451, 450, 419, 420, 452, 419, 452, 451, 420, 421, 453, 420, 453, 452, 421, 422, 454, 421, 454, 453, 422, 423, 455, 422, 455, 454, 423, 424, 456, 423, 456, 455, 424, 425, 457, 424, 457, 456, 425, 426, 458, 425, 458, 457, 426, 427, 459, 426, 459, 458, 427, 428, 460, 427, 460, 459, 428, 429, 461, 428, 461, 460, 429, 430, 462, 429, 462, 461, 430, 431, 463, 430, 463, 462, 431, 432, 464, 431, 464, 463, 432, 433, 465, 432, 465, 464, 433, 434, 466, 433, 466, 465, 434, 435, 467, 434, 467, 466, 435, 436, 468, 435, 468, 467, 436, 437, 469, 436, 469, 468, 437, 438, 470, 437, 470, 469, 438, 439, 471, 438, 471, 470, 439, 440, 472, 439, 472, 471, 440, 441, 473, 440, 473, 472, 441, 442, 474, 441, 474, 473, 442, 443, 475, 442, 475, 474, 443, 444, 476, 443, 476, 475, 444, 445, 477, 444, 477, 476, 445, 446, 478, 445, 478, 477, 446, 447, 479, 446, 479, 478, 448, 449, 481, 448, 481, 480, 449, 450, 482, 449, 482, 481, 450, 451, 483, 450, 483, 482, 451, 452, 484, 451, 484, 483, 452, 453, 485, 452, 485, 484, 453, 454, 486, 453, 486, 485, 454, 455, 487, 454, 487, 486, 455, 456, 488, 455, 488, 487, 456, 457, 489, 456, 489, 488, 457, 458, 490, 457, 490, 489, 458, 459, 491, 458, 491, 490, 459, 460, 492, 459, 492, 491, 460, 461, 493, 460, 493, 492, 461, 462, 494, 461, 494, 493, 462, 463, 495, 462, 495, 494, 463, 464, 496, 463, 496, 495, 464, 465, 497, 464, 497, 496, 465, 466, 498, 465, 498, 497, 466, 467, 499, 466, 499, 498, 467, 468, 500, 467, 500, 499, 468, 469, 501, 468, 501, 500, 469, 470, 502, 469, 502, 501, 470, 471, 503, 470, 503, 502, 471, 472, 504, 471, 504, 503, 472, 473, 505, 472, 505, 504, 473, 474, 506, 473, 506, 505, 474, 475, 507, 474, 507, 506, 475, 476, 508, 475, 508, 507, 476, 477, 509, 476, 509, 508, 477, 478, 510, 477, 510, 509, 478, 479, 511, 478, 511, 510, 480, 481, 513, 480, 513, 512, 481, 482, 514, 481, 514, 513, 482, 483, 515, 482, 515, 514, 483, 484, 516, 483, 516, 515, 484, 485, 517, 484, 517, 516, 485, 486, 518, 485, 518, 517, 486, 487, 519, 486, 519, 518, 487, 488, 520, 487, 520, 519, 488, 489, 521, 488, 521, 520, 489, 490, 522, 489, 522, 521, 490, 491, 523, 490, 523, 522, 491, 492, 524, 491, 524, 523, 492, 493, 525, 492, 525, 524, 493, 494, 526, 493, 526, 525, 494, 495, 527, 494, 527, 526, 495, 496, 528, 495, 528, 527, 496, 497, 529, 496, 529, 528, 497, 498, 530, 497, 530, 529, 498, 499, 531, 498, 531, 530, 499, 500, 532, 499, 532, 531, 500, 501, 533, 500, 533, 532, 501, 502, 534, 501, 534, 533, 502, 503, 535, 502, 535, 534, 503, 504, 536, 503, 536, 535, 504, 505, 537, 504, 537, 536, 505, 506, 538, 505, 538, 537, 506, 507, 539, 506, 539, 538, 507, 508, 540, 507, 540, 539, 508, 509, 541, 508, 541, 540, 509, 510, 542, 509, 542, 541, 510, 511, 543, 510, 543, 542, 512, 513, 545, 512, 545, 544, 513, 514, 546, 513, 546, 545, 514, 515, 547, 514, 547, 546, 515, 516, 548, 515, 548, 547, 516, 517, 549, 516, 549, 548, 517, 518, 550, 517, 550, 549, 518, 519, 551, 518, 551, 550, 519, 520, 552, 519, 552, 551, 520, 521, 553, 520, 553, 552, 521, 522, 554, 521, 554, 553, 522, 523, 555, 522, 555, 554, 523, 524, 556, 523, 556, 555, 524, 525, 557, 524, 557, 556, 525, 526, 558, 525, 558, 557, 526, 527, 559, 526, 559, 558, 527, 528, 560, 527, 560, 559, 528, 529, 561, 528, 561, 560, 529, 530, 562, 529, 562, 561, 530, 531, 563, 530, 563, 562, 531, 532, 564, 531, 564, 563, 532, 533, 565, 532, 565, 564, 533, 534, 566, 533, 566, 565, 534, 535, 567, 534, 567, 566, 535, 536, 568, 535, 568, 567, 536, 537, 569, 536, 569, 568, 537, 538, 570, 537, 570, 569, 538, 539, 571, 538, 571, 570, 539, 540, 572, 539, 572, 571, 540, 541, 573, 540, 573, 572, 541, 542, 574, 541, 574, 573, 542, 543, 575, 542, 575, 574, 544, 545, 577, 544, 577, 576, 545, 546, 578, 545, 578, 577, 546, 547, 579, 546, 579, 578, 547, 548, 580, 547, 580, 579, 548, 549, 581, 548, 581, 580, 549, 550, 582, 549, 582, 581, 550, 551, 583, 550, 583, 582, 551, 552, 584, 551, 584, 583, 552, 553, 585, 552, 585, 584, 553, 554, 586, 553, 586, 585, 554, 555, 587, 554, 587, 586, 555, 556, 588, 555, 588, 587, 556, 557, 589, 556, 589, 588, 557, 558, 590, 557, 590, 589, 558, 559, 591, 558, 591, 590, 559, 560, 592, 559, 592, 591, 560, 561, 593, 560, 593, 592, 561, 562, 594, 561, 594, 593, 562, 563, 595, 562, 595, 594, 563, 564, 596, 563, 596, 595, 564, 565, 597, 564, 597, 596, 565, 566, 598, 565, 598, 597, 566, 567, 599, 566, 599, 598, 567, 568, 600, 567, 600, 599, 568, 569, 601, 568, 601, 600, 569, 570, 602, 569, 602, 601, 570, 571, 603, 570, 603, 602, 571, 572, 604, 571, 604, 603, 572, 573, 605, 572, 605, 604, 573, 574, 606, 573, 606, 605, 574, 575, 607, 574, 607, 606, 576, 577, 609, 576, 609, 608, 577, 578, 610, 577, 610, 609, 578, 579, 611, 578, 611, 610, 579, 580, 612, 579, 612, 611, 580, 581, 613, 580, 613, 612, 581, 582, 614, 581, 614, 613, 582, 583, 615, 582, 615, 614, 583, 584, 616, 583, 616, 615, 584, 585, 617, 584, 617, 616, 585, 586, 618, 585, 618, 617, 586, 587, 619, 586, 619, 618, 587, 588, 620, 587, 620, 619, 588, 589, 621, 588, 621, 620, 589, 590, 622, 589, 622, 621, 590, 591, 623, 590, 623, 622, 591, 592, 624, 591, 624, 623, 592, 593, 625, 592, 625, 624, 593, 594, 626, 593, 626, 625, 594, 595, 627, 594, 627, 626, 595, 596, 628, 595, 628, 627, 596, 597, 629, 596, 629, 628, 597, 598, 630, 597, 630, 629, 598, 599, 631, 598, 631, 630, 599, 600, 632, 599, 632, 631, 600, 601, 633, 600, 633, 632, 601, 602, 634, 601, 634, 633, 602, 603, 635, 602, 635, 634, 603, 604, 636, 603, 636, 635, 604, 605, 637, 604, 637, 636, 605, 606, 638, 605, 638, 637, 606, 607, 639, 606, 639, 638, 608, 609, 641, 608, 641, 640, 609, 610, 642, 609, 642, 641, 610, 611, 643, 610, 643, 642, 611, 612, 644, 611, 644, 643, 612, 613, 645, 612, 645, 644, 613, 614, 646, 613, 646, 645, 614, 615, 647, 614, 647, 646, 615, 616, 648, 615, 648, 647, 616, 617, 649, 616, 649, 648, 617, 618, 650, 617, 650, 649, 618, 619, 651, 618, 651, 650, 619, 620, 652, 619, 652, 651, 620, 621, 653, 620, 653, 652, 621, 622, 654, 621, 654, 653, 622, 623, 655, 622, 655, 654, 623, 624, 656, 623, 656, 655, 624, 625, 657, 624, 657, 656, 625, 626, 658, 625, 658, 657, 626, 627, 659, 626, 659, 658, 627, 628, 660, 627, 660, 659, 628, 629, 661, 628, 661, 660, 629, 630, 662, 629, 662, 661, 630, 631, 663, 630, 663, 662, 631, 632, 664, 631, 664, 663, 632, 633, 665, 632, 665, 664, 633, 634, 666, 633, 666, 665, 634, 635, 667, 634, 667, 666, 635, 636, 668, 635, 668, 667, 636, 637, 669, 636, 669, 668, 637, 638, 670, 637, 670, 669, 638, 639, 671, 638, 671, 670, 640, 641, 673, 640, 673, 672, 641, 642, 674, 641, 674, 673, 642, 643, 675, 642, 675, 674, 643, 644, 676, 643, 676, 675, 644, 645, 677, 644, 677, 676, 645, 646, 678, 645, 678, 677, 646, 647, 679, 646, 679, 678, 647, 648, 680, 647, 680, 679, 648, 649, 681, 648, 681, 680, 649, 650, 682, 649, 682, 681, 650, 651, 683, 650, 683, 682, 651, 652, 684, 651, 684, 683, 652, 653, 685, 652, 685, 684, 653, 654, 686, 653, 686, 685, 654, 655, 687, 654, 687, 686, 655, 656, 688, 655, 688, 687, 656, 657, 689, 656, 689, 688, 657, 658, 690, 657, 690, 689, 658, 659, 691, 658, 691, 690, 659, 660, 692, 659, 692, 691, 660, 661, 693, 660, 693, 692, 661, 662, 694, 661, 694, 693, 662, 663, 695, 662, 695, 694, 663, 664, 696, 663, 696, 695, 664, 665, 697, 664, 697, 696, 665, 666, 698, 665, 698, 697, 666, 667, 699, 666, 699, 698, 667, 668, 700, 667, 700, 699, 668, 669, 701, 668, 701, 700, 669, 670, 702, 669, 702, 701, 670, 671, 703, 670, 703, 702, 672, 673, 705, 672, 705, 704, 673, 674, 706, 673, 706, 705, 674, 675, 707, 674, 707, 706, 675, 676, 708, 675, 708, 707, 676, 677, 709, 676, 709, 708, 677, 678, 710, 677, 710, 709, 678, 679, 711, 678, 711, 710, 679, 680, 712, 679, 712, 711, 680, 681, 713, 680, 713, 712, 681, 682, 714, 681, 714, 713, 682, 683, 715, 682, 715, 714, 683, 684, 716, 683, 716, 715, 684, 685, 717, 684, 717, 716, 685, 686, 718, 685, 718, 717, 686, 687, 719, 686, 719, 718, 687, 688, 720, 687, 720, 719, 688, 689, 721, 688, 721, 720, 689, 690, 722, 689, 722, 721, 690, 691, 723, 690, 723, 722, 691, 692, 724, 691, 724, 723, 692, 693, 725, 692, 725, 724, 693, 694, 726, 693, 726, 725, 694, 695, 727, 694, 727, 726, 695, 696, 728, 695, 728, 727, 696, 697, 729, 696, 729, 728, 697, 698, 730, 697, 730, 729, 698, 699, 731, 698, 731, 730, 699, 700, 732, 699, 732, 731, 700, 701, 733, 700, 733, 732, 701, 702, 734, 701, 734, 733, 702, 703, 735, 702, 735, 734, 704, 705, 737, 704, 737, 736, 705, 706, 738, 705, 738, 737, 706, 707, 739, 706, 739, 738, 707, 708, 740, 707, 740, 739, 708, 709, 741, 708, 741, 740, 709, 710, 742, 709, 742, 741, 710, 711, 743, 710, 743, 742, 711, 712, 744, 711, 744, 743, 712, 713, 745, 712, 745, 744, 713, 714, 746, 713, 746, 745, 714, 715, 747, 714, 747, 746, 715, 716, 748, 715, 748, 747, 716, 717, 749, 716, 749, 748, 717, 718, 750, 717, 750, 749, 718, 719, 751, 718, 751, 750, 719, 720, 752, 719, 752, 751, 720, 721, 753, 720, 753, 752, 721, 722, 754, 721, 754, 753, 722, 723, 755, 722, 755, 754, 723, 724, 756, 723, 756, 755, 724, 725, 757, 724, 757, 756, 725, 726, 758, 725, 758, 757, 726, 727, 759, 726, 759, 758, 727, 728, 760, 727, 760, 759, 728, 729, 761, 728, 761, 760, 729, 730, 762, 729, 762, 761, 730, 731, 763, 730, 763, 762, 731, 732, 764, 731, 764, 763, 732, 733, 765, 732, 765, 764, 733, 734, 766, 733, 766, 765, 734, 735, 767, 734, 767, 766, 736, 737, 769, 736, 769, 768, 737, 738, 770, 737, 770, 769, 738, 739, 771, 738, 771, 770, 739, 740, 772, 739, 772, 771, 740, 741, 773, 740, 773, 772, 741, 742, 774, 741, 774, 773, 742, 743, 775, 742, 775, 774, 743, 744, 776, 743, 776, 775, 744, 745, 777, 744, 777, 776, 745, 746, 778, 745, 778, 777, 746, 747, 779, 746, 779, 778, 747, 748, 780, 747, 780, 779, 748, 749, 781, 748, 781, 780, 749, 750, 782, 749, 782, 781, 750, 751, 783, 750, 783, 782, 751, 752, 784, 751, 784, 783, 752, 753, 785, 752, 785, 784, 753, 754, 786, 753, 786, 785, 754, 755, 787, 754, 787, 786, 755, 756, 788, 755, 788, 787, 756, 757, 789, 756, 789, 788, 757, 758, 790, 757, 790, 789, 758, 759, 791, 758, 791, 790, 759, 760, 792, 759, 792, 791, 760, 761, 793, 760, 793, 792, 761, 762, 794, 761, 794, 793, 762, 763, 795, 762, 795, 794, 763, 764, 796, 763, 796, 795, 764, 765, 797, 764, 797, 796, 765, 766, 798, 765, 798, 797, 766, 767, 799, 766, 799, 798, 768, 769, 801, 768, 801, 800, 769, 770, 802, 769, 802, 801, 770, 771, 803, 770, 803, 802, 771, 772, 804, 771, 804, 803, 772, 773, 805, 772, 805, 804, 773, 774, 806, 773, 806, 805, 774, 775, 807, 774, 807, 806, 775, 776, 808, 775, 808, 807, 776, 777, 809, 776, 809, 808, 777, 778, 810, 777, 810, 809, 778, 779, 811, 778, 811, 810, 779, 780, 812, 779, 812, 811, 780, 781, 813, 780, 813, 812, 781, 782, 814, 781, 814, 813, 782, 783, 815, 782, 815, 814, 783, 784, 816, 783, 816, 815, 784, 785, 817, 784, 817, 816, 785, 786, 818, 785, 818, 817, 786, 787, 819, 786, 819, 818, 787, 788, 820, 787, 820, 819, 788, 789, 821, 788, 821, 820, 789, 790, 822, 789, 822, 821, 790, 791, 823, 790, 823, 822, 791, 792, 824, 791, 824, 823, 792, 793, 825, 792, 825, 824, 793, 794, 826, 793, 826, 825, 794, 795, 827, 794, 827, 826, 795, 796, 828, 795, 828, 827, 796, 797, 829, 796, 829, 828, 797, 798, 830, 797, 830, 829, 798, 799, 831, 798, 831, 830, 800, 801, 833, 800, 833, 832, 801, 802, 834, 801, 834, 833, 802, 803, 835, 802, 835, 834, 803, 804, 836, 803, 836, 835, 804, 805, 837, 804, 837, 836, 805, 806, 838, 805, 838, 837, 806, 807, 839, 806, 839, 838, 807, 808, 840, 807, 840, 839, 808, 809, 841, 808, 841, 840, 809, 810, 842, 809, 842, 841, 810, 811, 843, 810, 843, 842, 811, 812, 844, 811, 844, 843, 812, 813, 845, 812, 845, 844, 813, 814, 846, 813, 846, 845, 814, 815, 847, 814, 847, 846, 815, 816, 848, 815, 848, 847, 816, 817, 849, 816, 849, 848, 817, 818, 850, 817, 850, 849, 818, 819, 851, 818, 851, 850, 819, 820, 852, 819, 852, 851, 820, 821, 853, 820, 853, 852, 821, 822, 854, 821, 854, 853, 822, 823, 855, 822, 855, 854, 823, 824, 856, 823, 856, 855, 824, 825, 857, 824, 857, 856, 825, 826, 858, 825, 858, 857, 826, 827, 859, 826, 859, 858, 827, 828, 860, 827, 860, 859, 828, 829, 861, 828, 861, 860, 829, 830, 862, 829, 862, 861, 830, 831, 863, 830, 863, 862, 832, 833, 865, 832, 865, 864, 833, 834, 866, 833, 866, 865, 834, 835, 867, 834, 867, 866, 835, 836, 868, 835, 868, 867, 836, 837, 869, 836, 869, 868, 837, 838, 870, 837, 870, 869, 838, 839, 871, 838, 871, 870, 839, 840, 872, 839, 872, 871, 840, 841, 873, 840, 873, 872, 841, 842, 874, 841, 874, 873, 842, 843, 875, 842, 875, 874, 843, 844, 876, 843, 876, 875, 844, 845, 877, 844, 877, 876, 845, 846, 878, 845, 878, 877, 846, 847, 879, 846, 879, 878, 847, 848, 880, 847, 880, 879, 848, 849, 881, 848, 881, 880, 849, 850, 882, 849, 882, 881, 850, 851, 883, 850, 883, 882, 851, 852, 884, 851, 884, 883, 852, 853, 885, 852, 885, 884, 853, 854, 886, 853, 886, 885, 854, 855, 887, 854, 887, 886, 855, 856, 888, 855, 888, 887, 856, 857, 889, 856, 889, 888, 857, 858, 890, 857, 890, 889, 858, 859, 891, 858, 891, 890, 859, 860, 892, 859, 892, 891, 860, 861, 893, 860, 893, 892, 861, 862, 894, 861, 894, 893, 862, 863, 895, 862, 895, 894, 864, 865, 897, 864, 897, 896, 865, 866, 898, 865, 898, 897, 866, 867, 899, 866, 899, 898, 867, 868, 900, 867, 900, 899, 868, 869, 901, 868, 901, 900, 869, 870, 902, 869, 902, 901, 870, 871, 903, 870, 903, 902, 871, 872, 904, 871, 904, 903, 872, 873, 905, 872, 905, 904, 873, 874, 906, 873, 906, 905, 874, 875, 907, 874, 907, 906, 875, 876, 908, 875, 908, 907, 876, 877, 909, 876, 909, 908, 877, 878, 910, 877, 910, 909, 878, 879, 911, 878, 911, 910, 879, 880, 912, 879, 912, 911, 880, 881, 913, 880, 913, 912, 881, 882, 914, 881, 914, 913, 882, 883, 915, 882, 915, 914, 883, 884, 916, 883, 916, 915, 884, 885, 917, 884, 917, 916, 885, 886, 918, 885, 918, 917, 886, 887, 919, 886, 919, 918, 887, 888, 920, 887, 920, 919, 888, 889, 921, 888, 921, 920, 889, 890, 922, 889, 922, 921, 890, 891, 923, 890, 923, 922, 891, 892, 924, 891, 924, 923, 892, 893, 925, 892, 925, 924, 893, 894, 926, 893, 926, 925, 894, 895, 927, 894, 927, 926, 896, 897, 929, 896, 929, 928, 897, 898, 930, 897, 930, 929, 898, 899, 931, 898, 931, 930, 899, 900, 932, 899, 932, 931, 900, 901, 933, 900, 933, 932, 901, 902, 934, 901, 934, 933, 902, 903, 935, 902, 935, 934, 903, 904, 936, 903, 936, 935, 904, 905, 937, 904, 937, 936, 905, 906, 938, 905, 938, 937, 906, 907, 939, 906, 939, 938, 907, 908, 940, 907, 940, 939, 908, 909, 941, 908, 941, 940, 909, 910, 942, 909, 942, 941, 910, 911, 943, 910, 943, 942, 911, 912, 944, 911, 944, 943, 912, 913, 945, 912, 945, 944, 913, 914, 946, 913, 946, 945, 914, 915, 947, 914, 947, 946, 915, 916, 948, 915, 948, 947, 916, 917, 949, 916, 949, 948, 917, 918, 950, 917, 950, 949, 918, 919, 951, 918, 951, 950, 919, 920, 952, 919, 952, 951, 920, 921, 953, 920, 953, 952, 921, 922, 954, 921, 954, 953, 922, 923, 955, 922, 955, 954, 923, 924, 956, 923, 956, 955, 924, 925, 957, 924, 957, 956, 925, 926, 958, 925, 958, 957, 926, 927, 959, 926, 959, 958, 928, 929, 961, 928, 961, 960, 929, 930, 962, 929, 962, 961, 930, 931, 963, 930, 963, 962, 931, 932, 964, 931, 964, 963, 932, 933, 965, 932, 965, 964, 933, 934, 966, 933, 966, 965, 934, 935, 967, 934, 967, 966, 935, 936, 968, 935, 968, 967, 936, 937, 969, 936, 969, 968, 937, 938, 970, 937, 970, 969, 938, 939, 971, 938, 971, 970, 939, 940, 972, 939, 972, 971, 940, 941, 973, 940, 973, 972, 941, 942, 974, 941, 974, 973, 942, 943, 975, 942, 975, 974, 943, 944, 976, 943, 976, 975, 944, 945, 977, 944, 977, 976, 945, 946, 978, 945, 978, 977, 946, 947, 979, 946, 979, 978, 947, 948, 980, 947, 980, 979, 948, 949, 981, 948, 981, 980, 949, 950, 982, 949, 982, 981, 950, 951, 983, 950, 983, 982, 951, 952, 984, 951, 984, 983, 952, 953, 985, 952, 985, 984, 953, 954, 986, 953, 986, 985, 954, 955, 987, 954, 987, 986, 955, 956, 988, 955, 988, 987, 956, 957, 989, 956, 989, 988, 957, 958, 990, 957, 990, 989, 958, 959, 991, 958, 991, 990, 960, 961, 993, 960, 993, 992, 961, 962, 994, 961, 994, 993, 962, 963, 995, 962, 995, 994, 963, 964, 996, 963, 996, 995, 964, 965, 997, 964, 997, 996, 965, 966, 998, 965, 998, 997, 966, 967, 999, 966, 999, 998, 967, 968, 1000, 967, 1000, 999, 968, 969, 1001, 968, 1001, 1000, 969, 970, 1002, 969, 1002, 1001, 970, 971, 1003, 970, 1003, 1002, 971, 972, 1004, 971, 1004, 1003, 972, 973, 1005, 972, 1005, 1004, 973, 974, 1006, 973, 1006, 1005, 974, 975, 1007, 974, 1007, 1006, 975, 976, 1008, 975, 1008, 1007, 976, 977, 1009, 976, 1009, 1008, 977, 978, 1010, 977, 1010, 1009, 978, 979, 1011, 978, 1011, 1010, 979, 980, 1012, 979, 1012, 1011, 980, 981, 1013, 980, 1013, 1012, 981, 982, 1014, 981, 1014, 1013, 982, 983, 1015, 982, 1015, 1014, 983, 984, 1016, 983, 1016, 1015, 984, 985, 1017, 984, 1017, 1016, 985, 986, 1018, 985, 1018, 1017, 986, 987, 1019, 986, 1019, 1018, 987, 988, 1020, 987, 1020, 1019, 988, 989, 1021, 988, 1021, 1020, 989, 990, 1022, 989, 1022, 1021, 990, 991, 1023, 990, 1023, 1022] color3f[] primvars:displayColor = [(0.784314, 0.64705884, 0.1)] point3f[] points = [(0, 0, 20), (20, 0, 20), (40, 0, 20), (60, 0, 20), (80, 0, 20), (100, 0, 20), (120, 0, 20), (140, 0, 20), (160, 0, 20), (180, 0, 20), (200, 0, 20), (220, 0, 20), (240, 0, 20), (260, 0, 20), (280, 0, 20), (300, 0, 20), (320, 0, 20), (340, 0, 20), (360, 0, 20), (380, 0, 20), (400, 0, 20), (420, 0, 20), (440, 0, 20), (460, 0, 20), (480, 0, 20), (500, 0, 20), (520, 0, 20), (540, 0, 20), (560, 0, 20), (580, 0, 20), (600, 0, 20), (620, 0, 20), (0, 20, 20), (20, 20, 20), (40, 20, 20), (60, 20, 20), (80, 20, 20), (100, 20, 20), (120, 20, 20), (140, 20, 20), (160, 20, 20), (180, 20, 20), (200, 20, 20), (220, 20, 20), (240, 20, 20), (260, 20, 20), (280, 20, 20), (300, 20, 20), (320, 20, 20), (340, 20, 20), (360, 20, 20), (380, 20, 20), (400, 20, 20), (420, 20, 20), (440, 20, 20), (460, 20, 20), (480, 20, 20), (500, 20, 20), (520, 20, 20), (540, 20, 20), (560, 20, 20), (580, 20, 20), (600, 20, 20), (620, 20, 20), (0, 40, 20), (20, 40, 20), (40, 40, 20), (60, 40, 20), (80, 40, 20), (100, 40, 20), (120, 40, 20), (140, 40, 20), (160, 40, 20), (180, 40, 20), (200, 40, 20), (220, 40, 20), (240, 40, 20), (260, 40, 20), (280, 40, 20), (300, 40, 20), (320, 40, 20), (340, 40, 20), (360, 40, 20), (380, 40, 20), (400, 40, 20), (420, 40, 20), (440, 40, 20), (460, 40, 20), (480, 40, 20), (500, 40, 20), (520, 40, 20), (540, 40, 20), (560, 40, 20), (580, 40, 20), (600, 40, 20), (620, 40, 20), (0, 60, 20), (20, 60, 20), (40, 60, 20), (60, 60, 20), (80, 60, 20), (100, 60, 20), (120, 60, 20), (140, 60, 20), (160, 60, 20), (180, 60, 20), (200, 60, 20), (220, 60, 20), (240, 60, 20), (260, 60, 20), (280, 60, 20), (300, 60, 20), (320, 60, 20), (340, 60, 20), (360, 60, 20), (380, 60, 20), (400, 60, 20), (420, 60, 20), (440, 60, 20), (460, 60, 20), (480, 60, 20), (500, 60, 20), (520, 60, 20), (540, 60, 20), (560, 60, 20), (580, 60, 20), (600, 60, 20), (620, 60, 20), (0, 80, 20), (20, 80, 20), (40, 80, 20), (60, 80, 20), (80, 80, 20), (100, 80, 20), (120, 80, 20), (140, 80, 20), (160, 80, 20), (180, 80, 20), (200, 80, 20), (220, 80, 20), (240, 80, 20), (260, 80, 20), (280, 80, 20), (300, 80, 20), (320, 80, 20), (340, 80, 20), (360, 80, 20), (380, 80, 20), (400, 80, 20), (420, 80, 20), (440, 80, 20), (460, 80, 20), (480, 80, 20), (500, 80, 20), (520, 80, 20), (540, 80, 20), (560, 80, 20), (580, 80, 20), (600, 80, 20), (620, 80, 20), (0, 100, 20), (20, 100, 20), (40, 100, 20), (60, 100, 20), (80, 100, 20), (100, 100, 20), (120, 100, 20), (140, 100, 20), (160, 100, 20), (180, 100, 20), (200, 100, 20), (220, 100, 20), (240, 100, 20), (260, 100, 20), (280, 100, 20), (300, 100, 20), (320, 100, 20), (340, 100, 20), (360, 100, 20), (380, 100, 20), (400, 100, 20), (420, 100, 20), (440, 100, 20), (460, 100, 20), (480, 100, 20), (500, 100, 20), (520, 100, 20), (540, 100, 20), (560, 100, 20), (580, 100, 20), (600, 100, 20), (620, 100, 20), (0, 120, 20), (20, 120, 20), (40, 120, 20), (60, 120, 20), (80, 120, 20), (100, 120, 20), (120, 120, 20), (140, 120, 20), (160, 120, 20), (180, 120, 20), (200, 120, 20), (220, 120, 20), (240, 120, 20), (260, 120, 20), (280, 120, 20), (300, 120, 20), (320, 120, 20), (340, 120, 20), (360, 120, 20), (380, 120, 20), (400, 120, 20), (420, 120, 20), (440, 120, 20), (460, 120, 20), (480, 120, 20), (500, 120, 20), (520, 120, 20), (540, 120, 20), (560, 120, 20), (580, 120, 20), (600, 120, 20), (620, 120, 20), (0, 140, 20), (20, 140, 20), (40, 140, 20), (60, 140, 20), (80, 140, 20), (100, 140, 20), (120, 140, 20), (140, 140, 20), (160, 140, 20), (180, 140, 20), (200, 140, 20), (220, 140, 20), (240, 140, 20), (260, 140, 20), (280, 140, 20), (300, 140, 20), (320, 140, 20), (340, 140, 20), (360, 140, 20), (380, 140, 20), (400, 140, 20), (420, 140, 20), (440, 140, 20), (460, 140, 20), (480, 140, 20), (500, 140, 20), (520, 140, 20), (540, 140, 20), (560, 140, 20), (580, 140, 20), (600, 140, 20), (620, 140, 20), (0, 160, 20), (20, 160, 20), (40, 160, 20), (60, 160, 20), (80, 160, 20), (100, 160, 20), (120, 160, 20), (140, 160, 20), (160, 160, 20), (180, 160, 20), (200, 160, 20), (220, 160, 20), (240, 160, 20), (260, 160, 20), (280, 160, 20), (300, 160, 20), (320, 160, 20), (340, 160, 20), (360, 160, 20), (380, 160, 20), (400, 160, 20), (420, 160, 20), (440, 160, 20), (460, 160, 20), (480, 160, 20), (500, 160, 20), (520, 160, 20), (540, 160, 20), (560, 160, 20), (580, 160, 20), (600, 160, 20), (620, 160, 20), (0, 180, 20), (20, 180, 20), (40, 180, 20), (60, 180, 20), (80, 180, 20), (100, 180, 20), (120, 180, 20), (140, 180, 20), (160, 180, 20), (180, 180, 20), (200, 180, 20), (220, 180, 20), (240, 180, 20), (260, 180, 20), (280, 180, 20), (300, 180, 20), (320, 180, 20), (340, 180, 20), (360, 180, 20), (380, 180, 20), (400, 180, 20), (420, 180, 20), (440, 180, 20), (460, 180, 20), (480, 180, 20), (500, 180, 20), (520, 180, 20), (540, 180, 20), (560, 180, 20), (580, 180, 20), (600, 180, 20), (620, 180, 20), (0, 200, 20), (20, 200, 20), (40, 200, 20), (60, 200, 20), (80, 200, 20), (100, 200, 20), (120, 200, 20), (140, 200, 20), (160, 200, 20), (180, 200, 20), (200, 200, 20), (220, 200, 20), (240, 200, 20), (260, 200, 20), (280, 200, 20), (300, 200, 20), (320, 200, 20), (340, 200, 20), (360, 200, 20), (380, 200, 20), (400, 200, 20), (420, 200, 20), (440, 200, 20), (460, 200, 20), (480, 200, 20), (500, 200, 20), (520, 200, 20), (540, 200, 20), (560, 200, 20), (580, 200, 20), (600, 200, 20), (620, 200, 20), (0, 220, 20), (20, 220, 20), (40, 220, 20), (60, 220, 20), (80, 220, 20), (100, 220, 20), (120, 220, 20), (140, 220, 20), (160, 220, 20), (180, 220, 20), (200, 220, 20), (220, 220, 20), (240, 220, 20), (260, 220, 20), (280, 220, 20), (300, 220, 20), (320, 220, 20), (340, 220, 20), (360, 220, 20), (380, 220, 20), (400, 220, 20), (420, 220, 20), (440, 220, 20), (460, 220, 20), (480, 220, 20), (500, 220, 20), (520, 220, 20), (540, 220, 20), (560, 220, 20), (580, 220, 20), (600, 220, 20), (620, 220, 20), (0, 240, 20), (20, 240, 20), (40, 240, 20), (60, 240, 20), (80, 240, 20), (100, 240, 20), (120, 240, 20), (140, 240, 20), (160, 240, 20), (180, 240, 20), (200, 240, 20), (220, 240, 20), (240, 240, 20), (260, 240, 20), (280, 240, 20), (300, 240, 20), (320, 240, 20), (340, 240, 20), (360, 240, 20), (380, 240, 20), (400, 240, 20), (420, 240, 20), (440, 240, 20), (460, 240, 20), (480, 240, 20), (500, 240, 20), (520, 240, 20), (540, 240, 20), (560, 240, 20), (580, 240, 20), (600, 240, 20), (620, 240, 20), (0, 260, 20), (20, 260, 20), (40, 260, 20), (60, 260, 20), (80, 260, 20), (100, 260, 20), (120, 260, 20), (140, 260, 20), (160, 260, 20), (180, 260, 20), (200, 260, 20), (220, 260, 20), (240, 260, 20), (260, 260, 20), (280, 260, 20), (300, 260, 20), (320, 260, 20), (340, 260, 20), (360, 260, 20), (380, 260, 20), (400, 260, 20), (420, 260, 20), (440, 260, 20), (460, 260, 20), (480, 260, 20), (500, 260, 20), (520, 260, 20), (540, 260, 20), (560, 260, 20), (580, 260, 20), (600, 260, 20), (620, 260, 20), (0, 280, 20), (20, 280, 20), (40, 280, 20), (60, 280, 20), (80, 280, 20), (100, 280, 20), (120, 280, 20), (140, 280, 20), (160, 280, 20), (180, 280, 20), (200, 280, 20), (220, 280, 20), (240, 280, 20), (260, 280, 20), (280, 280, 20), (300, 280, 20), (320, 280, 20), (340, 280, 20), (360, 280, 20), (380, 280, 20), (400, 280, 20), (420, 280, 20), (440, 280, 20), (460, 280, 20), (480, 280, 20), (500, 280, 20), (520, 280, 20), (540, 280, 20), (560, 280, 20), (580, 280, 20), (600, 280, 20), (620, 280, 20), (0, 300, 20), (20, 300, 20), (40, 300, 20), (60, 300, 20), (80, 300, 20), (100, 300, 20), (120, 300, 20), (140, 300, 20), (160, 300, 20), (180, 300, 20), (200, 300, 20), (220, 300, 20), (240, 300, 20), (260, 300, 20), (280, 300, 20), (300, 300, 20), (320, 300, 20), (340, 300, 20), (360, 300, 20), (380, 300, 20), (400, 300, 20), (420, 300, 20), (440, 300, 20), (460, 300, 20), (480, 300, 20), (500, 300, 20), (520, 300, 20), (540, 300, 20), (560, 300, 20), (580, 300, 20), (600, 300, 20), (620, 300, 20), (0, 320, 20), (20, 320, 20), (40, 320, 20), (60, 320, 20), (80, 320, 20), (100, 320, 20), (120, 320, 20), (140, 320, 20), (160, 320, 20), (180, 320, 20), (200, 320, 20), (220, 320, 20), (240, 320, 20), (260, 320, 20), (280, 320, 20), (300, 320, 20), (320, 320, 20), (340, 320, 20), (360, 320, 20), (380, 320, 20), (400, 320, 20), (420, 320, 20), (440, 320, 20), (460, 320, 20), (480, 320, 20), (500, 320, 20), (520, 320, 20), (540, 320, 20), (560, 320, 20), (580, 320, 20), (600, 320, 20), (620, 320, 20), (0, 340, 20), (20, 340, 20), (40, 340, 20), (60, 340, 20), (80, 340, 20), (100, 340, 20), (120, 340, 20), (140, 340, 20), (160, 340, 20), (180, 340, 20), (200, 340, 20), (220, 340, 20), (240, 340, 20), (260, 340, 20), (280, 340, 20), (300, 340, 20), (320, 340, 20), (340, 340, 20), (360, 340, 20), (380, 340, 20), (400, 340, 20), (420, 340, 20), (440, 340, 20), (460, 340, 20), (480, 340, 20), (500, 340, 20), (520, 340, 20), (540, 340, 20), (560, 340, 20), (580, 340, 20), (600, 340, 20), (620, 340, 20), (0, 360, 20), (20, 360, 20), (40, 360, 20), (60, 360, 20), (80, 360, 20), (100, 360, 20), (120, 360, 20), (140, 360, 20), (160, 360, 20), (180, 360, 20), (200, 360, 20), (220, 360, 20), (240, 360, 20), (260, 360, 20), (280, 360, 20), (300, 360, 20), (320, 360, 20), (340, 360, 20), (360, 360, 20), (380, 360, 20), (400, 360, 20), (420, 360, 20), (440, 360, 20), (460, 360, 20), (480, 360, 20), (500, 360, 20), (520, 360, 20), (540, 360, 20), (560, 360, 20), (580, 360, 20), (600, 360, 20), (620, 360, 20), (0, 380, 20), (20, 380, 20), (40, 380, 20), (60, 380, 20), (80, 380, 20), (100, 380, 20), (120, 380, 20), (140, 380, 20), (160, 380, 20), (180, 380, 20), (200, 380, 20), (220, 380, 20), (240, 380, 20), (260, 380, 20), (280, 380, 20), (300, 380, 20), (320, 380, 20), (340, 380, 20), (360, 380, 20), (380, 380, 20), (400, 380, 20), (420, 380, 20), (440, 380, 20), (460, 380, 20), (480, 380, 20), (500, 380, 20), (520, 380, 20), (540, 380, 20), (560, 380, 20), (580, 380, 20), (600, 380, 20), (620, 380, 20), (0, 400, 20), (20, 400, 20), (40, 400, 20), (60, 400, 20), (80, 400, 20), (100, 400, 20), (120, 400, 20), (140, 400, 20), (160, 400, 20), (180, 400, 20), (200, 400, 20), (220, 400, 20), (240, 400, 20), (260, 400, 20), (280, 400, 20), (300, 400, 20), (320, 400, 20), (340, 400, 20), (360, 400, 20), (380, 400, 20), (400, 400, 20), (420, 400, 20), (440, 400, 20), (460, 400, 20), (480, 400, 20), (500, 400, 20), (520, 400, 20), (540, 400, 20), (560, 400, 20), (580, 400, 20), (600, 400, 20), (620, 400, 20), (0, 420, 20), (20, 420, 20), (40, 420, 20), (60, 420, 20), (80, 420, 20), (100, 420, 20), (120, 420, 20), (140, 420, 20), (160, 420, 20), (180, 420, 20), (200, 420, 20), (220, 420, 20), (240, 420, 20), (260, 420, 20), (280, 420, 20), (300, 420, 20), (320, 420, 20), (340, 420, 20), (360, 420, 20), (380, 420, 20), (400, 420, 20), (420, 420, 20), (440, 420, 20), (460, 420, 20), (480, 420, 20), (500, 420, 20), (520, 420, 20), (540, 420, 20), (560, 420, 20), (580, 420, 20), (600, 420, 20), (620, 420, 20), (0, 440, 20), (20, 440, 20), (40, 440, 20), (60, 440, 20), (80, 440, 20), (100, 440, 20), (120, 440, 20), (140, 440, 20), (160, 440, 20), (180, 440, 20), (200, 440, 20), (220, 440, 20), (240, 440, 20), (260, 440, 20), (280, 440, 20), (300, 440, 20), (320, 440, 20), (340, 440, 20), (360, 440, 20), (380, 440, 20), (400, 440, 20), (420, 440, 20), (440, 440, 20), (460, 440, 20), (480, 440, 20), (500, 440, 20), (520, 440, 20), (540, 440, 20), (560, 440, 20), (580, 440, 20), (600, 440, 20), (620, 440, 20), (0, 460, 20), (20, 460, 20), (40, 460, 20), (60, 460, 20), (80, 460, 20), (100, 460, 20), (120, 460, 20), (140, 460, 20), (160, 460, 20), (180, 460, 20), (200, 460, 20), (220, 460, 20), (240, 460, 20), (260, 460, 20), (280, 460, 20), (300, 460, 20), (320, 460, 20), (340, 460, 20), (360, 460, 20), (380, 460, 20), (400, 460, 20), (420, 460, 20), (440, 460, 20), (460, 460, 20), (480, 460, 20), (500, 460, 20), (520, 460, 20), (540, 460, 20), (560, 460, 20), (580, 460, 20), (600, 460, 20), (620, 460, 20), (0, 480, 20), (20, 480, 20), (40, 480, 20), (60, 480, 20), (80, 480, 20), (100, 480, 20), (120, 480, 20), (140, 480, 20), (160, 480, 20), (180, 480, 20), (200, 480, 20), (220, 480, 20), (240, 480, 20), (260, 480, 20), (280, 480, 20), (300, 480, 20), (320, 480, 20), (340, 480, 20), (360, 480, 20), (380, 480, 20), (400, 480, 20), (420, 480, 20), (440, 480, 20), (460, 480, 20), (480, 480, 20), (500, 480, 20), (520, 480, 20), (540, 480, 20), (560, 480, 20), (580, 480, 20), (600, 480, 20), (620, 480, 20), (0, 500, 20), (20, 500, 20), (40, 500, 20), (60, 500, 20), (80, 500, 20), (100, 500, 20), (120, 500, 20), (140, 500, 20), (160, 500, 20), (180, 500, 20), (200, 500, 20), (220, 500, 20), (240, 500, 20), (260, 500, 20), (280, 500, 20), (300, 500, 20), (320, 500, 20), (340, 500, 20), (360, 500, 20), (380, 500, 20), (400, 500, 20), (420, 500, 20), (440, 500, 20), (460, 500, 20), (480, 500, 20), (500, 500, 20), (520, 500, 20), (540, 500, 20), (560, 500, 20), (580, 500, 20), (600, 500, 20), (620, 500, 20), (0, 520, 20), (20, 520, 20), (40, 520, 20), (60, 520, 20), (80, 520, 20), (100, 520, 20), (120, 520, 20), (140, 520, 20), (160, 520, 20), (180, 520, 20), (200, 520, 20), (220, 520, 20), (240, 520, 20), (260, 520, 20), (280, 520, 20), (300, 520, 20), (320, 520, 20), (340, 520, 20), (360, 520, 20), (380, 520, 20), (400, 520, 20), (420, 520, 20), (440, 520, 20), (460, 520, 20), (480, 520, 20), (500, 520, 20), (520, 520, 20), (540, 520, 20), (560, 520, 20), (580, 520, 20), (600, 520, 20), (620, 520, 20), (0, 540, 20), (20, 540, 20), (40, 540, 20), (60, 540, 20), (80, 540, 20), (100, 540, 20), (120, 540, 20), (140, 540, 20), (160, 540, 20), (180, 540, 20), (200, 540, 20), (220, 540, 20), (240, 540, 20), (260, 540, 20), (280, 540, 20), (300, 540, 20), (320, 540, 20), (340, 540, 20), (360, 540, 20), (380, 540, 20), (400, 540, 20), (420, 540, 20), (440, 540, 20), (460, 540, 20), (480, 540, 20), (500, 540, 20), (520, 540, 20), (540, 540, 20), (560, 540, 20), (580, 540, 20), (600, 540, 20), (620, 540, 20), (0, 560, 20), (20, 560, 20), (40, 560, 20), (60, 560, 20), (80, 560, 20), (100, 560, 20), (120, 560, 20), (140, 560, 20), (160, 560, 20), (180, 560, 20), (200, 560, 20), (220, 560, 20), (240, 560, 20), (260, 560, 20), (280, 560, 20), (300, 560, 20), (320, 560, 20), (340, 560, 20), (360, 560, 20), (380, 560, 20), (400, 560, 20), (420, 560, 20), (440, 560, 20), (460, 560, 20), (480, 560, 20), (500, 560, 20), (520, 560, 20), (540, 560, 20), (560, 560, 20), (580, 560, 20), (600, 560, 20), (620, 560, 20), (0, 580, 20), (20, 580, 20), (40, 580, 20), (60, 580, 20), (80, 580, 20), (100, 580, 20), (120, 580, 20), (140, 580, 20), (160, 580, 20), (180, 580, 20), (200, 580, 20), (220, 580, 20), (240, 580, 20), (260, 580, 20), (280, 580, 20), (300, 580, 20), (320, 580, 20), (340, 580, 20), (360, 580, 20), (380, 580, 20), (400, 580, 20), (420, 580, 20), (440, 580, 20), (460, 580, 20), (480, 580, 20), (500, 580, 20), (520, 580, 20), (540, 580, 20), (560, 580, 20), (580, 580, 20), (600, 580, 20), (620, 580, 20), (0, 600, 20), (20, 600, 20), (40, 600, 20), (60, 600, 20), (80, 600, 20), (100, 600, 20), (120, 600, 20), (140, 600, 20), (160, 600, 20), (180, 600, 20), (200, 600, 20), (220, 600, 20), (240, 600, 20), (260, 600, 20), (280, 600, 20), (300, 600, 20), (320, 600, 20), (340, 600, 20), (360, 600, 20), (380, 600, 20), (400, 600, 20), (420, 600, 20), (440, 600, 20), (460, 600, 20), (480, 600, 20), (500, 600, 20), (520, 600, 20), (540, 600, 20), (560, 600, 20), (580, 600, 20), (600, 600, 20), (620, 600, 20), (0, 620, 20), (20, 620, 20), (40, 620, 20), (60, 620, 20), (80, 620, 20), (100, 620, 20), (120, 620, 20), (140, 620, 20), (160, 620, 20), (180, 620, 20), (200, 620, 20), (220, 620, 20), (240, 620, 20), (260, 620, 20), (280, 620, 20), (300, 620, 20), (320, 620, 20), (340, 620, 20), (360, 620, 20), (380, 620, 20), (400, 620, 20), (420, 620, 20), (440, 620, 20), (460, 620, 20), (480, 620, 20), (500, 620, 20), (520, 620, 20), (540, 620, 20), (560, 620, 20), (580, 620, 20), (600, 620, 20), (620, 620, 20)] point3f[] points.connect = </defaultPrim/innerPullGraph/deformer3.outputs:points> } }
omniverse-code/kit/exts/omni.graph/omni/graph/core/data/ExampleGridDeformerPython.usda
#usda 1.0 ( doc = """Generated from Composed Stage of root layer """ ) def Xform "defaultPrim" { def Mesh "inputGrid" { uniform bool doubleSided = 1 int[] faceVertexCounts = [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 1, 33, 0, 33, 32, 1, 2, 34, 1, 34, 33, 2, 3, 35, 2, 35, 34, 3, 4, 36, 3, 36, 35, 4, 5, 37, 4, 37, 36, 5, 6, 38, 5, 38, 37, 6, 7, 39, 6, 39, 38, 7, 8, 40, 7, 40, 39, 8, 9, 41, 8, 41, 40, 9, 10, 42, 9, 42, 41, 10, 11, 43, 10, 43, 42, 11, 12, 44, 11, 44, 43, 12, 13, 45, 12, 45, 44, 13, 14, 46, 13, 46, 45, 14, 15, 47, 14, 47, 46, 15, 16, 48, 15, 48, 47, 16, 17, 49, 16, 49, 48, 17, 18, 50, 17, 50, 49, 18, 19, 51, 18, 51, 50, 19, 20, 52, 19, 52, 51, 20, 21, 53, 20, 53, 52, 21, 22, 54, 21, 54, 53, 22, 23, 55, 22, 55, 54, 23, 24, 56, 23, 56, 55, 24, 25, 57, 24, 57, 56, 25, 26, 58, 25, 58, 57, 26, 27, 59, 26, 59, 58, 27, 28, 60, 27, 60, 59, 28, 29, 61, 28, 61, 60, 29, 30, 62, 29, 62, 61, 30, 31, 63, 30, 63, 62, 32, 33, 65, 32, 65, 64, 33, 34, 66, 33, 66, 65, 34, 35, 67, 34, 67, 66, 35, 36, 68, 35, 68, 67, 36, 37, 69, 36, 69, 68, 37, 38, 70, 37, 70, 69, 38, 39, 71, 38, 71, 70, 39, 40, 72, 39, 72, 71, 40, 41, 73, 40, 73, 72, 41, 42, 74, 41, 74, 73, 42, 43, 75, 42, 75, 74, 43, 44, 76, 43, 76, 75, 44, 45, 77, 44, 77, 76, 45, 46, 78, 45, 78, 77, 46, 47, 79, 46, 79, 78, 47, 48, 80, 47, 80, 79, 48, 49, 81, 48, 81, 80, 49, 50, 82, 49, 82, 81, 50, 51, 83, 50, 83, 82, 51, 52, 84, 51, 84, 83, 52, 53, 85, 52, 85, 84, 53, 54, 86, 53, 86, 85, 54, 55, 87, 54, 87, 86, 55, 56, 88, 55, 88, 87, 56, 57, 89, 56, 89, 88, 57, 58, 90, 57, 90, 89, 58, 59, 91, 58, 91, 90, 59, 60, 92, 59, 92, 91, 60, 61, 93, 60, 93, 92, 61, 62, 94, 61, 94, 93, 62, 63, 95, 62, 95, 94, 64, 65, 97, 64, 97, 96, 65, 66, 98, 65, 98, 97, 66, 67, 99, 66, 99, 98, 67, 68, 100, 67, 100, 99, 68, 69, 101, 68, 101, 100, 69, 70, 102, 69, 102, 101, 70, 71, 103, 70, 103, 102, 71, 72, 104, 71, 104, 103, 72, 73, 105, 72, 105, 104, 73, 74, 106, 73, 106, 105, 74, 75, 107, 74, 107, 106, 75, 76, 108, 75, 108, 107, 76, 77, 109, 76, 109, 108, 77, 78, 110, 77, 110, 109, 78, 79, 111, 78, 111, 110, 79, 80, 112, 79, 112, 111, 80, 81, 113, 80, 113, 112, 81, 82, 114, 81, 114, 113, 82, 83, 115, 82, 115, 114, 83, 84, 116, 83, 116, 115, 84, 85, 117, 84, 117, 116, 85, 86, 118, 85, 118, 117, 86, 87, 119, 86, 119, 118, 87, 88, 120, 87, 120, 119, 88, 89, 121, 88, 121, 120, 89, 90, 122, 89, 122, 121, 90, 91, 123, 90, 123, 122, 91, 92, 124, 91, 124, 123, 92, 93, 125, 92, 125, 124, 93, 94, 126, 93, 126, 125, 94, 95, 127, 94, 127, 126, 96, 97, 129, 96, 129, 128, 97, 98, 130, 97, 130, 129, 98, 99, 131, 98, 131, 130, 99, 100, 132, 99, 132, 131, 100, 101, 133, 100, 133, 132, 101, 102, 134, 101, 134, 133, 102, 103, 135, 102, 135, 134, 103, 104, 136, 103, 136, 135, 104, 105, 137, 104, 137, 136, 105, 106, 138, 105, 138, 137, 106, 107, 139, 106, 139, 138, 107, 108, 140, 107, 140, 139, 108, 109, 141, 108, 141, 140, 109, 110, 142, 109, 142, 141, 110, 111, 143, 110, 143, 142, 111, 112, 144, 111, 144, 143, 112, 113, 145, 112, 145, 144, 113, 114, 146, 113, 146, 145, 114, 115, 147, 114, 147, 146, 115, 116, 148, 115, 148, 147, 116, 117, 149, 116, 149, 148, 117, 118, 150, 117, 150, 149, 118, 119, 151, 118, 151, 150, 119, 120, 152, 119, 152, 151, 120, 121, 153, 120, 153, 152, 121, 122, 154, 121, 154, 153, 122, 123, 155, 122, 155, 154, 123, 124, 156, 123, 156, 155, 124, 125, 157, 124, 157, 156, 125, 126, 158, 125, 158, 157, 126, 127, 159, 126, 159, 158, 128, 129, 161, 128, 161, 160, 129, 130, 162, 129, 162, 161, 130, 131, 163, 130, 163, 162, 131, 132, 164, 131, 164, 163, 132, 133, 165, 132, 165, 164, 133, 134, 166, 133, 166, 165, 134, 135, 167, 134, 167, 166, 135, 136, 168, 135, 168, 167, 136, 137, 169, 136, 169, 168, 137, 138, 170, 137, 170, 169, 138, 139, 171, 138, 171, 170, 139, 140, 172, 139, 172, 171, 140, 141, 173, 140, 173, 172, 141, 142, 174, 141, 174, 173, 142, 143, 175, 142, 175, 174, 143, 144, 176, 143, 176, 175, 144, 145, 177, 144, 177, 176, 145, 146, 178, 145, 178, 177, 146, 147, 179, 146, 179, 178, 147, 148, 180, 147, 180, 179, 148, 149, 181, 148, 181, 180, 149, 150, 182, 149, 182, 181, 150, 151, 183, 150, 183, 182, 151, 152, 184, 151, 184, 183, 152, 153, 185, 152, 185, 184, 153, 154, 186, 153, 186, 185, 154, 155, 187, 154, 187, 186, 155, 156, 188, 155, 188, 187, 156, 157, 189, 156, 189, 188, 157, 158, 190, 157, 190, 189, 158, 159, 191, 158, 191, 190, 160, 161, 193, 160, 193, 192, 161, 162, 194, 161, 194, 193, 162, 163, 195, 162, 195, 194, 163, 164, 196, 163, 196, 195, 164, 165, 197, 164, 197, 196, 165, 166, 198, 165, 198, 197, 166, 167, 199, 166, 199, 198, 167, 168, 200, 167, 200, 199, 168, 169, 201, 168, 201, 200, 169, 170, 202, 169, 202, 201, 170, 171, 203, 170, 203, 202, 171, 172, 204, 171, 204, 203, 172, 173, 205, 172, 205, 204, 173, 174, 206, 173, 206, 205, 174, 175, 207, 174, 207, 206, 175, 176, 208, 175, 208, 207, 176, 177, 209, 176, 209, 208, 177, 178, 210, 177, 210, 209, 178, 179, 211, 178, 211, 210, 179, 180, 212, 179, 212, 211, 180, 181, 213, 180, 213, 212, 181, 182, 214, 181, 214, 213, 182, 183, 215, 182, 215, 214, 183, 184, 216, 183, 216, 215, 184, 185, 217, 184, 217, 216, 185, 186, 218, 185, 218, 217, 186, 187, 219, 186, 219, 218, 187, 188, 220, 187, 220, 219, 188, 189, 221, 188, 221, 220, 189, 190, 222, 189, 222, 221, 190, 191, 223, 190, 223, 222, 192, 193, 225, 192, 225, 224, 193, 194, 226, 193, 226, 225, 194, 195, 227, 194, 227, 226, 195, 196, 228, 195, 228, 227, 196, 197, 229, 196, 229, 228, 197, 198, 230, 197, 230, 229, 198, 199, 231, 198, 231, 230, 199, 200, 232, 199, 232, 231, 200, 201, 233, 200, 233, 232, 201, 202, 234, 201, 234, 233, 202, 203, 235, 202, 235, 234, 203, 204, 236, 203, 236, 235, 204, 205, 237, 204, 237, 236, 205, 206, 238, 205, 238, 237, 206, 207, 239, 206, 239, 238, 207, 208, 240, 207, 240, 239, 208, 209, 241, 208, 241, 240, 209, 210, 242, 209, 242, 241, 210, 211, 243, 210, 243, 242, 211, 212, 244, 211, 244, 243, 212, 213, 245, 212, 245, 244, 213, 214, 246, 213, 246, 245, 214, 215, 247, 214, 247, 246, 215, 216, 248, 215, 248, 247, 216, 217, 249, 216, 249, 248, 217, 218, 250, 217, 250, 249, 218, 219, 251, 218, 251, 250, 219, 220, 252, 219, 252, 251, 220, 221, 253, 220, 253, 252, 221, 222, 254, 221, 254, 253, 222, 223, 255, 222, 255, 254, 224, 225, 257, 224, 257, 256, 225, 226, 258, 225, 258, 257, 226, 227, 259, 226, 259, 258, 227, 228, 260, 227, 260, 259, 228, 229, 261, 228, 261, 260, 229, 230, 262, 229, 262, 261, 230, 231, 263, 230, 263, 262, 231, 232, 264, 231, 264, 263, 232, 233, 265, 232, 265, 264, 233, 234, 266, 233, 266, 265, 234, 235, 267, 234, 267, 266, 235, 236, 268, 235, 268, 267, 236, 237, 269, 236, 269, 268, 237, 238, 270, 237, 270, 269, 238, 239, 271, 238, 271, 270, 239, 240, 272, 239, 272, 271, 240, 241, 273, 240, 273, 272, 241, 242, 274, 241, 274, 273, 242, 243, 275, 242, 275, 274, 243, 244, 276, 243, 276, 275, 244, 245, 277, 244, 277, 276, 245, 246, 278, 245, 278, 277, 246, 247, 279, 246, 279, 278, 247, 248, 280, 247, 280, 279, 248, 249, 281, 248, 281, 280, 249, 250, 282, 249, 282, 281, 250, 251, 283, 250, 283, 282, 251, 252, 284, 251, 284, 283, 252, 253, 285, 252, 285, 284, 253, 254, 286, 253, 286, 285, 254, 255, 287, 254, 287, 286, 256, 257, 289, 256, 289, 288, 257, 258, 290, 257, 290, 289, 258, 259, 291, 258, 291, 290, 259, 260, 292, 259, 292, 291, 260, 261, 293, 260, 293, 292, 261, 262, 294, 261, 294, 293, 262, 263, 295, 262, 295, 294, 263, 264, 296, 263, 296, 295, 264, 265, 297, 264, 297, 296, 265, 266, 298, 265, 298, 297, 266, 267, 299, 266, 299, 298, 267, 268, 300, 267, 300, 299, 268, 269, 301, 268, 301, 300, 269, 270, 302, 269, 302, 301, 270, 271, 303, 270, 303, 302, 271, 272, 304, 271, 304, 303, 272, 273, 305, 272, 305, 304, 273, 274, 306, 273, 306, 305, 274, 275, 307, 274, 307, 306, 275, 276, 308, 275, 308, 307, 276, 277, 309, 276, 309, 308, 277, 278, 310, 277, 310, 309, 278, 279, 311, 278, 311, 310, 279, 280, 312, 279, 312, 311, 280, 281, 313, 280, 313, 312, 281, 282, 314, 281, 314, 313, 282, 283, 315, 282, 315, 314, 283, 284, 316, 283, 316, 315, 284, 285, 317, 284, 317, 316, 285, 286, 318, 285, 318, 317, 286, 287, 319, 286, 319, 318, 288, 289, 321, 288, 321, 320, 289, 290, 322, 289, 322, 321, 290, 291, 323, 290, 323, 322, 291, 292, 324, 291, 324, 323, 292, 293, 325, 292, 325, 324, 293, 294, 326, 293, 326, 325, 294, 295, 327, 294, 327, 326, 295, 296, 328, 295, 328, 327, 296, 297, 329, 296, 329, 328, 297, 298, 330, 297, 330, 329, 298, 299, 331, 298, 331, 330, 299, 300, 332, 299, 332, 331, 300, 301, 333, 300, 333, 332, 301, 302, 334, 301, 334, 333, 302, 303, 335, 302, 335, 334, 303, 304, 336, 303, 336, 335, 304, 305, 337, 304, 337, 336, 305, 306, 338, 305, 338, 337, 306, 307, 339, 306, 339, 338, 307, 308, 340, 307, 340, 339, 308, 309, 341, 308, 341, 340, 309, 310, 342, 309, 342, 341, 310, 311, 343, 310, 343, 342, 311, 312, 344, 311, 344, 343, 312, 313, 345, 312, 345, 344, 313, 314, 346, 313, 346, 345, 314, 315, 347, 314, 347, 346, 315, 316, 348, 315, 348, 347, 316, 317, 349, 316, 349, 348, 317, 318, 350, 317, 350, 349, 318, 319, 351, 318, 351, 350, 320, 321, 353, 320, 353, 352, 321, 322, 354, 321, 354, 353, 322, 323, 355, 322, 355, 354, 323, 324, 356, 323, 356, 355, 324, 325, 357, 324, 357, 356, 325, 326, 358, 325, 358, 357, 326, 327, 359, 326, 359, 358, 327, 328, 360, 327, 360, 359, 328, 329, 361, 328, 361, 360, 329, 330, 362, 329, 362, 361, 330, 331, 363, 330, 363, 362, 331, 332, 364, 331, 364, 363, 332, 333, 365, 332, 365, 364, 333, 334, 366, 333, 366, 365, 334, 335, 367, 334, 367, 366, 335, 336, 368, 335, 368, 367, 336, 337, 369, 336, 369, 368, 337, 338, 370, 337, 370, 369, 338, 339, 371, 338, 371, 370, 339, 340, 372, 339, 372, 371, 340, 341, 373, 340, 373, 372, 341, 342, 374, 341, 374, 373, 342, 343, 375, 342, 375, 374, 343, 344, 376, 343, 376, 375, 344, 345, 377, 344, 377, 376, 345, 346, 378, 345, 378, 377, 346, 347, 379, 346, 379, 378, 347, 348, 380, 347, 380, 379, 348, 349, 381, 348, 381, 380, 349, 350, 382, 349, 382, 381, 350, 351, 383, 350, 383, 382, 352, 353, 385, 352, 385, 384, 353, 354, 386, 353, 386, 385, 354, 355, 387, 354, 387, 386, 355, 356, 388, 355, 388, 387, 356, 357, 389, 356, 389, 388, 357, 358, 390, 357, 390, 389, 358, 359, 391, 358, 391, 390, 359, 360, 392, 359, 392, 391, 360, 361, 393, 360, 393, 392, 361, 362, 394, 361, 394, 393, 362, 363, 395, 362, 395, 394, 363, 364, 396, 363, 396, 395, 364, 365, 397, 364, 397, 396, 365, 366, 398, 365, 398, 397, 366, 367, 399, 366, 399, 398, 367, 368, 400, 367, 400, 399, 368, 369, 401, 368, 401, 400, 369, 370, 402, 369, 402, 401, 370, 371, 403, 370, 403, 402, 371, 372, 404, 371, 404, 403, 372, 373, 405, 372, 405, 404, 373, 374, 406, 373, 406, 405, 374, 375, 407, 374, 407, 406, 375, 376, 408, 375, 408, 407, 376, 377, 409, 376, 409, 408, 377, 378, 410, 377, 410, 409, 378, 379, 411, 378, 411, 410, 379, 380, 412, 379, 412, 411, 380, 381, 413, 380, 413, 412, 381, 382, 414, 381, 414, 413, 382, 383, 415, 382, 415, 414, 384, 385, 417, 384, 417, 416, 385, 386, 418, 385, 418, 417, 386, 387, 419, 386, 419, 418, 387, 388, 420, 387, 420, 419, 388, 389, 421, 388, 421, 420, 389, 390, 422, 389, 422, 421, 390, 391, 423, 390, 423, 422, 391, 392, 424, 391, 424, 423, 392, 393, 425, 392, 425, 424, 393, 394, 426, 393, 426, 425, 394, 395, 427, 394, 427, 426, 395, 396, 428, 395, 428, 427, 396, 397, 429, 396, 429, 428, 397, 398, 430, 397, 430, 429, 398, 399, 431, 398, 431, 430, 399, 400, 432, 399, 432, 431, 400, 401, 433, 400, 433, 432, 401, 402, 434, 401, 434, 433, 402, 403, 435, 402, 435, 434, 403, 404, 436, 403, 436, 435, 404, 405, 437, 404, 437, 436, 405, 406, 438, 405, 438, 437, 406, 407, 439, 406, 439, 438, 407, 408, 440, 407, 440, 439, 408, 409, 441, 408, 441, 440, 409, 410, 442, 409, 442, 441, 410, 411, 443, 410, 443, 442, 411, 412, 444, 411, 444, 443, 412, 413, 445, 412, 445, 444, 413, 414, 446, 413, 446, 445, 414, 415, 447, 414, 447, 446, 416, 417, 449, 416, 449, 448, 417, 418, 450, 417, 450, 449, 418, 419, 451, 418, 451, 450, 419, 420, 452, 419, 452, 451, 420, 421, 453, 420, 453, 452, 421, 422, 454, 421, 454, 453, 422, 423, 455, 422, 455, 454, 423, 424, 456, 423, 456, 455, 424, 425, 457, 424, 457, 456, 425, 426, 458, 425, 458, 457, 426, 427, 459, 426, 459, 458, 427, 428, 460, 427, 460, 459, 428, 429, 461, 428, 461, 460, 429, 430, 462, 429, 462, 461, 430, 431, 463, 430, 463, 462, 431, 432, 464, 431, 464, 463, 432, 433, 465, 432, 465, 464, 433, 434, 466, 433, 466, 465, 434, 435, 467, 434, 467, 466, 435, 436, 468, 435, 468, 467, 436, 437, 469, 436, 469, 468, 437, 438, 470, 437, 470, 469, 438, 439, 471, 438, 471, 470, 439, 440, 472, 439, 472, 471, 440, 441, 473, 440, 473, 472, 441, 442, 474, 441, 474, 473, 442, 443, 475, 442, 475, 474, 443, 444, 476, 443, 476, 475, 444, 445, 477, 444, 477, 476, 445, 446, 478, 445, 478, 477, 446, 447, 479, 446, 479, 478, 448, 449, 481, 448, 481, 480, 449, 450, 482, 449, 482, 481, 450, 451, 483, 450, 483, 482, 451, 452, 484, 451, 484, 483, 452, 453, 485, 452, 485, 484, 453, 454, 486, 453, 486, 485, 454, 455, 487, 454, 487, 486, 455, 456, 488, 455, 488, 487, 456, 457, 489, 456, 489, 488, 457, 458, 490, 457, 490, 489, 458, 459, 491, 458, 491, 490, 459, 460, 492, 459, 492, 491, 460, 461, 493, 460, 493, 492, 461, 462, 494, 461, 494, 493, 462, 463, 495, 462, 495, 494, 463, 464, 496, 463, 496, 495, 464, 465, 497, 464, 497, 496, 465, 466, 498, 465, 498, 497, 466, 467, 499, 466, 499, 498, 467, 468, 500, 467, 500, 499, 468, 469, 501, 468, 501, 500, 469, 470, 502, 469, 502, 501, 470, 471, 503, 470, 503, 502, 471, 472, 504, 471, 504, 503, 472, 473, 505, 472, 505, 504, 473, 474, 506, 473, 506, 505, 474, 475, 507, 474, 507, 506, 475, 476, 508, 475, 508, 507, 476, 477, 509, 476, 509, 508, 477, 478, 510, 477, 510, 509, 478, 479, 511, 478, 511, 510, 480, 481, 513, 480, 513, 512, 481, 482, 514, 481, 514, 513, 482, 483, 515, 482, 515, 514, 483, 484, 516, 483, 516, 515, 484, 485, 517, 484, 517, 516, 485, 486, 518, 485, 518, 517, 486, 487, 519, 486, 519, 518, 487, 488, 520, 487, 520, 519, 488, 489, 521, 488, 521, 520, 489, 490, 522, 489, 522, 521, 490, 491, 523, 490, 523, 522, 491, 492, 524, 491, 524, 523, 492, 493, 525, 492, 525, 524, 493, 494, 526, 493, 526, 525, 494, 495, 527, 494, 527, 526, 495, 496, 528, 495, 528, 527, 496, 497, 529, 496, 529, 528, 497, 498, 530, 497, 530, 529, 498, 499, 531, 498, 531, 530, 499, 500, 532, 499, 532, 531, 500, 501, 533, 500, 533, 532, 501, 502, 534, 501, 534, 533, 502, 503, 535, 502, 535, 534, 503, 504, 536, 503, 536, 535, 504, 505, 537, 504, 537, 536, 505, 506, 538, 505, 538, 537, 506, 507, 539, 506, 539, 538, 507, 508, 540, 507, 540, 539, 508, 509, 541, 508, 541, 540, 509, 510, 542, 509, 542, 541, 510, 511, 543, 510, 543, 542, 512, 513, 545, 512, 545, 544, 513, 514, 546, 513, 546, 545, 514, 515, 547, 514, 547, 546, 515, 516, 548, 515, 548, 547, 516, 517, 549, 516, 549, 548, 517, 518, 550, 517, 550, 549, 518, 519, 551, 518, 551, 550, 519, 520, 552, 519, 552, 551, 520, 521, 553, 520, 553, 552, 521, 522, 554, 521, 554, 553, 522, 523, 555, 522, 555, 554, 523, 524, 556, 523, 556, 555, 524, 525, 557, 524, 557, 556, 525, 526, 558, 525, 558, 557, 526, 527, 559, 526, 559, 558, 527, 528, 560, 527, 560, 559, 528, 529, 561, 528, 561, 560, 529, 530, 562, 529, 562, 561, 530, 531, 563, 530, 563, 562, 531, 532, 564, 531, 564, 563, 532, 533, 565, 532, 565, 564, 533, 534, 566, 533, 566, 565, 534, 535, 567, 534, 567, 566, 535, 536, 568, 535, 568, 567, 536, 537, 569, 536, 569, 568, 537, 538, 570, 537, 570, 569, 538, 539, 571, 538, 571, 570, 539, 540, 572, 539, 572, 571, 540, 541, 573, 540, 573, 572, 541, 542, 574, 541, 574, 573, 542, 543, 575, 542, 575, 574, 544, 545, 577, 544, 577, 576, 545, 546, 578, 545, 578, 577, 546, 547, 579, 546, 579, 578, 547, 548, 580, 547, 580, 579, 548, 549, 581, 548, 581, 580, 549, 550, 582, 549, 582, 581, 550, 551, 583, 550, 583, 582, 551, 552, 584, 551, 584, 583, 552, 553, 585, 552, 585, 584, 553, 554, 586, 553, 586, 585, 554, 555, 587, 554, 587, 586, 555, 556, 588, 555, 588, 587, 556, 557, 589, 556, 589, 588, 557, 558, 590, 557, 590, 589, 558, 559, 591, 558, 591, 590, 559, 560, 592, 559, 592, 591, 560, 561, 593, 560, 593, 592, 561, 562, 594, 561, 594, 593, 562, 563, 595, 562, 595, 594, 563, 564, 596, 563, 596, 595, 564, 565, 597, 564, 597, 596, 565, 566, 598, 565, 598, 597, 566, 567, 599, 566, 599, 598, 567, 568, 600, 567, 600, 599, 568, 569, 601, 568, 601, 600, 569, 570, 602, 569, 602, 601, 570, 571, 603, 570, 603, 602, 571, 572, 604, 571, 604, 603, 572, 573, 605, 572, 605, 604, 573, 574, 606, 573, 606, 605, 574, 575, 607, 574, 607, 606, 576, 577, 609, 576, 609, 608, 577, 578, 610, 577, 610, 609, 578, 579, 611, 578, 611, 610, 579, 580, 612, 579, 612, 611, 580, 581, 613, 580, 613, 612, 581, 582, 614, 581, 614, 613, 582, 583, 615, 582, 615, 614, 583, 584, 616, 583, 616, 615, 584, 585, 617, 584, 617, 616, 585, 586, 618, 585, 618, 617, 586, 587, 619, 586, 619, 618, 587, 588, 620, 587, 620, 619, 588, 589, 621, 588, 621, 620, 589, 590, 622, 589, 622, 621, 590, 591, 623, 590, 623, 622, 591, 592, 624, 591, 624, 623, 592, 593, 625, 592, 625, 624, 593, 594, 626, 593, 626, 625, 594, 595, 627, 594, 627, 626, 595, 596, 628, 595, 628, 627, 596, 597, 629, 596, 629, 628, 597, 598, 630, 597, 630, 629, 598, 599, 631, 598, 631, 630, 599, 600, 632, 599, 632, 631, 600, 601, 633, 600, 633, 632, 601, 602, 634, 601, 634, 633, 602, 603, 635, 602, 635, 634, 603, 604, 636, 603, 636, 635, 604, 605, 637, 604, 637, 636, 605, 606, 638, 605, 638, 637, 606, 607, 639, 606, 639, 638, 608, 609, 641, 608, 641, 640, 609, 610, 642, 609, 642, 641, 610, 611, 643, 610, 643, 642, 611, 612, 644, 611, 644, 643, 612, 613, 645, 612, 645, 644, 613, 614, 646, 613, 646, 645, 614, 615, 647, 614, 647, 646, 615, 616, 648, 615, 648, 647, 616, 617, 649, 616, 649, 648, 617, 618, 650, 617, 650, 649, 618, 619, 651, 618, 651, 650, 619, 620, 652, 619, 652, 651, 620, 621, 653, 620, 653, 652, 621, 622, 654, 621, 654, 653, 622, 623, 655, 622, 655, 654, 623, 624, 656, 623, 656, 655, 624, 625, 657, 624, 657, 656, 625, 626, 658, 625, 658, 657, 626, 627, 659, 626, 659, 658, 627, 628, 660, 627, 660, 659, 628, 629, 661, 628, 661, 660, 629, 630, 662, 629, 662, 661, 630, 631, 663, 630, 663, 662, 631, 632, 664, 631, 664, 663, 632, 633, 665, 632, 665, 664, 633, 634, 666, 633, 666, 665, 634, 635, 667, 634, 667, 666, 635, 636, 668, 635, 668, 667, 636, 637, 669, 636, 669, 668, 637, 638, 670, 637, 670, 669, 638, 639, 671, 638, 671, 670, 640, 641, 673, 640, 673, 672, 641, 642, 674, 641, 674, 673, 642, 643, 675, 642, 675, 674, 643, 644, 676, 643, 676, 675, 644, 645, 677, 644, 677, 676, 645, 646, 678, 645, 678, 677, 646, 647, 679, 646, 679, 678, 647, 648, 680, 647, 680, 679, 648, 649, 681, 648, 681, 680, 649, 650, 682, 649, 682, 681, 650, 651, 683, 650, 683, 682, 651, 652, 684, 651, 684, 683, 652, 653, 685, 652, 685, 684, 653, 654, 686, 653, 686, 685, 654, 655, 687, 654, 687, 686, 655, 656, 688, 655, 688, 687, 656, 657, 689, 656, 689, 688, 657, 658, 690, 657, 690, 689, 658, 659, 691, 658, 691, 690, 659, 660, 692, 659, 692, 691, 660, 661, 693, 660, 693, 692, 661, 662, 694, 661, 694, 693, 662, 663, 695, 662, 695, 694, 663, 664, 696, 663, 696, 695, 664, 665, 697, 664, 697, 696, 665, 666, 698, 665, 698, 697, 666, 667, 699, 666, 699, 698, 667, 668, 700, 667, 700, 699, 668, 669, 701, 668, 701, 700, 669, 670, 702, 669, 702, 701, 670, 671, 703, 670, 703, 702, 672, 673, 705, 672, 705, 704, 673, 674, 706, 673, 706, 705, 674, 675, 707, 674, 707, 706, 675, 676, 708, 675, 708, 707, 676, 677, 709, 676, 709, 708, 677, 678, 710, 677, 710, 709, 678, 679, 711, 678, 711, 710, 679, 680, 712, 679, 712, 711, 680, 681, 713, 680, 713, 712, 681, 682, 714, 681, 714, 713, 682, 683, 715, 682, 715, 714, 683, 684, 716, 683, 716, 715, 684, 685, 717, 684, 717, 716, 685, 686, 718, 685, 718, 717, 686, 687, 719, 686, 719, 718, 687, 688, 720, 687, 720, 719, 688, 689, 721, 688, 721, 720, 689, 690, 722, 689, 722, 721, 690, 691, 723, 690, 723, 722, 691, 692, 724, 691, 724, 723, 692, 693, 725, 692, 725, 724, 693, 694, 726, 693, 726, 725, 694, 695, 727, 694, 727, 726, 695, 696, 728, 695, 728, 727, 696, 697, 729, 696, 729, 728, 697, 698, 730, 697, 730, 729, 698, 699, 731, 698, 731, 730, 699, 700, 732, 699, 732, 731, 700, 701, 733, 700, 733, 732, 701, 702, 734, 701, 734, 733, 702, 703, 735, 702, 735, 734, 704, 705, 737, 704, 737, 736, 705, 706, 738, 705, 738, 737, 706, 707, 739, 706, 739, 738, 707, 708, 740, 707, 740, 739, 708, 709, 741, 708, 741, 740, 709, 710, 742, 709, 742, 741, 710, 711, 743, 710, 743, 742, 711, 712, 744, 711, 744, 743, 712, 713, 745, 712, 745, 744, 713, 714, 746, 713, 746, 745, 714, 715, 747, 714, 747, 746, 715, 716, 748, 715, 748, 747, 716, 717, 749, 716, 749, 748, 717, 718, 750, 717, 750, 749, 718, 719, 751, 718, 751, 750, 719, 720, 752, 719, 752, 751, 720, 721, 753, 720, 753, 752, 721, 722, 754, 721, 754, 753, 722, 723, 755, 722, 755, 754, 723, 724, 756, 723, 756, 755, 724, 725, 757, 724, 757, 756, 725, 726, 758, 725, 758, 757, 726, 727, 759, 726, 759, 758, 727, 728, 760, 727, 760, 759, 728, 729, 761, 728, 761, 760, 729, 730, 762, 729, 762, 761, 730, 731, 763, 730, 763, 762, 731, 732, 764, 731, 764, 763, 732, 733, 765, 732, 765, 764, 733, 734, 766, 733, 766, 765, 734, 735, 767, 734, 767, 766, 736, 737, 769, 736, 769, 768, 737, 738, 770, 737, 770, 769, 738, 739, 771, 738, 771, 770, 739, 740, 772, 739, 772, 771, 740, 741, 773, 740, 773, 772, 741, 742, 774, 741, 774, 773, 742, 743, 775, 742, 775, 774, 743, 744, 776, 743, 776, 775, 744, 745, 777, 744, 777, 776, 745, 746, 778, 745, 778, 777, 746, 747, 779, 746, 779, 778, 747, 748, 780, 747, 780, 779, 748, 749, 781, 748, 781, 780, 749, 750, 782, 749, 782, 781, 750, 751, 783, 750, 783, 782, 751, 752, 784, 751, 784, 783, 752, 753, 785, 752, 785, 784, 753, 754, 786, 753, 786, 785, 754, 755, 787, 754, 787, 786, 755, 756, 788, 755, 788, 787, 756, 757, 789, 756, 789, 788, 757, 758, 790, 757, 790, 789, 758, 759, 791, 758, 791, 790, 759, 760, 792, 759, 792, 791, 760, 761, 793, 760, 793, 792, 761, 762, 794, 761, 794, 793, 762, 763, 795, 762, 795, 794, 763, 764, 796, 763, 796, 795, 764, 765, 797, 764, 797, 796, 765, 766, 798, 765, 798, 797, 766, 767, 799, 766, 799, 798, 768, 769, 801, 768, 801, 800, 769, 770, 802, 769, 802, 801, 770, 771, 803, 770, 803, 802, 771, 772, 804, 771, 804, 803, 772, 773, 805, 772, 805, 804, 773, 774, 806, 773, 806, 805, 774, 775, 807, 774, 807, 806, 775, 776, 808, 775, 808, 807, 776, 777, 809, 776, 809, 808, 777, 778, 810, 777, 810, 809, 778, 779, 811, 778, 811, 810, 779, 780, 812, 779, 812, 811, 780, 781, 813, 780, 813, 812, 781, 782, 814, 781, 814, 813, 782, 783, 815, 782, 815, 814, 783, 784, 816, 783, 816, 815, 784, 785, 817, 784, 817, 816, 785, 786, 818, 785, 818, 817, 786, 787, 819, 786, 819, 818, 787, 788, 820, 787, 820, 819, 788, 789, 821, 788, 821, 820, 789, 790, 822, 789, 822, 821, 790, 791, 823, 790, 823, 822, 791, 792, 824, 791, 824, 823, 792, 793, 825, 792, 825, 824, 793, 794, 826, 793, 826, 825, 794, 795, 827, 794, 827, 826, 795, 796, 828, 795, 828, 827, 796, 797, 829, 796, 829, 828, 797, 798, 830, 797, 830, 829, 798, 799, 831, 798, 831, 830, 800, 801, 833, 800, 833, 832, 801, 802, 834, 801, 834, 833, 802, 803, 835, 802, 835, 834, 803, 804, 836, 803, 836, 835, 804, 805, 837, 804, 837, 836, 805, 806, 838, 805, 838, 837, 806, 807, 839, 806, 839, 838, 807, 808, 840, 807, 840, 839, 808, 809, 841, 808, 841, 840, 809, 810, 842, 809, 842, 841, 810, 811, 843, 810, 843, 842, 811, 812, 844, 811, 844, 843, 812, 813, 845, 812, 845, 844, 813, 814, 846, 813, 846, 845, 814, 815, 847, 814, 847, 846, 815, 816, 848, 815, 848, 847, 816, 817, 849, 816, 849, 848, 817, 818, 850, 817, 850, 849, 818, 819, 851, 818, 851, 850, 819, 820, 852, 819, 852, 851, 820, 821, 853, 820, 853, 852, 821, 822, 854, 821, 854, 853, 822, 823, 855, 822, 855, 854, 823, 824, 856, 823, 856, 855, 824, 825, 857, 824, 857, 856, 825, 826, 858, 825, 858, 857, 826, 827, 859, 826, 859, 858, 827, 828, 860, 827, 860, 859, 828, 829, 861, 828, 861, 860, 829, 830, 862, 829, 862, 861, 830, 831, 863, 830, 863, 862, 832, 833, 865, 832, 865, 864, 833, 834, 866, 833, 866, 865, 834, 835, 867, 834, 867, 866, 835, 836, 868, 835, 868, 867, 836, 837, 869, 836, 869, 868, 837, 838, 870, 837, 870, 869, 838, 839, 871, 838, 871, 870, 839, 840, 872, 839, 872, 871, 840, 841, 873, 840, 873, 872, 841, 842, 874, 841, 874, 873, 842, 843, 875, 842, 875, 874, 843, 844, 876, 843, 876, 875, 844, 845, 877, 844, 877, 876, 845, 846, 878, 845, 878, 877, 846, 847, 879, 846, 879, 878, 847, 848, 880, 847, 880, 879, 848, 849, 881, 848, 881, 880, 849, 850, 882, 849, 882, 881, 850, 851, 883, 850, 883, 882, 851, 852, 884, 851, 884, 883, 852, 853, 885, 852, 885, 884, 853, 854, 886, 853, 886, 885, 854, 855, 887, 854, 887, 886, 855, 856, 888, 855, 888, 887, 856, 857, 889, 856, 889, 888, 857, 858, 890, 857, 890, 889, 858, 859, 891, 858, 891, 890, 859, 860, 892, 859, 892, 891, 860, 861, 893, 860, 893, 892, 861, 862, 894, 861, 894, 893, 862, 863, 895, 862, 895, 894, 864, 865, 897, 864, 897, 896, 865, 866, 898, 865, 898, 897, 866, 867, 899, 866, 899, 898, 867, 868, 900, 867, 900, 899, 868, 869, 901, 868, 901, 900, 869, 870, 902, 869, 902, 901, 870, 871, 903, 870, 903, 902, 871, 872, 904, 871, 904, 903, 872, 873, 905, 872, 905, 904, 873, 874, 906, 873, 906, 905, 874, 875, 907, 874, 907, 906, 875, 876, 908, 875, 908, 907, 876, 877, 909, 876, 909, 908, 877, 878, 910, 877, 910, 909, 878, 879, 911, 878, 911, 910, 879, 880, 912, 879, 912, 911, 880, 881, 913, 880, 913, 912, 881, 882, 914, 881, 914, 913, 882, 883, 915, 882, 915, 914, 883, 884, 916, 883, 916, 915, 884, 885, 917, 884, 917, 916, 885, 886, 918, 885, 918, 917, 886, 887, 919, 886, 919, 918, 887, 888, 920, 887, 920, 919, 888, 889, 921, 888, 921, 920, 889, 890, 922, 889, 922, 921, 890, 891, 923, 890, 923, 922, 891, 892, 924, 891, 924, 923, 892, 893, 925, 892, 925, 924, 893, 894, 926, 893, 926, 925, 894, 895, 927, 894, 927, 926, 896, 897, 929, 896, 929, 928, 897, 898, 930, 897, 930, 929, 898, 899, 931, 898, 931, 930, 899, 900, 932, 899, 932, 931, 900, 901, 933, 900, 933, 932, 901, 902, 934, 901, 934, 933, 902, 903, 935, 902, 935, 934, 903, 904, 936, 903, 936, 935, 904, 905, 937, 904, 937, 936, 905, 906, 938, 905, 938, 937, 906, 907, 939, 906, 939, 938, 907, 908, 940, 907, 940, 939, 908, 909, 941, 908, 941, 940, 909, 910, 942, 909, 942, 941, 910, 911, 943, 910, 943, 942, 911, 912, 944, 911, 944, 943, 912, 913, 945, 912, 945, 944, 913, 914, 946, 913, 946, 945, 914, 915, 947, 914, 947, 946, 915, 916, 948, 915, 948, 947, 916, 917, 949, 916, 949, 948, 917, 918, 950, 917, 950, 949, 918, 919, 951, 918, 951, 950, 919, 920, 952, 919, 952, 951, 920, 921, 953, 920, 953, 952, 921, 922, 954, 921, 954, 953, 922, 923, 955, 922, 955, 954, 923, 924, 956, 923, 956, 955, 924, 925, 957, 924, 957, 956, 925, 926, 958, 925, 958, 957, 926, 927, 959, 926, 959, 958, 928, 929, 961, 928, 961, 960, 929, 930, 962, 929, 962, 961, 930, 931, 963, 930, 963, 962, 931, 932, 964, 931, 964, 963, 932, 933, 965, 932, 965, 964, 933, 934, 966, 933, 966, 965, 934, 935, 967, 934, 967, 966, 935, 936, 968, 935, 968, 967, 936, 937, 969, 936, 969, 968, 937, 938, 970, 937, 970, 969, 938, 939, 971, 938, 971, 970, 939, 940, 972, 939, 972, 971, 940, 941, 973, 940, 973, 972, 941, 942, 974, 941, 974, 973, 942, 943, 975, 942, 975, 974, 943, 944, 976, 943, 976, 975, 944, 945, 977, 944, 977, 976, 945, 946, 978, 945, 978, 977, 946, 947, 979, 946, 979, 978, 947, 948, 980, 947, 980, 979, 948, 949, 981, 948, 981, 980, 949, 950, 982, 949, 982, 981, 950, 951, 983, 950, 983, 982, 951, 952, 984, 951, 984, 983, 952, 953, 985, 952, 985, 984, 953, 954, 986, 953, 986, 985, 954, 955, 987, 954, 987, 986, 955, 956, 988, 955, 988, 987, 956, 957, 989, 956, 989, 988, 957, 958, 990, 957, 990, 989, 958, 959, 991, 958, 991, 990, 960, 961, 993, 960, 993, 992, 961, 962, 994, 961, 994, 993, 962, 963, 995, 962, 995, 994, 963, 964, 996, 963, 996, 995, 964, 965, 997, 964, 997, 996, 965, 966, 998, 965, 998, 997, 966, 967, 999, 966, 999, 998, 967, 968, 1000, 967, 1000, 999, 968, 969, 1001, 968, 1001, 1000, 969, 970, 1002, 969, 1002, 1001, 970, 971, 1003, 970, 1003, 1002, 971, 972, 1004, 971, 1004, 1003, 972, 973, 1005, 972, 1005, 1004, 973, 974, 1006, 973, 1006, 1005, 974, 975, 1007, 974, 1007, 1006, 975, 976, 1008, 975, 1008, 1007, 976, 977, 1009, 976, 1009, 1008, 977, 978, 1010, 977, 1010, 1009, 978, 979, 1011, 978, 1011, 1010, 979, 980, 1012, 979, 1012, 1011, 980, 981, 1013, 980, 1013, 1012, 981, 982, 1014, 981, 1014, 1013, 982, 983, 1015, 982, 1015, 1014, 983, 984, 1016, 983, 1016, 1015, 984, 985, 1017, 984, 1017, 1016, 985, 986, 1018, 985, 1018, 1017, 986, 987, 1019, 986, 1019, 1018, 987, 988, 1020, 987, 1020, 1019, 988, 989, 1021, 988, 1021, 1020, 989, 990, 1022, 989, 1022, 1021, 990, 991, 1023, 990, 1023, 1022] point3f[] points = [(0, 0, 20), (20, 0, 20), (40, 0, 20), (60, 0, 20), (80, 0, 20), (100, 0, 20), (120, 0, 20), (140, 0, 20), (160, 0, 20), (180, 0, 20), (200, 0, 20), (220, 0, 20), (240, 0, 20), (260, 0, 20), (280, 0, 20), (300, 0, 20), (320, 0, 20), (340, 0, 20), (360, 0, 20), (380, 0, 20), (400, 0, 20), (420, 0, 20), (440, 0, 20), (460, 0, 20), (480, 0, 20), (500, 0, 20), (520, 0, 20), (540, 0, 20), (560, 0, 20), (580, 0, 20), (600, 0, 20), (620, 0, 20), (0, 20, 20), (20, 20, 20), (40, 20, 20), (60, 20, 20), (80, 20, 20), (100, 20, 20), (120, 20, 20), (140, 20, 20), (160, 20, 20), (180, 20, 20), (200, 20, 20), (220, 20, 20), (240, 20, 20), (260, 20, 20), (280, 20, 20), (300, 20, 20), (320, 20, 20), (340, 20, 20), (360, 20, 20), (380, 20, 20), (400, 20, 20), (420, 20, 20), (440, 20, 20), (460, 20, 20), (480, 20, 20), (500, 20, 20), (520, 20, 20), (540, 20, 20), (560, 20, 20), (580, 20, 20), (600, 20, 20), (620, 20, 20), (0, 40, 20), (20, 40, 20), (40, 40, 20), (60, 40, 20), (80, 40, 20), (100, 40, 20), (120, 40, 20), (140, 40, 20), (160, 40, 20), (180, 40, 20), (200, 40, 20), (220, 40, 20), (240, 40, 20), (260, 40, 20), (280, 40, 20), (300, 40, 20), (320, 40, 20), (340, 40, 20), (360, 40, 20), (380, 40, 20), (400, 40, 20), (420, 40, 20), (440, 40, 20), (460, 40, 20), (480, 40, 20), (500, 40, 20), (520, 40, 20), (540, 40, 20), (560, 40, 20), (580, 40, 20), (600, 40, 20), (620, 40, 20), (0, 60, 20), (20, 60, 20), (40, 60, 20), (60, 60, 20), (80, 60, 20), (100, 60, 20), (120, 60, 20), (140, 60, 20), (160, 60, 20), (180, 60, 20), (200, 60, 20), (220, 60, 20), (240, 60, 20), (260, 60, 20), (280, 60, 20), (300, 60, 20), (320, 60, 20), (340, 60, 20), (360, 60, 20), (380, 60, 20), (400, 60, 20), (420, 60, 20), (440, 60, 20), (460, 60, 20), (480, 60, 20), (500, 60, 20), (520, 60, 20), (540, 60, 20), (560, 60, 20), (580, 60, 20), (600, 60, 20), (620, 60, 20), (0, 80, 20), (20, 80, 20), (40, 80, 20), (60, 80, 20), (80, 80, 20), (100, 80, 20), (120, 80, 20), (140, 80, 20), (160, 80, 20), (180, 80, 20), (200, 80, 20), (220, 80, 20), (240, 80, 20), (260, 80, 20), (280, 80, 20), (300, 80, 20), (320, 80, 20), (340, 80, 20), (360, 80, 20), (380, 80, 20), (400, 80, 20), (420, 80, 20), (440, 80, 20), (460, 80, 20), (480, 80, 20), (500, 80, 20), (520, 80, 20), (540, 80, 20), (560, 80, 20), (580, 80, 20), (600, 80, 20), (620, 80, 20), (0, 100, 20), (20, 100, 20), (40, 100, 20), (60, 100, 20), (80, 100, 20), (100, 100, 20), (120, 100, 20), (140, 100, 20), (160, 100, 20), (180, 100, 20), (200, 100, 20), (220, 100, 20), (240, 100, 20), (260, 100, 20), (280, 100, 20), (300, 100, 20), (320, 100, 20), (340, 100, 20), (360, 100, 20), (380, 100, 20), (400, 100, 20), (420, 100, 20), (440, 100, 20), (460, 100, 20), (480, 100, 20), (500, 100, 20), (520, 100, 20), (540, 100, 20), (560, 100, 20), (580, 100, 20), (600, 100, 20), (620, 100, 20), (0, 120, 20), (20, 120, 20), (40, 120, 20), (60, 120, 20), (80, 120, 20), (100, 120, 20), (120, 120, 20), (140, 120, 20), (160, 120, 20), (180, 120, 20), (200, 120, 20), (220, 120, 20), (240, 120, 20), (260, 120, 20), (280, 120, 20), (300, 120, 20), (320, 120, 20), (340, 120, 20), (360, 120, 20), (380, 120, 20), (400, 120, 20), (420, 120, 20), (440, 120, 20), (460, 120, 20), (480, 120, 20), (500, 120, 20), (520, 120, 20), (540, 120, 20), (560, 120, 20), (580, 120, 20), (600, 120, 20), (620, 120, 20), (0, 140, 20), (20, 140, 20), (40, 140, 20), (60, 140, 20), (80, 140, 20), (100, 140, 20), (120, 140, 20), (140, 140, 20), (160, 140, 20), (180, 140, 20), (200, 140, 20), (220, 140, 20), (240, 140, 20), (260, 140, 20), (280, 140, 20), (300, 140, 20), (320, 140, 20), (340, 140, 20), (360, 140, 20), (380, 140, 20), (400, 140, 20), (420, 140, 20), (440, 140, 20), (460, 140, 20), (480, 140, 20), (500, 140, 20), (520, 140, 20), (540, 140, 20), (560, 140, 20), (580, 140, 20), (600, 140, 20), (620, 140, 20), (0, 160, 20), (20, 160, 20), (40, 160, 20), (60, 160, 20), (80, 160, 20), (100, 160, 20), (120, 160, 20), (140, 160, 20), (160, 160, 20), (180, 160, 20), (200, 160, 20), (220, 160, 20), (240, 160, 20), (260, 160, 20), (280, 160, 20), (300, 160, 20), (320, 160, 20), (340, 160, 20), (360, 160, 20), (380, 160, 20), (400, 160, 20), (420, 160, 20), (440, 160, 20), (460, 160, 20), (480, 160, 20), (500, 160, 20), (520, 160, 20), (540, 160, 20), (560, 160, 20), (580, 160, 20), (600, 160, 20), (620, 160, 20), (0, 180, 20), (20, 180, 20), (40, 180, 20), (60, 180, 20), (80, 180, 20), (100, 180, 20), (120, 180, 20), (140, 180, 20), (160, 180, 20), (180, 180, 20), (200, 180, 20), (220, 180, 20), (240, 180, 20), (260, 180, 20), (280, 180, 20), (300, 180, 20), (320, 180, 20), (340, 180, 20), (360, 180, 20), (380, 180, 20), (400, 180, 20), (420, 180, 20), (440, 180, 20), (460, 180, 20), (480, 180, 20), (500, 180, 20), (520, 180, 20), (540, 180, 20), (560, 180, 20), (580, 180, 20), (600, 180, 20), (620, 180, 20), (0, 200, 20), (20, 200, 20), (40, 200, 20), (60, 200, 20), (80, 200, 20), (100, 200, 20), (120, 200, 20), (140, 200, 20), (160, 200, 20), (180, 200, 20), (200, 200, 20), (220, 200, 20), (240, 200, 20), (260, 200, 20), (280, 200, 20), (300, 200, 20), (320, 200, 20), (340, 200, 20), (360, 200, 20), (380, 200, 20), (400, 200, 20), (420, 200, 20), (440, 200, 20), (460, 200, 20), (480, 200, 20), (500, 200, 20), (520, 200, 20), (540, 200, 20), (560, 200, 20), (580, 200, 20), (600, 200, 20), (620, 200, 20), (0, 220, 20), (20, 220, 20), (40, 220, 20), (60, 220, 20), (80, 220, 20), (100, 220, 20), (120, 220, 20), (140, 220, 20), (160, 220, 20), (180, 220, 20), (200, 220, 20), (220, 220, 20), (240, 220, 20), (260, 220, 20), (280, 220, 20), (300, 220, 20), (320, 220, 20), (340, 220, 20), (360, 220, 20), (380, 220, 20), (400, 220, 20), (420, 220, 20), (440, 220, 20), (460, 220, 20), (480, 220, 20), (500, 220, 20), (520, 220, 20), (540, 220, 20), (560, 220, 20), (580, 220, 20), (600, 220, 20), (620, 220, 20), (0, 240, 20), (20, 240, 20), (40, 240, 20), (60, 240, 20), (80, 240, 20), (100, 240, 20), (120, 240, 20), (140, 240, 20), (160, 240, 20), (180, 240, 20), (200, 240, 20), (220, 240, 20), (240, 240, 20), (260, 240, 20), (280, 240, 20), (300, 240, 20), (320, 240, 20), (340, 240, 20), (360, 240, 20), (380, 240, 20), (400, 240, 20), (420, 240, 20), (440, 240, 20), (460, 240, 20), (480, 240, 20), (500, 240, 20), (520, 240, 20), (540, 240, 20), (560, 240, 20), (580, 240, 20), (600, 240, 20), (620, 240, 20), (0, 260, 20), (20, 260, 20), (40, 260, 20), (60, 260, 20), (80, 260, 20), (100, 260, 20), (120, 260, 20), (140, 260, 20), (160, 260, 20), (180, 260, 20), (200, 260, 20), (220, 260, 20), (240, 260, 20), (260, 260, 20), (280, 260, 20), (300, 260, 20), (320, 260, 20), (340, 260, 20), (360, 260, 20), (380, 260, 20), (400, 260, 20), (420, 260, 20), (440, 260, 20), (460, 260, 20), (480, 260, 20), (500, 260, 20), (520, 260, 20), (540, 260, 20), (560, 260, 20), (580, 260, 20), (600, 260, 20), (620, 260, 20), (0, 280, 20), (20, 280, 20), (40, 280, 20), (60, 280, 20), (80, 280, 20), (100, 280, 20), (120, 280, 20), (140, 280, 20), (160, 280, 20), (180, 280, 20), (200, 280, 20), (220, 280, 20), (240, 280, 20), (260, 280, 20), (280, 280, 20), (300, 280, 20), (320, 280, 20), (340, 280, 20), (360, 280, 20), (380, 280, 20), (400, 280, 20), (420, 280, 20), (440, 280, 20), (460, 280, 20), (480, 280, 20), (500, 280, 20), (520, 280, 20), (540, 280, 20), (560, 280, 20), (580, 280, 20), (600, 280, 20), (620, 280, 20), (0, 300, 20), (20, 300, 20), (40, 300, 20), (60, 300, 20), (80, 300, 20), (100, 300, 20), (120, 300, 20), (140, 300, 20), (160, 300, 20), (180, 300, 20), (200, 300, 20), (220, 300, 20), (240, 300, 20), (260, 300, 20), (280, 300, 20), (300, 300, 20), (320, 300, 20), (340, 300, 20), (360, 300, 20), (380, 300, 20), (400, 300, 20), (420, 300, 20), (440, 300, 20), (460, 300, 20), (480, 300, 20), (500, 300, 20), (520, 300, 20), (540, 300, 20), (560, 300, 20), (580, 300, 20), (600, 300, 20), (620, 300, 20), (0, 320, 20), (20, 320, 20), (40, 320, 20), (60, 320, 20), (80, 320, 20), (100, 320, 20), (120, 320, 20), (140, 320, 20), (160, 320, 20), (180, 320, 20), (200, 320, 20), (220, 320, 20), (240, 320, 20), (260, 320, 20), (280, 320, 20), (300, 320, 20), (320, 320, 20), (340, 320, 20), (360, 320, 20), (380, 320, 20), (400, 320, 20), (420, 320, 20), (440, 320, 20), (460, 320, 20), (480, 320, 20), (500, 320, 20), (520, 320, 20), (540, 320, 20), (560, 320, 20), (580, 320, 20), (600, 320, 20), (620, 320, 20), (0, 340, 20), (20, 340, 20), (40, 340, 20), (60, 340, 20), (80, 340, 20), (100, 340, 20), (120, 340, 20), (140, 340, 20), (160, 340, 20), (180, 340, 20), (200, 340, 20), (220, 340, 20), (240, 340, 20), (260, 340, 20), (280, 340, 20), (300, 340, 20), (320, 340, 20), (340, 340, 20), (360, 340, 20), (380, 340, 20), (400, 340, 20), (420, 340, 20), (440, 340, 20), (460, 340, 20), (480, 340, 20), (500, 340, 20), (520, 340, 20), (540, 340, 20), (560, 340, 20), (580, 340, 20), (600, 340, 20), (620, 340, 20), (0, 360, 20), (20, 360, 20), (40, 360, 20), (60, 360, 20), (80, 360, 20), (100, 360, 20), (120, 360, 20), (140, 360, 20), (160, 360, 20), (180, 360, 20), (200, 360, 20), (220, 360, 20), (240, 360, 20), (260, 360, 20), (280, 360, 20), (300, 360, 20), (320, 360, 20), (340, 360, 20), (360, 360, 20), (380, 360, 20), (400, 360, 20), (420, 360, 20), (440, 360, 20), (460, 360, 20), (480, 360, 20), (500, 360, 20), (520, 360, 20), (540, 360, 20), (560, 360, 20), (580, 360, 20), (600, 360, 20), (620, 360, 20), (0, 380, 20), (20, 380, 20), (40, 380, 20), (60, 380, 20), (80, 380, 20), (100, 380, 20), (120, 380, 20), (140, 380, 20), (160, 380, 20), (180, 380, 20), (200, 380, 20), (220, 380, 20), (240, 380, 20), (260, 380, 20), (280, 380, 20), (300, 380, 20), (320, 380, 20), (340, 380, 20), (360, 380, 20), (380, 380, 20), (400, 380, 20), (420, 380, 20), (440, 380, 20), (460, 380, 20), (480, 380, 20), (500, 380, 20), (520, 380, 20), (540, 380, 20), (560, 380, 20), (580, 380, 20), (600, 380, 20), (620, 380, 20), (0, 400, 20), (20, 400, 20), (40, 400, 20), (60, 400, 20), (80, 400, 20), (100, 400, 20), (120, 400, 20), (140, 400, 20), (160, 400, 20), (180, 400, 20), (200, 400, 20), (220, 400, 20), (240, 400, 20), (260, 400, 20), (280, 400, 20), (300, 400, 20), (320, 400, 20), (340, 400, 20), (360, 400, 20), (380, 400, 20), (400, 400, 20), (420, 400, 20), (440, 400, 20), (460, 400, 20), (480, 400, 20), (500, 400, 20), (520, 400, 20), (540, 400, 20), (560, 400, 20), (580, 400, 20), (600, 400, 20), (620, 400, 20), (0, 420, 20), (20, 420, 20), (40, 420, 20), (60, 420, 20), (80, 420, 20), (100, 420, 20), (120, 420, 20), (140, 420, 20), (160, 420, 20), (180, 420, 20), (200, 420, 20), (220, 420, 20), (240, 420, 20), (260, 420, 20), (280, 420, 20), (300, 420, 20), (320, 420, 20), (340, 420, 20), (360, 420, 20), (380, 420, 20), (400, 420, 20), (420, 420, 20), (440, 420, 20), (460, 420, 20), (480, 420, 20), (500, 420, 20), (520, 420, 20), (540, 420, 20), (560, 420, 20), (580, 420, 20), (600, 420, 20), (620, 420, 20), (0, 440, 20), (20, 440, 20), (40, 440, 20), (60, 440, 20), (80, 440, 20), (100, 440, 20), (120, 440, 20), (140, 440, 20), (160, 440, 20), (180, 440, 20), (200, 440, 20), (220, 440, 20), (240, 440, 20), (260, 440, 20), (280, 440, 20), (300, 440, 20), (320, 440, 20), (340, 440, 20), (360, 440, 20), (380, 440, 20), (400, 440, 20), (420, 440, 20), (440, 440, 20), (460, 440, 20), (480, 440, 20), (500, 440, 20), (520, 440, 20), (540, 440, 20), (560, 440, 20), (580, 440, 20), (600, 440, 20), (620, 440, 20), (0, 460, 20), (20, 460, 20), (40, 460, 20), (60, 460, 20), (80, 460, 20), (100, 460, 20), (120, 460, 20), (140, 460, 20), (160, 460, 20), (180, 460, 20), (200, 460, 20), (220, 460, 20), (240, 460, 20), (260, 460, 20), (280, 460, 20), (300, 460, 20), (320, 460, 20), (340, 460, 20), (360, 460, 20), (380, 460, 20), (400, 460, 20), (420, 460, 20), (440, 460, 20), (460, 460, 20), (480, 460, 20), (500, 460, 20), (520, 460, 20), (540, 460, 20), (560, 460, 20), (580, 460, 20), (600, 460, 20), (620, 460, 20), (0, 480, 20), (20, 480, 20), (40, 480, 20), (60, 480, 20), (80, 480, 20), (100, 480, 20), (120, 480, 20), (140, 480, 20), (160, 480, 20), (180, 480, 20), (200, 480, 20), (220, 480, 20), (240, 480, 20), (260, 480, 20), (280, 480, 20), (300, 480, 20), (320, 480, 20), (340, 480, 20), (360, 480, 20), (380, 480, 20), (400, 480, 20), (420, 480, 20), (440, 480, 20), (460, 480, 20), (480, 480, 20), (500, 480, 20), (520, 480, 20), (540, 480, 20), (560, 480, 20), (580, 480, 20), (600, 480, 20), (620, 480, 20), (0, 500, 20), (20, 500, 20), (40, 500, 20), (60, 500, 20), (80, 500, 20), (100, 500, 20), (120, 500, 20), (140, 500, 20), (160, 500, 20), (180, 500, 20), (200, 500, 20), (220, 500, 20), (240, 500, 20), (260, 500, 20), (280, 500, 20), (300, 500, 20), (320, 500, 20), (340, 500, 20), (360, 500, 20), (380, 500, 20), (400, 500, 20), (420, 500, 20), (440, 500, 20), (460, 500, 20), (480, 500, 20), (500, 500, 20), (520, 500, 20), (540, 500, 20), (560, 500, 20), (580, 500, 20), (600, 500, 20), (620, 500, 20), (0, 520, 20), (20, 520, 20), (40, 520, 20), (60, 520, 20), (80, 520, 20), (100, 520, 20), (120, 520, 20), (140, 520, 20), (160, 520, 20), (180, 520, 20), (200, 520, 20), (220, 520, 20), (240, 520, 20), (260, 520, 20), (280, 520, 20), (300, 520, 20), (320, 520, 20), (340, 520, 20), (360, 520, 20), (380, 520, 20), (400, 520, 20), (420, 520, 20), (440, 520, 20), (460, 520, 20), (480, 520, 20), (500, 520, 20), (520, 520, 20), (540, 520, 20), (560, 520, 20), (580, 520, 20), (600, 520, 20), (620, 520, 20), (0, 540, 20), (20, 540, 20), (40, 540, 20), (60, 540, 20), (80, 540, 20), (100, 540, 20), (120, 540, 20), (140, 540, 20), (160, 540, 20), (180, 540, 20), (200, 540, 20), (220, 540, 20), (240, 540, 20), (260, 540, 20), (280, 540, 20), (300, 540, 20), (320, 540, 20), (340, 540, 20), (360, 540, 20), (380, 540, 20), (400, 540, 20), (420, 540, 20), (440, 540, 20), (460, 540, 20), (480, 540, 20), (500, 540, 20), (520, 540, 20), (540, 540, 20), (560, 540, 20), (580, 540, 20), (600, 540, 20), (620, 540, 20), (0, 560, 20), (20, 560, 20), (40, 560, 20), (60, 560, 20), (80, 560, 20), (100, 560, 20), (120, 560, 20), (140, 560, 20), (160, 560, 20), (180, 560, 20), (200, 560, 20), (220, 560, 20), (240, 560, 20), (260, 560, 20), (280, 560, 20), (300, 560, 20), (320, 560, 20), (340, 560, 20), (360, 560, 20), (380, 560, 20), (400, 560, 20), (420, 560, 20), (440, 560, 20), (460, 560, 20), (480, 560, 20), (500, 560, 20), (520, 560, 20), (540, 560, 20), (560, 560, 20), (580, 560, 20), (600, 560, 20), (620, 560, 20), (0, 580, 20), (20, 580, 20), (40, 580, 20), (60, 580, 20), (80, 580, 20), (100, 580, 20), (120, 580, 20), (140, 580, 20), (160, 580, 20), (180, 580, 20), (200, 580, 20), (220, 580, 20), (240, 580, 20), (260, 580, 20), (280, 580, 20), (300, 580, 20), (320, 580, 20), (340, 580, 20), (360, 580, 20), (380, 580, 20), (400, 580, 20), (420, 580, 20), (440, 580, 20), (460, 580, 20), (480, 580, 20), (500, 580, 20), (520, 580, 20), (540, 580, 20), (560, 580, 20), (580, 580, 20), (600, 580, 20), (620, 580, 20), (0, 600, 20), (20, 600, 20), (40, 600, 20), (60, 600, 20), (80, 600, 20), (100, 600, 20), (120, 600, 20), (140, 600, 20), (160, 600, 20), (180, 600, 20), (200, 600, 20), (220, 600, 20), (240, 600, 20), (260, 600, 20), (280, 600, 20), (300, 600, 20), (320, 600, 20), (340, 600, 20), (360, 600, 20), (380, 600, 20), (400, 600, 20), (420, 600, 20), (440, 600, 20), (460, 600, 20), (480, 600, 20), (500, 600, 20), (520, 600, 20), (540, 600, 20), (560, 600, 20), (580, 600, 20), (600, 600, 20), (620, 600, 20), (0, 620, 20), (20, 620, 20), (40, 620, 20), (60, 620, 20), (80, 620, 20), (100, 620, 20), (120, 620, 20), (140, 620, 20), (160, 620, 20), (180, 620, 20), (200, 620, 20), (220, 620, 20), (240, 620, 20), (260, 620, 20), (280, 620, 20), (300, 620, 20), (320, 620, 20), (340, 620, 20), (360, 620, 20), (380, 620, 20), (400, 620, 20), (420, 620, 20), (440, 620, 20), (460, 620, 20), (480, 620, 20), (500, 620, 20), (520, 620, 20), (540, 620, 20), (560, 620, 20), (580, 620, 20), (600, 620, 20), (620, 620, 20)] color3f[] primvars:displayColor = [(0.2784314, 0.64705884, 1)] } def OmniGraph "DeformerGraph" { token evaluator:type = "push" int2 fileFormatVersion = (1, 5) def OmniGraphNode "read_prim_attribute" { custom bool inputs:forceUSDRead = 0 custom token inputs:name = "points" custom rel inputs:prim prepend rel inputs:prim = </defaultPrim/inputGrid> custom token inputs:primPath = "" custom timecode inputs:usdTimecode = -1 custom bool inputs:usePath = 0 token node:type = "omni.graph.nodes.ReadPrimAttribute" int node:typeVersion = 1 custom token outputs:value custom uint64 state:target = 0 custom timecode state:usdTimecode = -1 } def OmniGraphNode "testDeformer" { custom token node:type = "omnigraph.examples.deformerPy" custom int node:typeVersion = 1 custom float inputs:multiplier = 3.0 point3f[] inputs:points.connect = </defaultPrim/DeformerGraph/read_prim_attribute.outputs:value> custom point3f[] outputs:points } def OmniGraphNode "write_prim_attribute" ( prepend apiSchemas = ["NodeGraphNodeAPI"] ) { custom uint inputs:execIn custom token inputs:name = "points" custom rel inputs:prim prepend rel inputs:prim = </defaultPrim/outputGrid> custom token inputs:primPath custom bool inputs:usdWriteBack = 1 custom bool inputs:usePath = 0 custom token inputs:value prepend token inputs:value.connect = </defaultPrim/DeformerGraph/testDeformer.outputs:points> token node:type = "omni.graph.nodes.WritePrimAttribute" int node:typeVersion = 1 custom uint outputs:execOut ( customData = { bool isExecution = 1 } ) } } def Mesh "outputGrid" { uniform bool doubleSided = 1 int[] faceVertexCounts = [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 1, 33, 0, 33, 32, 1, 2, 34, 1, 34, 33, 2, 3, 35, 2, 35, 34, 3, 4, 36, 3, 36, 35, 4, 5, 37, 4, 37, 36, 5, 6, 38, 5, 38, 37, 6, 7, 39, 6, 39, 38, 7, 8, 40, 7, 40, 39, 8, 9, 41, 8, 41, 40, 9, 10, 42, 9, 42, 41, 10, 11, 43, 10, 43, 42, 11, 12, 44, 11, 44, 43, 12, 13, 45, 12, 45, 44, 13, 14, 46, 13, 46, 45, 14, 15, 47, 14, 47, 46, 15, 16, 48, 15, 48, 47, 16, 17, 49, 16, 49, 48, 17, 18, 50, 17, 50, 49, 18, 19, 51, 18, 51, 50, 19, 20, 52, 19, 52, 51, 20, 21, 53, 20, 53, 52, 21, 22, 54, 21, 54, 53, 22, 23, 55, 22, 55, 54, 23, 24, 56, 23, 56, 55, 24, 25, 57, 24, 57, 56, 25, 26, 58, 25, 58, 57, 26, 27, 59, 26, 59, 58, 27, 28, 60, 27, 60, 59, 28, 29, 61, 28, 61, 60, 29, 30, 62, 29, 62, 61, 30, 31, 63, 30, 63, 62, 32, 33, 65, 32, 65, 64, 33, 34, 66, 33, 66, 65, 34, 35, 67, 34, 67, 66, 35, 36, 68, 35, 68, 67, 36, 37, 69, 36, 69, 68, 37, 38, 70, 37, 70, 69, 38, 39, 71, 38, 71, 70, 39, 40, 72, 39, 72, 71, 40, 41, 73, 40, 73, 72, 41, 42, 74, 41, 74, 73, 42, 43, 75, 42, 75, 74, 43, 44, 76, 43, 76, 75, 44, 45, 77, 44, 77, 76, 45, 46, 78, 45, 78, 77, 46, 47, 79, 46, 79, 78, 47, 48, 80, 47, 80, 79, 48, 49, 81, 48, 81, 80, 49, 50, 82, 49, 82, 81, 50, 51, 83, 50, 83, 82, 51, 52, 84, 51, 84, 83, 52, 53, 85, 52, 85, 84, 53, 54, 86, 53, 86, 85, 54, 55, 87, 54, 87, 86, 55, 56, 88, 55, 88, 87, 56, 57, 89, 56, 89, 88, 57, 58, 90, 57, 90, 89, 58, 59, 91, 58, 91, 90, 59, 60, 92, 59, 92, 91, 60, 61, 93, 60, 93, 92, 61, 62, 94, 61, 94, 93, 62, 63, 95, 62, 95, 94, 64, 65, 97, 64, 97, 96, 65, 66, 98, 65, 98, 97, 66, 67, 99, 66, 99, 98, 67, 68, 100, 67, 100, 99, 68, 69, 101, 68, 101, 100, 69, 70, 102, 69, 102, 101, 70, 71, 103, 70, 103, 102, 71, 72, 104, 71, 104, 103, 72, 73, 105, 72, 105, 104, 73, 74, 106, 73, 106, 105, 74, 75, 107, 74, 107, 106, 75, 76, 108, 75, 108, 107, 76, 77, 109, 76, 109, 108, 77, 78, 110, 77, 110, 109, 78, 79, 111, 78, 111, 110, 79, 80, 112, 79, 112, 111, 80, 81, 113, 80, 113, 112, 81, 82, 114, 81, 114, 113, 82, 83, 115, 82, 115, 114, 83, 84, 116, 83, 116, 115, 84, 85, 117, 84, 117, 116, 85, 86, 118, 85, 118, 117, 86, 87, 119, 86, 119, 118, 87, 88, 120, 87, 120, 119, 88, 89, 121, 88, 121, 120, 89, 90, 122, 89, 122, 121, 90, 91, 123, 90, 123, 122, 91, 92, 124, 91, 124, 123, 92, 93, 125, 92, 125, 124, 93, 94, 126, 93, 126, 125, 94, 95, 127, 94, 127, 126, 96, 97, 129, 96, 129, 128, 97, 98, 130, 97, 130, 129, 98, 99, 131, 98, 131, 130, 99, 100, 132, 99, 132, 131, 100, 101, 133, 100, 133, 132, 101, 102, 134, 101, 134, 133, 102, 103, 135, 102, 135, 134, 103, 104, 136, 103, 136, 135, 104, 105, 137, 104, 137, 136, 105, 106, 138, 105, 138, 137, 106, 107, 139, 106, 139, 138, 107, 108, 140, 107, 140, 139, 108, 109, 141, 108, 141, 140, 109, 110, 142, 109, 142, 141, 110, 111, 143, 110, 143, 142, 111, 112, 144, 111, 144, 143, 112, 113, 145, 112, 145, 144, 113, 114, 146, 113, 146, 145, 114, 115, 147, 114, 147, 146, 115, 116, 148, 115, 148, 147, 116, 117, 149, 116, 149, 148, 117, 118, 150, 117, 150, 149, 118, 119, 151, 118, 151, 150, 119, 120, 152, 119, 152, 151, 120, 121, 153, 120, 153, 152, 121, 122, 154, 121, 154, 153, 122, 123, 155, 122, 155, 154, 123, 124, 156, 123, 156, 155, 124, 125, 157, 124, 157, 156, 125, 126, 158, 125, 158, 157, 126, 127, 159, 126, 159, 158, 128, 129, 161, 128, 161, 160, 129, 130, 162, 129, 162, 161, 130, 131, 163, 130, 163, 162, 131, 132, 164, 131, 164, 163, 132, 133, 165, 132, 165, 164, 133, 134, 166, 133, 166, 165, 134, 135, 167, 134, 167, 166, 135, 136, 168, 135, 168, 167, 136, 137, 169, 136, 169, 168, 137, 138, 170, 137, 170, 169, 138, 139, 171, 138, 171, 170, 139, 140, 172, 139, 172, 171, 140, 141, 173, 140, 173, 172, 141, 142, 174, 141, 174, 173, 142, 143, 175, 142, 175, 174, 143, 144, 176, 143, 176, 175, 144, 145, 177, 144, 177, 176, 145, 146, 178, 145, 178, 177, 146, 147, 179, 146, 179, 178, 147, 148, 180, 147, 180, 179, 148, 149, 181, 148, 181, 180, 149, 150, 182, 149, 182, 181, 150, 151, 183, 150, 183, 182, 151, 152, 184, 151, 184, 183, 152, 153, 185, 152, 185, 184, 153, 154, 186, 153, 186, 185, 154, 155, 187, 154, 187, 186, 155, 156, 188, 155, 188, 187, 156, 157, 189, 156, 189, 188, 157, 158, 190, 157, 190, 189, 158, 159, 191, 158, 191, 190, 160, 161, 193, 160, 193, 192, 161, 162, 194, 161, 194, 193, 162, 163, 195, 162, 195, 194, 163, 164, 196, 163, 196, 195, 164, 165, 197, 164, 197, 196, 165, 166, 198, 165, 198, 197, 166, 167, 199, 166, 199, 198, 167, 168, 200, 167, 200, 199, 168, 169, 201, 168, 201, 200, 169, 170, 202, 169, 202, 201, 170, 171, 203, 170, 203, 202, 171, 172, 204, 171, 204, 203, 172, 173, 205, 172, 205, 204, 173, 174, 206, 173, 206, 205, 174, 175, 207, 174, 207, 206, 175, 176, 208, 175, 208, 207, 176, 177, 209, 176, 209, 208, 177, 178, 210, 177, 210, 209, 178, 179, 211, 178, 211, 210, 179, 180, 212, 179, 212, 211, 180, 181, 213, 180, 213, 212, 181, 182, 214, 181, 214, 213, 182, 183, 215, 182, 215, 214, 183, 184, 216, 183, 216, 215, 184, 185, 217, 184, 217, 216, 185, 186, 218, 185, 218, 217, 186, 187, 219, 186, 219, 218, 187, 188, 220, 187, 220, 219, 188, 189, 221, 188, 221, 220, 189, 190, 222, 189, 222, 221, 190, 191, 223, 190, 223, 222, 192, 193, 225, 192, 225, 224, 193, 194, 226, 193, 226, 225, 194, 195, 227, 194, 227, 226, 195, 196, 228, 195, 228, 227, 196, 197, 229, 196, 229, 228, 197, 198, 230, 197, 230, 229, 198, 199, 231, 198, 231, 230, 199, 200, 232, 199, 232, 231, 200, 201, 233, 200, 233, 232, 201, 202, 234, 201, 234, 233, 202, 203, 235, 202, 235, 234, 203, 204, 236, 203, 236, 235, 204, 205, 237, 204, 237, 236, 205, 206, 238, 205, 238, 237, 206, 207, 239, 206, 239, 238, 207, 208, 240, 207, 240, 239, 208, 209, 241, 208, 241, 240, 209, 210, 242, 209, 242, 241, 210, 211, 243, 210, 243, 242, 211, 212, 244, 211, 244, 243, 212, 213, 245, 212, 245, 244, 213, 214, 246, 213, 246, 245, 214, 215, 247, 214, 247, 246, 215, 216, 248, 215, 248, 247, 216, 217, 249, 216, 249, 248, 217, 218, 250, 217, 250, 249, 218, 219, 251, 218, 251, 250, 219, 220, 252, 219, 252, 251, 220, 221, 253, 220, 253, 252, 221, 222, 254, 221, 254, 253, 222, 223, 255, 222, 255, 254, 224, 225, 257, 224, 257, 256, 225, 226, 258, 225, 258, 257, 226, 227, 259, 226, 259, 258, 227, 228, 260, 227, 260, 259, 228, 229, 261, 228, 261, 260, 229, 230, 262, 229, 262, 261, 230, 231, 263, 230, 263, 262, 231, 232, 264, 231, 264, 263, 232, 233, 265, 232, 265, 264, 233, 234, 266, 233, 266, 265, 234, 235, 267, 234, 267, 266, 235, 236, 268, 235, 268, 267, 236, 237, 269, 236, 269, 268, 237, 238, 270, 237, 270, 269, 238, 239, 271, 238, 271, 270, 239, 240, 272, 239, 272, 271, 240, 241, 273, 240, 273, 272, 241, 242, 274, 241, 274, 273, 242, 243, 275, 242, 275, 274, 243, 244, 276, 243, 276, 275, 244, 245, 277, 244, 277, 276, 245, 246, 278, 245, 278, 277, 246, 247, 279, 246, 279, 278, 247, 248, 280, 247, 280, 279, 248, 249, 281, 248, 281, 280, 249, 250, 282, 249, 282, 281, 250, 251, 283, 250, 283, 282, 251, 252, 284, 251, 284, 283, 252, 253, 285, 252, 285, 284, 253, 254, 286, 253, 286, 285, 254, 255, 287, 254, 287, 286, 256, 257, 289, 256, 289, 288, 257, 258, 290, 257, 290, 289, 258, 259, 291, 258, 291, 290, 259, 260, 292, 259, 292, 291, 260, 261, 293, 260, 293, 292, 261, 262, 294, 261, 294, 293, 262, 263, 295, 262, 295, 294, 263, 264, 296, 263, 296, 295, 264, 265, 297, 264, 297, 296, 265, 266, 298, 265, 298, 297, 266, 267, 299, 266, 299, 298, 267, 268, 300, 267, 300, 299, 268, 269, 301, 268, 301, 300, 269, 270, 302, 269, 302, 301, 270, 271, 303, 270, 303, 302, 271, 272, 304, 271, 304, 303, 272, 273, 305, 272, 305, 304, 273, 274, 306, 273, 306, 305, 274, 275, 307, 274, 307, 306, 275, 276, 308, 275, 308, 307, 276, 277, 309, 276, 309, 308, 277, 278, 310, 277, 310, 309, 278, 279, 311, 278, 311, 310, 279, 280, 312, 279, 312, 311, 280, 281, 313, 280, 313, 312, 281, 282, 314, 281, 314, 313, 282, 283, 315, 282, 315, 314, 283, 284, 316, 283, 316, 315, 284, 285, 317, 284, 317, 316, 285, 286, 318, 285, 318, 317, 286, 287, 319, 286, 319, 318, 288, 289, 321, 288, 321, 320, 289, 290, 322, 289, 322, 321, 290, 291, 323, 290, 323, 322, 291, 292, 324, 291, 324, 323, 292, 293, 325, 292, 325, 324, 293, 294, 326, 293, 326, 325, 294, 295, 327, 294, 327, 326, 295, 296, 328, 295, 328, 327, 296, 297, 329, 296, 329, 328, 297, 298, 330, 297, 330, 329, 298, 299, 331, 298, 331, 330, 299, 300, 332, 299, 332, 331, 300, 301, 333, 300, 333, 332, 301, 302, 334, 301, 334, 333, 302, 303, 335, 302, 335, 334, 303, 304, 336, 303, 336, 335, 304, 305, 337, 304, 337, 336, 305, 306, 338, 305, 338, 337, 306, 307, 339, 306, 339, 338, 307, 308, 340, 307, 340, 339, 308, 309, 341, 308, 341, 340, 309, 310, 342, 309, 342, 341, 310, 311, 343, 310, 343, 342, 311, 312, 344, 311, 344, 343, 312, 313, 345, 312, 345, 344, 313, 314, 346, 313, 346, 345, 314, 315, 347, 314, 347, 346, 315, 316, 348, 315, 348, 347, 316, 317, 349, 316, 349, 348, 317, 318, 350, 317, 350, 349, 318, 319, 351, 318, 351, 350, 320, 321, 353, 320, 353, 352, 321, 322, 354, 321, 354, 353, 322, 323, 355, 322, 355, 354, 323, 324, 356, 323, 356, 355, 324, 325, 357, 324, 357, 356, 325, 326, 358, 325, 358, 357, 326, 327, 359, 326, 359, 358, 327, 328, 360, 327, 360, 359, 328, 329, 361, 328, 361, 360, 329, 330, 362, 329, 362, 361, 330, 331, 363, 330, 363, 362, 331, 332, 364, 331, 364, 363, 332, 333, 365, 332, 365, 364, 333, 334, 366, 333, 366, 365, 334, 335, 367, 334, 367, 366, 335, 336, 368, 335, 368, 367, 336, 337, 369, 336, 369, 368, 337, 338, 370, 337, 370, 369, 338, 339, 371, 338, 371, 370, 339, 340, 372, 339, 372, 371, 340, 341, 373, 340, 373, 372, 341, 342, 374, 341, 374, 373, 342, 343, 375, 342, 375, 374, 343, 344, 376, 343, 376, 375, 344, 345, 377, 344, 377, 376, 345, 346, 378, 345, 378, 377, 346, 347, 379, 346, 379, 378, 347, 348, 380, 347, 380, 379, 348, 349, 381, 348, 381, 380, 349, 350, 382, 349, 382, 381, 350, 351, 383, 350, 383, 382, 352, 353, 385, 352, 385, 384, 353, 354, 386, 353, 386, 385, 354, 355, 387, 354, 387, 386, 355, 356, 388, 355, 388, 387, 356, 357, 389, 356, 389, 388, 357, 358, 390, 357, 390, 389, 358, 359, 391, 358, 391, 390, 359, 360, 392, 359, 392, 391, 360, 361, 393, 360, 393, 392, 361, 362, 394, 361, 394, 393, 362, 363, 395, 362, 395, 394, 363, 364, 396, 363, 396, 395, 364, 365, 397, 364, 397, 396, 365, 366, 398, 365, 398, 397, 366, 367, 399, 366, 399, 398, 367, 368, 400, 367, 400, 399, 368, 369, 401, 368, 401, 400, 369, 370, 402, 369, 402, 401, 370, 371, 403, 370, 403, 402, 371, 372, 404, 371, 404, 403, 372, 373, 405, 372, 405, 404, 373, 374, 406, 373, 406, 405, 374, 375, 407, 374, 407, 406, 375, 376, 408, 375, 408, 407, 376, 377, 409, 376, 409, 408, 377, 378, 410, 377, 410, 409, 378, 379, 411, 378, 411, 410, 379, 380, 412, 379, 412, 411, 380, 381, 413, 380, 413, 412, 381, 382, 414, 381, 414, 413, 382, 383, 415, 382, 415, 414, 384, 385, 417, 384, 417, 416, 385, 386, 418, 385, 418, 417, 386, 387, 419, 386, 419, 418, 387, 388, 420, 387, 420, 419, 388, 389, 421, 388, 421, 420, 389, 390, 422, 389, 422, 421, 390, 391, 423, 390, 423, 422, 391, 392, 424, 391, 424, 423, 392, 393, 425, 392, 425, 424, 393, 394, 426, 393, 426, 425, 394, 395, 427, 394, 427, 426, 395, 396, 428, 395, 428, 427, 396, 397, 429, 396, 429, 428, 397, 398, 430, 397, 430, 429, 398, 399, 431, 398, 431, 430, 399, 400, 432, 399, 432, 431, 400, 401, 433, 400, 433, 432, 401, 402, 434, 401, 434, 433, 402, 403, 435, 402, 435, 434, 403, 404, 436, 403, 436, 435, 404, 405, 437, 404, 437, 436, 405, 406, 438, 405, 438, 437, 406, 407, 439, 406, 439, 438, 407, 408, 440, 407, 440, 439, 408, 409, 441, 408, 441, 440, 409, 410, 442, 409, 442, 441, 410, 411, 443, 410, 443, 442, 411, 412, 444, 411, 444, 443, 412, 413, 445, 412, 445, 444, 413, 414, 446, 413, 446, 445, 414, 415, 447, 414, 447, 446, 416, 417, 449, 416, 449, 448, 417, 418, 450, 417, 450, 449, 418, 419, 451, 418, 451, 450, 419, 420, 452, 419, 452, 451, 420, 421, 453, 420, 453, 452, 421, 422, 454, 421, 454, 453, 422, 423, 455, 422, 455, 454, 423, 424, 456, 423, 456, 455, 424, 425, 457, 424, 457, 456, 425, 426, 458, 425, 458, 457, 426, 427, 459, 426, 459, 458, 427, 428, 460, 427, 460, 459, 428, 429, 461, 428, 461, 460, 429, 430, 462, 429, 462, 461, 430, 431, 463, 430, 463, 462, 431, 432, 464, 431, 464, 463, 432, 433, 465, 432, 465, 464, 433, 434, 466, 433, 466, 465, 434, 435, 467, 434, 467, 466, 435, 436, 468, 435, 468, 467, 436, 437, 469, 436, 469, 468, 437, 438, 470, 437, 470, 469, 438, 439, 471, 438, 471, 470, 439, 440, 472, 439, 472, 471, 440, 441, 473, 440, 473, 472, 441, 442, 474, 441, 474, 473, 442, 443, 475, 442, 475, 474, 443, 444, 476, 443, 476, 475, 444, 445, 477, 444, 477, 476, 445, 446, 478, 445, 478, 477, 446, 447, 479, 446, 479, 478, 448, 449, 481, 448, 481, 480, 449, 450, 482, 449, 482, 481, 450, 451, 483, 450, 483, 482, 451, 452, 484, 451, 484, 483, 452, 453, 485, 452, 485, 484, 453, 454, 486, 453, 486, 485, 454, 455, 487, 454, 487, 486, 455, 456, 488, 455, 488, 487, 456, 457, 489, 456, 489, 488, 457, 458, 490, 457, 490, 489, 458, 459, 491, 458, 491, 490, 459, 460, 492, 459, 492, 491, 460, 461, 493, 460, 493, 492, 461, 462, 494, 461, 494, 493, 462, 463, 495, 462, 495, 494, 463, 464, 496, 463, 496, 495, 464, 465, 497, 464, 497, 496, 465, 466, 498, 465, 498, 497, 466, 467, 499, 466, 499, 498, 467, 468, 500, 467, 500, 499, 468, 469, 501, 468, 501, 500, 469, 470, 502, 469, 502, 501, 470, 471, 503, 470, 503, 502, 471, 472, 504, 471, 504, 503, 472, 473, 505, 472, 505, 504, 473, 474, 506, 473, 506, 505, 474, 475, 507, 474, 507, 506, 475, 476, 508, 475, 508, 507, 476, 477, 509, 476, 509, 508, 477, 478, 510, 477, 510, 509, 478, 479, 511, 478, 511, 510, 480, 481, 513, 480, 513, 512, 481, 482, 514, 481, 514, 513, 482, 483, 515, 482, 515, 514, 483, 484, 516, 483, 516, 515, 484, 485, 517, 484, 517, 516, 485, 486, 518, 485, 518, 517, 486, 487, 519, 486, 519, 518, 487, 488, 520, 487, 520, 519, 488, 489, 521, 488, 521, 520, 489, 490, 522, 489, 522, 521, 490, 491, 523, 490, 523, 522, 491, 492, 524, 491, 524, 523, 492, 493, 525, 492, 525, 524, 493, 494, 526, 493, 526, 525, 494, 495, 527, 494, 527, 526, 495, 496, 528, 495, 528, 527, 496, 497, 529, 496, 529, 528, 497, 498, 530, 497, 530, 529, 498, 499, 531, 498, 531, 530, 499, 500, 532, 499, 532, 531, 500, 501, 533, 500, 533, 532, 501, 502, 534, 501, 534, 533, 502, 503, 535, 502, 535, 534, 503, 504, 536, 503, 536, 535, 504, 505, 537, 504, 537, 536, 505, 506, 538, 505, 538, 537, 506, 507, 539, 506, 539, 538, 507, 508, 540, 507, 540, 539, 508, 509, 541, 508, 541, 540, 509, 510, 542, 509, 542, 541, 510, 511, 543, 510, 543, 542, 512, 513, 545, 512, 545, 544, 513, 514, 546, 513, 546, 545, 514, 515, 547, 514, 547, 546, 515, 516, 548, 515, 548, 547, 516, 517, 549, 516, 549, 548, 517, 518, 550, 517, 550, 549, 518, 519, 551, 518, 551, 550, 519, 520, 552, 519, 552, 551, 520, 521, 553, 520, 553, 552, 521, 522, 554, 521, 554, 553, 522, 523, 555, 522, 555, 554, 523, 524, 556, 523, 556, 555, 524, 525, 557, 524, 557, 556, 525, 526, 558, 525, 558, 557, 526, 527, 559, 526, 559, 558, 527, 528, 560, 527, 560, 559, 528, 529, 561, 528, 561, 560, 529, 530, 562, 529, 562, 561, 530, 531, 563, 530, 563, 562, 531, 532, 564, 531, 564, 563, 532, 533, 565, 532, 565, 564, 533, 534, 566, 533, 566, 565, 534, 535, 567, 534, 567, 566, 535, 536, 568, 535, 568, 567, 536, 537, 569, 536, 569, 568, 537, 538, 570, 537, 570, 569, 538, 539, 571, 538, 571, 570, 539, 540, 572, 539, 572, 571, 540, 541, 573, 540, 573, 572, 541, 542, 574, 541, 574, 573, 542, 543, 575, 542, 575, 574, 544, 545, 577, 544, 577, 576, 545, 546, 578, 545, 578, 577, 546, 547, 579, 546, 579, 578, 547, 548, 580, 547, 580, 579, 548, 549, 581, 548, 581, 580, 549, 550, 582, 549, 582, 581, 550, 551, 583, 550, 583, 582, 551, 552, 584, 551, 584, 583, 552, 553, 585, 552, 585, 584, 553, 554, 586, 553, 586, 585, 554, 555, 587, 554, 587, 586, 555, 556, 588, 555, 588, 587, 556, 557, 589, 556, 589, 588, 557, 558, 590, 557, 590, 589, 558, 559, 591, 558, 591, 590, 559, 560, 592, 559, 592, 591, 560, 561, 593, 560, 593, 592, 561, 562, 594, 561, 594, 593, 562, 563, 595, 562, 595, 594, 563, 564, 596, 563, 596, 595, 564, 565, 597, 564, 597, 596, 565, 566, 598, 565, 598, 597, 566, 567, 599, 566, 599, 598, 567, 568, 600, 567, 600, 599, 568, 569, 601, 568, 601, 600, 569, 570, 602, 569, 602, 601, 570, 571, 603, 570, 603, 602, 571, 572, 604, 571, 604, 603, 572, 573, 605, 572, 605, 604, 573, 574, 606, 573, 606, 605, 574, 575, 607, 574, 607, 606, 576, 577, 609, 576, 609, 608, 577, 578, 610, 577, 610, 609, 578, 579, 611, 578, 611, 610, 579, 580, 612, 579, 612, 611, 580, 581, 613, 580, 613, 612, 581, 582, 614, 581, 614, 613, 582, 583, 615, 582, 615, 614, 583, 584, 616, 583, 616, 615, 584, 585, 617, 584, 617, 616, 585, 586, 618, 585, 618, 617, 586, 587, 619, 586, 619, 618, 587, 588, 620, 587, 620, 619, 588, 589, 621, 588, 621, 620, 589, 590, 622, 589, 622, 621, 590, 591, 623, 590, 623, 622, 591, 592, 624, 591, 624, 623, 592, 593, 625, 592, 625, 624, 593, 594, 626, 593, 626, 625, 594, 595, 627, 594, 627, 626, 595, 596, 628, 595, 628, 627, 596, 597, 629, 596, 629, 628, 597, 598, 630, 597, 630, 629, 598, 599, 631, 598, 631, 630, 599, 600, 632, 599, 632, 631, 600, 601, 633, 600, 633, 632, 601, 602, 634, 601, 634, 633, 602, 603, 635, 602, 635, 634, 603, 604, 636, 603, 636, 635, 604, 605, 637, 604, 637, 636, 605, 606, 638, 605, 638, 637, 606, 607, 639, 606, 639, 638, 608, 609, 641, 608, 641, 640, 609, 610, 642, 609, 642, 641, 610, 611, 643, 610, 643, 642, 611, 612, 644, 611, 644, 643, 612, 613, 645, 612, 645, 644, 613, 614, 646, 613, 646, 645, 614, 615, 647, 614, 647, 646, 615, 616, 648, 615, 648, 647, 616, 617, 649, 616, 649, 648, 617, 618, 650, 617, 650, 649, 618, 619, 651, 618, 651, 650, 619, 620, 652, 619, 652, 651, 620, 621, 653, 620, 653, 652, 621, 622, 654, 621, 654, 653, 622, 623, 655, 622, 655, 654, 623, 624, 656, 623, 656, 655, 624, 625, 657, 624, 657, 656, 625, 626, 658, 625, 658, 657, 626, 627, 659, 626, 659, 658, 627, 628, 660, 627, 660, 659, 628, 629, 661, 628, 661, 660, 629, 630, 662, 629, 662, 661, 630, 631, 663, 630, 663, 662, 631, 632, 664, 631, 664, 663, 632, 633, 665, 632, 665, 664, 633, 634, 666, 633, 666, 665, 634, 635, 667, 634, 667, 666, 635, 636, 668, 635, 668, 667, 636, 637, 669, 636, 669, 668, 637, 638, 670, 637, 670, 669, 638, 639, 671, 638, 671, 670, 640, 641, 673, 640, 673, 672, 641, 642, 674, 641, 674, 673, 642, 643, 675, 642, 675, 674, 643, 644, 676, 643, 676, 675, 644, 645, 677, 644, 677, 676, 645, 646, 678, 645, 678, 677, 646, 647, 679, 646, 679, 678, 647, 648, 680, 647, 680, 679, 648, 649, 681, 648, 681, 680, 649, 650, 682, 649, 682, 681, 650, 651, 683, 650, 683, 682, 651, 652, 684, 651, 684, 683, 652, 653, 685, 652, 685, 684, 653, 654, 686, 653, 686, 685, 654, 655, 687, 654, 687, 686, 655, 656, 688, 655, 688, 687, 656, 657, 689, 656, 689, 688, 657, 658, 690, 657, 690, 689, 658, 659, 691, 658, 691, 690, 659, 660, 692, 659, 692, 691, 660, 661, 693, 660, 693, 692, 661, 662, 694, 661, 694, 693, 662, 663, 695, 662, 695, 694, 663, 664, 696, 663, 696, 695, 664, 665, 697, 664, 697, 696, 665, 666, 698, 665, 698, 697, 666, 667, 699, 666, 699, 698, 667, 668, 700, 667, 700, 699, 668, 669, 701, 668, 701, 700, 669, 670, 702, 669, 702, 701, 670, 671, 703, 670, 703, 702, 672, 673, 705, 672, 705, 704, 673, 674, 706, 673, 706, 705, 674, 675, 707, 674, 707, 706, 675, 676, 708, 675, 708, 707, 676, 677, 709, 676, 709, 708, 677, 678, 710, 677, 710, 709, 678, 679, 711, 678, 711, 710, 679, 680, 712, 679, 712, 711, 680, 681, 713, 680, 713, 712, 681, 682, 714, 681, 714, 713, 682, 683, 715, 682, 715, 714, 683, 684, 716, 683, 716, 715, 684, 685, 717, 684, 717, 716, 685, 686, 718, 685, 718, 717, 686, 687, 719, 686, 719, 718, 687, 688, 720, 687, 720, 719, 688, 689, 721, 688, 721, 720, 689, 690, 722, 689, 722, 721, 690, 691, 723, 690, 723, 722, 691, 692, 724, 691, 724, 723, 692, 693, 725, 692, 725, 724, 693, 694, 726, 693, 726, 725, 694, 695, 727, 694, 727, 726, 695, 696, 728, 695, 728, 727, 696, 697, 729, 696, 729, 728, 697, 698, 730, 697, 730, 729, 698, 699, 731, 698, 731, 730, 699, 700, 732, 699, 732, 731, 700, 701, 733, 700, 733, 732, 701, 702, 734, 701, 734, 733, 702, 703, 735, 702, 735, 734, 704, 705, 737, 704, 737, 736, 705, 706, 738, 705, 738, 737, 706, 707, 739, 706, 739, 738, 707, 708, 740, 707, 740, 739, 708, 709, 741, 708, 741, 740, 709, 710, 742, 709, 742, 741, 710, 711, 743, 710, 743, 742, 711, 712, 744, 711, 744, 743, 712, 713, 745, 712, 745, 744, 713, 714, 746, 713, 746, 745, 714, 715, 747, 714, 747, 746, 715, 716, 748, 715, 748, 747, 716, 717, 749, 716, 749, 748, 717, 718, 750, 717, 750, 749, 718, 719, 751, 718, 751, 750, 719, 720, 752, 719, 752, 751, 720, 721, 753, 720, 753, 752, 721, 722, 754, 721, 754, 753, 722, 723, 755, 722, 755, 754, 723, 724, 756, 723, 756, 755, 724, 725, 757, 724, 757, 756, 725, 726, 758, 725, 758, 757, 726, 727, 759, 726, 759, 758, 727, 728, 760, 727, 760, 759, 728, 729, 761, 728, 761, 760, 729, 730, 762, 729, 762, 761, 730, 731, 763, 730, 763, 762, 731, 732, 764, 731, 764, 763, 732, 733, 765, 732, 765, 764, 733, 734, 766, 733, 766, 765, 734, 735, 767, 734, 767, 766, 736, 737, 769, 736, 769, 768, 737, 738, 770, 737, 770, 769, 738, 739, 771, 738, 771, 770, 739, 740, 772, 739, 772, 771, 740, 741, 773, 740, 773, 772, 741, 742, 774, 741, 774, 773, 742, 743, 775, 742, 775, 774, 743, 744, 776, 743, 776, 775, 744, 745, 777, 744, 777, 776, 745, 746, 778, 745, 778, 777, 746, 747, 779, 746, 779, 778, 747, 748, 780, 747, 780, 779, 748, 749, 781, 748, 781, 780, 749, 750, 782, 749, 782, 781, 750, 751, 783, 750, 783, 782, 751, 752, 784, 751, 784, 783, 752, 753, 785, 752, 785, 784, 753, 754, 786, 753, 786, 785, 754, 755, 787, 754, 787, 786, 755, 756, 788, 755, 788, 787, 756, 757, 789, 756, 789, 788, 757, 758, 790, 757, 790, 789, 758, 759, 791, 758, 791, 790, 759, 760, 792, 759, 792, 791, 760, 761, 793, 760, 793, 792, 761, 762, 794, 761, 794, 793, 762, 763, 795, 762, 795, 794, 763, 764, 796, 763, 796, 795, 764, 765, 797, 764, 797, 796, 765, 766, 798, 765, 798, 797, 766, 767, 799, 766, 799, 798, 768, 769, 801, 768, 801, 800, 769, 770, 802, 769, 802, 801, 770, 771, 803, 770, 803, 802, 771, 772, 804, 771, 804, 803, 772, 773, 805, 772, 805, 804, 773, 774, 806, 773, 806, 805, 774, 775, 807, 774, 807, 806, 775, 776, 808, 775, 808, 807, 776, 777, 809, 776, 809, 808, 777, 778, 810, 777, 810, 809, 778, 779, 811, 778, 811, 810, 779, 780, 812, 779, 812, 811, 780, 781, 813, 780, 813, 812, 781, 782, 814, 781, 814, 813, 782, 783, 815, 782, 815, 814, 783, 784, 816, 783, 816, 815, 784, 785, 817, 784, 817, 816, 785, 786, 818, 785, 818, 817, 786, 787, 819, 786, 819, 818, 787, 788, 820, 787, 820, 819, 788, 789, 821, 788, 821, 820, 789, 790, 822, 789, 822, 821, 790, 791, 823, 790, 823, 822, 791, 792, 824, 791, 824, 823, 792, 793, 825, 792, 825, 824, 793, 794, 826, 793, 826, 825, 794, 795, 827, 794, 827, 826, 795, 796, 828, 795, 828, 827, 796, 797, 829, 796, 829, 828, 797, 798, 830, 797, 830, 829, 798, 799, 831, 798, 831, 830, 800, 801, 833, 800, 833, 832, 801, 802, 834, 801, 834, 833, 802, 803, 835, 802, 835, 834, 803, 804, 836, 803, 836, 835, 804, 805, 837, 804, 837, 836, 805, 806, 838, 805, 838, 837, 806, 807, 839, 806, 839, 838, 807, 808, 840, 807, 840, 839, 808, 809, 841, 808, 841, 840, 809, 810, 842, 809, 842, 841, 810, 811, 843, 810, 843, 842, 811, 812, 844, 811, 844, 843, 812, 813, 845, 812, 845, 844, 813, 814, 846, 813, 846, 845, 814, 815, 847, 814, 847, 846, 815, 816, 848, 815, 848, 847, 816, 817, 849, 816, 849, 848, 817, 818, 850, 817, 850, 849, 818, 819, 851, 818, 851, 850, 819, 820, 852, 819, 852, 851, 820, 821, 853, 820, 853, 852, 821, 822, 854, 821, 854, 853, 822, 823, 855, 822, 855, 854, 823, 824, 856, 823, 856, 855, 824, 825, 857, 824, 857, 856, 825, 826, 858, 825, 858, 857, 826, 827, 859, 826, 859, 858, 827, 828, 860, 827, 860, 859, 828, 829, 861, 828, 861, 860, 829, 830, 862, 829, 862, 861, 830, 831, 863, 830, 863, 862, 832, 833, 865, 832, 865, 864, 833, 834, 866, 833, 866, 865, 834, 835, 867, 834, 867, 866, 835, 836, 868, 835, 868, 867, 836, 837, 869, 836, 869, 868, 837, 838, 870, 837, 870, 869, 838, 839, 871, 838, 871, 870, 839, 840, 872, 839, 872, 871, 840, 841, 873, 840, 873, 872, 841, 842, 874, 841, 874, 873, 842, 843, 875, 842, 875, 874, 843, 844, 876, 843, 876, 875, 844, 845, 877, 844, 877, 876, 845, 846, 878, 845, 878, 877, 846, 847, 879, 846, 879, 878, 847, 848, 880, 847, 880, 879, 848, 849, 881, 848, 881, 880, 849, 850, 882, 849, 882, 881, 850, 851, 883, 850, 883, 882, 851, 852, 884, 851, 884, 883, 852, 853, 885, 852, 885, 884, 853, 854, 886, 853, 886, 885, 854, 855, 887, 854, 887, 886, 855, 856, 888, 855, 888, 887, 856, 857, 889, 856, 889, 888, 857, 858, 890, 857, 890, 889, 858, 859, 891, 858, 891, 890, 859, 860, 892, 859, 892, 891, 860, 861, 893, 860, 893, 892, 861, 862, 894, 861, 894, 893, 862, 863, 895, 862, 895, 894, 864, 865, 897, 864, 897, 896, 865, 866, 898, 865, 898, 897, 866, 867, 899, 866, 899, 898, 867, 868, 900, 867, 900, 899, 868, 869, 901, 868, 901, 900, 869, 870, 902, 869, 902, 901, 870, 871, 903, 870, 903, 902, 871, 872, 904, 871, 904, 903, 872, 873, 905, 872, 905, 904, 873, 874, 906, 873, 906, 905, 874, 875, 907, 874, 907, 906, 875, 876, 908, 875, 908, 907, 876, 877, 909, 876, 909, 908, 877, 878, 910, 877, 910, 909, 878, 879, 911, 878, 911, 910, 879, 880, 912, 879, 912, 911, 880, 881, 913, 880, 913, 912, 881, 882, 914, 881, 914, 913, 882, 883, 915, 882, 915, 914, 883, 884, 916, 883, 916, 915, 884, 885, 917, 884, 917, 916, 885, 886, 918, 885, 918, 917, 886, 887, 919, 886, 919, 918, 887, 888, 920, 887, 920, 919, 888, 889, 921, 888, 921, 920, 889, 890, 922, 889, 922, 921, 890, 891, 923, 890, 923, 922, 891, 892, 924, 891, 924, 923, 892, 893, 925, 892, 925, 924, 893, 894, 926, 893, 926, 925, 894, 895, 927, 894, 927, 926, 896, 897, 929, 896, 929, 928, 897, 898, 930, 897, 930, 929, 898, 899, 931, 898, 931, 930, 899, 900, 932, 899, 932, 931, 900, 901, 933, 900, 933, 932, 901, 902, 934, 901, 934, 933, 902, 903, 935, 902, 935, 934, 903, 904, 936, 903, 936, 935, 904, 905, 937, 904, 937, 936, 905, 906, 938, 905, 938, 937, 906, 907, 939, 906, 939, 938, 907, 908, 940, 907, 940, 939, 908, 909, 941, 908, 941, 940, 909, 910, 942, 909, 942, 941, 910, 911, 943, 910, 943, 942, 911, 912, 944, 911, 944, 943, 912, 913, 945, 912, 945, 944, 913, 914, 946, 913, 946, 945, 914, 915, 947, 914, 947, 946, 915, 916, 948, 915, 948, 947, 916, 917, 949, 916, 949, 948, 917, 918, 950, 917, 950, 949, 918, 919, 951, 918, 951, 950, 919, 920, 952, 919, 952, 951, 920, 921, 953, 920, 953, 952, 921, 922, 954, 921, 954, 953, 922, 923, 955, 922, 955, 954, 923, 924, 956, 923, 956, 955, 924, 925, 957, 924, 957, 956, 925, 926, 958, 925, 958, 957, 926, 927, 959, 926, 959, 958, 928, 929, 961, 928, 961, 960, 929, 930, 962, 929, 962, 961, 930, 931, 963, 930, 963, 962, 931, 932, 964, 931, 964, 963, 932, 933, 965, 932, 965, 964, 933, 934, 966, 933, 966, 965, 934, 935, 967, 934, 967, 966, 935, 936, 968, 935, 968, 967, 936, 937, 969, 936, 969, 968, 937, 938, 970, 937, 970, 969, 938, 939, 971, 938, 971, 970, 939, 940, 972, 939, 972, 971, 940, 941, 973, 940, 973, 972, 941, 942, 974, 941, 974, 973, 942, 943, 975, 942, 975, 974, 943, 944, 976, 943, 976, 975, 944, 945, 977, 944, 977, 976, 945, 946, 978, 945, 978, 977, 946, 947, 979, 946, 979, 978, 947, 948, 980, 947, 980, 979, 948, 949, 981, 948, 981, 980, 949, 950, 982, 949, 982, 981, 950, 951, 983, 950, 983, 982, 951, 952, 984, 951, 984, 983, 952, 953, 985, 952, 985, 984, 953, 954, 986, 953, 986, 985, 954, 955, 987, 954, 987, 986, 955, 956, 988, 955, 988, 987, 956, 957, 989, 956, 989, 988, 957, 958, 990, 957, 990, 989, 958, 959, 991, 958, 991, 990, 960, 961, 993, 960, 993, 992, 961, 962, 994, 961, 994, 993, 962, 963, 995, 962, 995, 994, 963, 964, 996, 963, 996, 995, 964, 965, 997, 964, 997, 996, 965, 966, 998, 965, 998, 997, 966, 967, 999, 966, 999, 998, 967, 968, 1000, 967, 1000, 999, 968, 969, 1001, 968, 1001, 1000, 969, 970, 1002, 969, 1002, 1001, 970, 971, 1003, 970, 1003, 1002, 971, 972, 1004, 971, 1004, 1003, 972, 973, 1005, 972, 1005, 1004, 973, 974, 1006, 973, 1006, 1005, 974, 975, 1007, 974, 1007, 1006, 975, 976, 1008, 975, 1008, 1007, 976, 977, 1009, 976, 1009, 1008, 977, 978, 1010, 977, 1010, 1009, 978, 979, 1011, 978, 1011, 1010, 979, 980, 1012, 979, 1012, 1011, 980, 981, 1013, 980, 1013, 1012, 981, 982, 1014, 981, 1014, 1013, 982, 983, 1015, 982, 1015, 1014, 983, 984, 1016, 983, 1016, 1015, 984, 985, 1017, 984, 1017, 1016, 985, 986, 1018, 985, 1018, 1017, 986, 987, 1019, 986, 1019, 1018, 987, 988, 1020, 987, 1020, 1019, 988, 989, 1021, 988, 1021, 1020, 989, 990, 1022, 989, 1022, 1021, 990, 991, 1023, 990, 1023, 1022] color3f[] primvars:displayColor = [(0.784314, 0.64705884, 0.1)] point3f[] points = [(0, 0, 20), (20, 0, 20), (40, 0, 20), (60, 0, 20), (80, 0, 20), (100, 0, 20), (120, 0, 20), (140, 0, 20), (160, 0, 20), (180, 0, 20), (200, 0, 20), (220, 0, 20), (240, 0, 20), (260, 0, 20), (280, 0, 20), (300, 0, 20), (320, 0, 20), (340, 0, 20), (360, 0, 20), (380, 0, 20), (400, 0, 20), (420, 0, 20), (440, 0, 20), (460, 0, 20), (480, 0, 20), (500, 0, 20), (520, 0, 20), (540, 0, 20), (560, 0, 20), (580, 0, 20), (600, 0, 20), (620, 0, 20), (0, 20, 20), (20, 20, 20), (40, 20, 20), (60, 20, 20), (80, 20, 20), (100, 20, 20), (120, 20, 20), (140, 20, 20), (160, 20, 20), (180, 20, 20), (200, 20, 20), (220, 20, 20), (240, 20, 20), (260, 20, 20), (280, 20, 20), (300, 20, 20), (320, 20, 20), (340, 20, 20), (360, 20, 20), (380, 20, 20), (400, 20, 20), (420, 20, 20), (440, 20, 20), (460, 20, 20), (480, 20, 20), (500, 20, 20), (520, 20, 20), (540, 20, 20), (560, 20, 20), (580, 20, 20), (600, 20, 20), (620, 20, 20), (0, 40, 20), (20, 40, 20), (40, 40, 20), (60, 40, 20), (80, 40, 20), (100, 40, 20), (120, 40, 20), (140, 40, 20), (160, 40, 20), (180, 40, 20), (200, 40, 20), (220, 40, 20), (240, 40, 20), (260, 40, 20), (280, 40, 20), (300, 40, 20), (320, 40, 20), (340, 40, 20), (360, 40, 20), (380, 40, 20), (400, 40, 20), (420, 40, 20), (440, 40, 20), (460, 40, 20), (480, 40, 20), (500, 40, 20), (520, 40, 20), (540, 40, 20), (560, 40, 20), (580, 40, 20), (600, 40, 20), (620, 40, 20), (0, 60, 20), (20, 60, 20), (40, 60, 20), (60, 60, 20), (80, 60, 20), (100, 60, 20), (120, 60, 20), (140, 60, 20), (160, 60, 20), (180, 60, 20), (200, 60, 20), (220, 60, 20), (240, 60, 20), (260, 60, 20), (280, 60, 20), (300, 60, 20), (320, 60, 20), (340, 60, 20), (360, 60, 20), (380, 60, 20), (400, 60, 20), (420, 60, 20), (440, 60, 20), (460, 60, 20), (480, 60, 20), (500, 60, 20), (520, 60, 20), (540, 60, 20), (560, 60, 20), (580, 60, 20), (600, 60, 20), (620, 60, 20), (0, 80, 20), (20, 80, 20), (40, 80, 20), (60, 80, 20), (80, 80, 20), (100, 80, 20), (120, 80, 20), (140, 80, 20), (160, 80, 20), (180, 80, 20), (200, 80, 20), (220, 80, 20), (240, 80, 20), (260, 80, 20), (280, 80, 20), (300, 80, 20), (320, 80, 20), (340, 80, 20), (360, 80, 20), (380, 80, 20), (400, 80, 20), (420, 80, 20), (440, 80, 20), (460, 80, 20), (480, 80, 20), (500, 80, 20), (520, 80, 20), (540, 80, 20), (560, 80, 20), (580, 80, 20), (600, 80, 20), (620, 80, 20), (0, 100, 20), (20, 100, 20), (40, 100, 20), (60, 100, 20), (80, 100, 20), (100, 100, 20), (120, 100, 20), (140, 100, 20), (160, 100, 20), (180, 100, 20), (200, 100, 20), (220, 100, 20), (240, 100, 20), (260, 100, 20), (280, 100, 20), (300, 100, 20), (320, 100, 20), (340, 100, 20), (360, 100, 20), (380, 100, 20), (400, 100, 20), (420, 100, 20), (440, 100, 20), (460, 100, 20), (480, 100, 20), (500, 100, 20), (520, 100, 20), (540, 100, 20), (560, 100, 20), (580, 100, 20), (600, 100, 20), (620, 100, 20), (0, 120, 20), (20, 120, 20), (40, 120, 20), (60, 120, 20), (80, 120, 20), (100, 120, 20), (120, 120, 20), (140, 120, 20), (160, 120, 20), (180, 120, 20), (200, 120, 20), (220, 120, 20), (240, 120, 20), (260, 120, 20), (280, 120, 20), (300, 120, 20), (320, 120, 20), (340, 120, 20), (360, 120, 20), (380, 120, 20), (400, 120, 20), (420, 120, 20), (440, 120, 20), (460, 120, 20), (480, 120, 20), (500, 120, 20), (520, 120, 20), (540, 120, 20), (560, 120, 20), (580, 120, 20), (600, 120, 20), (620, 120, 20), (0, 140, 20), (20, 140, 20), (40, 140, 20), (60, 140, 20), (80, 140, 20), (100, 140, 20), (120, 140, 20), (140, 140, 20), (160, 140, 20), (180, 140, 20), (200, 140, 20), (220, 140, 20), (240, 140, 20), (260, 140, 20), (280, 140, 20), (300, 140, 20), (320, 140, 20), (340, 140, 20), (360, 140, 20), (380, 140, 20), (400, 140, 20), (420, 140, 20), (440, 140, 20), (460, 140, 20), (480, 140, 20), (500, 140, 20), (520, 140, 20), (540, 140, 20), (560, 140, 20), (580, 140, 20), (600, 140, 20), (620, 140, 20), (0, 160, 20), (20, 160, 20), (40, 160, 20), (60, 160, 20), (80, 160, 20), (100, 160, 20), (120, 160, 20), (140, 160, 20), (160, 160, 20), (180, 160, 20), (200, 160, 20), (220, 160, 20), (240, 160, 20), (260, 160, 20), (280, 160, 20), (300, 160, 20), (320, 160, 20), (340, 160, 20), (360, 160, 20), (380, 160, 20), (400, 160, 20), (420, 160, 20), (440, 160, 20), (460, 160, 20), (480, 160, 20), (500, 160, 20), (520, 160, 20), (540, 160, 20), (560, 160, 20), (580, 160, 20), (600, 160, 20), (620, 160, 20), (0, 180, 20), (20, 180, 20), (40, 180, 20), (60, 180, 20), (80, 180, 20), (100, 180, 20), (120, 180, 20), (140, 180, 20), (160, 180, 20), (180, 180, 20), (200, 180, 20), (220, 180, 20), (240, 180, 20), (260, 180, 20), (280, 180, 20), (300, 180, 20), (320, 180, 20), (340, 180, 20), (360, 180, 20), (380, 180, 20), (400, 180, 20), (420, 180, 20), (440, 180, 20), (460, 180, 20), (480, 180, 20), (500, 180, 20), (520, 180, 20), (540, 180, 20), (560, 180, 20), (580, 180, 20), (600, 180, 20), (620, 180, 20), (0, 200, 20), (20, 200, 20), (40, 200, 20), (60, 200, 20), (80, 200, 20), (100, 200, 20), (120, 200, 20), (140, 200, 20), (160, 200, 20), (180, 200, 20), (200, 200, 20), (220, 200, 20), (240, 200, 20), (260, 200, 20), (280, 200, 20), (300, 200, 20), (320, 200, 20), (340, 200, 20), (360, 200, 20), (380, 200, 20), (400, 200, 20), (420, 200, 20), (440, 200, 20), (460, 200, 20), (480, 200, 20), (500, 200, 20), (520, 200, 20), (540, 200, 20), (560, 200, 20), (580, 200, 20), (600, 200, 20), (620, 200, 20), (0, 220, 20), (20, 220, 20), (40, 220, 20), (60, 220, 20), (80, 220, 20), (100, 220, 20), (120, 220, 20), (140, 220, 20), (160, 220, 20), (180, 220, 20), (200, 220, 20), (220, 220, 20), (240, 220, 20), (260, 220, 20), (280, 220, 20), (300, 220, 20), (320, 220, 20), (340, 220, 20), (360, 220, 20), (380, 220, 20), (400, 220, 20), (420, 220, 20), (440, 220, 20), (460, 220, 20), (480, 220, 20), (500, 220, 20), (520, 220, 20), (540, 220, 20), (560, 220, 20), (580, 220, 20), (600, 220, 20), (620, 220, 20), (0, 240, 20), (20, 240, 20), (40, 240, 20), (60, 240, 20), (80, 240, 20), (100, 240, 20), (120, 240, 20), (140, 240, 20), (160, 240, 20), (180, 240, 20), (200, 240, 20), (220, 240, 20), (240, 240, 20), (260, 240, 20), (280, 240, 20), (300, 240, 20), (320, 240, 20), (340, 240, 20), (360, 240, 20), (380, 240, 20), (400, 240, 20), (420, 240, 20), (440, 240, 20), (460, 240, 20), (480, 240, 20), (500, 240, 20), (520, 240, 20), (540, 240, 20), (560, 240, 20), (580, 240, 20), (600, 240, 20), (620, 240, 20), (0, 260, 20), (20, 260, 20), (40, 260, 20), (60, 260, 20), (80, 260, 20), (100, 260, 20), (120, 260, 20), (140, 260, 20), (160, 260, 20), (180, 260, 20), (200, 260, 20), (220, 260, 20), (240, 260, 20), (260, 260, 20), (280, 260, 20), (300, 260, 20), (320, 260, 20), (340, 260, 20), (360, 260, 20), (380, 260, 20), (400, 260, 20), (420, 260, 20), (440, 260, 20), (460, 260, 20), (480, 260, 20), (500, 260, 20), (520, 260, 20), (540, 260, 20), (560, 260, 20), (580, 260, 20), (600, 260, 20), (620, 260, 20), (0, 280, 20), (20, 280, 20), (40, 280, 20), (60, 280, 20), (80, 280, 20), (100, 280, 20), (120, 280, 20), (140, 280, 20), (160, 280, 20), (180, 280, 20), (200, 280, 20), (220, 280, 20), (240, 280, 20), (260, 280, 20), (280, 280, 20), (300, 280, 20), (320, 280, 20), (340, 280, 20), (360, 280, 20), (380, 280, 20), (400, 280, 20), (420, 280, 20), (440, 280, 20), (460, 280, 20), (480, 280, 20), (500, 280, 20), (520, 280, 20), (540, 280, 20), (560, 280, 20), (580, 280, 20), (600, 280, 20), (620, 280, 20), (0, 300, 20), (20, 300, 20), (40, 300, 20), (60, 300, 20), (80, 300, 20), (100, 300, 20), (120, 300, 20), (140, 300, 20), (160, 300, 20), (180, 300, 20), (200, 300, 20), (220, 300, 20), (240, 300, 20), (260, 300, 20), (280, 300, 20), (300, 300, 20), (320, 300, 20), (340, 300, 20), (360, 300, 20), (380, 300, 20), (400, 300, 20), (420, 300, 20), (440, 300, 20), (460, 300, 20), (480, 300, 20), (500, 300, 20), (520, 300, 20), (540, 300, 20), (560, 300, 20), (580, 300, 20), (600, 300, 20), (620, 300, 20), (0, 320, 20), (20, 320, 20), (40, 320, 20), (60, 320, 20), (80, 320, 20), (100, 320, 20), (120, 320, 20), (140, 320, 20), (160, 320, 20), (180, 320, 20), (200, 320, 20), (220, 320, 20), (240, 320, 20), (260, 320, 20), (280, 320, 20), (300, 320, 20), (320, 320, 20), (340, 320, 20), (360, 320, 20), (380, 320, 20), (400, 320, 20), (420, 320, 20), (440, 320, 20), (460, 320, 20), (480, 320, 20), (500, 320, 20), (520, 320, 20), (540, 320, 20), (560, 320, 20), (580, 320, 20), (600, 320, 20), (620, 320, 20), (0, 340, 20), (20, 340, 20), (40, 340, 20), (60, 340, 20), (80, 340, 20), (100, 340, 20), (120, 340, 20), (140, 340, 20), (160, 340, 20), (180, 340, 20), (200, 340, 20), (220, 340, 20), (240, 340, 20), (260, 340, 20), (280, 340, 20), (300, 340, 20), (320, 340, 20), (340, 340, 20), (360, 340, 20), (380, 340, 20), (400, 340, 20), (420, 340, 20), (440, 340, 20), (460, 340, 20), (480, 340, 20), (500, 340, 20), (520, 340, 20), (540, 340, 20), (560, 340, 20), (580, 340, 20), (600, 340, 20), (620, 340, 20), (0, 360, 20), (20, 360, 20), (40, 360, 20), (60, 360, 20), (80, 360, 20), (100, 360, 20), (120, 360, 20), (140, 360, 20), (160, 360, 20), (180, 360, 20), (200, 360, 20), (220, 360, 20), (240, 360, 20), (260, 360, 20), (280, 360, 20), (300, 360, 20), (320, 360, 20), (340, 360, 20), (360, 360, 20), (380, 360, 20), (400, 360, 20), (420, 360, 20), (440, 360, 20), (460, 360, 20), (480, 360, 20), (500, 360, 20), (520, 360, 20), (540, 360, 20), (560, 360, 20), (580, 360, 20), (600, 360, 20), (620, 360, 20), (0, 380, 20), (20, 380, 20), (40, 380, 20), (60, 380, 20), (80, 380, 20), (100, 380, 20), (120, 380, 20), (140, 380, 20), (160, 380, 20), (180, 380, 20), (200, 380, 20), (220, 380, 20), (240, 380, 20), (260, 380, 20), (280, 380, 20), (300, 380, 20), (320, 380, 20), (340, 380, 20), (360, 380, 20), (380, 380, 20), (400, 380, 20), (420, 380, 20), (440, 380, 20), (460, 380, 20), (480, 380, 20), (500, 380, 20), (520, 380, 20), (540, 380, 20), (560, 380, 20), (580, 380, 20), (600, 380, 20), (620, 380, 20), (0, 400, 20), (20, 400, 20), (40, 400, 20), (60, 400, 20), (80, 400, 20), (100, 400, 20), (120, 400, 20), (140, 400, 20), (160, 400, 20), (180, 400, 20), (200, 400, 20), (220, 400, 20), (240, 400, 20), (260, 400, 20), (280, 400, 20), (300, 400, 20), (320, 400, 20), (340, 400, 20), (360, 400, 20), (380, 400, 20), (400, 400, 20), (420, 400, 20), (440, 400, 20), (460, 400, 20), (480, 400, 20), (500, 400, 20), (520, 400, 20), (540, 400, 20), (560, 400, 20), (580, 400, 20), (600, 400, 20), (620, 400, 20), (0, 420, 20), (20, 420, 20), (40, 420, 20), (60, 420, 20), (80, 420, 20), (100, 420, 20), (120, 420, 20), (140, 420, 20), (160, 420, 20), (180, 420, 20), (200, 420, 20), (220, 420, 20), (240, 420, 20), (260, 420, 20), (280, 420, 20), (300, 420, 20), (320, 420, 20), (340, 420, 20), (360, 420, 20), (380, 420, 20), (400, 420, 20), (420, 420, 20), (440, 420, 20), (460, 420, 20), (480, 420, 20), (500, 420, 20), (520, 420, 20), (540, 420, 20), (560, 420, 20), (580, 420, 20), (600, 420, 20), (620, 420, 20), (0, 440, 20), (20, 440, 20), (40, 440, 20), (60, 440, 20), (80, 440, 20), (100, 440, 20), (120, 440, 20), (140, 440, 20), (160, 440, 20), (180, 440, 20), (200, 440, 20), (220, 440, 20), (240, 440, 20), (260, 440, 20), (280, 440, 20), (300, 440, 20), (320, 440, 20), (340, 440, 20), (360, 440, 20), (380, 440, 20), (400, 440, 20), (420, 440, 20), (440, 440, 20), (460, 440, 20), (480, 440, 20), (500, 440, 20), (520, 440, 20), (540, 440, 20), (560, 440, 20), (580, 440, 20), (600, 440, 20), (620, 440, 20), (0, 460, 20), (20, 460, 20), (40, 460, 20), (60, 460, 20), (80, 460, 20), (100, 460, 20), (120, 460, 20), (140, 460, 20), (160, 460, 20), (180, 460, 20), (200, 460, 20), (220, 460, 20), (240, 460, 20), (260, 460, 20), (280, 460, 20), (300, 460, 20), (320, 460, 20), (340, 460, 20), (360, 460, 20), (380, 460, 20), (400, 460, 20), (420, 460, 20), (440, 460, 20), (460, 460, 20), (480, 460, 20), (500, 460, 20), (520, 460, 20), (540, 460, 20), (560, 460, 20), (580, 460, 20), (600, 460, 20), (620, 460, 20), (0, 480, 20), (20, 480, 20), (40, 480, 20), (60, 480, 20), (80, 480, 20), (100, 480, 20), (120, 480, 20), (140, 480, 20), (160, 480, 20), (180, 480, 20), (200, 480, 20), (220, 480, 20), (240, 480, 20), (260, 480, 20), (280, 480, 20), (300, 480, 20), (320, 480, 20), (340, 480, 20), (360, 480, 20), (380, 480, 20), (400, 480, 20), (420, 480, 20), (440, 480, 20), (460, 480, 20), (480, 480, 20), (500, 480, 20), (520, 480, 20), (540, 480, 20), (560, 480, 20), (580, 480, 20), (600, 480, 20), (620, 480, 20), (0, 500, 20), (20, 500, 20), (40, 500, 20), (60, 500, 20), (80, 500, 20), (100, 500, 20), (120, 500, 20), (140, 500, 20), (160, 500, 20), (180, 500, 20), (200, 500, 20), (220, 500, 20), (240, 500, 20), (260, 500, 20), (280, 500, 20), (300, 500, 20), (320, 500, 20), (340, 500, 20), (360, 500, 20), (380, 500, 20), (400, 500, 20), (420, 500, 20), (440, 500, 20), (460, 500, 20), (480, 500, 20), (500, 500, 20), (520, 500, 20), (540, 500, 20), (560, 500, 20), (580, 500, 20), (600, 500, 20), (620, 500, 20), (0, 520, 20), (20, 520, 20), (40, 520, 20), (60, 520, 20), (80, 520, 20), (100, 520, 20), (120, 520, 20), (140, 520, 20), (160, 520, 20), (180, 520, 20), (200, 520, 20), (220, 520, 20), (240, 520, 20), (260, 520, 20), (280, 520, 20), (300, 520, 20), (320, 520, 20), (340, 520, 20), (360, 520, 20), (380, 520, 20), (400, 520, 20), (420, 520, 20), (440, 520, 20), (460, 520, 20), (480, 520, 20), (500, 520, 20), (520, 520, 20), (540, 520, 20), (560, 520, 20), (580, 520, 20), (600, 520, 20), (620, 520, 20), (0, 540, 20), (20, 540, 20), (40, 540, 20), (60, 540, 20), (80, 540, 20), (100, 540, 20), (120, 540, 20), (140, 540, 20), (160, 540, 20), (180, 540, 20), (200, 540, 20), (220, 540, 20), (240, 540, 20), (260, 540, 20), (280, 540, 20), (300, 540, 20), (320, 540, 20), (340, 540, 20), (360, 540, 20), (380, 540, 20), (400, 540, 20), (420, 540, 20), (440, 540, 20), (460, 540, 20), (480, 540, 20), (500, 540, 20), (520, 540, 20), (540, 540, 20), (560, 540, 20), (580, 540, 20), (600, 540, 20), (620, 540, 20), (0, 560, 20), (20, 560, 20), (40, 560, 20), (60, 560, 20), (80, 560, 20), (100, 560, 20), (120, 560, 20), (140, 560, 20), (160, 560, 20), (180, 560, 20), (200, 560, 20), (220, 560, 20), (240, 560, 20), (260, 560, 20), (280, 560, 20), (300, 560, 20), (320, 560, 20), (340, 560, 20), (360, 560, 20), (380, 560, 20), (400, 560, 20), (420, 560, 20), (440, 560, 20), (460, 560, 20), (480, 560, 20), (500, 560, 20), (520, 560, 20), (540, 560, 20), (560, 560, 20), (580, 560, 20), (600, 560, 20), (620, 560, 20), (0, 580, 20), (20, 580, 20), (40, 580, 20), (60, 580, 20), (80, 580, 20), (100, 580, 20), (120, 580, 20), (140, 580, 20), (160, 580, 20), (180, 580, 20), (200, 580, 20), (220, 580, 20), (240, 580, 20), (260, 580, 20), (280, 580, 20), (300, 580, 20), (320, 580, 20), (340, 580, 20), (360, 580, 20), (380, 580, 20), (400, 580, 20), (420, 580, 20), (440, 580, 20), (460, 580, 20), (480, 580, 20), (500, 580, 20), (520, 580, 20), (540, 580, 20), (560, 580, 20), (580, 580, 20), (600, 580, 20), (620, 580, 20), (0, 600, 20), (20, 600, 20), (40, 600, 20), (60, 600, 20), (80, 600, 20), (100, 600, 20), (120, 600, 20), (140, 600, 20), (160, 600, 20), (180, 600, 20), (200, 600, 20), (220, 600, 20), (240, 600, 20), (260, 600, 20), (280, 600, 20), (300, 600, 20), (320, 600, 20), (340, 600, 20), (360, 600, 20), (380, 600, 20), (400, 600, 20), (420, 600, 20), (440, 600, 20), (460, 600, 20), (480, 600, 20), (500, 600, 20), (520, 600, 20), (540, 600, 20), (560, 600, 20), (580, 600, 20), (600, 600, 20), (620, 600, 20), (0, 620, 20), (20, 620, 20), (40, 620, 20), (60, 620, 20), (80, 620, 20), (100, 620, 20), (120, 620, 20), (140, 620, 20), (160, 620, 20), (180, 620, 20), (200, 620, 20), (220, 620, 20), (240, 620, 20), (260, 620, 20), (280, 620, 20), (300, 620, 20), (320, 620, 20), (340, 620, 20), (360, 620, 20), (380, 620, 20), (400, 620, 20), (420, 620, 20), (440, 620, 20), (460, 620, 20), (480, 620, 20), (500, 620, 20), (520, 620, 20), (540, 620, 20), (560, 620, 20), (580, 620, 20), (600, 620, 20), (620, 620, 20)] point3f[] points.connect = </defaultPrim/testDeformer.outputs:points> } }
omniverse-code/kit/exts/omni.graph/omni/graph/core/data/ExampleCube.usda
#usda 1.0 ( doc = """Generated from Composed Stage of root layer """ ) def Xform "World" { def Xform "inputPrim" { custom float value = 0.5 } def OmniGraph "graph" { custom token evaluator:type = "push" custom int2 fileFormatVersion = (1, 4) token fabricCacheBacking = "Shared" token pipelineStage = "pipelineStageSimulation" def OmniGraphNode "NoOp" { custom token node:type = "omni.graph.nodes.Noop" custom int node:typeVersion = 1 } } def Cube "Cube" { prepend double size.connect = </World/SimpleNode.outputs:value> } }
omniverse-code/kit/exts/omni.graph/omni/graph/core/data/ExampleScaleCubeWithOutputPrim.usda
#usda 1.0 ( doc = """Generated from Composed Stage of root layer """ ) def Xform "World" { def Xform "inputPrim" { custom float value = 0.5 } def ComputeNode "SimpleNode" { custom float input:value prepend float input:value.connect = </World/inputPrim.value> custom float multiplier = 3 custom token node:type = "omni.graph.examples.cpp.ScaleCubeWithOutputPrim" custom int node:typeVersion = 1 def Output "output" { custom double output:value } } def Cube "Cube" { prepend double size.connect = </World/SimpleNode/output.output:value> } }
omniverse-code/kit/exts/omni.graph/omni/graph/core/data/ExampleTwoPrimDeformers.usda
#usda 1.0 ( doc = """Generated from Composed Stage of root layer """ ) def Xform "defaultPrim" { def Mesh "inputGrid" { uniform bool doubleSided = 1 int[] faceVertexCounts = [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 1, 33, 0, 33, 32, 1, 2, 34, 1, 34, 33, 2, 3, 35, 2, 35, 34, 3, 4, 36, 3, 36, 35, 4, 5, 37, 4, 37, 36, 5, 6, 38, 5, 38, 37, 6, 7, 39, 6, 39, 38, 7, 8, 40, 7, 40, 39, 8, 9, 41, 8, 41, 40, 9, 10, 42, 9, 42, 41, 10, 11, 43, 10, 43, 42, 11, 12, 44, 11, 44, 43, 12, 13, 45, 12, 45, 44, 13, 14, 46, 13, 46, 45, 14, 15, 47, 14, 47, 46, 15, 16, 48, 15, 48, 47, 16, 17, 49, 16, 49, 48, 17, 18, 50, 17, 50, 49, 18, 19, 51, 18, 51, 50, 19, 20, 52, 19, 52, 51, 20, 21, 53, 20, 53, 52, 21, 22, 54, 21, 54, 53, 22, 23, 55, 22, 55, 54, 23, 24, 56, 23, 56, 55, 24, 25, 57, 24, 57, 56, 25, 26, 58, 25, 58, 57, 26, 27, 59, 26, 59, 58, 27, 28, 60, 27, 60, 59, 28, 29, 61, 28, 61, 60, 29, 30, 62, 29, 62, 61, 30, 31, 63, 30, 63, 62, 32, 33, 65, 32, 65, 64, 33, 34, 66, 33, 66, 65, 34, 35, 67, 34, 67, 66, 35, 36, 68, 35, 68, 67, 36, 37, 69, 36, 69, 68, 37, 38, 70, 37, 70, 69, 38, 39, 71, 38, 71, 70, 39, 40, 72, 39, 72, 71, 40, 41, 73, 40, 73, 72, 41, 42, 74, 41, 74, 73, 42, 43, 75, 42, 75, 74, 43, 44, 76, 43, 76, 75, 44, 45, 77, 44, 77, 76, 45, 46, 78, 45, 78, 77, 46, 47, 79, 46, 79, 78, 47, 48, 80, 47, 80, 79, 48, 49, 81, 48, 81, 80, 49, 50, 82, 49, 82, 81, 50, 51, 83, 50, 83, 82, 51, 52, 84, 51, 84, 83, 52, 53, 85, 52, 85, 84, 53, 54, 86, 53, 86, 85, 54, 55, 87, 54, 87, 86, 55, 56, 88, 55, 88, 87, 56, 57, 89, 56, 89, 88, 57, 58, 90, 57, 90, 89, 58, 59, 91, 58, 91, 90, 59, 60, 92, 59, 92, 91, 60, 61, 93, 60, 93, 92, 61, 62, 94, 61, 94, 93, 62, 63, 95, 62, 95, 94, 64, 65, 97, 64, 97, 96, 65, 66, 98, 65, 98, 97, 66, 67, 99, 66, 99, 98, 67, 68, 100, 67, 100, 99, 68, 69, 101, 68, 101, 100, 69, 70, 102, 69, 102, 101, 70, 71, 103, 70, 103, 102, 71, 72, 104, 71, 104, 103, 72, 73, 105, 72, 105, 104, 73, 74, 106, 73, 106, 105, 74, 75, 107, 74, 107, 106, 75, 76, 108, 75, 108, 107, 76, 77, 109, 76, 109, 108, 77, 78, 110, 77, 110, 109, 78, 79, 111, 78, 111, 110, 79, 80, 112, 79, 112, 111, 80, 81, 113, 80, 113, 112, 81, 82, 114, 81, 114, 113, 82, 83, 115, 82, 115, 114, 83, 84, 116, 83, 116, 115, 84, 85, 117, 84, 117, 116, 85, 86, 118, 85, 118, 117, 86, 87, 119, 86, 119, 118, 87, 88, 120, 87, 120, 119, 88, 89, 121, 88, 121, 120, 89, 90, 122, 89, 122, 121, 90, 91, 123, 90, 123, 122, 91, 92, 124, 91, 124, 123, 92, 93, 125, 92, 125, 124, 93, 94, 126, 93, 126, 125, 94, 95, 127, 94, 127, 126, 96, 97, 129, 96, 129, 128, 97, 98, 130, 97, 130, 129, 98, 99, 131, 98, 131, 130, 99, 100, 132, 99, 132, 131, 100, 101, 133, 100, 133, 132, 101, 102, 134, 101, 134, 133, 102, 103, 135, 102, 135, 134, 103, 104, 136, 103, 136, 135, 104, 105, 137, 104, 137, 136, 105, 106, 138, 105, 138, 137, 106, 107, 139, 106, 139, 138, 107, 108, 140, 107, 140, 139, 108, 109, 141, 108, 141, 140, 109, 110, 142, 109, 142, 141, 110, 111, 143, 110, 143, 142, 111, 112, 144, 111, 144, 143, 112, 113, 145, 112, 145, 144, 113, 114, 146, 113, 146, 145, 114, 115, 147, 114, 147, 146, 115, 116, 148, 115, 148, 147, 116, 117, 149, 116, 149, 148, 117, 118, 150, 117, 150, 149, 118, 119, 151, 118, 151, 150, 119, 120, 152, 119, 152, 151, 120, 121, 153, 120, 153, 152, 121, 122, 154, 121, 154, 153, 122, 123, 155, 122, 155, 154, 123, 124, 156, 123, 156, 155, 124, 125, 157, 124, 157, 156, 125, 126, 158, 125, 158, 157, 126, 127, 159, 126, 159, 158, 128, 129, 161, 128, 161, 160, 129, 130, 162, 129, 162, 161, 130, 131, 163, 130, 163, 162, 131, 132, 164, 131, 164, 163, 132, 133, 165, 132, 165, 164, 133, 134, 166, 133, 166, 165, 134, 135, 167, 134, 167, 166, 135, 136, 168, 135, 168, 167, 136, 137, 169, 136, 169, 168, 137, 138, 170, 137, 170, 169, 138, 139, 171, 138, 171, 170, 139, 140, 172, 139, 172, 171, 140, 141, 173, 140, 173, 172, 141, 142, 174, 141, 174, 173, 142, 143, 175, 142, 175, 174, 143, 144, 176, 143, 176, 175, 144, 145, 177, 144, 177, 176, 145, 146, 178, 145, 178, 177, 146, 147, 179, 146, 179, 178, 147, 148, 180, 147, 180, 179, 148, 149, 181, 148, 181, 180, 149, 150, 182, 149, 182, 181, 150, 151, 183, 150, 183, 182, 151, 152, 184, 151, 184, 183, 152, 153, 185, 152, 185, 184, 153, 154, 186, 153, 186, 185, 154, 155, 187, 154, 187, 186, 155, 156, 188, 155, 188, 187, 156, 157, 189, 156, 189, 188, 157, 158, 190, 157, 190, 189, 158, 159, 191, 158, 191, 190, 160, 161, 193, 160, 193, 192, 161, 162, 194, 161, 194, 193, 162, 163, 195, 162, 195, 194, 163, 164, 196, 163, 196, 195, 164, 165, 197, 164, 197, 196, 165, 166, 198, 165, 198, 197, 166, 167, 199, 166, 199, 198, 167, 168, 200, 167, 200, 199, 168, 169, 201, 168, 201, 200, 169, 170, 202, 169, 202, 201, 170, 171, 203, 170, 203, 202, 171, 172, 204, 171, 204, 203, 172, 173, 205, 172, 205, 204, 173, 174, 206, 173, 206, 205, 174, 175, 207, 174, 207, 206, 175, 176, 208, 175, 208, 207, 176, 177, 209, 176, 209, 208, 177, 178, 210, 177, 210, 209, 178, 179, 211, 178, 211, 210, 179, 180, 212, 179, 212, 211, 180, 181, 213, 180, 213, 212, 181, 182, 214, 181, 214, 213, 182, 183, 215, 182, 215, 214, 183, 184, 216, 183, 216, 215, 184, 185, 217, 184, 217, 216, 185, 186, 218, 185, 218, 217, 186, 187, 219, 186, 219, 218, 187, 188, 220, 187, 220, 219, 188, 189, 221, 188, 221, 220, 189, 190, 222, 189, 222, 221, 190, 191, 223, 190, 223, 222, 192, 193, 225, 192, 225, 224, 193, 194, 226, 193, 226, 225, 194, 195, 227, 194, 227, 226, 195, 196, 228, 195, 228, 227, 196, 197, 229, 196, 229, 228, 197, 198, 230, 197, 230, 229, 198, 199, 231, 198, 231, 230, 199, 200, 232, 199, 232, 231, 200, 201, 233, 200, 233, 232, 201, 202, 234, 201, 234, 233, 202, 203, 235, 202, 235, 234, 203, 204, 236, 203, 236, 235, 204, 205, 237, 204, 237, 236, 205, 206, 238, 205, 238, 237, 206, 207, 239, 206, 239, 238, 207, 208, 240, 207, 240, 239, 208, 209, 241, 208, 241, 240, 209, 210, 242, 209, 242, 241, 210, 211, 243, 210, 243, 242, 211, 212, 244, 211, 244, 243, 212, 213, 245, 212, 245, 244, 213, 214, 246, 213, 246, 245, 214, 215, 247, 214, 247, 246, 215, 216, 248, 215, 248, 247, 216, 217, 249, 216, 249, 248, 217, 218, 250, 217, 250, 249, 218, 219, 251, 218, 251, 250, 219, 220, 252, 219, 252, 251, 220, 221, 253, 220, 253, 252, 221, 222, 254, 221, 254, 253, 222, 223, 255, 222, 255, 254, 224, 225, 257, 224, 257, 256, 225, 226, 258, 225, 258, 257, 226, 227, 259, 226, 259, 258, 227, 228, 260, 227, 260, 259, 228, 229, 261, 228, 261, 260, 229, 230, 262, 229, 262, 261, 230, 231, 263, 230, 263, 262, 231, 232, 264, 231, 264, 263, 232, 233, 265, 232, 265, 264, 233, 234, 266, 233, 266, 265, 234, 235, 267, 234, 267, 266, 235, 236, 268, 235, 268, 267, 236, 237, 269, 236, 269, 268, 237, 238, 270, 237, 270, 269, 238, 239, 271, 238, 271, 270, 239, 240, 272, 239, 272, 271, 240, 241, 273, 240, 273, 272, 241, 242, 274, 241, 274, 273, 242, 243, 275, 242, 275, 274, 243, 244, 276, 243, 276, 275, 244, 245, 277, 244, 277, 276, 245, 246, 278, 245, 278, 277, 246, 247, 279, 246, 279, 278, 247, 248, 280, 247, 280, 279, 248, 249, 281, 248, 281, 280, 249, 250, 282, 249, 282, 281, 250, 251, 283, 250, 283, 282, 251, 252, 284, 251, 284, 283, 252, 253, 285, 252, 285, 284, 253, 254, 286, 253, 286, 285, 254, 255, 287, 254, 287, 286, 256, 257, 289, 256, 289, 288, 257, 258, 290, 257, 290, 289, 258, 259, 291, 258, 291, 290, 259, 260, 292, 259, 292, 291, 260, 261, 293, 260, 293, 292, 261, 262, 294, 261, 294, 293, 262, 263, 295, 262, 295, 294, 263, 264, 296, 263, 296, 295, 264, 265, 297, 264, 297, 296, 265, 266, 298, 265, 298, 297, 266, 267, 299, 266, 299, 298, 267, 268, 300, 267, 300, 299, 268, 269, 301, 268, 301, 300, 269, 270, 302, 269, 302, 301, 270, 271, 303, 270, 303, 302, 271, 272, 304, 271, 304, 303, 272, 273, 305, 272, 305, 304, 273, 274, 306, 273, 306, 305, 274, 275, 307, 274, 307, 306, 275, 276, 308, 275, 308, 307, 276, 277, 309, 276, 309, 308, 277, 278, 310, 277, 310, 309, 278, 279, 311, 278, 311, 310, 279, 280, 312, 279, 312, 311, 280, 281, 313, 280, 313, 312, 281, 282, 314, 281, 314, 313, 282, 283, 315, 282, 315, 314, 283, 284, 316, 283, 316, 315, 284, 285, 317, 284, 317, 316, 285, 286, 318, 285, 318, 317, 286, 287, 319, 286, 319, 318, 288, 289, 321, 288, 321, 320, 289, 290, 322, 289, 322, 321, 290, 291, 323, 290, 323, 322, 291, 292, 324, 291, 324, 323, 292, 293, 325, 292, 325, 324, 293, 294, 326, 293, 326, 325, 294, 295, 327, 294, 327, 326, 295, 296, 328, 295, 328, 327, 296, 297, 329, 296, 329, 328, 297, 298, 330, 297, 330, 329, 298, 299, 331, 298, 331, 330, 299, 300, 332, 299, 332, 331, 300, 301, 333, 300, 333, 332, 301, 302, 334, 301, 334, 333, 302, 303, 335, 302, 335, 334, 303, 304, 336, 303, 336, 335, 304, 305, 337, 304, 337, 336, 305, 306, 338, 305, 338, 337, 306, 307, 339, 306, 339, 338, 307, 308, 340, 307, 340, 339, 308, 309, 341, 308, 341, 340, 309, 310, 342, 309, 342, 341, 310, 311, 343, 310, 343, 342, 311, 312, 344, 311, 344, 343, 312, 313, 345, 312, 345, 344, 313, 314, 346, 313, 346, 345, 314, 315, 347, 314, 347, 346, 315, 316, 348, 315, 348, 347, 316, 317, 349, 316, 349, 348, 317, 318, 350, 317, 350, 349, 318, 319, 351, 318, 351, 350, 320, 321, 353, 320, 353, 352, 321, 322, 354, 321, 354, 353, 322, 323, 355, 322, 355, 354, 323, 324, 356, 323, 356, 355, 324, 325, 357, 324, 357, 356, 325, 326, 358, 325, 358, 357, 326, 327, 359, 326, 359, 358, 327, 328, 360, 327, 360, 359, 328, 329, 361, 328, 361, 360, 329, 330, 362, 329, 362, 361, 330, 331, 363, 330, 363, 362, 331, 332, 364, 331, 364, 363, 332, 333, 365, 332, 365, 364, 333, 334, 366, 333, 366, 365, 334, 335, 367, 334, 367, 366, 335, 336, 368, 335, 368, 367, 336, 337, 369, 336, 369, 368, 337, 338, 370, 337, 370, 369, 338, 339, 371, 338, 371, 370, 339, 340, 372, 339, 372, 371, 340, 341, 373, 340, 373, 372, 341, 342, 374, 341, 374, 373, 342, 343, 375, 342, 375, 374, 343, 344, 376, 343, 376, 375, 344, 345, 377, 344, 377, 376, 345, 346, 378, 345, 378, 377, 346, 347, 379, 346, 379, 378, 347, 348, 380, 347, 380, 379, 348, 349, 381, 348, 381, 380, 349, 350, 382, 349, 382, 381, 350, 351, 383, 350, 383, 382, 352, 353, 385, 352, 385, 384, 353, 354, 386, 353, 386, 385, 354, 355, 387, 354, 387, 386, 355, 356, 388, 355, 388, 387, 356, 357, 389, 356, 389, 388, 357, 358, 390, 357, 390, 389, 358, 359, 391, 358, 391, 390, 359, 360, 392, 359, 392, 391, 360, 361, 393, 360, 393, 392, 361, 362, 394, 361, 394, 393, 362, 363, 395, 362, 395, 394, 363, 364, 396, 363, 396, 395, 364, 365, 397, 364, 397, 396, 365, 366, 398, 365, 398, 397, 366, 367, 399, 366, 399, 398, 367, 368, 400, 367, 400, 399, 368, 369, 401, 368, 401, 400, 369, 370, 402, 369, 402, 401, 370, 371, 403, 370, 403, 402, 371, 372, 404, 371, 404, 403, 372, 373, 405, 372, 405, 404, 373, 374, 406, 373, 406, 405, 374, 375, 407, 374, 407, 406, 375, 376, 408, 375, 408, 407, 376, 377, 409, 376, 409, 408, 377, 378, 410, 377, 410, 409, 378, 379, 411, 378, 411, 410, 379, 380, 412, 379, 412, 411, 380, 381, 413, 380, 413, 412, 381, 382, 414, 381, 414, 413, 382, 383, 415, 382, 415, 414, 384, 385, 417, 384, 417, 416, 385, 386, 418, 385, 418, 417, 386, 387, 419, 386, 419, 418, 387, 388, 420, 387, 420, 419, 388, 389, 421, 388, 421, 420, 389, 390, 422, 389, 422, 421, 390, 391, 423, 390, 423, 422, 391, 392, 424, 391, 424, 423, 392, 393, 425, 392, 425, 424, 393, 394, 426, 393, 426, 425, 394, 395, 427, 394, 427, 426, 395, 396, 428, 395, 428, 427, 396, 397, 429, 396, 429, 428, 397, 398, 430, 397, 430, 429, 398, 399, 431, 398, 431, 430, 399, 400, 432, 399, 432, 431, 400, 401, 433, 400, 433, 432, 401, 402, 434, 401, 434, 433, 402, 403, 435, 402, 435, 434, 403, 404, 436, 403, 436, 435, 404, 405, 437, 404, 437, 436, 405, 406, 438, 405, 438, 437, 406, 407, 439, 406, 439, 438, 407, 408, 440, 407, 440, 439, 408, 409, 441, 408, 441, 440, 409, 410, 442, 409, 442, 441, 410, 411, 443, 410, 443, 442, 411, 412, 444, 411, 444, 443, 412, 413, 445, 412, 445, 444, 413, 414, 446, 413, 446, 445, 414, 415, 447, 414, 447, 446, 416, 417, 449, 416, 449, 448, 417, 418, 450, 417, 450, 449, 418, 419, 451, 418, 451, 450, 419, 420, 452, 419, 452, 451, 420, 421, 453, 420, 453, 452, 421, 422, 454, 421, 454, 453, 422, 423, 455, 422, 455, 454, 423, 424, 456, 423, 456, 455, 424, 425, 457, 424, 457, 456, 425, 426, 458, 425, 458, 457, 426, 427, 459, 426, 459, 458, 427, 428, 460, 427, 460, 459, 428, 429, 461, 428, 461, 460, 429, 430, 462, 429, 462, 461, 430, 431, 463, 430, 463, 462, 431, 432, 464, 431, 464, 463, 432, 433, 465, 432, 465, 464, 433, 434, 466, 433, 466, 465, 434, 435, 467, 434, 467, 466, 435, 436, 468, 435, 468, 467, 436, 437, 469, 436, 469, 468, 437, 438, 470, 437, 470, 469, 438, 439, 471, 438, 471, 470, 439, 440, 472, 439, 472, 471, 440, 441, 473, 440, 473, 472, 441, 442, 474, 441, 474, 473, 442, 443, 475, 442, 475, 474, 443, 444, 476, 443, 476, 475, 444, 445, 477, 444, 477, 476, 445, 446, 478, 445, 478, 477, 446, 447, 479, 446, 479, 478, 448, 449, 481, 448, 481, 480, 449, 450, 482, 449, 482, 481, 450, 451, 483, 450, 483, 482, 451, 452, 484, 451, 484, 483, 452, 453, 485, 452, 485, 484, 453, 454, 486, 453, 486, 485, 454, 455, 487, 454, 487, 486, 455, 456, 488, 455, 488, 487, 456, 457, 489, 456, 489, 488, 457, 458, 490, 457, 490, 489, 458, 459, 491, 458, 491, 490, 459, 460, 492, 459, 492, 491, 460, 461, 493, 460, 493, 492, 461, 462, 494, 461, 494, 493, 462, 463, 495, 462, 495, 494, 463, 464, 496, 463, 496, 495, 464, 465, 497, 464, 497, 496, 465, 466, 498, 465, 498, 497, 466, 467, 499, 466, 499, 498, 467, 468, 500, 467, 500, 499, 468, 469, 501, 468, 501, 500, 469, 470, 502, 469, 502, 501, 470, 471, 503, 470, 503, 502, 471, 472, 504, 471, 504, 503, 472, 473, 505, 472, 505, 504, 473, 474, 506, 473, 506, 505, 474, 475, 507, 474, 507, 506, 475, 476, 508, 475, 508, 507, 476, 477, 509, 476, 509, 508, 477, 478, 510, 477, 510, 509, 478, 479, 511, 478, 511, 510, 480, 481, 513, 480, 513, 512, 481, 482, 514, 481, 514, 513, 482, 483, 515, 482, 515, 514, 483, 484, 516, 483, 516, 515, 484, 485, 517, 484, 517, 516, 485, 486, 518, 485, 518, 517, 486, 487, 519, 486, 519, 518, 487, 488, 520, 487, 520, 519, 488, 489, 521, 488, 521, 520, 489, 490, 522, 489, 522, 521, 490, 491, 523, 490, 523, 522, 491, 492, 524, 491, 524, 523, 492, 493, 525, 492, 525, 524, 493, 494, 526, 493, 526, 525, 494, 495, 527, 494, 527, 526, 495, 496, 528, 495, 528, 527, 496, 497, 529, 496, 529, 528, 497, 498, 530, 497, 530, 529, 498, 499, 531, 498, 531, 530, 499, 500, 532, 499, 532, 531, 500, 501, 533, 500, 533, 532, 501, 502, 534, 501, 534, 533, 502, 503, 535, 502, 535, 534, 503, 504, 536, 503, 536, 535, 504, 505, 537, 504, 537, 536, 505, 506, 538, 505, 538, 537, 506, 507, 539, 506, 539, 538, 507, 508, 540, 507, 540, 539, 508, 509, 541, 508, 541, 540, 509, 510, 542, 509, 542, 541, 510, 511, 543, 510, 543, 542, 512, 513, 545, 512, 545, 544, 513, 514, 546, 513, 546, 545, 514, 515, 547, 514, 547, 546, 515, 516, 548, 515, 548, 547, 516, 517, 549, 516, 549, 548, 517, 518, 550, 517, 550, 549, 518, 519, 551, 518, 551, 550, 519, 520, 552, 519, 552, 551, 520, 521, 553, 520, 553, 552, 521, 522, 554, 521, 554, 553, 522, 523, 555, 522, 555, 554, 523, 524, 556, 523, 556, 555, 524, 525, 557, 524, 557, 556, 525, 526, 558, 525, 558, 557, 526, 527, 559, 526, 559, 558, 527, 528, 560, 527, 560, 559, 528, 529, 561, 528, 561, 560, 529, 530, 562, 529, 562, 561, 530, 531, 563, 530, 563, 562, 531, 532, 564, 531, 564, 563, 532, 533, 565, 532, 565, 564, 533, 534, 566, 533, 566, 565, 534, 535, 567, 534, 567, 566, 535, 536, 568, 535, 568, 567, 536, 537, 569, 536, 569, 568, 537, 538, 570, 537, 570, 569, 538, 539, 571, 538, 571, 570, 539, 540, 572, 539, 572, 571, 540, 541, 573, 540, 573, 572, 541, 542, 574, 541, 574, 573, 542, 543, 575, 542, 575, 574, 544, 545, 577, 544, 577, 576, 545, 546, 578, 545, 578, 577, 546, 547, 579, 546, 579, 578, 547, 548, 580, 547, 580, 579, 548, 549, 581, 548, 581, 580, 549, 550, 582, 549, 582, 581, 550, 551, 583, 550, 583, 582, 551, 552, 584, 551, 584, 583, 552, 553, 585, 552, 585, 584, 553, 554, 586, 553, 586, 585, 554, 555, 587, 554, 587, 586, 555, 556, 588, 555, 588, 587, 556, 557, 589, 556, 589, 588, 557, 558, 590, 557, 590, 589, 558, 559, 591, 558, 591, 590, 559, 560, 592, 559, 592, 591, 560, 561, 593, 560, 593, 592, 561, 562, 594, 561, 594, 593, 562, 563, 595, 562, 595, 594, 563, 564, 596, 563, 596, 595, 564, 565, 597, 564, 597, 596, 565, 566, 598, 565, 598, 597, 566, 567, 599, 566, 599, 598, 567, 568, 600, 567, 600, 599, 568, 569, 601, 568, 601, 600, 569, 570, 602, 569, 602, 601, 570, 571, 603, 570, 603, 602, 571, 572, 604, 571, 604, 603, 572, 573, 605, 572, 605, 604, 573, 574, 606, 573, 606, 605, 574, 575, 607, 574, 607, 606, 576, 577, 609, 576, 609, 608, 577, 578, 610, 577, 610, 609, 578, 579, 611, 578, 611, 610, 579, 580, 612, 579, 612, 611, 580, 581, 613, 580, 613, 612, 581, 582, 614, 581, 614, 613, 582, 583, 615, 582, 615, 614, 583, 584, 616, 583, 616, 615, 584, 585, 617, 584, 617, 616, 585, 586, 618, 585, 618, 617, 586, 587, 619, 586, 619, 618, 587, 588, 620, 587, 620, 619, 588, 589, 621, 588, 621, 620, 589, 590, 622, 589, 622, 621, 590, 591, 623, 590, 623, 622, 591, 592, 624, 591, 624, 623, 592, 593, 625, 592, 625, 624, 593, 594, 626, 593, 626, 625, 594, 595, 627, 594, 627, 626, 595, 596, 628, 595, 628, 627, 596, 597, 629, 596, 629, 628, 597, 598, 630, 597, 630, 629, 598, 599, 631, 598, 631, 630, 599, 600, 632, 599, 632, 631, 600, 601, 633, 600, 633, 632, 601, 602, 634, 601, 634, 633, 602, 603, 635, 602, 635, 634, 603, 604, 636, 603, 636, 635, 604, 605, 637, 604, 637, 636, 605, 606, 638, 605, 638, 637, 606, 607, 639, 606, 639, 638, 608, 609, 641, 608, 641, 640, 609, 610, 642, 609, 642, 641, 610, 611, 643, 610, 643, 642, 611, 612, 644, 611, 644, 643, 612, 613, 645, 612, 645, 644, 613, 614, 646, 613, 646, 645, 614, 615, 647, 614, 647, 646, 615, 616, 648, 615, 648, 647, 616, 617, 649, 616, 649, 648, 617, 618, 650, 617, 650, 649, 618, 619, 651, 618, 651, 650, 619, 620, 652, 619, 652, 651, 620, 621, 653, 620, 653, 652, 621, 622, 654, 621, 654, 653, 622, 623, 655, 622, 655, 654, 623, 624, 656, 623, 656, 655, 624, 625, 657, 624, 657, 656, 625, 626, 658, 625, 658, 657, 626, 627, 659, 626, 659, 658, 627, 628, 660, 627, 660, 659, 628, 629, 661, 628, 661, 660, 629, 630, 662, 629, 662, 661, 630, 631, 663, 630, 663, 662, 631, 632, 664, 631, 664, 663, 632, 633, 665, 632, 665, 664, 633, 634, 666, 633, 666, 665, 634, 635, 667, 634, 667, 666, 635, 636, 668, 635, 668, 667, 636, 637, 669, 636, 669, 668, 637, 638, 670, 637, 670, 669, 638, 639, 671, 638, 671, 670, 640, 641, 673, 640, 673, 672, 641, 642, 674, 641, 674, 673, 642, 643, 675, 642, 675, 674, 643, 644, 676, 643, 676, 675, 644, 645, 677, 644, 677, 676, 645, 646, 678, 645, 678, 677, 646, 647, 679, 646, 679, 678, 647, 648, 680, 647, 680, 679, 648, 649, 681, 648, 681, 680, 649, 650, 682, 649, 682, 681, 650, 651, 683, 650, 683, 682, 651, 652, 684, 651, 684, 683, 652, 653, 685, 652, 685, 684, 653, 654, 686, 653, 686, 685, 654, 655, 687, 654, 687, 686, 655, 656, 688, 655, 688, 687, 656, 657, 689, 656, 689, 688, 657, 658, 690, 657, 690, 689, 658, 659, 691, 658, 691, 690, 659, 660, 692, 659, 692, 691, 660, 661, 693, 660, 693, 692, 661, 662, 694, 661, 694, 693, 662, 663, 695, 662, 695, 694, 663, 664, 696, 663, 696, 695, 664, 665, 697, 664, 697, 696, 665, 666, 698, 665, 698, 697, 666, 667, 699, 666, 699, 698, 667, 668, 700, 667, 700, 699, 668, 669, 701, 668, 701, 700, 669, 670, 702, 669, 702, 701, 670, 671, 703, 670, 703, 702, 672, 673, 705, 672, 705, 704, 673, 674, 706, 673, 706, 705, 674, 675, 707, 674, 707, 706, 675, 676, 708, 675, 708, 707, 676, 677, 709, 676, 709, 708, 677, 678, 710, 677, 710, 709, 678, 679, 711, 678, 711, 710, 679, 680, 712, 679, 712, 711, 680, 681, 713, 680, 713, 712, 681, 682, 714, 681, 714, 713, 682, 683, 715, 682, 715, 714, 683, 684, 716, 683, 716, 715, 684, 685, 717, 684, 717, 716, 685, 686, 718, 685, 718, 717, 686, 687, 719, 686, 719, 718, 687, 688, 720, 687, 720, 719, 688, 689, 721, 688, 721, 720, 689, 690, 722, 689, 722, 721, 690, 691, 723, 690, 723, 722, 691, 692, 724, 691, 724, 723, 692, 693, 725, 692, 725, 724, 693, 694, 726, 693, 726, 725, 694, 695, 727, 694, 727, 726, 695, 696, 728, 695, 728, 727, 696, 697, 729, 696, 729, 728, 697, 698, 730, 697, 730, 729, 698, 699, 731, 698, 731, 730, 699, 700, 732, 699, 732, 731, 700, 701, 733, 700, 733, 732, 701, 702, 734, 701, 734, 733, 702, 703, 735, 702, 735, 734, 704, 705, 737, 704, 737, 736, 705, 706, 738, 705, 738, 737, 706, 707, 739, 706, 739, 738, 707, 708, 740, 707, 740, 739, 708, 709, 741, 708, 741, 740, 709, 710, 742, 709, 742, 741, 710, 711, 743, 710, 743, 742, 711, 712, 744, 711, 744, 743, 712, 713, 745, 712, 745, 744, 713, 714, 746, 713, 746, 745, 714, 715, 747, 714, 747, 746, 715, 716, 748, 715, 748, 747, 716, 717, 749, 716, 749, 748, 717, 718, 750, 717, 750, 749, 718, 719, 751, 718, 751, 750, 719, 720, 752, 719, 752, 751, 720, 721, 753, 720, 753, 752, 721, 722, 754, 721, 754, 753, 722, 723, 755, 722, 755, 754, 723, 724, 756, 723, 756, 755, 724, 725, 757, 724, 757, 756, 725, 726, 758, 725, 758, 757, 726, 727, 759, 726, 759, 758, 727, 728, 760, 727, 760, 759, 728, 729, 761, 728, 761, 760, 729, 730, 762, 729, 762, 761, 730, 731, 763, 730, 763, 762, 731, 732, 764, 731, 764, 763, 732, 733, 765, 732, 765, 764, 733, 734, 766, 733, 766, 765, 734, 735, 767, 734, 767, 766, 736, 737, 769, 736, 769, 768, 737, 738, 770, 737, 770, 769, 738, 739, 771, 738, 771, 770, 739, 740, 772, 739, 772, 771, 740, 741, 773, 740, 773, 772, 741, 742, 774, 741, 774, 773, 742, 743, 775, 742, 775, 774, 743, 744, 776, 743, 776, 775, 744, 745, 777, 744, 777, 776, 745, 746, 778, 745, 778, 777, 746, 747, 779, 746, 779, 778, 747, 748, 780, 747, 780, 779, 748, 749, 781, 748, 781, 780, 749, 750, 782, 749, 782, 781, 750, 751, 783, 750, 783, 782, 751, 752, 784, 751, 784, 783, 752, 753, 785, 752, 785, 784, 753, 754, 786, 753, 786, 785, 754, 755, 787, 754, 787, 786, 755, 756, 788, 755, 788, 787, 756, 757, 789, 756, 789, 788, 757, 758, 790, 757, 790, 789, 758, 759, 791, 758, 791, 790, 759, 760, 792, 759, 792, 791, 760, 761, 793, 760, 793, 792, 761, 762, 794, 761, 794, 793, 762, 763, 795, 762, 795, 794, 763, 764, 796, 763, 796, 795, 764, 765, 797, 764, 797, 796, 765, 766, 798, 765, 798, 797, 766, 767, 799, 766, 799, 798, 768, 769, 801, 768, 801, 800, 769, 770, 802, 769, 802, 801, 770, 771, 803, 770, 803, 802, 771, 772, 804, 771, 804, 803, 772, 773, 805, 772, 805, 804, 773, 774, 806, 773, 806, 805, 774, 775, 807, 774, 807, 806, 775, 776, 808, 775, 808, 807, 776, 777, 809, 776, 809, 808, 777, 778, 810, 777, 810, 809, 778, 779, 811, 778, 811, 810, 779, 780, 812, 779, 812, 811, 780, 781, 813, 780, 813, 812, 781, 782, 814, 781, 814, 813, 782, 783, 815, 782, 815, 814, 783, 784, 816, 783, 816, 815, 784, 785, 817, 784, 817, 816, 785, 786, 818, 785, 818, 817, 786, 787, 819, 786, 819, 818, 787, 788, 820, 787, 820, 819, 788, 789, 821, 788, 821, 820, 789, 790, 822, 789, 822, 821, 790, 791, 823, 790, 823, 822, 791, 792, 824, 791, 824, 823, 792, 793, 825, 792, 825, 824, 793, 794, 826, 793, 826, 825, 794, 795, 827, 794, 827, 826, 795, 796, 828, 795, 828, 827, 796, 797, 829, 796, 829, 828, 797, 798, 830, 797, 830, 829, 798, 799, 831, 798, 831, 830, 800, 801, 833, 800, 833, 832, 801, 802, 834, 801, 834, 833, 802, 803, 835, 802, 835, 834, 803, 804, 836, 803, 836, 835, 804, 805, 837, 804, 837, 836, 805, 806, 838, 805, 838, 837, 806, 807, 839, 806, 839, 838, 807, 808, 840, 807, 840, 839, 808, 809, 841, 808, 841, 840, 809, 810, 842, 809, 842, 841, 810, 811, 843, 810, 843, 842, 811, 812, 844, 811, 844, 843, 812, 813, 845, 812, 845, 844, 813, 814, 846, 813, 846, 845, 814, 815, 847, 814, 847, 846, 815, 816, 848, 815, 848, 847, 816, 817, 849, 816, 849, 848, 817, 818, 850, 817, 850, 849, 818, 819, 851, 818, 851, 850, 819, 820, 852, 819, 852, 851, 820, 821, 853, 820, 853, 852, 821, 822, 854, 821, 854, 853, 822, 823, 855, 822, 855, 854, 823, 824, 856, 823, 856, 855, 824, 825, 857, 824, 857, 856, 825, 826, 858, 825, 858, 857, 826, 827, 859, 826, 859, 858, 827, 828, 860, 827, 860, 859, 828, 829, 861, 828, 861, 860, 829, 830, 862, 829, 862, 861, 830, 831, 863, 830, 863, 862, 832, 833, 865, 832, 865, 864, 833, 834, 866, 833, 866, 865, 834, 835, 867, 834, 867, 866, 835, 836, 868, 835, 868, 867, 836, 837, 869, 836, 869, 868, 837, 838, 870, 837, 870, 869, 838, 839, 871, 838, 871, 870, 839, 840, 872, 839, 872, 871, 840, 841, 873, 840, 873, 872, 841, 842, 874, 841, 874, 873, 842, 843, 875, 842, 875, 874, 843, 844, 876, 843, 876, 875, 844, 845, 877, 844, 877, 876, 845, 846, 878, 845, 878, 877, 846, 847, 879, 846, 879, 878, 847, 848, 880, 847, 880, 879, 848, 849, 881, 848, 881, 880, 849, 850, 882, 849, 882, 881, 850, 851, 883, 850, 883, 882, 851, 852, 884, 851, 884, 883, 852, 853, 885, 852, 885, 884, 853, 854, 886, 853, 886, 885, 854, 855, 887, 854, 887, 886, 855, 856, 888, 855, 888, 887, 856, 857, 889, 856, 889, 888, 857, 858, 890, 857, 890, 889, 858, 859, 891, 858, 891, 890, 859, 860, 892, 859, 892, 891, 860, 861, 893, 860, 893, 892, 861, 862, 894, 861, 894, 893, 862, 863, 895, 862, 895, 894, 864, 865, 897, 864, 897, 896, 865, 866, 898, 865, 898, 897, 866, 867, 899, 866, 899, 898, 867, 868, 900, 867, 900, 899, 868, 869, 901, 868, 901, 900, 869, 870, 902, 869, 902, 901, 870, 871, 903, 870, 903, 902, 871, 872, 904, 871, 904, 903, 872, 873, 905, 872, 905, 904, 873, 874, 906, 873, 906, 905, 874, 875, 907, 874, 907, 906, 875, 876, 908, 875, 908, 907, 876, 877, 909, 876, 909, 908, 877, 878, 910, 877, 910, 909, 878, 879, 911, 878, 911, 910, 879, 880, 912, 879, 912, 911, 880, 881, 913, 880, 913, 912, 881, 882, 914, 881, 914, 913, 882, 883, 915, 882, 915, 914, 883, 884, 916, 883, 916, 915, 884, 885, 917, 884, 917, 916, 885, 886, 918, 885, 918, 917, 886, 887, 919, 886, 919, 918, 887, 888, 920, 887, 920, 919, 888, 889, 921, 888, 921, 920, 889, 890, 922, 889, 922, 921, 890, 891, 923, 890, 923, 922, 891, 892, 924, 891, 924, 923, 892, 893, 925, 892, 925, 924, 893, 894, 926, 893, 926, 925, 894, 895, 927, 894, 927, 926, 896, 897, 929, 896, 929, 928, 897, 898, 930, 897, 930, 929, 898, 899, 931, 898, 931, 930, 899, 900, 932, 899, 932, 931, 900, 901, 933, 900, 933, 932, 901, 902, 934, 901, 934, 933, 902, 903, 935, 902, 935, 934, 903, 904, 936, 903, 936, 935, 904, 905, 937, 904, 937, 936, 905, 906, 938, 905, 938, 937, 906, 907, 939, 906, 939, 938, 907, 908, 940, 907, 940, 939, 908, 909, 941, 908, 941, 940, 909, 910, 942, 909, 942, 941, 910, 911, 943, 910, 943, 942, 911, 912, 944, 911, 944, 943, 912, 913, 945, 912, 945, 944, 913, 914, 946, 913, 946, 945, 914, 915, 947, 914, 947, 946, 915, 916, 948, 915, 948, 947, 916, 917, 949, 916, 949, 948, 917, 918, 950, 917, 950, 949, 918, 919, 951, 918, 951, 950, 919, 920, 952, 919, 952, 951, 920, 921, 953, 920, 953, 952, 921, 922, 954, 921, 954, 953, 922, 923, 955, 922, 955, 954, 923, 924, 956, 923, 956, 955, 924, 925, 957, 924, 957, 956, 925, 926, 958, 925, 958, 957, 926, 927, 959, 926, 959, 958, 928, 929, 961, 928, 961, 960, 929, 930, 962, 929, 962, 961, 930, 931, 963, 930, 963, 962, 931, 932, 964, 931, 964, 963, 932, 933, 965, 932, 965, 964, 933, 934, 966, 933, 966, 965, 934, 935, 967, 934, 967, 966, 935, 936, 968, 935, 968, 967, 936, 937, 969, 936, 969, 968, 937, 938, 970, 937, 970, 969, 938, 939, 971, 938, 971, 970, 939, 940, 972, 939, 972, 971, 940, 941, 973, 940, 973, 972, 941, 942, 974, 941, 974, 973, 942, 943, 975, 942, 975, 974, 943, 944, 976, 943, 976, 975, 944, 945, 977, 944, 977, 976, 945, 946, 978, 945, 978, 977, 946, 947, 979, 946, 979, 978, 947, 948, 980, 947, 980, 979, 948, 949, 981, 948, 981, 980, 949, 950, 982, 949, 982, 981, 950, 951, 983, 950, 983, 982, 951, 952, 984, 951, 984, 983, 952, 953, 985, 952, 985, 984, 953, 954, 986, 953, 986, 985, 954, 955, 987, 954, 987, 986, 955, 956, 988, 955, 988, 987, 956, 957, 989, 956, 989, 988, 957, 958, 990, 957, 990, 989, 958, 959, 991, 958, 991, 990, 960, 961, 993, 960, 993, 992, 961, 962, 994, 961, 994, 993, 962, 963, 995, 962, 995, 994, 963, 964, 996, 963, 996, 995, 964, 965, 997, 964, 997, 996, 965, 966, 998, 965, 998, 997, 966, 967, 999, 966, 999, 998, 967, 968, 1000, 967, 1000, 999, 968, 969, 1001, 968, 1001, 1000, 969, 970, 1002, 969, 1002, 1001, 970, 971, 1003, 970, 1003, 1002, 971, 972, 1004, 971, 1004, 1003, 972, 973, 1005, 972, 1005, 1004, 973, 974, 1006, 973, 1006, 1005, 974, 975, 1007, 974, 1007, 1006, 975, 976, 1008, 975, 1008, 1007, 976, 977, 1009, 976, 1009, 1008, 977, 978, 1010, 977, 1010, 1009, 978, 979, 1011, 978, 1011, 1010, 979, 980, 1012, 979, 1012, 1011, 980, 981, 1013, 980, 1013, 1012, 981, 982, 1014, 981, 1014, 1013, 982, 983, 1015, 982, 1015, 1014, 983, 984, 1016, 983, 1016, 1015, 984, 985, 1017, 984, 1017, 1016, 985, 986, 1018, 985, 1018, 1017, 986, 987, 1019, 986, 1019, 1018, 987, 988, 1020, 987, 1020, 1019, 988, 989, 1021, 988, 1021, 1020, 989, 990, 1022, 989, 1022, 1021, 990, 991, 1023, 990, 1023, 1022] point3f[] points = [(0, 0, 20), (20, 0, 20), (40, 0, 20), (60, 0, 20), (80, 0, 20), (100, 0, 20), (120, 0, 20), (140, 0, 20), (160, 0, 20), (180, 0, 20), (200, 0, 20), (220, 0, 20), (240, 0, 20), (260, 0, 20), (280, 0, 20), (300, 0, 20), (320, 0, 20), (340, 0, 20), (360, 0, 20), (380, 0, 20), (400, 0, 20), (420, 0, 20), (440, 0, 20), (460, 0, 20), (480, 0, 20), (500, 0, 20), (520, 0, 20), (540, 0, 20), (560, 0, 20), (580, 0, 20), (600, 0, 20), (620, 0, 20), (0, 20, 20), (20, 20, 20), (40, 20, 20), (60, 20, 20), (80, 20, 20), (100, 20, 20), (120, 20, 20), (140, 20, 20), (160, 20, 20), (180, 20, 20), (200, 20, 20), (220, 20, 20), (240, 20, 20), (260, 20, 20), (280, 20, 20), (300, 20, 20), (320, 20, 20), (340, 20, 20), (360, 20, 20), (380, 20, 20), (400, 20, 20), (420, 20, 20), (440, 20, 20), (460, 20, 20), (480, 20, 20), (500, 20, 20), (520, 20, 20), (540, 20, 20), (560, 20, 20), (580, 20, 20), (600, 20, 20), (620, 20, 20), (0, 40, 20), (20, 40, 20), (40, 40, 20), (60, 40, 20), (80, 40, 20), (100, 40, 20), (120, 40, 20), (140, 40, 20), (160, 40, 20), (180, 40, 20), (200, 40, 20), (220, 40, 20), (240, 40, 20), (260, 40, 20), (280, 40, 20), (300, 40, 20), (320, 40, 20), (340, 40, 20), (360, 40, 20), (380, 40, 20), (400, 40, 20), (420, 40, 20), (440, 40, 20), (460, 40, 20), (480, 40, 20), (500, 40, 20), (520, 40, 20), (540, 40, 20), (560, 40, 20), (580, 40, 20), (600, 40, 20), (620, 40, 20), (0, 60, 20), (20, 60, 20), (40, 60, 20), (60, 60, 20), (80, 60, 20), (100, 60, 20), (120, 60, 20), (140, 60, 20), (160, 60, 20), (180, 60, 20), (200, 60, 20), (220, 60, 20), (240, 60, 20), (260, 60, 20), (280, 60, 20), (300, 60, 20), (320, 60, 20), (340, 60, 20), (360, 60, 20), (380, 60, 20), (400, 60, 20), (420, 60, 20), (440, 60, 20), (460, 60, 20), (480, 60, 20), (500, 60, 20), (520, 60, 20), (540, 60, 20), (560, 60, 20), (580, 60, 20), (600, 60, 20), (620, 60, 20), (0, 80, 20), (20, 80, 20), (40, 80, 20), (60, 80, 20), (80, 80, 20), (100, 80, 20), (120, 80, 20), (140, 80, 20), (160, 80, 20), (180, 80, 20), (200, 80, 20), (220, 80, 20), (240, 80, 20), (260, 80, 20), (280, 80, 20), (300, 80, 20), (320, 80, 20), (340, 80, 20), (360, 80, 20), (380, 80, 20), (400, 80, 20), (420, 80, 20), (440, 80, 20), (460, 80, 20), (480, 80, 20), (500, 80, 20), (520, 80, 20), (540, 80, 20), (560, 80, 20), (580, 80, 20), (600, 80, 20), (620, 80, 20), (0, 100, 20), (20, 100, 20), (40, 100, 20), (60, 100, 20), (80, 100, 20), (100, 100, 20), (120, 100, 20), (140, 100, 20), (160, 100, 20), (180, 100, 20), (200, 100, 20), (220, 100, 20), (240, 100, 20), (260, 100, 20), (280, 100, 20), (300, 100, 20), (320, 100, 20), (340, 100, 20), (360, 100, 20), (380, 100, 20), (400, 100, 20), (420, 100, 20), (440, 100, 20), (460, 100, 20), (480, 100, 20), (500, 100, 20), (520, 100, 20), (540, 100, 20), (560, 100, 20), (580, 100, 20), (600, 100, 20), (620, 100, 20), (0, 120, 20), (20, 120, 20), (40, 120, 20), (60, 120, 20), (80, 120, 20), (100, 120, 20), (120, 120, 20), (140, 120, 20), (160, 120, 20), (180, 120, 20), (200, 120, 20), (220, 120, 20), (240, 120, 20), (260, 120, 20), (280, 120, 20), (300, 120, 20), (320, 120, 20), (340, 120, 20), (360, 120, 20), (380, 120, 20), (400, 120, 20), (420, 120, 20), (440, 120, 20), (460, 120, 20), (480, 120, 20), (500, 120, 20), (520, 120, 20), (540, 120, 20), (560, 120, 20), (580, 120, 20), (600, 120, 20), (620, 120, 20), (0, 140, 20), (20, 140, 20), (40, 140, 20), (60, 140, 20), (80, 140, 20), (100, 140, 20), (120, 140, 20), (140, 140, 20), (160, 140, 20), (180, 140, 20), (200, 140, 20), (220, 140, 20), (240, 140, 20), (260, 140, 20), (280, 140, 20), (300, 140, 20), (320, 140, 20), (340, 140, 20), (360, 140, 20), (380, 140, 20), (400, 140, 20), (420, 140, 20), (440, 140, 20), (460, 140, 20), (480, 140, 20), (500, 140, 20), (520, 140, 20), (540, 140, 20), (560, 140, 20), (580, 140, 20), (600, 140, 20), (620, 140, 20), (0, 160, 20), (20, 160, 20), (40, 160, 20), (60, 160, 20), (80, 160, 20), (100, 160, 20), (120, 160, 20), (140, 160, 20), (160, 160, 20), (180, 160, 20), (200, 160, 20), (220, 160, 20), (240, 160, 20), (260, 160, 20), (280, 160, 20), (300, 160, 20), (320, 160, 20), (340, 160, 20), (360, 160, 20), (380, 160, 20), (400, 160, 20), (420, 160, 20), (440, 160, 20), (460, 160, 20), (480, 160, 20), (500, 160, 20), (520, 160, 20), (540, 160, 20), (560, 160, 20), (580, 160, 20), (600, 160, 20), (620, 160, 20), (0, 180, 20), (20, 180, 20), (40, 180, 20), (60, 180, 20), (80, 180, 20), (100, 180, 20), (120, 180, 20), (140, 180, 20), (160, 180, 20), (180, 180, 20), (200, 180, 20), (220, 180, 20), (240, 180, 20), (260, 180, 20), (280, 180, 20), (300, 180, 20), (320, 180, 20), (340, 180, 20), (360, 180, 20), (380, 180, 20), (400, 180, 20), (420, 180, 20), (440, 180, 20), (460, 180, 20), (480, 180, 20), (500, 180, 20), (520, 180, 20), (540, 180, 20), (560, 180, 20), (580, 180, 20), (600, 180, 20), (620, 180, 20), (0, 200, 20), (20, 200, 20), (40, 200, 20), (60, 200, 20), (80, 200, 20), (100, 200, 20), (120, 200, 20), (140, 200, 20), (160, 200, 20), (180, 200, 20), (200, 200, 20), (220, 200, 20), (240, 200, 20), (260, 200, 20), (280, 200, 20), (300, 200, 20), (320, 200, 20), (340, 200, 20), (360, 200, 20), (380, 200, 20), (400, 200, 20), (420, 200, 20), (440, 200, 20), (460, 200, 20), (480, 200, 20), (500, 200, 20), (520, 200, 20), (540, 200, 20), (560, 200, 20), (580, 200, 20), (600, 200, 20), (620, 200, 20), (0, 220, 20), (20, 220, 20), (40, 220, 20), (60, 220, 20), (80, 220, 20), (100, 220, 20), (120, 220, 20), (140, 220, 20), (160, 220, 20), (180, 220, 20), (200, 220, 20), (220, 220, 20), (240, 220, 20), (260, 220, 20), (280, 220, 20), (300, 220, 20), (320, 220, 20), (340, 220, 20), (360, 220, 20), (380, 220, 20), (400, 220, 20), (420, 220, 20), (440, 220, 20), (460, 220, 20), (480, 220, 20), (500, 220, 20), (520, 220, 20), (540, 220, 20), (560, 220, 20), (580, 220, 20), (600, 220, 20), (620, 220, 20), (0, 240, 20), (20, 240, 20), (40, 240, 20), (60, 240, 20), (80, 240, 20), (100, 240, 20), (120, 240, 20), (140, 240, 20), (160, 240, 20), (180, 240, 20), (200, 240, 20), (220, 240, 20), (240, 240, 20), (260, 240, 20), (280, 240, 20), (300, 240, 20), (320, 240, 20), (340, 240, 20), (360, 240, 20), (380, 240, 20), (400, 240, 20), (420, 240, 20), (440, 240, 20), (460, 240, 20), (480, 240, 20), (500, 240, 20), (520, 240, 20), (540, 240, 20), (560, 240, 20), (580, 240, 20), (600, 240, 20), (620, 240, 20), (0, 260, 20), (20, 260, 20), (40, 260, 20), (60, 260, 20), (80, 260, 20), (100, 260, 20), (120, 260, 20), (140, 260, 20), (160, 260, 20), (180, 260, 20), (200, 260, 20), (220, 260, 20), (240, 260, 20), (260, 260, 20), (280, 260, 20), (300, 260, 20), (320, 260, 20), (340, 260, 20), (360, 260, 20), (380, 260, 20), (400, 260, 20), (420, 260, 20), (440, 260, 20), (460, 260, 20), (480, 260, 20), (500, 260, 20), (520, 260, 20), (540, 260, 20), (560, 260, 20), (580, 260, 20), (600, 260, 20), (620, 260, 20), (0, 280, 20), (20, 280, 20), (40, 280, 20), (60, 280, 20), (80, 280, 20), (100, 280, 20), (120, 280, 20), (140, 280, 20), (160, 280, 20), (180, 280, 20), (200, 280, 20), (220, 280, 20), (240, 280, 20), (260, 280, 20), (280, 280, 20), (300, 280, 20), (320, 280, 20), (340, 280, 20), (360, 280, 20), (380, 280, 20), (400, 280, 20), (420, 280, 20), (440, 280, 20), (460, 280, 20), (480, 280, 20), (500, 280, 20), (520, 280, 20), (540, 280, 20), (560, 280, 20), (580, 280, 20), (600, 280, 20), (620, 280, 20), (0, 300, 20), (20, 300, 20), (40, 300, 20), (60, 300, 20), (80, 300, 20), (100, 300, 20), (120, 300, 20), (140, 300, 20), (160, 300, 20), (180, 300, 20), (200, 300, 20), (220, 300, 20), (240, 300, 20), (260, 300, 20), (280, 300, 20), (300, 300, 20), (320, 300, 20), (340, 300, 20), (360, 300, 20), (380, 300, 20), (400, 300, 20), (420, 300, 20), (440, 300, 20), (460, 300, 20), (480, 300, 20), (500, 300, 20), (520, 300, 20), (540, 300, 20), (560, 300, 20), (580, 300, 20), (600, 300, 20), (620, 300, 20), (0, 320, 20), (20, 320, 20), (40, 320, 20), (60, 320, 20), (80, 320, 20), (100, 320, 20), (120, 320, 20), (140, 320, 20), (160, 320, 20), (180, 320, 20), (200, 320, 20), (220, 320, 20), (240, 320, 20), (260, 320, 20), (280, 320, 20), (300, 320, 20), (320, 320, 20), (340, 320, 20), (360, 320, 20), (380, 320, 20), (400, 320, 20), (420, 320, 20), (440, 320, 20), (460, 320, 20), (480, 320, 20), (500, 320, 20), (520, 320, 20), (540, 320, 20), (560, 320, 20), (580, 320, 20), (600, 320, 20), (620, 320, 20), (0, 340, 20), (20, 340, 20), (40, 340, 20), (60, 340, 20), (80, 340, 20), (100, 340, 20), (120, 340, 20), (140, 340, 20), (160, 340, 20), (180, 340, 20), (200, 340, 20), (220, 340, 20), (240, 340, 20), (260, 340, 20), (280, 340, 20), (300, 340, 20), (320, 340, 20), (340, 340, 20), (360, 340, 20), (380, 340, 20), (400, 340, 20), (420, 340, 20), (440, 340, 20), (460, 340, 20), (480, 340, 20), (500, 340, 20), (520, 340, 20), (540, 340, 20), (560, 340, 20), (580, 340, 20), (600, 340, 20), (620, 340, 20), (0, 360, 20), (20, 360, 20), (40, 360, 20), (60, 360, 20), (80, 360, 20), (100, 360, 20), (120, 360, 20), (140, 360, 20), (160, 360, 20), (180, 360, 20), (200, 360, 20), (220, 360, 20), (240, 360, 20), (260, 360, 20), (280, 360, 20), (300, 360, 20), (320, 360, 20), (340, 360, 20), (360, 360, 20), (380, 360, 20), (400, 360, 20), (420, 360, 20), (440, 360, 20), (460, 360, 20), (480, 360, 20), (500, 360, 20), (520, 360, 20), (540, 360, 20), (560, 360, 20), (580, 360, 20), (600, 360, 20), (620, 360, 20), (0, 380, 20), (20, 380, 20), (40, 380, 20), (60, 380, 20), (80, 380, 20), (100, 380, 20), (120, 380, 20), (140, 380, 20), (160, 380, 20), (180, 380, 20), (200, 380, 20), (220, 380, 20), (240, 380, 20), (260, 380, 20), (280, 380, 20), (300, 380, 20), (320, 380, 20), (340, 380, 20), (360, 380, 20), (380, 380, 20), (400, 380, 20), (420, 380, 20), (440, 380, 20), (460, 380, 20), (480, 380, 20), (500, 380, 20), (520, 380, 20), (540, 380, 20), (560, 380, 20), (580, 380, 20), (600, 380, 20), (620, 380, 20), (0, 400, 20), (20, 400, 20), (40, 400, 20), (60, 400, 20), (80, 400, 20), (100, 400, 20), (120, 400, 20), (140, 400, 20), (160, 400, 20), (180, 400, 20), (200, 400, 20), (220, 400, 20), (240, 400, 20), (260, 400, 20), (280, 400, 20), (300, 400, 20), (320, 400, 20), (340, 400, 20), (360, 400, 20), (380, 400, 20), (400, 400, 20), (420, 400, 20), (440, 400, 20), (460, 400, 20), (480, 400, 20), (500, 400, 20), (520, 400, 20), (540, 400, 20), (560, 400, 20), (580, 400, 20), (600, 400, 20), (620, 400, 20), (0, 420, 20), (20, 420, 20), (40, 420, 20), (60, 420, 20), (80, 420, 20), (100, 420, 20), (120, 420, 20), (140, 420, 20), (160, 420, 20), (180, 420, 20), (200, 420, 20), (220, 420, 20), (240, 420, 20), (260, 420, 20), (280, 420, 20), (300, 420, 20), (320, 420, 20), (340, 420, 20), (360, 420, 20), (380, 420, 20), (400, 420, 20), (420, 420, 20), (440, 420, 20), (460, 420, 20), (480, 420, 20), (500, 420, 20), (520, 420, 20), (540, 420, 20), (560, 420, 20), (580, 420, 20), (600, 420, 20), (620, 420, 20), (0, 440, 20), (20, 440, 20), (40, 440, 20), (60, 440, 20), (80, 440, 20), (100, 440, 20), (120, 440, 20), (140, 440, 20), (160, 440, 20), (180, 440, 20), (200, 440, 20), (220, 440, 20), (240, 440, 20), (260, 440, 20), (280, 440, 20), (300, 440, 20), (320, 440, 20), (340, 440, 20), (360, 440, 20), (380, 440, 20), (400, 440, 20), (420, 440, 20), (440, 440, 20), (460, 440, 20), (480, 440, 20), (500, 440, 20), (520, 440, 20), (540, 440, 20), (560, 440, 20), (580, 440, 20), (600, 440, 20), (620, 440, 20), (0, 460, 20), (20, 460, 20), (40, 460, 20), (60, 460, 20), (80, 460, 20), (100, 460, 20), (120, 460, 20), (140, 460, 20), (160, 460, 20), (180, 460, 20), (200, 460, 20), (220, 460, 20), (240, 460, 20), (260, 460, 20), (280, 460, 20), (300, 460, 20), (320, 460, 20), (340, 460, 20), (360, 460, 20), (380, 460, 20), (400, 460, 20), (420, 460, 20), (440, 460, 20), (460, 460, 20), (480, 460, 20), (500, 460, 20), (520, 460, 20), (540, 460, 20), (560, 460, 20), (580, 460, 20), (600, 460, 20), (620, 460, 20), (0, 480, 20), (20, 480, 20), (40, 480, 20), (60, 480, 20), (80, 480, 20), (100, 480, 20), (120, 480, 20), (140, 480, 20), (160, 480, 20), (180, 480, 20), (200, 480, 20), (220, 480, 20), (240, 480, 20), (260, 480, 20), (280, 480, 20), (300, 480, 20), (320, 480, 20), (340, 480, 20), (360, 480, 20), (380, 480, 20), (400, 480, 20), (420, 480, 20), (440, 480, 20), (460, 480, 20), (480, 480, 20), (500, 480, 20), (520, 480, 20), (540, 480, 20), (560, 480, 20), (580, 480, 20), (600, 480, 20), (620, 480, 20), (0, 500, 20), (20, 500, 20), (40, 500, 20), (60, 500, 20), (80, 500, 20), (100, 500, 20), (120, 500, 20), (140, 500, 20), (160, 500, 20), (180, 500, 20), (200, 500, 20), (220, 500, 20), (240, 500, 20), (260, 500, 20), (280, 500, 20), (300, 500, 20), (320, 500, 20), (340, 500, 20), (360, 500, 20), (380, 500, 20), (400, 500, 20), (420, 500, 20), (440, 500, 20), (460, 500, 20), (480, 500, 20), (500, 500, 20), (520, 500, 20), (540, 500, 20), (560, 500, 20), (580, 500, 20), (600, 500, 20), (620, 500, 20), (0, 520, 20), (20, 520, 20), (40, 520, 20), (60, 520, 20), (80, 520, 20), (100, 520, 20), (120, 520, 20), (140, 520, 20), (160, 520, 20), (180, 520, 20), (200, 520, 20), (220, 520, 20), (240, 520, 20), (260, 520, 20), (280, 520, 20), (300, 520, 20), (320, 520, 20), (340, 520, 20), (360, 520, 20), (380, 520, 20), (400, 520, 20), (420, 520, 20), (440, 520, 20), (460, 520, 20), (480, 520, 20), (500, 520, 20), (520, 520, 20), (540, 520, 20), (560, 520, 20), (580, 520, 20), (600, 520, 20), (620, 520, 20), (0, 540, 20), (20, 540, 20), (40, 540, 20), (60, 540, 20), (80, 540, 20), (100, 540, 20), (120, 540, 20), (140, 540, 20), (160, 540, 20), (180, 540, 20), (200, 540, 20), (220, 540, 20), (240, 540, 20), (260, 540, 20), (280, 540, 20), (300, 540, 20), (320, 540, 20), (340, 540, 20), (360, 540, 20), (380, 540, 20), (400, 540, 20), (420, 540, 20), (440, 540, 20), (460, 540, 20), (480, 540, 20), (500, 540, 20), (520, 540, 20), (540, 540, 20), (560, 540, 20), (580, 540, 20), (600, 540, 20), (620, 540, 20), (0, 560, 20), (20, 560, 20), (40, 560, 20), (60, 560, 20), (80, 560, 20), (100, 560, 20), (120, 560, 20), (140, 560, 20), (160, 560, 20), (180, 560, 20), (200, 560, 20), (220, 560, 20), (240, 560, 20), (260, 560, 20), (280, 560, 20), (300, 560, 20), (320, 560, 20), (340, 560, 20), (360, 560, 20), (380, 560, 20), (400, 560, 20), (420, 560, 20), (440, 560, 20), (460, 560, 20), (480, 560, 20), (500, 560, 20), (520, 560, 20), (540, 560, 20), (560, 560, 20), (580, 560, 20), (600, 560, 20), (620, 560, 20), (0, 580, 20), (20, 580, 20), (40, 580, 20), (60, 580, 20), (80, 580, 20), (100, 580, 20), (120, 580, 20), (140, 580, 20), (160, 580, 20), (180, 580, 20), (200, 580, 20), (220, 580, 20), (240, 580, 20), (260, 580, 20), (280, 580, 20), (300, 580, 20), (320, 580, 20), (340, 580, 20), (360, 580, 20), (380, 580, 20), (400, 580, 20), (420, 580, 20), (440, 580, 20), (460, 580, 20), (480, 580, 20), (500, 580, 20), (520, 580, 20), (540, 580, 20), (560, 580, 20), (580, 580, 20), (600, 580, 20), (620, 580, 20), (0, 600, 20), (20, 600, 20), (40, 600, 20), (60, 600, 20), (80, 600, 20), (100, 600, 20), (120, 600, 20), (140, 600, 20), (160, 600, 20), (180, 600, 20), (200, 600, 20), (220, 600, 20), (240, 600, 20), (260, 600, 20), (280, 600, 20), (300, 600, 20), (320, 600, 20), (340, 600, 20), (360, 600, 20), (380, 600, 20), (400, 600, 20), (420, 600, 20), (440, 600, 20), (460, 600, 20), (480, 600, 20), (500, 600, 20), (520, 600, 20), (540, 600, 20), (560, 600, 20), (580, 600, 20), (600, 600, 20), (620, 600, 20), (0, 620, 20), (20, 620, 20), (40, 620, 20), (60, 620, 20), (80, 620, 20), (100, 620, 20), (120, 620, 20), (140, 620, 20), (160, 620, 20), (180, 620, 20), (200, 620, 20), (220, 620, 20), (240, 620, 20), (260, 620, 20), (280, 620, 20), (300, 620, 20), (320, 620, 20), (340, 620, 20), (360, 620, 20), (380, 620, 20), (400, 620, 20), (420, 620, 20), (440, 620, 20), (460, 620, 20), (480, 620, 20), (500, 620, 20), (520, 620, 20), (540, 620, 20), (560, 620, 20), (580, 620, 20), (600, 620, 20), (620, 620, 20)] color3f[] primvars:displayColor = [(0.2784314, 0.64705884, 1)] } def ComputeNode "deformer1" { rel inputMesh = </defaultPrim/inputGrid> custom token node:type = "omni.graph.examples.cpp.PrimDeformer1" float multiplier = 3 def Output "outputMesh" { } } def ComputeNode "deformer2" { rel inputMesh = </defaultPrim/deformer1/outputMesh> custom token node:type = "omni.graph.examples.cpp.PrimDeformer2" float inputs:threshold = 10 def Output "outputMesh" { int[] faceVertexCounts int[] faceVertexIndices point3f[] points } } #def ComputeGraphSettings "computegraphSettings" #{ # custom token evaluator:type = "dirty_push" #} def Mesh "outputGrid" { uniform bool doubleSided = 1 int[] faceVertexCounts.connect = </defaultPrim/deformer2/outputMesh.faceVertexCounts> int[] faceVertexIndices.connect = </defaultPrim/deformer2/outputMesh.faceVertexIndices> point3f[] points.connect = </defaultPrim/deformer2/outputMesh.points> color3f[] primvars:displayColor = [(0.784314, 0.64705884, 0.1)] } }
omniverse-code/kit/exts/omni.graph/omni/graph/core/data/ExampleCubeWithGather.usda
#usda 1.0 ( doc = """Generated from Composed Stage of root layer """ ) def Xform "defaultPrim" { def Cube "cube0" { custom float value = 1 double size float3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate"] } def Cube "cube1" { custom float value = 6 double size float3 xformOp:translate = (0, 0, -10.5) uniform token[] xformOpOrder = ["xformOp:translate"] } def ComputeNode "gatherCubes" { custom token node:type = "Gather" custom int node:typeVersion = 1 uniform token[] required = ["Cube"] float value double size } def ComputeNode "testNode" { custom token node:type = "omni.graph.examples.cpp.SimpleGather" custom int node:typeVersion = 1 custom float inputs:input0 float inputs:input0.connect = </defaultPrim/gatherCubes.value> float inputs:multiplier = 3 double[] outputs:output0.connect = </defaultPrim/gatherCubes.size> } }
omniverse-code/kit/exts/omni.graph/omni/graph/core/data/ExampleGridPrimDeformerCuda.usda
#usda 1.0 ( doc = """Generated from Composed Stage of root layer """ ) def Xform "defaultPrim" { def Mesh "inputGrid" { uniform bool doubleSided = 1 int[] faceVertexCounts = [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 1, 33, 0, 33, 32, 1, 2, 34, 1, 34, 33, 2, 3, 35, 2, 35, 34, 3, 4, 36, 3, 36, 35, 4, 5, 37, 4, 37, 36, 5, 6, 38, 5, 38, 37, 6, 7, 39, 6, 39, 38, 7, 8, 40, 7, 40, 39, 8, 9, 41, 8, 41, 40, 9, 10, 42, 9, 42, 41, 10, 11, 43, 10, 43, 42, 11, 12, 44, 11, 44, 43, 12, 13, 45, 12, 45, 44, 13, 14, 46, 13, 46, 45, 14, 15, 47, 14, 47, 46, 15, 16, 48, 15, 48, 47, 16, 17, 49, 16, 49, 48, 17, 18, 50, 17, 50, 49, 18, 19, 51, 18, 51, 50, 19, 20, 52, 19, 52, 51, 20, 21, 53, 20, 53, 52, 21, 22, 54, 21, 54, 53, 22, 23, 55, 22, 55, 54, 23, 24, 56, 23, 56, 55, 24, 25, 57, 24, 57, 56, 25, 26, 58, 25, 58, 57, 26, 27, 59, 26, 59, 58, 27, 28, 60, 27, 60, 59, 28, 29, 61, 28, 61, 60, 29, 30, 62, 29, 62, 61, 30, 31, 63, 30, 63, 62, 32, 33, 65, 32, 65, 64, 33, 34, 66, 33, 66, 65, 34, 35, 67, 34, 67, 66, 35, 36, 68, 35, 68, 67, 36, 37, 69, 36, 69, 68, 37, 38, 70, 37, 70, 69, 38, 39, 71, 38, 71, 70, 39, 40, 72, 39, 72, 71, 40, 41, 73, 40, 73, 72, 41, 42, 74, 41, 74, 73, 42, 43, 75, 42, 75, 74, 43, 44, 76, 43, 76, 75, 44, 45, 77, 44, 77, 76, 45, 46, 78, 45, 78, 77, 46, 47, 79, 46, 79, 78, 47, 48, 80, 47, 80, 79, 48, 49, 81, 48, 81, 80, 49, 50, 82, 49, 82, 81, 50, 51, 83, 50, 83, 82, 51, 52, 84, 51, 84, 83, 52, 53, 85, 52, 85, 84, 53, 54, 86, 53, 86, 85, 54, 55, 87, 54, 87, 86, 55, 56, 88, 55, 88, 87, 56, 57, 89, 56, 89, 88, 57, 58, 90, 57, 90, 89, 58, 59, 91, 58, 91, 90, 59, 60, 92, 59, 92, 91, 60, 61, 93, 60, 93, 92, 61, 62, 94, 61, 94, 93, 62, 63, 95, 62, 95, 94, 64, 65, 97, 64, 97, 96, 65, 66, 98, 65, 98, 97, 66, 67, 99, 66, 99, 98, 67, 68, 100, 67, 100, 99, 68, 69, 101, 68, 101, 100, 69, 70, 102, 69, 102, 101, 70, 71, 103, 70, 103, 102, 71, 72, 104, 71, 104, 103, 72, 73, 105, 72, 105, 104, 73, 74, 106, 73, 106, 105, 74, 75, 107, 74, 107, 106, 75, 76, 108, 75, 108, 107, 76, 77, 109, 76, 109, 108, 77, 78, 110, 77, 110, 109, 78, 79, 111, 78, 111, 110, 79, 80, 112, 79, 112, 111, 80, 81, 113, 80, 113, 112, 81, 82, 114, 81, 114, 113, 82, 83, 115, 82, 115, 114, 83, 84, 116, 83, 116, 115, 84, 85, 117, 84, 117, 116, 85, 86, 118, 85, 118, 117, 86, 87, 119, 86, 119, 118, 87, 88, 120, 87, 120, 119, 88, 89, 121, 88, 121, 120, 89, 90, 122, 89, 122, 121, 90, 91, 123, 90, 123, 122, 91, 92, 124, 91, 124, 123, 92, 93, 125, 92, 125, 124, 93, 94, 126, 93, 126, 125, 94, 95, 127, 94, 127, 126, 96, 97, 129, 96, 129, 128, 97, 98, 130, 97, 130, 129, 98, 99, 131, 98, 131, 130, 99, 100, 132, 99, 132, 131, 100, 101, 133, 100, 133, 132, 101, 102, 134, 101, 134, 133, 102, 103, 135, 102, 135, 134, 103, 104, 136, 103, 136, 135, 104, 105, 137, 104, 137, 136, 105, 106, 138, 105, 138, 137, 106, 107, 139, 106, 139, 138, 107, 108, 140, 107, 140, 139, 108, 109, 141, 108, 141, 140, 109, 110, 142, 109, 142, 141, 110, 111, 143, 110, 143, 142, 111, 112, 144, 111, 144, 143, 112, 113, 145, 112, 145, 144, 113, 114, 146, 113, 146, 145, 114, 115, 147, 114, 147, 146, 115, 116, 148, 115, 148, 147, 116, 117, 149, 116, 149, 148, 117, 118, 150, 117, 150, 149, 118, 119, 151, 118, 151, 150, 119, 120, 152, 119, 152, 151, 120, 121, 153, 120, 153, 152, 121, 122, 154, 121, 154, 153, 122, 123, 155, 122, 155, 154, 123, 124, 156, 123, 156, 155, 124, 125, 157, 124, 157, 156, 125, 126, 158, 125, 158, 157, 126, 127, 159, 126, 159, 158, 128, 129, 161, 128, 161, 160, 129, 130, 162, 129, 162, 161, 130, 131, 163, 130, 163, 162, 131, 132, 164, 131, 164, 163, 132, 133, 165, 132, 165, 164, 133, 134, 166, 133, 166, 165, 134, 135, 167, 134, 167, 166, 135, 136, 168, 135, 168, 167, 136, 137, 169, 136, 169, 168, 137, 138, 170, 137, 170, 169, 138, 139, 171, 138, 171, 170, 139, 140, 172, 139, 172, 171, 140, 141, 173, 140, 173, 172, 141, 142, 174, 141, 174, 173, 142, 143, 175, 142, 175, 174, 143, 144, 176, 143, 176, 175, 144, 145, 177, 144, 177, 176, 145, 146, 178, 145, 178, 177, 146, 147, 179, 146, 179, 178, 147, 148, 180, 147, 180, 179, 148, 149, 181, 148, 181, 180, 149, 150, 182, 149, 182, 181, 150, 151, 183, 150, 183, 182, 151, 152, 184, 151, 184, 183, 152, 153, 185, 152, 185, 184, 153, 154, 186, 153, 186, 185, 154, 155, 187, 154, 187, 186, 155, 156, 188, 155, 188, 187, 156, 157, 189, 156, 189, 188, 157, 158, 190, 157, 190, 189, 158, 159, 191, 158, 191, 190, 160, 161, 193, 160, 193, 192, 161, 162, 194, 161, 194, 193, 162, 163, 195, 162, 195, 194, 163, 164, 196, 163, 196, 195, 164, 165, 197, 164, 197, 196, 165, 166, 198, 165, 198, 197, 166, 167, 199, 166, 199, 198, 167, 168, 200, 167, 200, 199, 168, 169, 201, 168, 201, 200, 169, 170, 202, 169, 202, 201, 170, 171, 203, 170, 203, 202, 171, 172, 204, 171, 204, 203, 172, 173, 205, 172, 205, 204, 173, 174, 206, 173, 206, 205, 174, 175, 207, 174, 207, 206, 175, 176, 208, 175, 208, 207, 176, 177, 209, 176, 209, 208, 177, 178, 210, 177, 210, 209, 178, 179, 211, 178, 211, 210, 179, 180, 212, 179, 212, 211, 180, 181, 213, 180, 213, 212, 181, 182, 214, 181, 214, 213, 182, 183, 215, 182, 215, 214, 183, 184, 216, 183, 216, 215, 184, 185, 217, 184, 217, 216, 185, 186, 218, 185, 218, 217, 186, 187, 219, 186, 219, 218, 187, 188, 220, 187, 220, 219, 188, 189, 221, 188, 221, 220, 189, 190, 222, 189, 222, 221, 190, 191, 223, 190, 223, 222, 192, 193, 225, 192, 225, 224, 193, 194, 226, 193, 226, 225, 194, 195, 227, 194, 227, 226, 195, 196, 228, 195, 228, 227, 196, 197, 229, 196, 229, 228, 197, 198, 230, 197, 230, 229, 198, 199, 231, 198, 231, 230, 199, 200, 232, 199, 232, 231, 200, 201, 233, 200, 233, 232, 201, 202, 234, 201, 234, 233, 202, 203, 235, 202, 235, 234, 203, 204, 236, 203, 236, 235, 204, 205, 237, 204, 237, 236, 205, 206, 238, 205, 238, 237, 206, 207, 239, 206, 239, 238, 207, 208, 240, 207, 240, 239, 208, 209, 241, 208, 241, 240, 209, 210, 242, 209, 242, 241, 210, 211, 243, 210, 243, 242, 211, 212, 244, 211, 244, 243, 212, 213, 245, 212, 245, 244, 213, 214, 246, 213, 246, 245, 214, 215, 247, 214, 247, 246, 215, 216, 248, 215, 248, 247, 216, 217, 249, 216, 249, 248, 217, 218, 250, 217, 250, 249, 218, 219, 251, 218, 251, 250, 219, 220, 252, 219, 252, 251, 220, 221, 253, 220, 253, 252, 221, 222, 254, 221, 254, 253, 222, 223, 255, 222, 255, 254, 224, 225, 257, 224, 257, 256, 225, 226, 258, 225, 258, 257, 226, 227, 259, 226, 259, 258, 227, 228, 260, 227, 260, 259, 228, 229, 261, 228, 261, 260, 229, 230, 262, 229, 262, 261, 230, 231, 263, 230, 263, 262, 231, 232, 264, 231, 264, 263, 232, 233, 265, 232, 265, 264, 233, 234, 266, 233, 266, 265, 234, 235, 267, 234, 267, 266, 235, 236, 268, 235, 268, 267, 236, 237, 269, 236, 269, 268, 237, 238, 270, 237, 270, 269, 238, 239, 271, 238, 271, 270, 239, 240, 272, 239, 272, 271, 240, 241, 273, 240, 273, 272, 241, 242, 274, 241, 274, 273, 242, 243, 275, 242, 275, 274, 243, 244, 276, 243, 276, 275, 244, 245, 277, 244, 277, 276, 245, 246, 278, 245, 278, 277, 246, 247, 279, 246, 279, 278, 247, 248, 280, 247, 280, 279, 248, 249, 281, 248, 281, 280, 249, 250, 282, 249, 282, 281, 250, 251, 283, 250, 283, 282, 251, 252, 284, 251, 284, 283, 252, 253, 285, 252, 285, 284, 253, 254, 286, 253, 286, 285, 254, 255, 287, 254, 287, 286, 256, 257, 289, 256, 289, 288, 257, 258, 290, 257, 290, 289, 258, 259, 291, 258, 291, 290, 259, 260, 292, 259, 292, 291, 260, 261, 293, 260, 293, 292, 261, 262, 294, 261, 294, 293, 262, 263, 295, 262, 295, 294, 263, 264, 296, 263, 296, 295, 264, 265, 297, 264, 297, 296, 265, 266, 298, 265, 298, 297, 266, 267, 299, 266, 299, 298, 267, 268, 300, 267, 300, 299, 268, 269, 301, 268, 301, 300, 269, 270, 302, 269, 302, 301, 270, 271, 303, 270, 303, 302, 271, 272, 304, 271, 304, 303, 272, 273, 305, 272, 305, 304, 273, 274, 306, 273, 306, 305, 274, 275, 307, 274, 307, 306, 275, 276, 308, 275, 308, 307, 276, 277, 309, 276, 309, 308, 277, 278, 310, 277, 310, 309, 278, 279, 311, 278, 311, 310, 279, 280, 312, 279, 312, 311, 280, 281, 313, 280, 313, 312, 281, 282, 314, 281, 314, 313, 282, 283, 315, 282, 315, 314, 283, 284, 316, 283, 316, 315, 284, 285, 317, 284, 317, 316, 285, 286, 318, 285, 318, 317, 286, 287, 319, 286, 319, 318, 288, 289, 321, 288, 321, 320, 289, 290, 322, 289, 322, 321, 290, 291, 323, 290, 323, 322, 291, 292, 324, 291, 324, 323, 292, 293, 325, 292, 325, 324, 293, 294, 326, 293, 326, 325, 294, 295, 327, 294, 327, 326, 295, 296, 328, 295, 328, 327, 296, 297, 329, 296, 329, 328, 297, 298, 330, 297, 330, 329, 298, 299, 331, 298, 331, 330, 299, 300, 332, 299, 332, 331, 300, 301, 333, 300, 333, 332, 301, 302, 334, 301, 334, 333, 302, 303, 335, 302, 335, 334, 303, 304, 336, 303, 336, 335, 304, 305, 337, 304, 337, 336, 305, 306, 338, 305, 338, 337, 306, 307, 339, 306, 339, 338, 307, 308, 340, 307, 340, 339, 308, 309, 341, 308, 341, 340, 309, 310, 342, 309, 342, 341, 310, 311, 343, 310, 343, 342, 311, 312, 344, 311, 344, 343, 312, 313, 345, 312, 345, 344, 313, 314, 346, 313, 346, 345, 314, 315, 347, 314, 347, 346, 315, 316, 348, 315, 348, 347, 316, 317, 349, 316, 349, 348, 317, 318, 350, 317, 350, 349, 318, 319, 351, 318, 351, 350, 320, 321, 353, 320, 353, 352, 321, 322, 354, 321, 354, 353, 322, 323, 355, 322, 355, 354, 323, 324, 356, 323, 356, 355, 324, 325, 357, 324, 357, 356, 325, 326, 358, 325, 358, 357, 326, 327, 359, 326, 359, 358, 327, 328, 360, 327, 360, 359, 328, 329, 361, 328, 361, 360, 329, 330, 362, 329, 362, 361, 330, 331, 363, 330, 363, 362, 331, 332, 364, 331, 364, 363, 332, 333, 365, 332, 365, 364, 333, 334, 366, 333, 366, 365, 334, 335, 367, 334, 367, 366, 335, 336, 368, 335, 368, 367, 336, 337, 369, 336, 369, 368, 337, 338, 370, 337, 370, 369, 338, 339, 371, 338, 371, 370, 339, 340, 372, 339, 372, 371, 340, 341, 373, 340, 373, 372, 341, 342, 374, 341, 374, 373, 342, 343, 375, 342, 375, 374, 343, 344, 376, 343, 376, 375, 344, 345, 377, 344, 377, 376, 345, 346, 378, 345, 378, 377, 346, 347, 379, 346, 379, 378, 347, 348, 380, 347, 380, 379, 348, 349, 381, 348, 381, 380, 349, 350, 382, 349, 382, 381, 350, 351, 383, 350, 383, 382, 352, 353, 385, 352, 385, 384, 353, 354, 386, 353, 386, 385, 354, 355, 387, 354, 387, 386, 355, 356, 388, 355, 388, 387, 356, 357, 389, 356, 389, 388, 357, 358, 390, 357, 390, 389, 358, 359, 391, 358, 391, 390, 359, 360, 392, 359, 392, 391, 360, 361, 393, 360, 393, 392, 361, 362, 394, 361, 394, 393, 362, 363, 395, 362, 395, 394, 363, 364, 396, 363, 396, 395, 364, 365, 397, 364, 397, 396, 365, 366, 398, 365, 398, 397, 366, 367, 399, 366, 399, 398, 367, 368, 400, 367, 400, 399, 368, 369, 401, 368, 401, 400, 369, 370, 402, 369, 402, 401, 370, 371, 403, 370, 403, 402, 371, 372, 404, 371, 404, 403, 372, 373, 405, 372, 405, 404, 373, 374, 406, 373, 406, 405, 374, 375, 407, 374, 407, 406, 375, 376, 408, 375, 408, 407, 376, 377, 409, 376, 409, 408, 377, 378, 410, 377, 410, 409, 378, 379, 411, 378, 411, 410, 379, 380, 412, 379, 412, 411, 380, 381, 413, 380, 413, 412, 381, 382, 414, 381, 414, 413, 382, 383, 415, 382, 415, 414, 384, 385, 417, 384, 417, 416, 385, 386, 418, 385, 418, 417, 386, 387, 419, 386, 419, 418, 387, 388, 420, 387, 420, 419, 388, 389, 421, 388, 421, 420, 389, 390, 422, 389, 422, 421, 390, 391, 423, 390, 423, 422, 391, 392, 424, 391, 424, 423, 392, 393, 425, 392, 425, 424, 393, 394, 426, 393, 426, 425, 394, 395, 427, 394, 427, 426, 395, 396, 428, 395, 428, 427, 396, 397, 429, 396, 429, 428, 397, 398, 430, 397, 430, 429, 398, 399, 431, 398, 431, 430, 399, 400, 432, 399, 432, 431, 400, 401, 433, 400, 433, 432, 401, 402, 434, 401, 434, 433, 402, 403, 435, 402, 435, 434, 403, 404, 436, 403, 436, 435, 404, 405, 437, 404, 437, 436, 405, 406, 438, 405, 438, 437, 406, 407, 439, 406, 439, 438, 407, 408, 440, 407, 440, 439, 408, 409, 441, 408, 441, 440, 409, 410, 442, 409, 442, 441, 410, 411, 443, 410, 443, 442, 411, 412, 444, 411, 444, 443, 412, 413, 445, 412, 445, 444, 413, 414, 446, 413, 446, 445, 414, 415, 447, 414, 447, 446, 416, 417, 449, 416, 449, 448, 417, 418, 450, 417, 450, 449, 418, 419, 451, 418, 451, 450, 419, 420, 452, 419, 452, 451, 420, 421, 453, 420, 453, 452, 421, 422, 454, 421, 454, 453, 422, 423, 455, 422, 455, 454, 423, 424, 456, 423, 456, 455, 424, 425, 457, 424, 457, 456, 425, 426, 458, 425, 458, 457, 426, 427, 459, 426, 459, 458, 427, 428, 460, 427, 460, 459, 428, 429, 461, 428, 461, 460, 429, 430, 462, 429, 462, 461, 430, 431, 463, 430, 463, 462, 431, 432, 464, 431, 464, 463, 432, 433, 465, 432, 465, 464, 433, 434, 466, 433, 466, 465, 434, 435, 467, 434, 467, 466, 435, 436, 468, 435, 468, 467, 436, 437, 469, 436, 469, 468, 437, 438, 470, 437, 470, 469, 438, 439, 471, 438, 471, 470, 439, 440, 472, 439, 472, 471, 440, 441, 473, 440, 473, 472, 441, 442, 474, 441, 474, 473, 442, 443, 475, 442, 475, 474, 443, 444, 476, 443, 476, 475, 444, 445, 477, 444, 477, 476, 445, 446, 478, 445, 478, 477, 446, 447, 479, 446, 479, 478, 448, 449, 481, 448, 481, 480, 449, 450, 482, 449, 482, 481, 450, 451, 483, 450, 483, 482, 451, 452, 484, 451, 484, 483, 452, 453, 485, 452, 485, 484, 453, 454, 486, 453, 486, 485, 454, 455, 487, 454, 487, 486, 455, 456, 488, 455, 488, 487, 456, 457, 489, 456, 489, 488, 457, 458, 490, 457, 490, 489, 458, 459, 491, 458, 491, 490, 459, 460, 492, 459, 492, 491, 460, 461, 493, 460, 493, 492, 461, 462, 494, 461, 494, 493, 462, 463, 495, 462, 495, 494, 463, 464, 496, 463, 496, 495, 464, 465, 497, 464, 497, 496, 465, 466, 498, 465, 498, 497, 466, 467, 499, 466, 499, 498, 467, 468, 500, 467, 500, 499, 468, 469, 501, 468, 501, 500, 469, 470, 502, 469, 502, 501, 470, 471, 503, 470, 503, 502, 471, 472, 504, 471, 504, 503, 472, 473, 505, 472, 505, 504, 473, 474, 506, 473, 506, 505, 474, 475, 507, 474, 507, 506, 475, 476, 508, 475, 508, 507, 476, 477, 509, 476, 509, 508, 477, 478, 510, 477, 510, 509, 478, 479, 511, 478, 511, 510, 480, 481, 513, 480, 513, 512, 481, 482, 514, 481, 514, 513, 482, 483, 515, 482, 515, 514, 483, 484, 516, 483, 516, 515, 484, 485, 517, 484, 517, 516, 485, 486, 518, 485, 518, 517, 486, 487, 519, 486, 519, 518, 487, 488, 520, 487, 520, 519, 488, 489, 521, 488, 521, 520, 489, 490, 522, 489, 522, 521, 490, 491, 523, 490, 523, 522, 491, 492, 524, 491, 524, 523, 492, 493, 525, 492, 525, 524, 493, 494, 526, 493, 526, 525, 494, 495, 527, 494, 527, 526, 495, 496, 528, 495, 528, 527, 496, 497, 529, 496, 529, 528, 497, 498, 530, 497, 530, 529, 498, 499, 531, 498, 531, 530, 499, 500, 532, 499, 532, 531, 500, 501, 533, 500, 533, 532, 501, 502, 534, 501, 534, 533, 502, 503, 535, 502, 535, 534, 503, 504, 536, 503, 536, 535, 504, 505, 537, 504, 537, 536, 505, 506, 538, 505, 538, 537, 506, 507, 539, 506, 539, 538, 507, 508, 540, 507, 540, 539, 508, 509, 541, 508, 541, 540, 509, 510, 542, 509, 542, 541, 510, 511, 543, 510, 543, 542, 512, 513, 545, 512, 545, 544, 513, 514, 546, 513, 546, 545, 514, 515, 547, 514, 547, 546, 515, 516, 548, 515, 548, 547, 516, 517, 549, 516, 549, 548, 517, 518, 550, 517, 550, 549, 518, 519, 551, 518, 551, 550, 519, 520, 552, 519, 552, 551, 520, 521, 553, 520, 553, 552, 521, 522, 554, 521, 554, 553, 522, 523, 555, 522, 555, 554, 523, 524, 556, 523, 556, 555, 524, 525, 557, 524, 557, 556, 525, 526, 558, 525, 558, 557, 526, 527, 559, 526, 559, 558, 527, 528, 560, 527, 560, 559, 528, 529, 561, 528, 561, 560, 529, 530, 562, 529, 562, 561, 530, 531, 563, 530, 563, 562, 531, 532, 564, 531, 564, 563, 532, 533, 565, 532, 565, 564, 533, 534, 566, 533, 566, 565, 534, 535, 567, 534, 567, 566, 535, 536, 568, 535, 568, 567, 536, 537, 569, 536, 569, 568, 537, 538, 570, 537, 570, 569, 538, 539, 571, 538, 571, 570, 539, 540, 572, 539, 572, 571, 540, 541, 573, 540, 573, 572, 541, 542, 574, 541, 574, 573, 542, 543, 575, 542, 575, 574, 544, 545, 577, 544, 577, 576, 545, 546, 578, 545, 578, 577, 546, 547, 579, 546, 579, 578, 547, 548, 580, 547, 580, 579, 548, 549, 581, 548, 581, 580, 549, 550, 582, 549, 582, 581, 550, 551, 583, 550, 583, 582, 551, 552, 584, 551, 584, 583, 552, 553, 585, 552, 585, 584, 553, 554, 586, 553, 586, 585, 554, 555, 587, 554, 587, 586, 555, 556, 588, 555, 588, 587, 556, 557, 589, 556, 589, 588, 557, 558, 590, 557, 590, 589, 558, 559, 591, 558, 591, 590, 559, 560, 592, 559, 592, 591, 560, 561, 593, 560, 593, 592, 561, 562, 594, 561, 594, 593, 562, 563, 595, 562, 595, 594, 563, 564, 596, 563, 596, 595, 564, 565, 597, 564, 597, 596, 565, 566, 598, 565, 598, 597, 566, 567, 599, 566, 599, 598, 567, 568, 600, 567, 600, 599, 568, 569, 601, 568, 601, 600, 569, 570, 602, 569, 602, 601, 570, 571, 603, 570, 603, 602, 571, 572, 604, 571, 604, 603, 572, 573, 605, 572, 605, 604, 573, 574, 606, 573, 606, 605, 574, 575, 607, 574, 607, 606, 576, 577, 609, 576, 609, 608, 577, 578, 610, 577, 610, 609, 578, 579, 611, 578, 611, 610, 579, 580, 612, 579, 612, 611, 580, 581, 613, 580, 613, 612, 581, 582, 614, 581, 614, 613, 582, 583, 615, 582, 615, 614, 583, 584, 616, 583, 616, 615, 584, 585, 617, 584, 617, 616, 585, 586, 618, 585, 618, 617, 586, 587, 619, 586, 619, 618, 587, 588, 620, 587, 620, 619, 588, 589, 621, 588, 621, 620, 589, 590, 622, 589, 622, 621, 590, 591, 623, 590, 623, 622, 591, 592, 624, 591, 624, 623, 592, 593, 625, 592, 625, 624, 593, 594, 626, 593, 626, 625, 594, 595, 627, 594, 627, 626, 595, 596, 628, 595, 628, 627, 596, 597, 629, 596, 629, 628, 597, 598, 630, 597, 630, 629, 598, 599, 631, 598, 631, 630, 599, 600, 632, 599, 632, 631, 600, 601, 633, 600, 633, 632, 601, 602, 634, 601, 634, 633, 602, 603, 635, 602, 635, 634, 603, 604, 636, 603, 636, 635, 604, 605, 637, 604, 637, 636, 605, 606, 638, 605, 638, 637, 606, 607, 639, 606, 639, 638, 608, 609, 641, 608, 641, 640, 609, 610, 642, 609, 642, 641, 610, 611, 643, 610, 643, 642, 611, 612, 644, 611, 644, 643, 612, 613, 645, 612, 645, 644, 613, 614, 646, 613, 646, 645, 614, 615, 647, 614, 647, 646, 615, 616, 648, 615, 648, 647, 616, 617, 649, 616, 649, 648, 617, 618, 650, 617, 650, 649, 618, 619, 651, 618, 651, 650, 619, 620, 652, 619, 652, 651, 620, 621, 653, 620, 653, 652, 621, 622, 654, 621, 654, 653, 622, 623, 655, 622, 655, 654, 623, 624, 656, 623, 656, 655, 624, 625, 657, 624, 657, 656, 625, 626, 658, 625, 658, 657, 626, 627, 659, 626, 659, 658, 627, 628, 660, 627, 660, 659, 628, 629, 661, 628, 661, 660, 629, 630, 662, 629, 662, 661, 630, 631, 663, 630, 663, 662, 631, 632, 664, 631, 664, 663, 632, 633, 665, 632, 665, 664, 633, 634, 666, 633, 666, 665, 634, 635, 667, 634, 667, 666, 635, 636, 668, 635, 668, 667, 636, 637, 669, 636, 669, 668, 637, 638, 670, 637, 670, 669, 638, 639, 671, 638, 671, 670, 640, 641, 673, 640, 673, 672, 641, 642, 674, 641, 674, 673, 642, 643, 675, 642, 675, 674, 643, 644, 676, 643, 676, 675, 644, 645, 677, 644, 677, 676, 645, 646, 678, 645, 678, 677, 646, 647, 679, 646, 679, 678, 647, 648, 680, 647, 680, 679, 648, 649, 681, 648, 681, 680, 649, 650, 682, 649, 682, 681, 650, 651, 683, 650, 683, 682, 651, 652, 684, 651, 684, 683, 652, 653, 685, 652, 685, 684, 653, 654, 686, 653, 686, 685, 654, 655, 687, 654, 687, 686, 655, 656, 688, 655, 688, 687, 656, 657, 689, 656, 689, 688, 657, 658, 690, 657, 690, 689, 658, 659, 691, 658, 691, 690, 659, 660, 692, 659, 692, 691, 660, 661, 693, 660, 693, 692, 661, 662, 694, 661, 694, 693, 662, 663, 695, 662, 695, 694, 663, 664, 696, 663, 696, 695, 664, 665, 697, 664, 697, 696, 665, 666, 698, 665, 698, 697, 666, 667, 699, 666, 699, 698, 667, 668, 700, 667, 700, 699, 668, 669, 701, 668, 701, 700, 669, 670, 702, 669, 702, 701, 670, 671, 703, 670, 703, 702, 672, 673, 705, 672, 705, 704, 673, 674, 706, 673, 706, 705, 674, 675, 707, 674, 707, 706, 675, 676, 708, 675, 708, 707, 676, 677, 709, 676, 709, 708, 677, 678, 710, 677, 710, 709, 678, 679, 711, 678, 711, 710, 679, 680, 712, 679, 712, 711, 680, 681, 713, 680, 713, 712, 681, 682, 714, 681, 714, 713, 682, 683, 715, 682, 715, 714, 683, 684, 716, 683, 716, 715, 684, 685, 717, 684, 717, 716, 685, 686, 718, 685, 718, 717, 686, 687, 719, 686, 719, 718, 687, 688, 720, 687, 720, 719, 688, 689, 721, 688, 721, 720, 689, 690, 722, 689, 722, 721, 690, 691, 723, 690, 723, 722, 691, 692, 724, 691, 724, 723, 692, 693, 725, 692, 725, 724, 693, 694, 726, 693, 726, 725, 694, 695, 727, 694, 727, 726, 695, 696, 728, 695, 728, 727, 696, 697, 729, 696, 729, 728, 697, 698, 730, 697, 730, 729, 698, 699, 731, 698, 731, 730, 699, 700, 732, 699, 732, 731, 700, 701, 733, 700, 733, 732, 701, 702, 734, 701, 734, 733, 702, 703, 735, 702, 735, 734, 704, 705, 737, 704, 737, 736, 705, 706, 738, 705, 738, 737, 706, 707, 739, 706, 739, 738, 707, 708, 740, 707, 740, 739, 708, 709, 741, 708, 741, 740, 709, 710, 742, 709, 742, 741, 710, 711, 743, 710, 743, 742, 711, 712, 744, 711, 744, 743, 712, 713, 745, 712, 745, 744, 713, 714, 746, 713, 746, 745, 714, 715, 747, 714, 747, 746, 715, 716, 748, 715, 748, 747, 716, 717, 749, 716, 749, 748, 717, 718, 750, 717, 750, 749, 718, 719, 751, 718, 751, 750, 719, 720, 752, 719, 752, 751, 720, 721, 753, 720, 753, 752, 721, 722, 754, 721, 754, 753, 722, 723, 755, 722, 755, 754, 723, 724, 756, 723, 756, 755, 724, 725, 757, 724, 757, 756, 725, 726, 758, 725, 758, 757, 726, 727, 759, 726, 759, 758, 727, 728, 760, 727, 760, 759, 728, 729, 761, 728, 761, 760, 729, 730, 762, 729, 762, 761, 730, 731, 763, 730, 763, 762, 731, 732, 764, 731, 764, 763, 732, 733, 765, 732, 765, 764, 733, 734, 766, 733, 766, 765, 734, 735, 767, 734, 767, 766, 736, 737, 769, 736, 769, 768, 737, 738, 770, 737, 770, 769, 738, 739, 771, 738, 771, 770, 739, 740, 772, 739, 772, 771, 740, 741, 773, 740, 773, 772, 741, 742, 774, 741, 774, 773, 742, 743, 775, 742, 775, 774, 743, 744, 776, 743, 776, 775, 744, 745, 777, 744, 777, 776, 745, 746, 778, 745, 778, 777, 746, 747, 779, 746, 779, 778, 747, 748, 780, 747, 780, 779, 748, 749, 781, 748, 781, 780, 749, 750, 782, 749, 782, 781, 750, 751, 783, 750, 783, 782, 751, 752, 784, 751, 784, 783, 752, 753, 785, 752, 785, 784, 753, 754, 786, 753, 786, 785, 754, 755, 787, 754, 787, 786, 755, 756, 788, 755, 788, 787, 756, 757, 789, 756, 789, 788, 757, 758, 790, 757, 790, 789, 758, 759, 791, 758, 791, 790, 759, 760, 792, 759, 792, 791, 760, 761, 793, 760, 793, 792, 761, 762, 794, 761, 794, 793, 762, 763, 795, 762, 795, 794, 763, 764, 796, 763, 796, 795, 764, 765, 797, 764, 797, 796, 765, 766, 798, 765, 798, 797, 766, 767, 799, 766, 799, 798, 768, 769, 801, 768, 801, 800, 769, 770, 802, 769, 802, 801, 770, 771, 803, 770, 803, 802, 771, 772, 804, 771, 804, 803, 772, 773, 805, 772, 805, 804, 773, 774, 806, 773, 806, 805, 774, 775, 807, 774, 807, 806, 775, 776, 808, 775, 808, 807, 776, 777, 809, 776, 809, 808, 777, 778, 810, 777, 810, 809, 778, 779, 811, 778, 811, 810, 779, 780, 812, 779, 812, 811, 780, 781, 813, 780, 813, 812, 781, 782, 814, 781, 814, 813, 782, 783, 815, 782, 815, 814, 783, 784, 816, 783, 816, 815, 784, 785, 817, 784, 817, 816, 785, 786, 818, 785, 818, 817, 786, 787, 819, 786, 819, 818, 787, 788, 820, 787, 820, 819, 788, 789, 821, 788, 821, 820, 789, 790, 822, 789, 822, 821, 790, 791, 823, 790, 823, 822, 791, 792, 824, 791, 824, 823, 792, 793, 825, 792, 825, 824, 793, 794, 826, 793, 826, 825, 794, 795, 827, 794, 827, 826, 795, 796, 828, 795, 828, 827, 796, 797, 829, 796, 829, 828, 797, 798, 830, 797, 830, 829, 798, 799, 831, 798, 831, 830, 800, 801, 833, 800, 833, 832, 801, 802, 834, 801, 834, 833, 802, 803, 835, 802, 835, 834, 803, 804, 836, 803, 836, 835, 804, 805, 837, 804, 837, 836, 805, 806, 838, 805, 838, 837, 806, 807, 839, 806, 839, 838, 807, 808, 840, 807, 840, 839, 808, 809, 841, 808, 841, 840, 809, 810, 842, 809, 842, 841, 810, 811, 843, 810, 843, 842, 811, 812, 844, 811, 844, 843, 812, 813, 845, 812, 845, 844, 813, 814, 846, 813, 846, 845, 814, 815, 847, 814, 847, 846, 815, 816, 848, 815, 848, 847, 816, 817, 849, 816, 849, 848, 817, 818, 850, 817, 850, 849, 818, 819, 851, 818, 851, 850, 819, 820, 852, 819, 852, 851, 820, 821, 853, 820, 853, 852, 821, 822, 854, 821, 854, 853, 822, 823, 855, 822, 855, 854, 823, 824, 856, 823, 856, 855, 824, 825, 857, 824, 857, 856, 825, 826, 858, 825, 858, 857, 826, 827, 859, 826, 859, 858, 827, 828, 860, 827, 860, 859, 828, 829, 861, 828, 861, 860, 829, 830, 862, 829, 862, 861, 830, 831, 863, 830, 863, 862, 832, 833, 865, 832, 865, 864, 833, 834, 866, 833, 866, 865, 834, 835, 867, 834, 867, 866, 835, 836, 868, 835, 868, 867, 836, 837, 869, 836, 869, 868, 837, 838, 870, 837, 870, 869, 838, 839, 871, 838, 871, 870, 839, 840, 872, 839, 872, 871, 840, 841, 873, 840, 873, 872, 841, 842, 874, 841, 874, 873, 842, 843, 875, 842, 875, 874, 843, 844, 876, 843, 876, 875, 844, 845, 877, 844, 877, 876, 845, 846, 878, 845, 878, 877, 846, 847, 879, 846, 879, 878, 847, 848, 880, 847, 880, 879, 848, 849, 881, 848, 881, 880, 849, 850, 882, 849, 882, 881, 850, 851, 883, 850, 883, 882, 851, 852, 884, 851, 884, 883, 852, 853, 885, 852, 885, 884, 853, 854, 886, 853, 886, 885, 854, 855, 887, 854, 887, 886, 855, 856, 888, 855, 888, 887, 856, 857, 889, 856, 889, 888, 857, 858, 890, 857, 890, 889, 858, 859, 891, 858, 891, 890, 859, 860, 892, 859, 892, 891, 860, 861, 893, 860, 893, 892, 861, 862, 894, 861, 894, 893, 862, 863, 895, 862, 895, 894, 864, 865, 897, 864, 897, 896, 865, 866, 898, 865, 898, 897, 866, 867, 899, 866, 899, 898, 867, 868, 900, 867, 900, 899, 868, 869, 901, 868, 901, 900, 869, 870, 902, 869, 902, 901, 870, 871, 903, 870, 903, 902, 871, 872, 904, 871, 904, 903, 872, 873, 905, 872, 905, 904, 873, 874, 906, 873, 906, 905, 874, 875, 907, 874, 907, 906, 875, 876, 908, 875, 908, 907, 876, 877, 909, 876, 909, 908, 877, 878, 910, 877, 910, 909, 878, 879, 911, 878, 911, 910, 879, 880, 912, 879, 912, 911, 880, 881, 913, 880, 913, 912, 881, 882, 914, 881, 914, 913, 882, 883, 915, 882, 915, 914, 883, 884, 916, 883, 916, 915, 884, 885, 917, 884, 917, 916, 885, 886, 918, 885, 918, 917, 886, 887, 919, 886, 919, 918, 887, 888, 920, 887, 920, 919, 888, 889, 921, 888, 921, 920, 889, 890, 922, 889, 922, 921, 890, 891, 923, 890, 923, 922, 891, 892, 924, 891, 924, 923, 892, 893, 925, 892, 925, 924, 893, 894, 926, 893, 926, 925, 894, 895, 927, 894, 927, 926, 896, 897, 929, 896, 929, 928, 897, 898, 930, 897, 930, 929, 898, 899, 931, 898, 931, 930, 899, 900, 932, 899, 932, 931, 900, 901, 933, 900, 933, 932, 901, 902, 934, 901, 934, 933, 902, 903, 935, 902, 935, 934, 903, 904, 936, 903, 936, 935, 904, 905, 937, 904, 937, 936, 905, 906, 938, 905, 938, 937, 906, 907, 939, 906, 939, 938, 907, 908, 940, 907, 940, 939, 908, 909, 941, 908, 941, 940, 909, 910, 942, 909, 942, 941, 910, 911, 943, 910, 943, 942, 911, 912, 944, 911, 944, 943, 912, 913, 945, 912, 945, 944, 913, 914, 946, 913, 946, 945, 914, 915, 947, 914, 947, 946, 915, 916, 948, 915, 948, 947, 916, 917, 949, 916, 949, 948, 917, 918, 950, 917, 950, 949, 918, 919, 951, 918, 951, 950, 919, 920, 952, 919, 952, 951, 920, 921, 953, 920, 953, 952, 921, 922, 954, 921, 954, 953, 922, 923, 955, 922, 955, 954, 923, 924, 956, 923, 956, 955, 924, 925, 957, 924, 957, 956, 925, 926, 958, 925, 958, 957, 926, 927, 959, 926, 959, 958, 928, 929, 961, 928, 961, 960, 929, 930, 962, 929, 962, 961, 930, 931, 963, 930, 963, 962, 931, 932, 964, 931, 964, 963, 932, 933, 965, 932, 965, 964, 933, 934, 966, 933, 966, 965, 934, 935, 967, 934, 967, 966, 935, 936, 968, 935, 968, 967, 936, 937, 969, 936, 969, 968, 937, 938, 970, 937, 970, 969, 938, 939, 971, 938, 971, 970, 939, 940, 972, 939, 972, 971, 940, 941, 973, 940, 973, 972, 941, 942, 974, 941, 974, 973, 942, 943, 975, 942, 975, 974, 943, 944, 976, 943, 976, 975, 944, 945, 977, 944, 977, 976, 945, 946, 978, 945, 978, 977, 946, 947, 979, 946, 979, 978, 947, 948, 980, 947, 980, 979, 948, 949, 981, 948, 981, 980, 949, 950, 982, 949, 982, 981, 950, 951, 983, 950, 983, 982, 951, 952, 984, 951, 984, 983, 952, 953, 985, 952, 985, 984, 953, 954, 986, 953, 986, 985, 954, 955, 987, 954, 987, 986, 955, 956, 988, 955, 988, 987, 956, 957, 989, 956, 989, 988, 957, 958, 990, 957, 990, 989, 958, 959, 991, 958, 991, 990, 960, 961, 993, 960, 993, 992, 961, 962, 994, 961, 994, 993, 962, 963, 995, 962, 995, 994, 963, 964, 996, 963, 996, 995, 964, 965, 997, 964, 997, 996, 965, 966, 998, 965, 998, 997, 966, 967, 999, 966, 999, 998, 967, 968, 1000, 967, 1000, 999, 968, 969, 1001, 968, 1001, 1000, 969, 970, 1002, 969, 1002, 1001, 970, 971, 1003, 970, 1003, 1002, 971, 972, 1004, 971, 1004, 1003, 972, 973, 1005, 972, 1005, 1004, 973, 974, 1006, 973, 1006, 1005, 974, 975, 1007, 974, 1007, 1006, 975, 976, 1008, 975, 1008, 1007, 976, 977, 1009, 976, 1009, 1008, 977, 978, 1010, 977, 1010, 1009, 978, 979, 1011, 978, 1011, 1010, 979, 980, 1012, 979, 1012, 1011, 980, 981, 1013, 980, 1013, 1012, 981, 982, 1014, 981, 1014, 1013, 982, 983, 1015, 982, 1015, 1014, 983, 984, 1016, 983, 1016, 1015, 984, 985, 1017, 984, 1017, 1016, 985, 986, 1018, 985, 1018, 1017, 986, 987, 1019, 986, 1019, 1018, 987, 988, 1020, 987, 1020, 1019, 988, 989, 1021, 988, 1021, 1020, 989, 990, 1022, 989, 1022, 1021, 990, 991, 1023, 990, 1023, 1022] point3f[] points = [(0, 0, 20), (20, 0, 20), (40, 0, 20), (60, 0, 20), (80, 0, 20), (100, 0, 20), (120, 0, 20), (140, 0, 20), (160, 0, 20), (180, 0, 20), (200, 0, 20), (220, 0, 20), (240, 0, 20), (260, 0, 20), (280, 0, 20), (300, 0, 20), (320, 0, 20), (340, 0, 20), (360, 0, 20), (380, 0, 20), (400, 0, 20), (420, 0, 20), (440, 0, 20), (460, 0, 20), (480, 0, 20), (500, 0, 20), (520, 0, 20), (540, 0, 20), (560, 0, 20), (580, 0, 20), (600, 0, 20), (620, 0, 20), (0, 20, 20), (20, 20, 20), (40, 20, 20), (60, 20, 20), (80, 20, 20), (100, 20, 20), (120, 20, 20), (140, 20, 20), (160, 20, 20), (180, 20, 20), (200, 20, 20), (220, 20, 20), (240, 20, 20), (260, 20, 20), (280, 20, 20), (300, 20, 20), (320, 20, 20), (340, 20, 20), (360, 20, 20), (380, 20, 20), (400, 20, 20), (420, 20, 20), (440, 20, 20), (460, 20, 20), (480, 20, 20), (500, 20, 20), (520, 20, 20), (540, 20, 20), (560, 20, 20), (580, 20, 20), (600, 20, 20), (620, 20, 20), (0, 40, 20), (20, 40, 20), (40, 40, 20), (60, 40, 20), (80, 40, 20), (100, 40, 20), (120, 40, 20), (140, 40, 20), (160, 40, 20), (180, 40, 20), (200, 40, 20), (220, 40, 20), (240, 40, 20), (260, 40, 20), (280, 40, 20), (300, 40, 20), (320, 40, 20), (340, 40, 20), (360, 40, 20), (380, 40, 20), (400, 40, 20), (420, 40, 20), (440, 40, 20), (460, 40, 20), (480, 40, 20), (500, 40, 20), (520, 40, 20), (540, 40, 20), (560, 40, 20), (580, 40, 20), (600, 40, 20), (620, 40, 20), (0, 60, 20), (20, 60, 20), (40, 60, 20), (60, 60, 20), (80, 60, 20), (100, 60, 20), (120, 60, 20), (140, 60, 20), (160, 60, 20), (180, 60, 20), (200, 60, 20), (220, 60, 20), (240, 60, 20), (260, 60, 20), (280, 60, 20), (300, 60, 20), (320, 60, 20), (340, 60, 20), (360, 60, 20), (380, 60, 20), (400, 60, 20), (420, 60, 20), (440, 60, 20), (460, 60, 20), (480, 60, 20), (500, 60, 20), (520, 60, 20), (540, 60, 20), (560, 60, 20), (580, 60, 20), (600, 60, 20), (620, 60, 20), (0, 80, 20), (20, 80, 20), (40, 80, 20), (60, 80, 20), (80, 80, 20), (100, 80, 20), (120, 80, 20), (140, 80, 20), (160, 80, 20), (180, 80, 20), (200, 80, 20), (220, 80, 20), (240, 80, 20), (260, 80, 20), (280, 80, 20), (300, 80, 20), (320, 80, 20), (340, 80, 20), (360, 80, 20), (380, 80, 20), (400, 80, 20), (420, 80, 20), (440, 80, 20), (460, 80, 20), (480, 80, 20), (500, 80, 20), (520, 80, 20), (540, 80, 20), (560, 80, 20), (580, 80, 20), (600, 80, 20), (620, 80, 20), (0, 100, 20), (20, 100, 20), (40, 100, 20), (60, 100, 20), (80, 100, 20), (100, 100, 20), (120, 100, 20), (140, 100, 20), (160, 100, 20), (180, 100, 20), (200, 100, 20), (220, 100, 20), (240, 100, 20), (260, 100, 20), (280, 100, 20), (300, 100, 20), (320, 100, 20), (340, 100, 20), (360, 100, 20), (380, 100, 20), (400, 100, 20), (420, 100, 20), (440, 100, 20), (460, 100, 20), (480, 100, 20), (500, 100, 20), (520, 100, 20), (540, 100, 20), (560, 100, 20), (580, 100, 20), (600, 100, 20), (620, 100, 20), (0, 120, 20), (20, 120, 20), (40, 120, 20), (60, 120, 20), (80, 120, 20), (100, 120, 20), (120, 120, 20), (140, 120, 20), (160, 120, 20), (180, 120, 20), (200, 120, 20), (220, 120, 20), (240, 120, 20), (260, 120, 20), (280, 120, 20), (300, 120, 20), (320, 120, 20), (340, 120, 20), (360, 120, 20), (380, 120, 20), (400, 120, 20), (420, 120, 20), (440, 120, 20), (460, 120, 20), (480, 120, 20), (500, 120, 20), (520, 120, 20), (540, 120, 20), (560, 120, 20), (580, 120, 20), (600, 120, 20), (620, 120, 20), (0, 140, 20), (20, 140, 20), (40, 140, 20), (60, 140, 20), (80, 140, 20), (100, 140, 20), (120, 140, 20), (140, 140, 20), (160, 140, 20), (180, 140, 20), (200, 140, 20), (220, 140, 20), (240, 140, 20), (260, 140, 20), (280, 140, 20), (300, 140, 20), (320, 140, 20), (340, 140, 20), (360, 140, 20), (380, 140, 20), (400, 140, 20), (420, 140, 20), (440, 140, 20), (460, 140, 20), (480, 140, 20), (500, 140, 20), (520, 140, 20), (540, 140, 20), (560, 140, 20), (580, 140, 20), (600, 140, 20), (620, 140, 20), (0, 160, 20), (20, 160, 20), (40, 160, 20), (60, 160, 20), (80, 160, 20), (100, 160, 20), (120, 160, 20), (140, 160, 20), (160, 160, 20), (180, 160, 20), (200, 160, 20), (220, 160, 20), (240, 160, 20), (260, 160, 20), (280, 160, 20), (300, 160, 20), (320, 160, 20), (340, 160, 20), (360, 160, 20), (380, 160, 20), (400, 160, 20), (420, 160, 20), (440, 160, 20), (460, 160, 20), (480, 160, 20), (500, 160, 20), (520, 160, 20), (540, 160, 20), (560, 160, 20), (580, 160, 20), (600, 160, 20), (620, 160, 20), (0, 180, 20), (20, 180, 20), (40, 180, 20), (60, 180, 20), (80, 180, 20), (100, 180, 20), (120, 180, 20), (140, 180, 20), (160, 180, 20), (180, 180, 20), (200, 180, 20), (220, 180, 20), (240, 180, 20), (260, 180, 20), (280, 180, 20), (300, 180, 20), (320, 180, 20), (340, 180, 20), (360, 180, 20), (380, 180, 20), (400, 180, 20), (420, 180, 20), (440, 180, 20), (460, 180, 20), (480, 180, 20), (500, 180, 20), (520, 180, 20), (540, 180, 20), (560, 180, 20), (580, 180, 20), (600, 180, 20), (620, 180, 20), (0, 200, 20), (20, 200, 20), (40, 200, 20), (60, 200, 20), (80, 200, 20), (100, 200, 20), (120, 200, 20), (140, 200, 20), (160, 200, 20), (180, 200, 20), (200, 200, 20), (220, 200, 20), (240, 200, 20), (260, 200, 20), (280, 200, 20), (300, 200, 20), (320, 200, 20), (340, 200, 20), (360, 200, 20), (380, 200, 20), (400, 200, 20), (420, 200, 20), (440, 200, 20), (460, 200, 20), (480, 200, 20), (500, 200, 20), (520, 200, 20), (540, 200, 20), (560, 200, 20), (580, 200, 20), (600, 200, 20), (620, 200, 20), (0, 220, 20), (20, 220, 20), (40, 220, 20), (60, 220, 20), (80, 220, 20), (100, 220, 20), (120, 220, 20), (140, 220, 20), (160, 220, 20), (180, 220, 20), (200, 220, 20), (220, 220, 20), (240, 220, 20), (260, 220, 20), (280, 220, 20), (300, 220, 20), (320, 220, 20), (340, 220, 20), (360, 220, 20), (380, 220, 20), (400, 220, 20), (420, 220, 20), (440, 220, 20), (460, 220, 20), (480, 220, 20), (500, 220, 20), (520, 220, 20), (540, 220, 20), (560, 220, 20), (580, 220, 20), (600, 220, 20), (620, 220, 20), (0, 240, 20), (20, 240, 20), (40, 240, 20), (60, 240, 20), (80, 240, 20), (100, 240, 20), (120, 240, 20), (140, 240, 20), (160, 240, 20), (180, 240, 20), (200, 240, 20), (220, 240, 20), (240, 240, 20), (260, 240, 20), (280, 240, 20), (300, 240, 20), (320, 240, 20), (340, 240, 20), (360, 240, 20), (380, 240, 20), (400, 240, 20), (420, 240, 20), (440, 240, 20), (460, 240, 20), (480, 240, 20), (500, 240, 20), (520, 240, 20), (540, 240, 20), (560, 240, 20), (580, 240, 20), (600, 240, 20), (620, 240, 20), (0, 260, 20), (20, 260, 20), (40, 260, 20), (60, 260, 20), (80, 260, 20), (100, 260, 20), (120, 260, 20), (140, 260, 20), (160, 260, 20), (180, 260, 20), (200, 260, 20), (220, 260, 20), (240, 260, 20), (260, 260, 20), (280, 260, 20), (300, 260, 20), (320, 260, 20), (340, 260, 20), (360, 260, 20), (380, 260, 20), (400, 260, 20), (420, 260, 20), (440, 260, 20), (460, 260, 20), (480, 260, 20), (500, 260, 20), (520, 260, 20), (540, 260, 20), (560, 260, 20), (580, 260, 20), (600, 260, 20), (620, 260, 20), (0, 280, 20), (20, 280, 20), (40, 280, 20), (60, 280, 20), (80, 280, 20), (100, 280, 20), (120, 280, 20), (140, 280, 20), (160, 280, 20), (180, 280, 20), (200, 280, 20), (220, 280, 20), (240, 280, 20), (260, 280, 20), (280, 280, 20), (300, 280, 20), (320, 280, 20), (340, 280, 20), (360, 280, 20), (380, 280, 20), (400, 280, 20), (420, 280, 20), (440, 280, 20), (460, 280, 20), (480, 280, 20), (500, 280, 20), (520, 280, 20), (540, 280, 20), (560, 280, 20), (580, 280, 20), (600, 280, 20), (620, 280, 20), (0, 300, 20), (20, 300, 20), (40, 300, 20), (60, 300, 20), (80, 300, 20), (100, 300, 20), (120, 300, 20), (140, 300, 20), (160, 300, 20), (180, 300, 20), (200, 300, 20), (220, 300, 20), (240, 300, 20), (260, 300, 20), (280, 300, 20), (300, 300, 20), (320, 300, 20), (340, 300, 20), (360, 300, 20), (380, 300, 20), (400, 300, 20), (420, 300, 20), (440, 300, 20), (460, 300, 20), (480, 300, 20), (500, 300, 20), (520, 300, 20), (540, 300, 20), (560, 300, 20), (580, 300, 20), (600, 300, 20), (620, 300, 20), (0, 320, 20), (20, 320, 20), (40, 320, 20), (60, 320, 20), (80, 320, 20), (100, 320, 20), (120, 320, 20), (140, 320, 20), (160, 320, 20), (180, 320, 20), (200, 320, 20), (220, 320, 20), (240, 320, 20), (260, 320, 20), (280, 320, 20), (300, 320, 20), (320, 320, 20), (340, 320, 20), (360, 320, 20), (380, 320, 20), (400, 320, 20), (420, 320, 20), (440, 320, 20), (460, 320, 20), (480, 320, 20), (500, 320, 20), (520, 320, 20), (540, 320, 20), (560, 320, 20), (580, 320, 20), (600, 320, 20), (620, 320, 20), (0, 340, 20), (20, 340, 20), (40, 340, 20), (60, 340, 20), (80, 340, 20), (100, 340, 20), (120, 340, 20), (140, 340, 20), (160, 340, 20), (180, 340, 20), (200, 340, 20), (220, 340, 20), (240, 340, 20), (260, 340, 20), (280, 340, 20), (300, 340, 20), (320, 340, 20), (340, 340, 20), (360, 340, 20), (380, 340, 20), (400, 340, 20), (420, 340, 20), (440, 340, 20), (460, 340, 20), (480, 340, 20), (500, 340, 20), (520, 340, 20), (540, 340, 20), (560, 340, 20), (580, 340, 20), (600, 340, 20), (620, 340, 20), (0, 360, 20), (20, 360, 20), (40, 360, 20), (60, 360, 20), (80, 360, 20), (100, 360, 20), (120, 360, 20), (140, 360, 20), (160, 360, 20), (180, 360, 20), (200, 360, 20), (220, 360, 20), (240, 360, 20), (260, 360, 20), (280, 360, 20), (300, 360, 20), (320, 360, 20), (340, 360, 20), (360, 360, 20), (380, 360, 20), (400, 360, 20), (420, 360, 20), (440, 360, 20), (460, 360, 20), (480, 360, 20), (500, 360, 20), (520, 360, 20), (540, 360, 20), (560, 360, 20), (580, 360, 20), (600, 360, 20), (620, 360, 20), (0, 380, 20), (20, 380, 20), (40, 380, 20), (60, 380, 20), (80, 380, 20), (100, 380, 20), (120, 380, 20), (140, 380, 20), (160, 380, 20), (180, 380, 20), (200, 380, 20), (220, 380, 20), (240, 380, 20), (260, 380, 20), (280, 380, 20), (300, 380, 20), (320, 380, 20), (340, 380, 20), (360, 380, 20), (380, 380, 20), (400, 380, 20), (420, 380, 20), (440, 380, 20), (460, 380, 20), (480, 380, 20), (500, 380, 20), (520, 380, 20), (540, 380, 20), (560, 380, 20), (580, 380, 20), (600, 380, 20), (620, 380, 20), (0, 400, 20), (20, 400, 20), (40, 400, 20), (60, 400, 20), (80, 400, 20), (100, 400, 20), (120, 400, 20), (140, 400, 20), (160, 400, 20), (180, 400, 20), (200, 400, 20), (220, 400, 20), (240, 400, 20), (260, 400, 20), (280, 400, 20), (300, 400, 20), (320, 400, 20), (340, 400, 20), (360, 400, 20), (380, 400, 20), (400, 400, 20), (420, 400, 20), (440, 400, 20), (460, 400, 20), (480, 400, 20), (500, 400, 20), (520, 400, 20), (540, 400, 20), (560, 400, 20), (580, 400, 20), (600, 400, 20), (620, 400, 20), (0, 420, 20), (20, 420, 20), (40, 420, 20), (60, 420, 20), (80, 420, 20), (100, 420, 20), (120, 420, 20), (140, 420, 20), (160, 420, 20), (180, 420, 20), (200, 420, 20), (220, 420, 20), (240, 420, 20), (260, 420, 20), (280, 420, 20), (300, 420, 20), (320, 420, 20), (340, 420, 20), (360, 420, 20), (380, 420, 20), (400, 420, 20), (420, 420, 20), (440, 420, 20), (460, 420, 20), (480, 420, 20), (500, 420, 20), (520, 420, 20), (540, 420, 20), (560, 420, 20), (580, 420, 20), (600, 420, 20), (620, 420, 20), (0, 440, 20), (20, 440, 20), (40, 440, 20), (60, 440, 20), (80, 440, 20), (100, 440, 20), (120, 440, 20), (140, 440, 20), (160, 440, 20), (180, 440, 20), (200, 440, 20), (220, 440, 20), (240, 440, 20), (260, 440, 20), (280, 440, 20), (300, 440, 20), (320, 440, 20), (340, 440, 20), (360, 440, 20), (380, 440, 20), (400, 440, 20), (420, 440, 20), (440, 440, 20), (460, 440, 20), (480, 440, 20), (500, 440, 20), (520, 440, 20), (540, 440, 20), (560, 440, 20), (580, 440, 20), (600, 440, 20), (620, 440, 20), (0, 460, 20), (20, 460, 20), (40, 460, 20), (60, 460, 20), (80, 460, 20), (100, 460, 20), (120, 460, 20), (140, 460, 20), (160, 460, 20), (180, 460, 20), (200, 460, 20), (220, 460, 20), (240, 460, 20), (260, 460, 20), (280, 460, 20), (300, 460, 20), (320, 460, 20), (340, 460, 20), (360, 460, 20), (380, 460, 20), (400, 460, 20), (420, 460, 20), (440, 460, 20), (460, 460, 20), (480, 460, 20), (500, 460, 20), (520, 460, 20), (540, 460, 20), (560, 460, 20), (580, 460, 20), (600, 460, 20), (620, 460, 20), (0, 480, 20), (20, 480, 20), (40, 480, 20), (60, 480, 20), (80, 480, 20), (100, 480, 20), (120, 480, 20), (140, 480, 20), (160, 480, 20), (180, 480, 20), (200, 480, 20), (220, 480, 20), (240, 480, 20), (260, 480, 20), (280, 480, 20), (300, 480, 20), (320, 480, 20), (340, 480, 20), (360, 480, 20), (380, 480, 20), (400, 480, 20), (420, 480, 20), (440, 480, 20), (460, 480, 20), (480, 480, 20), (500, 480, 20), (520, 480, 20), (540, 480, 20), (560, 480, 20), (580, 480, 20), (600, 480, 20), (620, 480, 20), (0, 500, 20), (20, 500, 20), (40, 500, 20), (60, 500, 20), (80, 500, 20), (100, 500, 20), (120, 500, 20), (140, 500, 20), (160, 500, 20), (180, 500, 20), (200, 500, 20), (220, 500, 20), (240, 500, 20), (260, 500, 20), (280, 500, 20), (300, 500, 20), (320, 500, 20), (340, 500, 20), (360, 500, 20), (380, 500, 20), (400, 500, 20), (420, 500, 20), (440, 500, 20), (460, 500, 20), (480, 500, 20), (500, 500, 20), (520, 500, 20), (540, 500, 20), (560, 500, 20), (580, 500, 20), (600, 500, 20), (620, 500, 20), (0, 520, 20), (20, 520, 20), (40, 520, 20), (60, 520, 20), (80, 520, 20), (100, 520, 20), (120, 520, 20), (140, 520, 20), (160, 520, 20), (180, 520, 20), (200, 520, 20), (220, 520, 20), (240, 520, 20), (260, 520, 20), (280, 520, 20), (300, 520, 20), (320, 520, 20), (340, 520, 20), (360, 520, 20), (380, 520, 20), (400, 520, 20), (420, 520, 20), (440, 520, 20), (460, 520, 20), (480, 520, 20), (500, 520, 20), (520, 520, 20), (540, 520, 20), (560, 520, 20), (580, 520, 20), (600, 520, 20), (620, 520, 20), (0, 540, 20), (20, 540, 20), (40, 540, 20), (60, 540, 20), (80, 540, 20), (100, 540, 20), (120, 540, 20), (140, 540, 20), (160, 540, 20), (180, 540, 20), (200, 540, 20), (220, 540, 20), (240, 540, 20), (260, 540, 20), (280, 540, 20), (300, 540, 20), (320, 540, 20), (340, 540, 20), (360, 540, 20), (380, 540, 20), (400, 540, 20), (420, 540, 20), (440, 540, 20), (460, 540, 20), (480, 540, 20), (500, 540, 20), (520, 540, 20), (540, 540, 20), (560, 540, 20), (580, 540, 20), (600, 540, 20), (620, 540, 20), (0, 560, 20), (20, 560, 20), (40, 560, 20), (60, 560, 20), (80, 560, 20), (100, 560, 20), (120, 560, 20), (140, 560, 20), (160, 560, 20), (180, 560, 20), (200, 560, 20), (220, 560, 20), (240, 560, 20), (260, 560, 20), (280, 560, 20), (300, 560, 20), (320, 560, 20), (340, 560, 20), (360, 560, 20), (380, 560, 20), (400, 560, 20), (420, 560, 20), (440, 560, 20), (460, 560, 20), (480, 560, 20), (500, 560, 20), (520, 560, 20), (540, 560, 20), (560, 560, 20), (580, 560, 20), (600, 560, 20), (620, 560, 20), (0, 580, 20), (20, 580, 20), (40, 580, 20), (60, 580, 20), (80, 580, 20), (100, 580, 20), (120, 580, 20), (140, 580, 20), (160, 580, 20), (180, 580, 20), (200, 580, 20), (220, 580, 20), (240, 580, 20), (260, 580, 20), (280, 580, 20), (300, 580, 20), (320, 580, 20), (340, 580, 20), (360, 580, 20), (380, 580, 20), (400, 580, 20), (420, 580, 20), (440, 580, 20), (460, 580, 20), (480, 580, 20), (500, 580, 20), (520, 580, 20), (540, 580, 20), (560, 580, 20), (580, 580, 20), (600, 580, 20), (620, 580, 20), (0, 600, 20), (20, 600, 20), (40, 600, 20), (60, 600, 20), (80, 600, 20), (100, 600, 20), (120, 600, 20), (140, 600, 20), (160, 600, 20), (180, 600, 20), (200, 600, 20), (220, 600, 20), (240, 600, 20), (260, 600, 20), (280, 600, 20), (300, 600, 20), (320, 600, 20), (340, 600, 20), (360, 600, 20), (380, 600, 20), (400, 600, 20), (420, 600, 20), (440, 600, 20), (460, 600, 20), (480, 600, 20), (500, 600, 20), (520, 600, 20), (540, 600, 20), (560, 600, 20), (580, 600, 20), (600, 600, 20), (620, 600, 20), (0, 620, 20), (20, 620, 20), (40, 620, 20), (60, 620, 20), (80, 620, 20), (100, 620, 20), (120, 620, 20), (140, 620, 20), (160, 620, 20), (180, 620, 20), (200, 620, 20), (220, 620, 20), (240, 620, 20), (260, 620, 20), (280, 620, 20), (300, 620, 20), (320, 620, 20), (340, 620, 20), (360, 620, 20), (380, 620, 20), (400, 620, 20), (420, 620, 20), (440, 620, 20), (460, 620, 20), (480, 620, 20), (500, 620, 20), (520, 620, 20), (540, 620, 20), (560, 620, 20), (580, 620, 20), (600, 620, 20), (620, 620, 20)] color3f[] primvars:displayColor = [(0.2784314, 0.64705884, 1)] } def ComputeNode "testDeformer" { rel inputMesh = </defaultPrim/inputGrid> custom token node:type = "omni.graph.examples.cpp.PrimDeformer1Gpu" float multiplier = 3 float wavelength = 310 def Output "outputMesh" { int[] faceVertexCounts int[] faceVertexIndices point3f[] points } } def Mesh "outputGrid" { int[] faceVertexCounts.connect = </defaultPrim/testDeformer/outputMesh.faceVertexCounts> int[] faceVertexIndices.connect = </defaultPrim/testDeformer/outputMesh.faceVertexIndices> point3f[] points.connect = </defaultPrim/testDeformer/outputMesh.points> uniform bool doubleSided = 1 color3f[] primvars:displayColor = [(0.784314, 0.64705884, 0.1)] } }
omniverse-code/kit/exts/omni.graph/omni/graph/core/data/ExampleGridDeformerOGN.usda
#usda 1.0 ( doc = """Generated from Composed Stage of root layer """ ) def Xform "defaultPrim" { def Mesh "inputGrid" { uniform bool doubleSided = 1 int[] faceVertexCounts = [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 1, 33, 0, 33, 32, 1, 2, 34, 1, 34, 33, 2, 3, 35, 2, 35, 34, 3, 4, 36, 3, 36, 35, 4, 5, 37, 4, 37, 36, 5, 6, 38, 5, 38, 37, 6, 7, 39, 6, 39, 38, 7, 8, 40, 7, 40, 39, 8, 9, 41, 8, 41, 40, 9, 10, 42, 9, 42, 41, 10, 11, 43, 10, 43, 42, 11, 12, 44, 11, 44, 43, 12, 13, 45, 12, 45, 44, 13, 14, 46, 13, 46, 45, 14, 15, 47, 14, 47, 46, 15, 16, 48, 15, 48, 47, 16, 17, 49, 16, 49, 48, 17, 18, 50, 17, 50, 49, 18, 19, 51, 18, 51, 50, 19, 20, 52, 19, 52, 51, 20, 21, 53, 20, 53, 52, 21, 22, 54, 21, 54, 53, 22, 23, 55, 22, 55, 54, 23, 24, 56, 23, 56, 55, 24, 25, 57, 24, 57, 56, 25, 26, 58, 25, 58, 57, 26, 27, 59, 26, 59, 58, 27, 28, 60, 27, 60, 59, 28, 29, 61, 28, 61, 60, 29, 30, 62, 29, 62, 61, 30, 31, 63, 30, 63, 62, 32, 33, 65, 32, 65, 64, 33, 34, 66, 33, 66, 65, 34, 35, 67, 34, 67, 66, 35, 36, 68, 35, 68, 67, 36, 37, 69, 36, 69, 68, 37, 38, 70, 37, 70, 69, 38, 39, 71, 38, 71, 70, 39, 40, 72, 39, 72, 71, 40, 41, 73, 40, 73, 72, 41, 42, 74, 41, 74, 73, 42, 43, 75, 42, 75, 74, 43, 44, 76, 43, 76, 75, 44, 45, 77, 44, 77, 76, 45, 46, 78, 45, 78, 77, 46, 47, 79, 46, 79, 78, 47, 48, 80, 47, 80, 79, 48, 49, 81, 48, 81, 80, 49, 50, 82, 49, 82, 81, 50, 51, 83, 50, 83, 82, 51, 52, 84, 51, 84, 83, 52, 53, 85, 52, 85, 84, 53, 54, 86, 53, 86, 85, 54, 55, 87, 54, 87, 86, 55, 56, 88, 55, 88, 87, 56, 57, 89, 56, 89, 88, 57, 58, 90, 57, 90, 89, 58, 59, 91, 58, 91, 90, 59, 60, 92, 59, 92, 91, 60, 61, 93, 60, 93, 92, 61, 62, 94, 61, 94, 93, 62, 63, 95, 62, 95, 94, 64, 65, 97, 64, 97, 96, 65, 66, 98, 65, 98, 97, 66, 67, 99, 66, 99, 98, 67, 68, 100, 67, 100, 99, 68, 69, 101, 68, 101, 100, 69, 70, 102, 69, 102, 101, 70, 71, 103, 70, 103, 102, 71, 72, 104, 71, 104, 103, 72, 73, 105, 72, 105, 104, 73, 74, 106, 73, 106, 105, 74, 75, 107, 74, 107, 106, 75, 76, 108, 75, 108, 107, 76, 77, 109, 76, 109, 108, 77, 78, 110, 77, 110, 109, 78, 79, 111, 78, 111, 110, 79, 80, 112, 79, 112, 111, 80, 81, 113, 80, 113, 112, 81, 82, 114, 81, 114, 113, 82, 83, 115, 82, 115, 114, 83, 84, 116, 83, 116, 115, 84, 85, 117, 84, 117, 116, 85, 86, 118, 85, 118, 117, 86, 87, 119, 86, 119, 118, 87, 88, 120, 87, 120, 119, 88, 89, 121, 88, 121, 120, 89, 90, 122, 89, 122, 121, 90, 91, 123, 90, 123, 122, 91, 92, 124, 91, 124, 123, 92, 93, 125, 92, 125, 124, 93, 94, 126, 93, 126, 125, 94, 95, 127, 94, 127, 126, 96, 97, 129, 96, 129, 128, 97, 98, 130, 97, 130, 129, 98, 99, 131, 98, 131, 130, 99, 100, 132, 99, 132, 131, 100, 101, 133, 100, 133, 132, 101, 102, 134, 101, 134, 133, 102, 103, 135, 102, 135, 134, 103, 104, 136, 103, 136, 135, 104, 105, 137, 104, 137, 136, 105, 106, 138, 105, 138, 137, 106, 107, 139, 106, 139, 138, 107, 108, 140, 107, 140, 139, 108, 109, 141, 108, 141, 140, 109, 110, 142, 109, 142, 141, 110, 111, 143, 110, 143, 142, 111, 112, 144, 111, 144, 143, 112, 113, 145, 112, 145, 144, 113, 114, 146, 113, 146, 145, 114, 115, 147, 114, 147, 146, 115, 116, 148, 115, 148, 147, 116, 117, 149, 116, 149, 148, 117, 118, 150, 117, 150, 149, 118, 119, 151, 118, 151, 150, 119, 120, 152, 119, 152, 151, 120, 121, 153, 120, 153, 152, 121, 122, 154, 121, 154, 153, 122, 123, 155, 122, 155, 154, 123, 124, 156, 123, 156, 155, 124, 125, 157, 124, 157, 156, 125, 126, 158, 125, 158, 157, 126, 127, 159, 126, 159, 158, 128, 129, 161, 128, 161, 160, 129, 130, 162, 129, 162, 161, 130, 131, 163, 130, 163, 162, 131, 132, 164, 131, 164, 163, 132, 133, 165, 132, 165, 164, 133, 134, 166, 133, 166, 165, 134, 135, 167, 134, 167, 166, 135, 136, 168, 135, 168, 167, 136, 137, 169, 136, 169, 168, 137, 138, 170, 137, 170, 169, 138, 139, 171, 138, 171, 170, 139, 140, 172, 139, 172, 171, 140, 141, 173, 140, 173, 172, 141, 142, 174, 141, 174, 173, 142, 143, 175, 142, 175, 174, 143, 144, 176, 143, 176, 175, 144, 145, 177, 144, 177, 176, 145, 146, 178, 145, 178, 177, 146, 147, 179, 146, 179, 178, 147, 148, 180, 147, 180, 179, 148, 149, 181, 148, 181, 180, 149, 150, 182, 149, 182, 181, 150, 151, 183, 150, 183, 182, 151, 152, 184, 151, 184, 183, 152, 153, 185, 152, 185, 184, 153, 154, 186, 153, 186, 185, 154, 155, 187, 154, 187, 186, 155, 156, 188, 155, 188, 187, 156, 157, 189, 156, 189, 188, 157, 158, 190, 157, 190, 189, 158, 159, 191, 158, 191, 190, 160, 161, 193, 160, 193, 192, 161, 162, 194, 161, 194, 193, 162, 163, 195, 162, 195, 194, 163, 164, 196, 163, 196, 195, 164, 165, 197, 164, 197, 196, 165, 166, 198, 165, 198, 197, 166, 167, 199, 166, 199, 198, 167, 168, 200, 167, 200, 199, 168, 169, 201, 168, 201, 200, 169, 170, 202, 169, 202, 201, 170, 171, 203, 170, 203, 202, 171, 172, 204, 171, 204, 203, 172, 173, 205, 172, 205, 204, 173, 174, 206, 173, 206, 205, 174, 175, 207, 174, 207, 206, 175, 176, 208, 175, 208, 207, 176, 177, 209, 176, 209, 208, 177, 178, 210, 177, 210, 209, 178, 179, 211, 178, 211, 210, 179, 180, 212, 179, 212, 211, 180, 181, 213, 180, 213, 212, 181, 182, 214, 181, 214, 213, 182, 183, 215, 182, 215, 214, 183, 184, 216, 183, 216, 215, 184, 185, 217, 184, 217, 216, 185, 186, 218, 185, 218, 217, 186, 187, 219, 186, 219, 218, 187, 188, 220, 187, 220, 219, 188, 189, 221, 188, 221, 220, 189, 190, 222, 189, 222, 221, 190, 191, 223, 190, 223, 222, 192, 193, 225, 192, 225, 224, 193, 194, 226, 193, 226, 225, 194, 195, 227, 194, 227, 226, 195, 196, 228, 195, 228, 227, 196, 197, 229, 196, 229, 228, 197, 198, 230, 197, 230, 229, 198, 199, 231, 198, 231, 230, 199, 200, 232, 199, 232, 231, 200, 201, 233, 200, 233, 232, 201, 202, 234, 201, 234, 233, 202, 203, 235, 202, 235, 234, 203, 204, 236, 203, 236, 235, 204, 205, 237, 204, 237, 236, 205, 206, 238, 205, 238, 237, 206, 207, 239, 206, 239, 238, 207, 208, 240, 207, 240, 239, 208, 209, 241, 208, 241, 240, 209, 210, 242, 209, 242, 241, 210, 211, 243, 210, 243, 242, 211, 212, 244, 211, 244, 243, 212, 213, 245, 212, 245, 244, 213, 214, 246, 213, 246, 245, 214, 215, 247, 214, 247, 246, 215, 216, 248, 215, 248, 247, 216, 217, 249, 216, 249, 248, 217, 218, 250, 217, 250, 249, 218, 219, 251, 218, 251, 250, 219, 220, 252, 219, 252, 251, 220, 221, 253, 220, 253, 252, 221, 222, 254, 221, 254, 253, 222, 223, 255, 222, 255, 254, 224, 225, 257, 224, 257, 256, 225, 226, 258, 225, 258, 257, 226, 227, 259, 226, 259, 258, 227, 228, 260, 227, 260, 259, 228, 229, 261, 228, 261, 260, 229, 230, 262, 229, 262, 261, 230, 231, 263, 230, 263, 262, 231, 232, 264, 231, 264, 263, 232, 233, 265, 232, 265, 264, 233, 234, 266, 233, 266, 265, 234, 235, 267, 234, 267, 266, 235, 236, 268, 235, 268, 267, 236, 237, 269, 236, 269, 268, 237, 238, 270, 237, 270, 269, 238, 239, 271, 238, 271, 270, 239, 240, 272, 239, 272, 271, 240, 241, 273, 240, 273, 272, 241, 242, 274, 241, 274, 273, 242, 243, 275, 242, 275, 274, 243, 244, 276, 243, 276, 275, 244, 245, 277, 244, 277, 276, 245, 246, 278, 245, 278, 277, 246, 247, 279, 246, 279, 278, 247, 248, 280, 247, 280, 279, 248, 249, 281, 248, 281, 280, 249, 250, 282, 249, 282, 281, 250, 251, 283, 250, 283, 282, 251, 252, 284, 251, 284, 283, 252, 253, 285, 252, 285, 284, 253, 254, 286, 253, 286, 285, 254, 255, 287, 254, 287, 286, 256, 257, 289, 256, 289, 288, 257, 258, 290, 257, 290, 289, 258, 259, 291, 258, 291, 290, 259, 260, 292, 259, 292, 291, 260, 261, 293, 260, 293, 292, 261, 262, 294, 261, 294, 293, 262, 263, 295, 262, 295, 294, 263, 264, 296, 263, 296, 295, 264, 265, 297, 264, 297, 296, 265, 266, 298, 265, 298, 297, 266, 267, 299, 266, 299, 298, 267, 268, 300, 267, 300, 299, 268, 269, 301, 268, 301, 300, 269, 270, 302, 269, 302, 301, 270, 271, 303, 270, 303, 302, 271, 272, 304, 271, 304, 303, 272, 273, 305, 272, 305, 304, 273, 274, 306, 273, 306, 305, 274, 275, 307, 274, 307, 306, 275, 276, 308, 275, 308, 307, 276, 277, 309, 276, 309, 308, 277, 278, 310, 277, 310, 309, 278, 279, 311, 278, 311, 310, 279, 280, 312, 279, 312, 311, 280, 281, 313, 280, 313, 312, 281, 282, 314, 281, 314, 313, 282, 283, 315, 282, 315, 314, 283, 284, 316, 283, 316, 315, 284, 285, 317, 284, 317, 316, 285, 286, 318, 285, 318, 317, 286, 287, 319, 286, 319, 318, 288, 289, 321, 288, 321, 320, 289, 290, 322, 289, 322, 321, 290, 291, 323, 290, 323, 322, 291, 292, 324, 291, 324, 323, 292, 293, 325, 292, 325, 324, 293, 294, 326, 293, 326, 325, 294, 295, 327, 294, 327, 326, 295, 296, 328, 295, 328, 327, 296, 297, 329, 296, 329, 328, 297, 298, 330, 297, 330, 329, 298, 299, 331, 298, 331, 330, 299, 300, 332, 299, 332, 331, 300, 301, 333, 300, 333, 332, 301, 302, 334, 301, 334, 333, 302, 303, 335, 302, 335, 334, 303, 304, 336, 303, 336, 335, 304, 305, 337, 304, 337, 336, 305, 306, 338, 305, 338, 337, 306, 307, 339, 306, 339, 338, 307, 308, 340, 307, 340, 339, 308, 309, 341, 308, 341, 340, 309, 310, 342, 309, 342, 341, 310, 311, 343, 310, 343, 342, 311, 312, 344, 311, 344, 343, 312, 313, 345, 312, 345, 344, 313, 314, 346, 313, 346, 345, 314, 315, 347, 314, 347, 346, 315, 316, 348, 315, 348, 347, 316, 317, 349, 316, 349, 348, 317, 318, 350, 317, 350, 349, 318, 319, 351, 318, 351, 350, 320, 321, 353, 320, 353, 352, 321, 322, 354, 321, 354, 353, 322, 323, 355, 322, 355, 354, 323, 324, 356, 323, 356, 355, 324, 325, 357, 324, 357, 356, 325, 326, 358, 325, 358, 357, 326, 327, 359, 326, 359, 358, 327, 328, 360, 327, 360, 359, 328, 329, 361, 328, 361, 360, 329, 330, 362, 329, 362, 361, 330, 331, 363, 330, 363, 362, 331, 332, 364, 331, 364, 363, 332, 333, 365, 332, 365, 364, 333, 334, 366, 333, 366, 365, 334, 335, 367, 334, 367, 366, 335, 336, 368, 335, 368, 367, 336, 337, 369, 336, 369, 368, 337, 338, 370, 337, 370, 369, 338, 339, 371, 338, 371, 370, 339, 340, 372, 339, 372, 371, 340, 341, 373, 340, 373, 372, 341, 342, 374, 341, 374, 373, 342, 343, 375, 342, 375, 374, 343, 344, 376, 343, 376, 375, 344, 345, 377, 344, 377, 376, 345, 346, 378, 345, 378, 377, 346, 347, 379, 346, 379, 378, 347, 348, 380, 347, 380, 379, 348, 349, 381, 348, 381, 380, 349, 350, 382, 349, 382, 381, 350, 351, 383, 350, 383, 382, 352, 353, 385, 352, 385, 384, 353, 354, 386, 353, 386, 385, 354, 355, 387, 354, 387, 386, 355, 356, 388, 355, 388, 387, 356, 357, 389, 356, 389, 388, 357, 358, 390, 357, 390, 389, 358, 359, 391, 358, 391, 390, 359, 360, 392, 359, 392, 391, 360, 361, 393, 360, 393, 392, 361, 362, 394, 361, 394, 393, 362, 363, 395, 362, 395, 394, 363, 364, 396, 363, 396, 395, 364, 365, 397, 364, 397, 396, 365, 366, 398, 365, 398, 397, 366, 367, 399, 366, 399, 398, 367, 368, 400, 367, 400, 399, 368, 369, 401, 368, 401, 400, 369, 370, 402, 369, 402, 401, 370, 371, 403, 370, 403, 402, 371, 372, 404, 371, 404, 403, 372, 373, 405, 372, 405, 404, 373, 374, 406, 373, 406, 405, 374, 375, 407, 374, 407, 406, 375, 376, 408, 375, 408, 407, 376, 377, 409, 376, 409, 408, 377, 378, 410, 377, 410, 409, 378, 379, 411, 378, 411, 410, 379, 380, 412, 379, 412, 411, 380, 381, 413, 380, 413, 412, 381, 382, 414, 381, 414, 413, 382, 383, 415, 382, 415, 414, 384, 385, 417, 384, 417, 416, 385, 386, 418, 385, 418, 417, 386, 387, 419, 386, 419, 418, 387, 388, 420, 387, 420, 419, 388, 389, 421, 388, 421, 420, 389, 390, 422, 389, 422, 421, 390, 391, 423, 390, 423, 422, 391, 392, 424, 391, 424, 423, 392, 393, 425, 392, 425, 424, 393, 394, 426, 393, 426, 425, 394, 395, 427, 394, 427, 426, 395, 396, 428, 395, 428, 427, 396, 397, 429, 396, 429, 428, 397, 398, 430, 397, 430, 429, 398, 399, 431, 398, 431, 430, 399, 400, 432, 399, 432, 431, 400, 401, 433, 400, 433, 432, 401, 402, 434, 401, 434, 433, 402, 403, 435, 402, 435, 434, 403, 404, 436, 403, 436, 435, 404, 405, 437, 404, 437, 436, 405, 406, 438, 405, 438, 437, 406, 407, 439, 406, 439, 438, 407, 408, 440, 407, 440, 439, 408, 409, 441, 408, 441, 440, 409, 410, 442, 409, 442, 441, 410, 411, 443, 410, 443, 442, 411, 412, 444, 411, 444, 443, 412, 413, 445, 412, 445, 444, 413, 414, 446, 413, 446, 445, 414, 415, 447, 414, 447, 446, 416, 417, 449, 416, 449, 448, 417, 418, 450, 417, 450, 449, 418, 419, 451, 418, 451, 450, 419, 420, 452, 419, 452, 451, 420, 421, 453, 420, 453, 452, 421, 422, 454, 421, 454, 453, 422, 423, 455, 422, 455, 454, 423, 424, 456, 423, 456, 455, 424, 425, 457, 424, 457, 456, 425, 426, 458, 425, 458, 457, 426, 427, 459, 426, 459, 458, 427, 428, 460, 427, 460, 459, 428, 429, 461, 428, 461, 460, 429, 430, 462, 429, 462, 461, 430, 431, 463, 430, 463, 462, 431, 432, 464, 431, 464, 463, 432, 433, 465, 432, 465, 464, 433, 434, 466, 433, 466, 465, 434, 435, 467, 434, 467, 466, 435, 436, 468, 435, 468, 467, 436, 437, 469, 436, 469, 468, 437, 438, 470, 437, 470, 469, 438, 439, 471, 438, 471, 470, 439, 440, 472, 439, 472, 471, 440, 441, 473, 440, 473, 472, 441, 442, 474, 441, 474, 473, 442, 443, 475, 442, 475, 474, 443, 444, 476, 443, 476, 475, 444, 445, 477, 444, 477, 476, 445, 446, 478, 445, 478, 477, 446, 447, 479, 446, 479, 478, 448, 449, 481, 448, 481, 480, 449, 450, 482, 449, 482, 481, 450, 451, 483, 450, 483, 482, 451, 452, 484, 451, 484, 483, 452, 453, 485, 452, 485, 484, 453, 454, 486, 453, 486, 485, 454, 455, 487, 454, 487, 486, 455, 456, 488, 455, 488, 487, 456, 457, 489, 456, 489, 488, 457, 458, 490, 457, 490, 489, 458, 459, 491, 458, 491, 490, 459, 460, 492, 459, 492, 491, 460, 461, 493, 460, 493, 492, 461, 462, 494, 461, 494, 493, 462, 463, 495, 462, 495, 494, 463, 464, 496, 463, 496, 495, 464, 465, 497, 464, 497, 496, 465, 466, 498, 465, 498, 497, 466, 467, 499, 466, 499, 498, 467, 468, 500, 467, 500, 499, 468, 469, 501, 468, 501, 500, 469, 470, 502, 469, 502, 501, 470, 471, 503, 470, 503, 502, 471, 472, 504, 471, 504, 503, 472, 473, 505, 472, 505, 504, 473, 474, 506, 473, 506, 505, 474, 475, 507, 474, 507, 506, 475, 476, 508, 475, 508, 507, 476, 477, 509, 476, 509, 508, 477, 478, 510, 477, 510, 509, 478, 479, 511, 478, 511, 510, 480, 481, 513, 480, 513, 512, 481, 482, 514, 481, 514, 513, 482, 483, 515, 482, 515, 514, 483, 484, 516, 483, 516, 515, 484, 485, 517, 484, 517, 516, 485, 486, 518, 485, 518, 517, 486, 487, 519, 486, 519, 518, 487, 488, 520, 487, 520, 519, 488, 489, 521, 488, 521, 520, 489, 490, 522, 489, 522, 521, 490, 491, 523, 490, 523, 522, 491, 492, 524, 491, 524, 523, 492, 493, 525, 492, 525, 524, 493, 494, 526, 493, 526, 525, 494, 495, 527, 494, 527, 526, 495, 496, 528, 495, 528, 527, 496, 497, 529, 496, 529, 528, 497, 498, 530, 497, 530, 529, 498, 499, 531, 498, 531, 530, 499, 500, 532, 499, 532, 531, 500, 501, 533, 500, 533, 532, 501, 502, 534, 501, 534, 533, 502, 503, 535, 502, 535, 534, 503, 504, 536, 503, 536, 535, 504, 505, 537, 504, 537, 536, 505, 506, 538, 505, 538, 537, 506, 507, 539, 506, 539, 538, 507, 508, 540, 507, 540, 539, 508, 509, 541, 508, 541, 540, 509, 510, 542, 509, 542, 541, 510, 511, 543, 510, 543, 542, 512, 513, 545, 512, 545, 544, 513, 514, 546, 513, 546, 545, 514, 515, 547, 514, 547, 546, 515, 516, 548, 515, 548, 547, 516, 517, 549, 516, 549, 548, 517, 518, 550, 517, 550, 549, 518, 519, 551, 518, 551, 550, 519, 520, 552, 519, 552, 551, 520, 521, 553, 520, 553, 552, 521, 522, 554, 521, 554, 553, 522, 523, 555, 522, 555, 554, 523, 524, 556, 523, 556, 555, 524, 525, 557, 524, 557, 556, 525, 526, 558, 525, 558, 557, 526, 527, 559, 526, 559, 558, 527, 528, 560, 527, 560, 559, 528, 529, 561, 528, 561, 560, 529, 530, 562, 529, 562, 561, 530, 531, 563, 530, 563, 562, 531, 532, 564, 531, 564, 563, 532, 533, 565, 532, 565, 564, 533, 534, 566, 533, 566, 565, 534, 535, 567, 534, 567, 566, 535, 536, 568, 535, 568, 567, 536, 537, 569, 536, 569, 568, 537, 538, 570, 537, 570, 569, 538, 539, 571, 538, 571, 570, 539, 540, 572, 539, 572, 571, 540, 541, 573, 540, 573, 572, 541, 542, 574, 541, 574, 573, 542, 543, 575, 542, 575, 574, 544, 545, 577, 544, 577, 576, 545, 546, 578, 545, 578, 577, 546, 547, 579, 546, 579, 578, 547, 548, 580, 547, 580, 579, 548, 549, 581, 548, 581, 580, 549, 550, 582, 549, 582, 581, 550, 551, 583, 550, 583, 582, 551, 552, 584, 551, 584, 583, 552, 553, 585, 552, 585, 584, 553, 554, 586, 553, 586, 585, 554, 555, 587, 554, 587, 586, 555, 556, 588, 555, 588, 587, 556, 557, 589, 556, 589, 588, 557, 558, 590, 557, 590, 589, 558, 559, 591, 558, 591, 590, 559, 560, 592, 559, 592, 591, 560, 561, 593, 560, 593, 592, 561, 562, 594, 561, 594, 593, 562, 563, 595, 562, 595, 594, 563, 564, 596, 563, 596, 595, 564, 565, 597, 564, 597, 596, 565, 566, 598, 565, 598, 597, 566, 567, 599, 566, 599, 598, 567, 568, 600, 567, 600, 599, 568, 569, 601, 568, 601, 600, 569, 570, 602, 569, 602, 601, 570, 571, 603, 570, 603, 602, 571, 572, 604, 571, 604, 603, 572, 573, 605, 572, 605, 604, 573, 574, 606, 573, 606, 605, 574, 575, 607, 574, 607, 606, 576, 577, 609, 576, 609, 608, 577, 578, 610, 577, 610, 609, 578, 579, 611, 578, 611, 610, 579, 580, 612, 579, 612, 611, 580, 581, 613, 580, 613, 612, 581, 582, 614, 581, 614, 613, 582, 583, 615, 582, 615, 614, 583, 584, 616, 583, 616, 615, 584, 585, 617, 584, 617, 616, 585, 586, 618, 585, 618, 617, 586, 587, 619, 586, 619, 618, 587, 588, 620, 587, 620, 619, 588, 589, 621, 588, 621, 620, 589, 590, 622, 589, 622, 621, 590, 591, 623, 590, 623, 622, 591, 592, 624, 591, 624, 623, 592, 593, 625, 592, 625, 624, 593, 594, 626, 593, 626, 625, 594, 595, 627, 594, 627, 626, 595, 596, 628, 595, 628, 627, 596, 597, 629, 596, 629, 628, 597, 598, 630, 597, 630, 629, 598, 599, 631, 598, 631, 630, 599, 600, 632, 599, 632, 631, 600, 601, 633, 600, 633, 632, 601, 602, 634, 601, 634, 633, 602, 603, 635, 602, 635, 634, 603, 604, 636, 603, 636, 635, 604, 605, 637, 604, 637, 636, 605, 606, 638, 605, 638, 637, 606, 607, 639, 606, 639, 638, 608, 609, 641, 608, 641, 640, 609, 610, 642, 609, 642, 641, 610, 611, 643, 610, 643, 642, 611, 612, 644, 611, 644, 643, 612, 613, 645, 612, 645, 644, 613, 614, 646, 613, 646, 645, 614, 615, 647, 614, 647, 646, 615, 616, 648, 615, 648, 647, 616, 617, 649, 616, 649, 648, 617, 618, 650, 617, 650, 649, 618, 619, 651, 618, 651, 650, 619, 620, 652, 619, 652, 651, 620, 621, 653, 620, 653, 652, 621, 622, 654, 621, 654, 653, 622, 623, 655, 622, 655, 654, 623, 624, 656, 623, 656, 655, 624, 625, 657, 624, 657, 656, 625, 626, 658, 625, 658, 657, 626, 627, 659, 626, 659, 658, 627, 628, 660, 627, 660, 659, 628, 629, 661, 628, 661, 660, 629, 630, 662, 629, 662, 661, 630, 631, 663, 630, 663, 662, 631, 632, 664, 631, 664, 663, 632, 633, 665, 632, 665, 664, 633, 634, 666, 633, 666, 665, 634, 635, 667, 634, 667, 666, 635, 636, 668, 635, 668, 667, 636, 637, 669, 636, 669, 668, 637, 638, 670, 637, 670, 669, 638, 639, 671, 638, 671, 670, 640, 641, 673, 640, 673, 672, 641, 642, 674, 641, 674, 673, 642, 643, 675, 642, 675, 674, 643, 644, 676, 643, 676, 675, 644, 645, 677, 644, 677, 676, 645, 646, 678, 645, 678, 677, 646, 647, 679, 646, 679, 678, 647, 648, 680, 647, 680, 679, 648, 649, 681, 648, 681, 680, 649, 650, 682, 649, 682, 681, 650, 651, 683, 650, 683, 682, 651, 652, 684, 651, 684, 683, 652, 653, 685, 652, 685, 684, 653, 654, 686, 653, 686, 685, 654, 655, 687, 654, 687, 686, 655, 656, 688, 655, 688, 687, 656, 657, 689, 656, 689, 688, 657, 658, 690, 657, 690, 689, 658, 659, 691, 658, 691, 690, 659, 660, 692, 659, 692, 691, 660, 661, 693, 660, 693, 692, 661, 662, 694, 661, 694, 693, 662, 663, 695, 662, 695, 694, 663, 664, 696, 663, 696, 695, 664, 665, 697, 664, 697, 696, 665, 666, 698, 665, 698, 697, 666, 667, 699, 666, 699, 698, 667, 668, 700, 667, 700, 699, 668, 669, 701, 668, 701, 700, 669, 670, 702, 669, 702, 701, 670, 671, 703, 670, 703, 702, 672, 673, 705, 672, 705, 704, 673, 674, 706, 673, 706, 705, 674, 675, 707, 674, 707, 706, 675, 676, 708, 675, 708, 707, 676, 677, 709, 676, 709, 708, 677, 678, 710, 677, 710, 709, 678, 679, 711, 678, 711, 710, 679, 680, 712, 679, 712, 711, 680, 681, 713, 680, 713, 712, 681, 682, 714, 681, 714, 713, 682, 683, 715, 682, 715, 714, 683, 684, 716, 683, 716, 715, 684, 685, 717, 684, 717, 716, 685, 686, 718, 685, 718, 717, 686, 687, 719, 686, 719, 718, 687, 688, 720, 687, 720, 719, 688, 689, 721, 688, 721, 720, 689, 690, 722, 689, 722, 721, 690, 691, 723, 690, 723, 722, 691, 692, 724, 691, 724, 723, 692, 693, 725, 692, 725, 724, 693, 694, 726, 693, 726, 725, 694, 695, 727, 694, 727, 726, 695, 696, 728, 695, 728, 727, 696, 697, 729, 696, 729, 728, 697, 698, 730, 697, 730, 729, 698, 699, 731, 698, 731, 730, 699, 700, 732, 699, 732, 731, 700, 701, 733, 700, 733, 732, 701, 702, 734, 701, 734, 733, 702, 703, 735, 702, 735, 734, 704, 705, 737, 704, 737, 736, 705, 706, 738, 705, 738, 737, 706, 707, 739, 706, 739, 738, 707, 708, 740, 707, 740, 739, 708, 709, 741, 708, 741, 740, 709, 710, 742, 709, 742, 741, 710, 711, 743, 710, 743, 742, 711, 712, 744, 711, 744, 743, 712, 713, 745, 712, 745, 744, 713, 714, 746, 713, 746, 745, 714, 715, 747, 714, 747, 746, 715, 716, 748, 715, 748, 747, 716, 717, 749, 716, 749, 748, 717, 718, 750, 717, 750, 749, 718, 719, 751, 718, 751, 750, 719, 720, 752, 719, 752, 751, 720, 721, 753, 720, 753, 752, 721, 722, 754, 721, 754, 753, 722, 723, 755, 722, 755, 754, 723, 724, 756, 723, 756, 755, 724, 725, 757, 724, 757, 756, 725, 726, 758, 725, 758, 757, 726, 727, 759, 726, 759, 758, 727, 728, 760, 727, 760, 759, 728, 729, 761, 728, 761, 760, 729, 730, 762, 729, 762, 761, 730, 731, 763, 730, 763, 762, 731, 732, 764, 731, 764, 763, 732, 733, 765, 732, 765, 764, 733, 734, 766, 733, 766, 765, 734, 735, 767, 734, 767, 766, 736, 737, 769, 736, 769, 768, 737, 738, 770, 737, 770, 769, 738, 739, 771, 738, 771, 770, 739, 740, 772, 739, 772, 771, 740, 741, 773, 740, 773, 772, 741, 742, 774, 741, 774, 773, 742, 743, 775, 742, 775, 774, 743, 744, 776, 743, 776, 775, 744, 745, 777, 744, 777, 776, 745, 746, 778, 745, 778, 777, 746, 747, 779, 746, 779, 778, 747, 748, 780, 747, 780, 779, 748, 749, 781, 748, 781, 780, 749, 750, 782, 749, 782, 781, 750, 751, 783, 750, 783, 782, 751, 752, 784, 751, 784, 783, 752, 753, 785, 752, 785, 784, 753, 754, 786, 753, 786, 785, 754, 755, 787, 754, 787, 786, 755, 756, 788, 755, 788, 787, 756, 757, 789, 756, 789, 788, 757, 758, 790, 757, 790, 789, 758, 759, 791, 758, 791, 790, 759, 760, 792, 759, 792, 791, 760, 761, 793, 760, 793, 792, 761, 762, 794, 761, 794, 793, 762, 763, 795, 762, 795, 794, 763, 764, 796, 763, 796, 795, 764, 765, 797, 764, 797, 796, 765, 766, 798, 765, 798, 797, 766, 767, 799, 766, 799, 798, 768, 769, 801, 768, 801, 800, 769, 770, 802, 769, 802, 801, 770, 771, 803, 770, 803, 802, 771, 772, 804, 771, 804, 803, 772, 773, 805, 772, 805, 804, 773, 774, 806, 773, 806, 805, 774, 775, 807, 774, 807, 806, 775, 776, 808, 775, 808, 807, 776, 777, 809, 776, 809, 808, 777, 778, 810, 777, 810, 809, 778, 779, 811, 778, 811, 810, 779, 780, 812, 779, 812, 811, 780, 781, 813, 780, 813, 812, 781, 782, 814, 781, 814, 813, 782, 783, 815, 782, 815, 814, 783, 784, 816, 783, 816, 815, 784, 785, 817, 784, 817, 816, 785, 786, 818, 785, 818, 817, 786, 787, 819, 786, 819, 818, 787, 788, 820, 787, 820, 819, 788, 789, 821, 788, 821, 820, 789, 790, 822, 789, 822, 821, 790, 791, 823, 790, 823, 822, 791, 792, 824, 791, 824, 823, 792, 793, 825, 792, 825, 824, 793, 794, 826, 793, 826, 825, 794, 795, 827, 794, 827, 826, 795, 796, 828, 795, 828, 827, 796, 797, 829, 796, 829, 828, 797, 798, 830, 797, 830, 829, 798, 799, 831, 798, 831, 830, 800, 801, 833, 800, 833, 832, 801, 802, 834, 801, 834, 833, 802, 803, 835, 802, 835, 834, 803, 804, 836, 803, 836, 835, 804, 805, 837, 804, 837, 836, 805, 806, 838, 805, 838, 837, 806, 807, 839, 806, 839, 838, 807, 808, 840, 807, 840, 839, 808, 809, 841, 808, 841, 840, 809, 810, 842, 809, 842, 841, 810, 811, 843, 810, 843, 842, 811, 812, 844, 811, 844, 843, 812, 813, 845, 812, 845, 844, 813, 814, 846, 813, 846, 845, 814, 815, 847, 814, 847, 846, 815, 816, 848, 815, 848, 847, 816, 817, 849, 816, 849, 848, 817, 818, 850, 817, 850, 849, 818, 819, 851, 818, 851, 850, 819, 820, 852, 819, 852, 851, 820, 821, 853, 820, 853, 852, 821, 822, 854, 821, 854, 853, 822, 823, 855, 822, 855, 854, 823, 824, 856, 823, 856, 855, 824, 825, 857, 824, 857, 856, 825, 826, 858, 825, 858, 857, 826, 827, 859, 826, 859, 858, 827, 828, 860, 827, 860, 859, 828, 829, 861, 828, 861, 860, 829, 830, 862, 829, 862, 861, 830, 831, 863, 830, 863, 862, 832, 833, 865, 832, 865, 864, 833, 834, 866, 833, 866, 865, 834, 835, 867, 834, 867, 866, 835, 836, 868, 835, 868, 867, 836, 837, 869, 836, 869, 868, 837, 838, 870, 837, 870, 869, 838, 839, 871, 838, 871, 870, 839, 840, 872, 839, 872, 871, 840, 841, 873, 840, 873, 872, 841, 842, 874, 841, 874, 873, 842, 843, 875, 842, 875, 874, 843, 844, 876, 843, 876, 875, 844, 845, 877, 844, 877, 876, 845, 846, 878, 845, 878, 877, 846, 847, 879, 846, 879, 878, 847, 848, 880, 847, 880, 879, 848, 849, 881, 848, 881, 880, 849, 850, 882, 849, 882, 881, 850, 851, 883, 850, 883, 882, 851, 852, 884, 851, 884, 883, 852, 853, 885, 852, 885, 884, 853, 854, 886, 853, 886, 885, 854, 855, 887, 854, 887, 886, 855, 856, 888, 855, 888, 887, 856, 857, 889, 856, 889, 888, 857, 858, 890, 857, 890, 889, 858, 859, 891, 858, 891, 890, 859, 860, 892, 859, 892, 891, 860, 861, 893, 860, 893, 892, 861, 862, 894, 861, 894, 893, 862, 863, 895, 862, 895, 894, 864, 865, 897, 864, 897, 896, 865, 866, 898, 865, 898, 897, 866, 867, 899, 866, 899, 898, 867, 868, 900, 867, 900, 899, 868, 869, 901, 868, 901, 900, 869, 870, 902, 869, 902, 901, 870, 871, 903, 870, 903, 902, 871, 872, 904, 871, 904, 903, 872, 873, 905, 872, 905, 904, 873, 874, 906, 873, 906, 905, 874, 875, 907, 874, 907, 906, 875, 876, 908, 875, 908, 907, 876, 877, 909, 876, 909, 908, 877, 878, 910, 877, 910, 909, 878, 879, 911, 878, 911, 910, 879, 880, 912, 879, 912, 911, 880, 881, 913, 880, 913, 912, 881, 882, 914, 881, 914, 913, 882, 883, 915, 882, 915, 914, 883, 884, 916, 883, 916, 915, 884, 885, 917, 884, 917, 916, 885, 886, 918, 885, 918, 917, 886, 887, 919, 886, 919, 918, 887, 888, 920, 887, 920, 919, 888, 889, 921, 888, 921, 920, 889, 890, 922, 889, 922, 921, 890, 891, 923, 890, 923, 922, 891, 892, 924, 891, 924, 923, 892, 893, 925, 892, 925, 924, 893, 894, 926, 893, 926, 925, 894, 895, 927, 894, 927, 926, 896, 897, 929, 896, 929, 928, 897, 898, 930, 897, 930, 929, 898, 899, 931, 898, 931, 930, 899, 900, 932, 899, 932, 931, 900, 901, 933, 900, 933, 932, 901, 902, 934, 901, 934, 933, 902, 903, 935, 902, 935, 934, 903, 904, 936, 903, 936, 935, 904, 905, 937, 904, 937, 936, 905, 906, 938, 905, 938, 937, 906, 907, 939, 906, 939, 938, 907, 908, 940, 907, 940, 939, 908, 909, 941, 908, 941, 940, 909, 910, 942, 909, 942, 941, 910, 911, 943, 910, 943, 942, 911, 912, 944, 911, 944, 943, 912, 913, 945, 912, 945, 944, 913, 914, 946, 913, 946, 945, 914, 915, 947, 914, 947, 946, 915, 916, 948, 915, 948, 947, 916, 917, 949, 916, 949, 948, 917, 918, 950, 917, 950, 949, 918, 919, 951, 918, 951, 950, 919, 920, 952, 919, 952, 951, 920, 921, 953, 920, 953, 952, 921, 922, 954, 921, 954, 953, 922, 923, 955, 922, 955, 954, 923, 924, 956, 923, 956, 955, 924, 925, 957, 924, 957, 956, 925, 926, 958, 925, 958, 957, 926, 927, 959, 926, 959, 958, 928, 929, 961, 928, 961, 960, 929, 930, 962, 929, 962, 961, 930, 931, 963, 930, 963, 962, 931, 932, 964, 931, 964, 963, 932, 933, 965, 932, 965, 964, 933, 934, 966, 933, 966, 965, 934, 935, 967, 934, 967, 966, 935, 936, 968, 935, 968, 967, 936, 937, 969, 936, 969, 968, 937, 938, 970, 937, 970, 969, 938, 939, 971, 938, 971, 970, 939, 940, 972, 939, 972, 971, 940, 941, 973, 940, 973, 972, 941, 942, 974, 941, 974, 973, 942, 943, 975, 942, 975, 974, 943, 944, 976, 943, 976, 975, 944, 945, 977, 944, 977, 976, 945, 946, 978, 945, 978, 977, 946, 947, 979, 946, 979, 978, 947, 948, 980, 947, 980, 979, 948, 949, 981, 948, 981, 980, 949, 950, 982, 949, 982, 981, 950, 951, 983, 950, 983, 982, 951, 952, 984, 951, 984, 983, 952, 953, 985, 952, 985, 984, 953, 954, 986, 953, 986, 985, 954, 955, 987, 954, 987, 986, 955, 956, 988, 955, 988, 987, 956, 957, 989, 956, 989, 988, 957, 958, 990, 957, 990, 989, 958, 959, 991, 958, 991, 990, 960, 961, 993, 960, 993, 992, 961, 962, 994, 961, 994, 993, 962, 963, 995, 962, 995, 994, 963, 964, 996, 963, 996, 995, 964, 965, 997, 964, 997, 996, 965, 966, 998, 965, 998, 997, 966, 967, 999, 966, 999, 998, 967, 968, 1000, 967, 1000, 999, 968, 969, 1001, 968, 1001, 1000, 969, 970, 1002, 969, 1002, 1001, 970, 971, 1003, 970, 1003, 1002, 971, 972, 1004, 971, 1004, 1003, 972, 973, 1005, 972, 1005, 1004, 973, 974, 1006, 973, 1006, 1005, 974, 975, 1007, 974, 1007, 1006, 975, 976, 1008, 975, 1008, 1007, 976, 977, 1009, 976, 1009, 1008, 977, 978, 1010, 977, 1010, 1009, 978, 979, 1011, 978, 1011, 1010, 979, 980, 1012, 979, 1012, 1011, 980, 981, 1013, 980, 1013, 1012, 981, 982, 1014, 981, 1014, 1013, 982, 983, 1015, 982, 1015, 1014, 983, 984, 1016, 983, 1016, 1015, 984, 985, 1017, 984, 1017, 1016, 985, 986, 1018, 985, 1018, 1017, 986, 987, 1019, 986, 1019, 1018, 987, 988, 1020, 987, 1020, 1019, 988, 989, 1021, 988, 1021, 1020, 989, 990, 1022, 989, 1022, 1021, 990, 991, 1023, 990, 1023, 1022] point3f[] points = [(0, 0, 20), (20, 0, 20), (40, 0, 20), (60, 0, 20), (80, 0, 20), (100, 0, 20), (120, 0, 20), (140, 0, 20), (160, 0, 20), (180, 0, 20), (200, 0, 20), (220, 0, 20), (240, 0, 20), (260, 0, 20), (280, 0, 20), (300, 0, 20), (320, 0, 20), (340, 0, 20), (360, 0, 20), (380, 0, 20), (400, 0, 20), (420, 0, 20), (440, 0, 20), (460, 0, 20), (480, 0, 20), (500, 0, 20), (520, 0, 20), (540, 0, 20), (560, 0, 20), (580, 0, 20), (600, 0, 20), (620, 0, 20), (0, 20, 20), (20, 20, 20), (40, 20, 20), (60, 20, 20), (80, 20, 20), (100, 20, 20), (120, 20, 20), (140, 20, 20), (160, 20, 20), (180, 20, 20), (200, 20, 20), (220, 20, 20), (240, 20, 20), (260, 20, 20), (280, 20, 20), (300, 20, 20), (320, 20, 20), (340, 20, 20), (360, 20, 20), (380, 20, 20), (400, 20, 20), (420, 20, 20), (440, 20, 20), (460, 20, 20), (480, 20, 20), (500, 20, 20), (520, 20, 20), (540, 20, 20), (560, 20, 20), (580, 20, 20), (600, 20, 20), (620, 20, 20), (0, 40, 20), (20, 40, 20), (40, 40, 20), (60, 40, 20), (80, 40, 20), (100, 40, 20), (120, 40, 20), (140, 40, 20), (160, 40, 20), (180, 40, 20), (200, 40, 20), (220, 40, 20), (240, 40, 20), (260, 40, 20), (280, 40, 20), (300, 40, 20), (320, 40, 20), (340, 40, 20), (360, 40, 20), (380, 40, 20), (400, 40, 20), (420, 40, 20), (440, 40, 20), (460, 40, 20), (480, 40, 20), (500, 40, 20), (520, 40, 20), (540, 40, 20), (560, 40, 20), (580, 40, 20), (600, 40, 20), (620, 40, 20), (0, 60, 20), (20, 60, 20), (40, 60, 20), (60, 60, 20), (80, 60, 20), (100, 60, 20), (120, 60, 20), (140, 60, 20), (160, 60, 20), (180, 60, 20), (200, 60, 20), (220, 60, 20), (240, 60, 20), (260, 60, 20), (280, 60, 20), (300, 60, 20), (320, 60, 20), (340, 60, 20), (360, 60, 20), (380, 60, 20), (400, 60, 20), (420, 60, 20), (440, 60, 20), (460, 60, 20), (480, 60, 20), (500, 60, 20), (520, 60, 20), (540, 60, 20), (560, 60, 20), (580, 60, 20), (600, 60, 20), (620, 60, 20), (0, 80, 20), (20, 80, 20), (40, 80, 20), (60, 80, 20), (80, 80, 20), (100, 80, 20), (120, 80, 20), (140, 80, 20), (160, 80, 20), (180, 80, 20), (200, 80, 20), (220, 80, 20), (240, 80, 20), (260, 80, 20), (280, 80, 20), (300, 80, 20), (320, 80, 20), (340, 80, 20), (360, 80, 20), (380, 80, 20), (400, 80, 20), (420, 80, 20), (440, 80, 20), (460, 80, 20), (480, 80, 20), (500, 80, 20), (520, 80, 20), (540, 80, 20), (560, 80, 20), (580, 80, 20), (600, 80, 20), (620, 80, 20), (0, 100, 20), (20, 100, 20), (40, 100, 20), (60, 100, 20), (80, 100, 20), (100, 100, 20), (120, 100, 20), (140, 100, 20), (160, 100, 20), (180, 100, 20), (200, 100, 20), (220, 100, 20), (240, 100, 20), (260, 100, 20), (280, 100, 20), (300, 100, 20), (320, 100, 20), (340, 100, 20), (360, 100, 20), (380, 100, 20), (400, 100, 20), (420, 100, 20), (440, 100, 20), (460, 100, 20), (480, 100, 20), (500, 100, 20), (520, 100, 20), (540, 100, 20), (560, 100, 20), (580, 100, 20), (600, 100, 20), (620, 100, 20), (0, 120, 20), (20, 120, 20), (40, 120, 20), (60, 120, 20), (80, 120, 20), (100, 120, 20), (120, 120, 20), (140, 120, 20), (160, 120, 20), (180, 120, 20), (200, 120, 20), (220, 120, 20), (240, 120, 20), (260, 120, 20), (280, 120, 20), (300, 120, 20), (320, 120, 20), (340, 120, 20), (360, 120, 20), (380, 120, 20), (400, 120, 20), (420, 120, 20), (440, 120, 20), (460, 120, 20), (480, 120, 20), (500, 120, 20), (520, 120, 20), (540, 120, 20), (560, 120, 20), (580, 120, 20), (600, 120, 20), (620, 120, 20), (0, 140, 20), (20, 140, 20), (40, 140, 20), (60, 140, 20), (80, 140, 20), (100, 140, 20), (120, 140, 20), (140, 140, 20), (160, 140, 20), (180, 140, 20), (200, 140, 20), (220, 140, 20), (240, 140, 20), (260, 140, 20), (280, 140, 20), (300, 140, 20), (320, 140, 20), (340, 140, 20), (360, 140, 20), (380, 140, 20), (400, 140, 20), (420, 140, 20), (440, 140, 20), (460, 140, 20), (480, 140, 20), (500, 140, 20), (520, 140, 20), (540, 140, 20), (560, 140, 20), (580, 140, 20), (600, 140, 20), (620, 140, 20), (0, 160, 20), (20, 160, 20), (40, 160, 20), (60, 160, 20), (80, 160, 20), (100, 160, 20), (120, 160, 20), (140, 160, 20), (160, 160, 20), (180, 160, 20), (200, 160, 20), (220, 160, 20), (240, 160, 20), (260, 160, 20), (280, 160, 20), (300, 160, 20), (320, 160, 20), (340, 160, 20), (360, 160, 20), (380, 160, 20), (400, 160, 20), (420, 160, 20), (440, 160, 20), (460, 160, 20), (480, 160, 20), (500, 160, 20), (520, 160, 20), (540, 160, 20), (560, 160, 20), (580, 160, 20), (600, 160, 20), (620, 160, 20), (0, 180, 20), (20, 180, 20), (40, 180, 20), (60, 180, 20), (80, 180, 20), (100, 180, 20), (120, 180, 20), (140, 180, 20), (160, 180, 20), (180, 180, 20), (200, 180, 20), (220, 180, 20), (240, 180, 20), (260, 180, 20), (280, 180, 20), (300, 180, 20), (320, 180, 20), (340, 180, 20), (360, 180, 20), (380, 180, 20), (400, 180, 20), (420, 180, 20), (440, 180, 20), (460, 180, 20), (480, 180, 20), (500, 180, 20), (520, 180, 20), (540, 180, 20), (560, 180, 20), (580, 180, 20), (600, 180, 20), (620, 180, 20), (0, 200, 20), (20, 200, 20), (40, 200, 20), (60, 200, 20), (80, 200, 20), (100, 200, 20), (120, 200, 20), (140, 200, 20), (160, 200, 20), (180, 200, 20), (200, 200, 20), (220, 200, 20), (240, 200, 20), (260, 200, 20), (280, 200, 20), (300, 200, 20), (320, 200, 20), (340, 200, 20), (360, 200, 20), (380, 200, 20), (400, 200, 20), (420, 200, 20), (440, 200, 20), (460, 200, 20), (480, 200, 20), (500, 200, 20), (520, 200, 20), (540, 200, 20), (560, 200, 20), (580, 200, 20), (600, 200, 20), (620, 200, 20), (0, 220, 20), (20, 220, 20), (40, 220, 20), (60, 220, 20), (80, 220, 20), (100, 220, 20), (120, 220, 20), (140, 220, 20), (160, 220, 20), (180, 220, 20), (200, 220, 20), (220, 220, 20), (240, 220, 20), (260, 220, 20), (280, 220, 20), (300, 220, 20), (320, 220, 20), (340, 220, 20), (360, 220, 20), (380, 220, 20), (400, 220, 20), (420, 220, 20), (440, 220, 20), (460, 220, 20), (480, 220, 20), (500, 220, 20), (520, 220, 20), (540, 220, 20), (560, 220, 20), (580, 220, 20), (600, 220, 20), (620, 220, 20), (0, 240, 20), (20, 240, 20), (40, 240, 20), (60, 240, 20), (80, 240, 20), (100, 240, 20), (120, 240, 20), (140, 240, 20), (160, 240, 20), (180, 240, 20), (200, 240, 20), (220, 240, 20), (240, 240, 20), (260, 240, 20), (280, 240, 20), (300, 240, 20), (320, 240, 20), (340, 240, 20), (360, 240, 20), (380, 240, 20), (400, 240, 20), (420, 240, 20), (440, 240, 20), (460, 240, 20), (480, 240, 20), (500, 240, 20), (520, 240, 20), (540, 240, 20), (560, 240, 20), (580, 240, 20), (600, 240, 20), (620, 240, 20), (0, 260, 20), (20, 260, 20), (40, 260, 20), (60, 260, 20), (80, 260, 20), (100, 260, 20), (120, 260, 20), (140, 260, 20), (160, 260, 20), (180, 260, 20), (200, 260, 20), (220, 260, 20), (240, 260, 20), (260, 260, 20), (280, 260, 20), (300, 260, 20), (320, 260, 20), (340, 260, 20), (360, 260, 20), (380, 260, 20), (400, 260, 20), (420, 260, 20), (440, 260, 20), (460, 260, 20), (480, 260, 20), (500, 260, 20), (520, 260, 20), (540, 260, 20), (560, 260, 20), (580, 260, 20), (600, 260, 20), (620, 260, 20), (0, 280, 20), (20, 280, 20), (40, 280, 20), (60, 280, 20), (80, 280, 20), (100, 280, 20), (120, 280, 20), (140, 280, 20), (160, 280, 20), (180, 280, 20), (200, 280, 20), (220, 280, 20), (240, 280, 20), (260, 280, 20), (280, 280, 20), (300, 280, 20), (320, 280, 20), (340, 280, 20), (360, 280, 20), (380, 280, 20), (400, 280, 20), (420, 280, 20), (440, 280, 20), (460, 280, 20), (480, 280, 20), (500, 280, 20), (520, 280, 20), (540, 280, 20), (560, 280, 20), (580, 280, 20), (600, 280, 20), (620, 280, 20), (0, 300, 20), (20, 300, 20), (40, 300, 20), (60, 300, 20), (80, 300, 20), (100, 300, 20), (120, 300, 20), (140, 300, 20), (160, 300, 20), (180, 300, 20), (200, 300, 20), (220, 300, 20), (240, 300, 20), (260, 300, 20), (280, 300, 20), (300, 300, 20), (320, 300, 20), (340, 300, 20), (360, 300, 20), (380, 300, 20), (400, 300, 20), (420, 300, 20), (440, 300, 20), (460, 300, 20), (480, 300, 20), (500, 300, 20), (520, 300, 20), (540, 300, 20), (560, 300, 20), (580, 300, 20), (600, 300, 20), (620, 300, 20), (0, 320, 20), (20, 320, 20), (40, 320, 20), (60, 320, 20), (80, 320, 20), (100, 320, 20), (120, 320, 20), (140, 320, 20), (160, 320, 20), (180, 320, 20), (200, 320, 20), (220, 320, 20), (240, 320, 20), (260, 320, 20), (280, 320, 20), (300, 320, 20), (320, 320, 20), (340, 320, 20), (360, 320, 20), (380, 320, 20), (400, 320, 20), (420, 320, 20), (440, 320, 20), (460, 320, 20), (480, 320, 20), (500, 320, 20), (520, 320, 20), (540, 320, 20), (560, 320, 20), (580, 320, 20), (600, 320, 20), (620, 320, 20), (0, 340, 20), (20, 340, 20), (40, 340, 20), (60, 340, 20), (80, 340, 20), (100, 340, 20), (120, 340, 20), (140, 340, 20), (160, 340, 20), (180, 340, 20), (200, 340, 20), (220, 340, 20), (240, 340, 20), (260, 340, 20), (280, 340, 20), (300, 340, 20), (320, 340, 20), (340, 340, 20), (360, 340, 20), (380, 340, 20), (400, 340, 20), (420, 340, 20), (440, 340, 20), (460, 340, 20), (480, 340, 20), (500, 340, 20), (520, 340, 20), (540, 340, 20), (560, 340, 20), (580, 340, 20), (600, 340, 20), (620, 340, 20), (0, 360, 20), (20, 360, 20), (40, 360, 20), (60, 360, 20), (80, 360, 20), (100, 360, 20), (120, 360, 20), (140, 360, 20), (160, 360, 20), (180, 360, 20), (200, 360, 20), (220, 360, 20), (240, 360, 20), (260, 360, 20), (280, 360, 20), (300, 360, 20), (320, 360, 20), (340, 360, 20), (360, 360, 20), (380, 360, 20), (400, 360, 20), (420, 360, 20), (440, 360, 20), (460, 360, 20), (480, 360, 20), (500, 360, 20), (520, 360, 20), (540, 360, 20), (560, 360, 20), (580, 360, 20), (600, 360, 20), (620, 360, 20), (0, 380, 20), (20, 380, 20), (40, 380, 20), (60, 380, 20), (80, 380, 20), (100, 380, 20), (120, 380, 20), (140, 380, 20), (160, 380, 20), (180, 380, 20), (200, 380, 20), (220, 380, 20), (240, 380, 20), (260, 380, 20), (280, 380, 20), (300, 380, 20), (320, 380, 20), (340, 380, 20), (360, 380, 20), (380, 380, 20), (400, 380, 20), (420, 380, 20), (440, 380, 20), (460, 380, 20), (480, 380, 20), (500, 380, 20), (520, 380, 20), (540, 380, 20), (560, 380, 20), (580, 380, 20), (600, 380, 20), (620, 380, 20), (0, 400, 20), (20, 400, 20), (40, 400, 20), (60, 400, 20), (80, 400, 20), (100, 400, 20), (120, 400, 20), (140, 400, 20), (160, 400, 20), (180, 400, 20), (200, 400, 20), (220, 400, 20), (240, 400, 20), (260, 400, 20), (280, 400, 20), (300, 400, 20), (320, 400, 20), (340, 400, 20), (360, 400, 20), (380, 400, 20), (400, 400, 20), (420, 400, 20), (440, 400, 20), (460, 400, 20), (480, 400, 20), (500, 400, 20), (520, 400, 20), (540, 400, 20), (560, 400, 20), (580, 400, 20), (600, 400, 20), (620, 400, 20), (0, 420, 20), (20, 420, 20), (40, 420, 20), (60, 420, 20), (80, 420, 20), (100, 420, 20), (120, 420, 20), (140, 420, 20), (160, 420, 20), (180, 420, 20), (200, 420, 20), (220, 420, 20), (240, 420, 20), (260, 420, 20), (280, 420, 20), (300, 420, 20), (320, 420, 20), (340, 420, 20), (360, 420, 20), (380, 420, 20), (400, 420, 20), (420, 420, 20), (440, 420, 20), (460, 420, 20), (480, 420, 20), (500, 420, 20), (520, 420, 20), (540, 420, 20), (560, 420, 20), (580, 420, 20), (600, 420, 20), (620, 420, 20), (0, 440, 20), (20, 440, 20), (40, 440, 20), (60, 440, 20), (80, 440, 20), (100, 440, 20), (120, 440, 20), (140, 440, 20), (160, 440, 20), (180, 440, 20), (200, 440, 20), (220, 440, 20), (240, 440, 20), (260, 440, 20), (280, 440, 20), (300, 440, 20), (320, 440, 20), (340, 440, 20), (360, 440, 20), (380, 440, 20), (400, 440, 20), (420, 440, 20), (440, 440, 20), (460, 440, 20), (480, 440, 20), (500, 440, 20), (520, 440, 20), (540, 440, 20), (560, 440, 20), (580, 440, 20), (600, 440, 20), (620, 440, 20), (0, 460, 20), (20, 460, 20), (40, 460, 20), (60, 460, 20), (80, 460, 20), (100, 460, 20), (120, 460, 20), (140, 460, 20), (160, 460, 20), (180, 460, 20), (200, 460, 20), (220, 460, 20), (240, 460, 20), (260, 460, 20), (280, 460, 20), (300, 460, 20), (320, 460, 20), (340, 460, 20), (360, 460, 20), (380, 460, 20), (400, 460, 20), (420, 460, 20), (440, 460, 20), (460, 460, 20), (480, 460, 20), (500, 460, 20), (520, 460, 20), (540, 460, 20), (560, 460, 20), (580, 460, 20), (600, 460, 20), (620, 460, 20), (0, 480, 20), (20, 480, 20), (40, 480, 20), (60, 480, 20), (80, 480, 20), (100, 480, 20), (120, 480, 20), (140, 480, 20), (160, 480, 20), (180, 480, 20), (200, 480, 20), (220, 480, 20), (240, 480, 20), (260, 480, 20), (280, 480, 20), (300, 480, 20), (320, 480, 20), (340, 480, 20), (360, 480, 20), (380, 480, 20), (400, 480, 20), (420, 480, 20), (440, 480, 20), (460, 480, 20), (480, 480, 20), (500, 480, 20), (520, 480, 20), (540, 480, 20), (560, 480, 20), (580, 480, 20), (600, 480, 20), (620, 480, 20), (0, 500, 20), (20, 500, 20), (40, 500, 20), (60, 500, 20), (80, 500, 20), (100, 500, 20), (120, 500, 20), (140, 500, 20), (160, 500, 20), (180, 500, 20), (200, 500, 20), (220, 500, 20), (240, 500, 20), (260, 500, 20), (280, 500, 20), (300, 500, 20), (320, 500, 20), (340, 500, 20), (360, 500, 20), (380, 500, 20), (400, 500, 20), (420, 500, 20), (440, 500, 20), (460, 500, 20), (480, 500, 20), (500, 500, 20), (520, 500, 20), (540, 500, 20), (560, 500, 20), (580, 500, 20), (600, 500, 20), (620, 500, 20), (0, 520, 20), (20, 520, 20), (40, 520, 20), (60, 520, 20), (80, 520, 20), (100, 520, 20), (120, 520, 20), (140, 520, 20), (160, 520, 20), (180, 520, 20), (200, 520, 20), (220, 520, 20), (240, 520, 20), (260, 520, 20), (280, 520, 20), (300, 520, 20), (320, 520, 20), (340, 520, 20), (360, 520, 20), (380, 520, 20), (400, 520, 20), (420, 520, 20), (440, 520, 20), (460, 520, 20), (480, 520, 20), (500, 520, 20), (520, 520, 20), (540, 520, 20), (560, 520, 20), (580, 520, 20), (600, 520, 20), (620, 520, 20), (0, 540, 20), (20, 540, 20), (40, 540, 20), (60, 540, 20), (80, 540, 20), (100, 540, 20), (120, 540, 20), (140, 540, 20), (160, 540, 20), (180, 540, 20), (200, 540, 20), (220, 540, 20), (240, 540, 20), (260, 540, 20), (280, 540, 20), (300, 540, 20), (320, 540, 20), (340, 540, 20), (360, 540, 20), (380, 540, 20), (400, 540, 20), (420, 540, 20), (440, 540, 20), (460, 540, 20), (480, 540, 20), (500, 540, 20), (520, 540, 20), (540, 540, 20), (560, 540, 20), (580, 540, 20), (600, 540, 20), (620, 540, 20), (0, 560, 20), (20, 560, 20), (40, 560, 20), (60, 560, 20), (80, 560, 20), (100, 560, 20), (120, 560, 20), (140, 560, 20), (160, 560, 20), (180, 560, 20), (200, 560, 20), (220, 560, 20), (240, 560, 20), (260, 560, 20), (280, 560, 20), (300, 560, 20), (320, 560, 20), (340, 560, 20), (360, 560, 20), (380, 560, 20), (400, 560, 20), (420, 560, 20), (440, 560, 20), (460, 560, 20), (480, 560, 20), (500, 560, 20), (520, 560, 20), (540, 560, 20), (560, 560, 20), (580, 560, 20), (600, 560, 20), (620, 560, 20), (0, 580, 20), (20, 580, 20), (40, 580, 20), (60, 580, 20), (80, 580, 20), (100, 580, 20), (120, 580, 20), (140, 580, 20), (160, 580, 20), (180, 580, 20), (200, 580, 20), (220, 580, 20), (240, 580, 20), (260, 580, 20), (280, 580, 20), (300, 580, 20), (320, 580, 20), (340, 580, 20), (360, 580, 20), (380, 580, 20), (400, 580, 20), (420, 580, 20), (440, 580, 20), (460, 580, 20), (480, 580, 20), (500, 580, 20), (520, 580, 20), (540, 580, 20), (560, 580, 20), (580, 580, 20), (600, 580, 20), (620, 580, 20), (0, 600, 20), (20, 600, 20), (40, 600, 20), (60, 600, 20), (80, 600, 20), (100, 600, 20), (120, 600, 20), (140, 600, 20), (160, 600, 20), (180, 600, 20), (200, 600, 20), (220, 600, 20), (240, 600, 20), (260, 600, 20), (280, 600, 20), (300, 600, 20), (320, 600, 20), (340, 600, 20), (360, 600, 20), (380, 600, 20), (400, 600, 20), (420, 600, 20), (440, 600, 20), (460, 600, 20), (480, 600, 20), (500, 600, 20), (520, 600, 20), (540, 600, 20), (560, 600, 20), (580, 600, 20), (600, 600, 20), (620, 600, 20), (0, 620, 20), (20, 620, 20), (40, 620, 20), (60, 620, 20), (80, 620, 20), (100, 620, 20), (120, 620, 20), (140, 620, 20), (160, 620, 20), (180, 620, 20), (200, 620, 20), (220, 620, 20), (240, 620, 20), (260, 620, 20), (280, 620, 20), (300, 620, 20), (320, 620, 20), (340, 620, 20), (360, 620, 20), (380, 620, 20), (400, 620, 20), (420, 620, 20), (440, 620, 20), (460, 620, 20), (480, 620, 20), (500, 620, 20), (520, 620, 20), (540, 620, 20), (560, 620, 20), (580, 620, 20), (600, 620, 20), (620, 620, 20)] color3f[] primvars:displayColor = [(0.2784314, 0.64705884, 1)] } def ComputeNode "testDeformer" { custom token node:type = "omni.graph.examples.cpp.SimpleDeformer" point3f[] inputs:points.connect = </defaultPrim/inputGrid.points> float inputs:multiplier = 3 float inputs:wavelength = 310 point3f[] outputs:points } def Mesh "outputGrid" { uniform bool doubleSided = 1 int[] faceVertexCounts = [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 1, 33, 0, 33, 32, 1, 2, 34, 1, 34, 33, 2, 3, 35, 2, 35, 34, 3, 4, 36, 3, 36, 35, 4, 5, 37, 4, 37, 36, 5, 6, 38, 5, 38, 37, 6, 7, 39, 6, 39, 38, 7, 8, 40, 7, 40, 39, 8, 9, 41, 8, 41, 40, 9, 10, 42, 9, 42, 41, 10, 11, 43, 10, 43, 42, 11, 12, 44, 11, 44, 43, 12, 13, 45, 12, 45, 44, 13, 14, 46, 13, 46, 45, 14, 15, 47, 14, 47, 46, 15, 16, 48, 15, 48, 47, 16, 17, 49, 16, 49, 48, 17, 18, 50, 17, 50, 49, 18, 19, 51, 18, 51, 50, 19, 20, 52, 19, 52, 51, 20, 21, 53, 20, 53, 52, 21, 22, 54, 21, 54, 53, 22, 23, 55, 22, 55, 54, 23, 24, 56, 23, 56, 55, 24, 25, 57, 24, 57, 56, 25, 26, 58, 25, 58, 57, 26, 27, 59, 26, 59, 58, 27, 28, 60, 27, 60, 59, 28, 29, 61, 28, 61, 60, 29, 30, 62, 29, 62, 61, 30, 31, 63, 30, 63, 62, 32, 33, 65, 32, 65, 64, 33, 34, 66, 33, 66, 65, 34, 35, 67, 34, 67, 66, 35, 36, 68, 35, 68, 67, 36, 37, 69, 36, 69, 68, 37, 38, 70, 37, 70, 69, 38, 39, 71, 38, 71, 70, 39, 40, 72, 39, 72, 71, 40, 41, 73, 40, 73, 72, 41, 42, 74, 41, 74, 73, 42, 43, 75, 42, 75, 74, 43, 44, 76, 43, 76, 75, 44, 45, 77, 44, 77, 76, 45, 46, 78, 45, 78, 77, 46, 47, 79, 46, 79, 78, 47, 48, 80, 47, 80, 79, 48, 49, 81, 48, 81, 80, 49, 50, 82, 49, 82, 81, 50, 51, 83, 50, 83, 82, 51, 52, 84, 51, 84, 83, 52, 53, 85, 52, 85, 84, 53, 54, 86, 53, 86, 85, 54, 55, 87, 54, 87, 86, 55, 56, 88, 55, 88, 87, 56, 57, 89, 56, 89, 88, 57, 58, 90, 57, 90, 89, 58, 59, 91, 58, 91, 90, 59, 60, 92, 59, 92, 91, 60, 61, 93, 60, 93, 92, 61, 62, 94, 61, 94, 93, 62, 63, 95, 62, 95, 94, 64, 65, 97, 64, 97, 96, 65, 66, 98, 65, 98, 97, 66, 67, 99, 66, 99, 98, 67, 68, 100, 67, 100, 99, 68, 69, 101, 68, 101, 100, 69, 70, 102, 69, 102, 101, 70, 71, 103, 70, 103, 102, 71, 72, 104, 71, 104, 103, 72, 73, 105, 72, 105, 104, 73, 74, 106, 73, 106, 105, 74, 75, 107, 74, 107, 106, 75, 76, 108, 75, 108, 107, 76, 77, 109, 76, 109, 108, 77, 78, 110, 77, 110, 109, 78, 79, 111, 78, 111, 110, 79, 80, 112, 79, 112, 111, 80, 81, 113, 80, 113, 112, 81, 82, 114, 81, 114, 113, 82, 83, 115, 82, 115, 114, 83, 84, 116, 83, 116, 115, 84, 85, 117, 84, 117, 116, 85, 86, 118, 85, 118, 117, 86, 87, 119, 86, 119, 118, 87, 88, 120, 87, 120, 119, 88, 89, 121, 88, 121, 120, 89, 90, 122, 89, 122, 121, 90, 91, 123, 90, 123, 122, 91, 92, 124, 91, 124, 123, 92, 93, 125, 92, 125, 124, 93, 94, 126, 93, 126, 125, 94, 95, 127, 94, 127, 126, 96, 97, 129, 96, 129, 128, 97, 98, 130, 97, 130, 129, 98, 99, 131, 98, 131, 130, 99, 100, 132, 99, 132, 131, 100, 101, 133, 100, 133, 132, 101, 102, 134, 101, 134, 133, 102, 103, 135, 102, 135, 134, 103, 104, 136, 103, 136, 135, 104, 105, 137, 104, 137, 136, 105, 106, 138, 105, 138, 137, 106, 107, 139, 106, 139, 138, 107, 108, 140, 107, 140, 139, 108, 109, 141, 108, 141, 140, 109, 110, 142, 109, 142, 141, 110, 111, 143, 110, 143, 142, 111, 112, 144, 111, 144, 143, 112, 113, 145, 112, 145, 144, 113, 114, 146, 113, 146, 145, 114, 115, 147, 114, 147, 146, 115, 116, 148, 115, 148, 147, 116, 117, 149, 116, 149, 148, 117, 118, 150, 117, 150, 149, 118, 119, 151, 118, 151, 150, 119, 120, 152, 119, 152, 151, 120, 121, 153, 120, 153, 152, 121, 122, 154, 121, 154, 153, 122, 123, 155, 122, 155, 154, 123, 124, 156, 123, 156, 155, 124, 125, 157, 124, 157, 156, 125, 126, 158, 125, 158, 157, 126, 127, 159, 126, 159, 158, 128, 129, 161, 128, 161, 160, 129, 130, 162, 129, 162, 161, 130, 131, 163, 130, 163, 162, 131, 132, 164, 131, 164, 163, 132, 133, 165, 132, 165, 164, 133, 134, 166, 133, 166, 165, 134, 135, 167, 134, 167, 166, 135, 136, 168, 135, 168, 167, 136, 137, 169, 136, 169, 168, 137, 138, 170, 137, 170, 169, 138, 139, 171, 138, 171, 170, 139, 140, 172, 139, 172, 171, 140, 141, 173, 140, 173, 172, 141, 142, 174, 141, 174, 173, 142, 143, 175, 142, 175, 174, 143, 144, 176, 143, 176, 175, 144, 145, 177, 144, 177, 176, 145, 146, 178, 145, 178, 177, 146, 147, 179, 146, 179, 178, 147, 148, 180, 147, 180, 179, 148, 149, 181, 148, 181, 180, 149, 150, 182, 149, 182, 181, 150, 151, 183, 150, 183, 182, 151, 152, 184, 151, 184, 183, 152, 153, 185, 152, 185, 184, 153, 154, 186, 153, 186, 185, 154, 155, 187, 154, 187, 186, 155, 156, 188, 155, 188, 187, 156, 157, 189, 156, 189, 188, 157, 158, 190, 157, 190, 189, 158, 159, 191, 158, 191, 190, 160, 161, 193, 160, 193, 192, 161, 162, 194, 161, 194, 193, 162, 163, 195, 162, 195, 194, 163, 164, 196, 163, 196, 195, 164, 165, 197, 164, 197, 196, 165, 166, 198, 165, 198, 197, 166, 167, 199, 166, 199, 198, 167, 168, 200, 167, 200, 199, 168, 169, 201, 168, 201, 200, 169, 170, 202, 169, 202, 201, 170, 171, 203, 170, 203, 202, 171, 172, 204, 171, 204, 203, 172, 173, 205, 172, 205, 204, 173, 174, 206, 173, 206, 205, 174, 175, 207, 174, 207, 206, 175, 176, 208, 175, 208, 207, 176, 177, 209, 176, 209, 208, 177, 178, 210, 177, 210, 209, 178, 179, 211, 178, 211, 210, 179, 180, 212, 179, 212, 211, 180, 181, 213, 180, 213, 212, 181, 182, 214, 181, 214, 213, 182, 183, 215, 182, 215, 214, 183, 184, 216, 183, 216, 215, 184, 185, 217, 184, 217, 216, 185, 186, 218, 185, 218, 217, 186, 187, 219, 186, 219, 218, 187, 188, 220, 187, 220, 219, 188, 189, 221, 188, 221, 220, 189, 190, 222, 189, 222, 221, 190, 191, 223, 190, 223, 222, 192, 193, 225, 192, 225, 224, 193, 194, 226, 193, 226, 225, 194, 195, 227, 194, 227, 226, 195, 196, 228, 195, 228, 227, 196, 197, 229, 196, 229, 228, 197, 198, 230, 197, 230, 229, 198, 199, 231, 198, 231, 230, 199, 200, 232, 199, 232, 231, 200, 201, 233, 200, 233, 232, 201, 202, 234, 201, 234, 233, 202, 203, 235, 202, 235, 234, 203, 204, 236, 203, 236, 235, 204, 205, 237, 204, 237, 236, 205, 206, 238, 205, 238, 237, 206, 207, 239, 206, 239, 238, 207, 208, 240, 207, 240, 239, 208, 209, 241, 208, 241, 240, 209, 210, 242, 209, 242, 241, 210, 211, 243, 210, 243, 242, 211, 212, 244, 211, 244, 243, 212, 213, 245, 212, 245, 244, 213, 214, 246, 213, 246, 245, 214, 215, 247, 214, 247, 246, 215, 216, 248, 215, 248, 247, 216, 217, 249, 216, 249, 248, 217, 218, 250, 217, 250, 249, 218, 219, 251, 218, 251, 250, 219, 220, 252, 219, 252, 251, 220, 221, 253, 220, 253, 252, 221, 222, 254, 221, 254, 253, 222, 223, 255, 222, 255, 254, 224, 225, 257, 224, 257, 256, 225, 226, 258, 225, 258, 257, 226, 227, 259, 226, 259, 258, 227, 228, 260, 227, 260, 259, 228, 229, 261, 228, 261, 260, 229, 230, 262, 229, 262, 261, 230, 231, 263, 230, 263, 262, 231, 232, 264, 231, 264, 263, 232, 233, 265, 232, 265, 264, 233, 234, 266, 233, 266, 265, 234, 235, 267, 234, 267, 266, 235, 236, 268, 235, 268, 267, 236, 237, 269, 236, 269, 268, 237, 238, 270, 237, 270, 269, 238, 239, 271, 238, 271, 270, 239, 240, 272, 239, 272, 271, 240, 241, 273, 240, 273, 272, 241, 242, 274, 241, 274, 273, 242, 243, 275, 242, 275, 274, 243, 244, 276, 243, 276, 275, 244, 245, 277, 244, 277, 276, 245, 246, 278, 245, 278, 277, 246, 247, 279, 246, 279, 278, 247, 248, 280, 247, 280, 279, 248, 249, 281, 248, 281, 280, 249, 250, 282, 249, 282, 281, 250, 251, 283, 250, 283, 282, 251, 252, 284, 251, 284, 283, 252, 253, 285, 252, 285, 284, 253, 254, 286, 253, 286, 285, 254, 255, 287, 254, 287, 286, 256, 257, 289, 256, 289, 288, 257, 258, 290, 257, 290, 289, 258, 259, 291, 258, 291, 290, 259, 260, 292, 259, 292, 291, 260, 261, 293, 260, 293, 292, 261, 262, 294, 261, 294, 293, 262, 263, 295, 262, 295, 294, 263, 264, 296, 263, 296, 295, 264, 265, 297, 264, 297, 296, 265, 266, 298, 265, 298, 297, 266, 267, 299, 266, 299, 298, 267, 268, 300, 267, 300, 299, 268, 269, 301, 268, 301, 300, 269, 270, 302, 269, 302, 301, 270, 271, 303, 270, 303, 302, 271, 272, 304, 271, 304, 303, 272, 273, 305, 272, 305, 304, 273, 274, 306, 273, 306, 305, 274, 275, 307, 274, 307, 306, 275, 276, 308, 275, 308, 307, 276, 277, 309, 276, 309, 308, 277, 278, 310, 277, 310, 309, 278, 279, 311, 278, 311, 310, 279, 280, 312, 279, 312, 311, 280, 281, 313, 280, 313, 312, 281, 282, 314, 281, 314, 313, 282, 283, 315, 282, 315, 314, 283, 284, 316, 283, 316, 315, 284, 285, 317, 284, 317, 316, 285, 286, 318, 285, 318, 317, 286, 287, 319, 286, 319, 318, 288, 289, 321, 288, 321, 320, 289, 290, 322, 289, 322, 321, 290, 291, 323, 290, 323, 322, 291, 292, 324, 291, 324, 323, 292, 293, 325, 292, 325, 324, 293, 294, 326, 293, 326, 325, 294, 295, 327, 294, 327, 326, 295, 296, 328, 295, 328, 327, 296, 297, 329, 296, 329, 328, 297, 298, 330, 297, 330, 329, 298, 299, 331, 298, 331, 330, 299, 300, 332, 299, 332, 331, 300, 301, 333, 300, 333, 332, 301, 302, 334, 301, 334, 333, 302, 303, 335, 302, 335, 334, 303, 304, 336, 303, 336, 335, 304, 305, 337, 304, 337, 336, 305, 306, 338, 305, 338, 337, 306, 307, 339, 306, 339, 338, 307, 308, 340, 307, 340, 339, 308, 309, 341, 308, 341, 340, 309, 310, 342, 309, 342, 341, 310, 311, 343, 310, 343, 342, 311, 312, 344, 311, 344, 343, 312, 313, 345, 312, 345, 344, 313, 314, 346, 313, 346, 345, 314, 315, 347, 314, 347, 346, 315, 316, 348, 315, 348, 347, 316, 317, 349, 316, 349, 348, 317, 318, 350, 317, 350, 349, 318, 319, 351, 318, 351, 350, 320, 321, 353, 320, 353, 352, 321, 322, 354, 321, 354, 353, 322, 323, 355, 322, 355, 354, 323, 324, 356, 323, 356, 355, 324, 325, 357, 324, 357, 356, 325, 326, 358, 325, 358, 357, 326, 327, 359, 326, 359, 358, 327, 328, 360, 327, 360, 359, 328, 329, 361, 328, 361, 360, 329, 330, 362, 329, 362, 361, 330, 331, 363, 330, 363, 362, 331, 332, 364, 331, 364, 363, 332, 333, 365, 332, 365, 364, 333, 334, 366, 333, 366, 365, 334, 335, 367, 334, 367, 366, 335, 336, 368, 335, 368, 367, 336, 337, 369, 336, 369, 368, 337, 338, 370, 337, 370, 369, 338, 339, 371, 338, 371, 370, 339, 340, 372, 339, 372, 371, 340, 341, 373, 340, 373, 372, 341, 342, 374, 341, 374, 373, 342, 343, 375, 342, 375, 374, 343, 344, 376, 343, 376, 375, 344, 345, 377, 344, 377, 376, 345, 346, 378, 345, 378, 377, 346, 347, 379, 346, 379, 378, 347, 348, 380, 347, 380, 379, 348, 349, 381, 348, 381, 380, 349, 350, 382, 349, 382, 381, 350, 351, 383, 350, 383, 382, 352, 353, 385, 352, 385, 384, 353, 354, 386, 353, 386, 385, 354, 355, 387, 354, 387, 386, 355, 356, 388, 355, 388, 387, 356, 357, 389, 356, 389, 388, 357, 358, 390, 357, 390, 389, 358, 359, 391, 358, 391, 390, 359, 360, 392, 359, 392, 391, 360, 361, 393, 360, 393, 392, 361, 362, 394, 361, 394, 393, 362, 363, 395, 362, 395, 394, 363, 364, 396, 363, 396, 395, 364, 365, 397, 364, 397, 396, 365, 366, 398, 365, 398, 397, 366, 367, 399, 366, 399, 398, 367, 368, 400, 367, 400, 399, 368, 369, 401, 368, 401, 400, 369, 370, 402, 369, 402, 401, 370, 371, 403, 370, 403, 402, 371, 372, 404, 371, 404, 403, 372, 373, 405, 372, 405, 404, 373, 374, 406, 373, 406, 405, 374, 375, 407, 374, 407, 406, 375, 376, 408, 375, 408, 407, 376, 377, 409, 376, 409, 408, 377, 378, 410, 377, 410, 409, 378, 379, 411, 378, 411, 410, 379, 380, 412, 379, 412, 411, 380, 381, 413, 380, 413, 412, 381, 382, 414, 381, 414, 413, 382, 383, 415, 382, 415, 414, 384, 385, 417, 384, 417, 416, 385, 386, 418, 385, 418, 417, 386, 387, 419, 386, 419, 418, 387, 388, 420, 387, 420, 419, 388, 389, 421, 388, 421, 420, 389, 390, 422, 389, 422, 421, 390, 391, 423, 390, 423, 422, 391, 392, 424, 391, 424, 423, 392, 393, 425, 392, 425, 424, 393, 394, 426, 393, 426, 425, 394, 395, 427, 394, 427, 426, 395, 396, 428, 395, 428, 427, 396, 397, 429, 396, 429, 428, 397, 398, 430, 397, 430, 429, 398, 399, 431, 398, 431, 430, 399, 400, 432, 399, 432, 431, 400, 401, 433, 400, 433, 432, 401, 402, 434, 401, 434, 433, 402, 403, 435, 402, 435, 434, 403, 404, 436, 403, 436, 435, 404, 405, 437, 404, 437, 436, 405, 406, 438, 405, 438, 437, 406, 407, 439, 406, 439, 438, 407, 408, 440, 407, 440, 439, 408, 409, 441, 408, 441, 440, 409, 410, 442, 409, 442, 441, 410, 411, 443, 410, 443, 442, 411, 412, 444, 411, 444, 443, 412, 413, 445, 412, 445, 444, 413, 414, 446, 413, 446, 445, 414, 415, 447, 414, 447, 446, 416, 417, 449, 416, 449, 448, 417, 418, 450, 417, 450, 449, 418, 419, 451, 418, 451, 450, 419, 420, 452, 419, 452, 451, 420, 421, 453, 420, 453, 452, 421, 422, 454, 421, 454, 453, 422, 423, 455, 422, 455, 454, 423, 424, 456, 423, 456, 455, 424, 425, 457, 424, 457, 456, 425, 426, 458, 425, 458, 457, 426, 427, 459, 426, 459, 458, 427, 428, 460, 427, 460, 459, 428, 429, 461, 428, 461, 460, 429, 430, 462, 429, 462, 461, 430, 431, 463, 430, 463, 462, 431, 432, 464, 431, 464, 463, 432, 433, 465, 432, 465, 464, 433, 434, 466, 433, 466, 465, 434, 435, 467, 434, 467, 466, 435, 436, 468, 435, 468, 467, 436, 437, 469, 436, 469, 468, 437, 438, 470, 437, 470, 469, 438, 439, 471, 438, 471, 470, 439, 440, 472, 439, 472, 471, 440, 441, 473, 440, 473, 472, 441, 442, 474, 441, 474, 473, 442, 443, 475, 442, 475, 474, 443, 444, 476, 443, 476, 475, 444, 445, 477, 444, 477, 476, 445, 446, 478, 445, 478, 477, 446, 447, 479, 446, 479, 478, 448, 449, 481, 448, 481, 480, 449, 450, 482, 449, 482, 481, 450, 451, 483, 450, 483, 482, 451, 452, 484, 451, 484, 483, 452, 453, 485, 452, 485, 484, 453, 454, 486, 453, 486, 485, 454, 455, 487, 454, 487, 486, 455, 456, 488, 455, 488, 487, 456, 457, 489, 456, 489, 488, 457, 458, 490, 457, 490, 489, 458, 459, 491, 458, 491, 490, 459, 460, 492, 459, 492, 491, 460, 461, 493, 460, 493, 492, 461, 462, 494, 461, 494, 493, 462, 463, 495, 462, 495, 494, 463, 464, 496, 463, 496, 495, 464, 465, 497, 464, 497, 496, 465, 466, 498, 465, 498, 497, 466, 467, 499, 466, 499, 498, 467, 468, 500, 467, 500, 499, 468, 469, 501, 468, 501, 500, 469, 470, 502, 469, 502, 501, 470, 471, 503, 470, 503, 502, 471, 472, 504, 471, 504, 503, 472, 473, 505, 472, 505, 504, 473, 474, 506, 473, 506, 505, 474, 475, 507, 474, 507, 506, 475, 476, 508, 475, 508, 507, 476, 477, 509, 476, 509, 508, 477, 478, 510, 477, 510, 509, 478, 479, 511, 478, 511, 510, 480, 481, 513, 480, 513, 512, 481, 482, 514, 481, 514, 513, 482, 483, 515, 482, 515, 514, 483, 484, 516, 483, 516, 515, 484, 485, 517, 484, 517, 516, 485, 486, 518, 485, 518, 517, 486, 487, 519, 486, 519, 518, 487, 488, 520, 487, 520, 519, 488, 489, 521, 488, 521, 520, 489, 490, 522, 489, 522, 521, 490, 491, 523, 490, 523, 522, 491, 492, 524, 491, 524, 523, 492, 493, 525, 492, 525, 524, 493, 494, 526, 493, 526, 525, 494, 495, 527, 494, 527, 526, 495, 496, 528, 495, 528, 527, 496, 497, 529, 496, 529, 528, 497, 498, 530, 497, 530, 529, 498, 499, 531, 498, 531, 530, 499, 500, 532, 499, 532, 531, 500, 501, 533, 500, 533, 532, 501, 502, 534, 501, 534, 533, 502, 503, 535, 502, 535, 534, 503, 504, 536, 503, 536, 535, 504, 505, 537, 504, 537, 536, 505, 506, 538, 505, 538, 537, 506, 507, 539, 506, 539, 538, 507, 508, 540, 507, 540, 539, 508, 509, 541, 508, 541, 540, 509, 510, 542, 509, 542, 541, 510, 511, 543, 510, 543, 542, 512, 513, 545, 512, 545, 544, 513, 514, 546, 513, 546, 545, 514, 515, 547, 514, 547, 546, 515, 516, 548, 515, 548, 547, 516, 517, 549, 516, 549, 548, 517, 518, 550, 517, 550, 549, 518, 519, 551, 518, 551, 550, 519, 520, 552, 519, 552, 551, 520, 521, 553, 520, 553, 552, 521, 522, 554, 521, 554, 553, 522, 523, 555, 522, 555, 554, 523, 524, 556, 523, 556, 555, 524, 525, 557, 524, 557, 556, 525, 526, 558, 525, 558, 557, 526, 527, 559, 526, 559, 558, 527, 528, 560, 527, 560, 559, 528, 529, 561, 528, 561, 560, 529, 530, 562, 529, 562, 561, 530, 531, 563, 530, 563, 562, 531, 532, 564, 531, 564, 563, 532, 533, 565, 532, 565, 564, 533, 534, 566, 533, 566, 565, 534, 535, 567, 534, 567, 566, 535, 536, 568, 535, 568, 567, 536, 537, 569, 536, 569, 568, 537, 538, 570, 537, 570, 569, 538, 539, 571, 538, 571, 570, 539, 540, 572, 539, 572, 571, 540, 541, 573, 540, 573, 572, 541, 542, 574, 541, 574, 573, 542, 543, 575, 542, 575, 574, 544, 545, 577, 544, 577, 576, 545, 546, 578, 545, 578, 577, 546, 547, 579, 546, 579, 578, 547, 548, 580, 547, 580, 579, 548, 549, 581, 548, 581, 580, 549, 550, 582, 549, 582, 581, 550, 551, 583, 550, 583, 582, 551, 552, 584, 551, 584, 583, 552, 553, 585, 552, 585, 584, 553, 554, 586, 553, 586, 585, 554, 555, 587, 554, 587, 586, 555, 556, 588, 555, 588, 587, 556, 557, 589, 556, 589, 588, 557, 558, 590, 557, 590, 589, 558, 559, 591, 558, 591, 590, 559, 560, 592, 559, 592, 591, 560, 561, 593, 560, 593, 592, 561, 562, 594, 561, 594, 593, 562, 563, 595, 562, 595, 594, 563, 564, 596, 563, 596, 595, 564, 565, 597, 564, 597, 596, 565, 566, 598, 565, 598, 597, 566, 567, 599, 566, 599, 598, 567, 568, 600, 567, 600, 599, 568, 569, 601, 568, 601, 600, 569, 570, 602, 569, 602, 601, 570, 571, 603, 570, 603, 602, 571, 572, 604, 571, 604, 603, 572, 573, 605, 572, 605, 604, 573, 574, 606, 573, 606, 605, 574, 575, 607, 574, 607, 606, 576, 577, 609, 576, 609, 608, 577, 578, 610, 577, 610, 609, 578, 579, 611, 578, 611, 610, 579, 580, 612, 579, 612, 611, 580, 581, 613, 580, 613, 612, 581, 582, 614, 581, 614, 613, 582, 583, 615, 582, 615, 614, 583, 584, 616, 583, 616, 615, 584, 585, 617, 584, 617, 616, 585, 586, 618, 585, 618, 617, 586, 587, 619, 586, 619, 618, 587, 588, 620, 587, 620, 619, 588, 589, 621, 588, 621, 620, 589, 590, 622, 589, 622, 621, 590, 591, 623, 590, 623, 622, 591, 592, 624, 591, 624, 623, 592, 593, 625, 592, 625, 624, 593, 594, 626, 593, 626, 625, 594, 595, 627, 594, 627, 626, 595, 596, 628, 595, 628, 627, 596, 597, 629, 596, 629, 628, 597, 598, 630, 597, 630, 629, 598, 599, 631, 598, 631, 630, 599, 600, 632, 599, 632, 631, 600, 601, 633, 600, 633, 632, 601, 602, 634, 601, 634, 633, 602, 603, 635, 602, 635, 634, 603, 604, 636, 603, 636, 635, 604, 605, 637, 604, 637, 636, 605, 606, 638, 605, 638, 637, 606, 607, 639, 606, 639, 638, 608, 609, 641, 608, 641, 640, 609, 610, 642, 609, 642, 641, 610, 611, 643, 610, 643, 642, 611, 612, 644, 611, 644, 643, 612, 613, 645, 612, 645, 644, 613, 614, 646, 613, 646, 645, 614, 615, 647, 614, 647, 646, 615, 616, 648, 615, 648, 647, 616, 617, 649, 616, 649, 648, 617, 618, 650, 617, 650, 649, 618, 619, 651, 618, 651, 650, 619, 620, 652, 619, 652, 651, 620, 621, 653, 620, 653, 652, 621, 622, 654, 621, 654, 653, 622, 623, 655, 622, 655, 654, 623, 624, 656, 623, 656, 655, 624, 625, 657, 624, 657, 656, 625, 626, 658, 625, 658, 657, 626, 627, 659, 626, 659, 658, 627, 628, 660, 627, 660, 659, 628, 629, 661, 628, 661, 660, 629, 630, 662, 629, 662, 661, 630, 631, 663, 630, 663, 662, 631, 632, 664, 631, 664, 663, 632, 633, 665, 632, 665, 664, 633, 634, 666, 633, 666, 665, 634, 635, 667, 634, 667, 666, 635, 636, 668, 635, 668, 667, 636, 637, 669, 636, 669, 668, 637, 638, 670, 637, 670, 669, 638, 639, 671, 638, 671, 670, 640, 641, 673, 640, 673, 672, 641, 642, 674, 641, 674, 673, 642, 643, 675, 642, 675, 674, 643, 644, 676, 643, 676, 675, 644, 645, 677, 644, 677, 676, 645, 646, 678, 645, 678, 677, 646, 647, 679, 646, 679, 678, 647, 648, 680, 647, 680, 679, 648, 649, 681, 648, 681, 680, 649, 650, 682, 649, 682, 681, 650, 651, 683, 650, 683, 682, 651, 652, 684, 651, 684, 683, 652, 653, 685, 652, 685, 684, 653, 654, 686, 653, 686, 685, 654, 655, 687, 654, 687, 686, 655, 656, 688, 655, 688, 687, 656, 657, 689, 656, 689, 688, 657, 658, 690, 657, 690, 689, 658, 659, 691, 658, 691, 690, 659, 660, 692, 659, 692, 691, 660, 661, 693, 660, 693, 692, 661, 662, 694, 661, 694, 693, 662, 663, 695, 662, 695, 694, 663, 664, 696, 663, 696, 695, 664, 665, 697, 664, 697, 696, 665, 666, 698, 665, 698, 697, 666, 667, 699, 666, 699, 698, 667, 668, 700, 667, 700, 699, 668, 669, 701, 668, 701, 700, 669, 670, 702, 669, 702, 701, 670, 671, 703, 670, 703, 702, 672, 673, 705, 672, 705, 704, 673, 674, 706, 673, 706, 705, 674, 675, 707, 674, 707, 706, 675, 676, 708, 675, 708, 707, 676, 677, 709, 676, 709, 708, 677, 678, 710, 677, 710, 709, 678, 679, 711, 678, 711, 710, 679, 680, 712, 679, 712, 711, 680, 681, 713, 680, 713, 712, 681, 682, 714, 681, 714, 713, 682, 683, 715, 682, 715, 714, 683, 684, 716, 683, 716, 715, 684, 685, 717, 684, 717, 716, 685, 686, 718, 685, 718, 717, 686, 687, 719, 686, 719, 718, 687, 688, 720, 687, 720, 719, 688, 689, 721, 688, 721, 720, 689, 690, 722, 689, 722, 721, 690, 691, 723, 690, 723, 722, 691, 692, 724, 691, 724, 723, 692, 693, 725, 692, 725, 724, 693, 694, 726, 693, 726, 725, 694, 695, 727, 694, 727, 726, 695, 696, 728, 695, 728, 727, 696, 697, 729, 696, 729, 728, 697, 698, 730, 697, 730, 729, 698, 699, 731, 698, 731, 730, 699, 700, 732, 699, 732, 731, 700, 701, 733, 700, 733, 732, 701, 702, 734, 701, 734, 733, 702, 703, 735, 702, 735, 734, 704, 705, 737, 704, 737, 736, 705, 706, 738, 705, 738, 737, 706, 707, 739, 706, 739, 738, 707, 708, 740, 707, 740, 739, 708, 709, 741, 708, 741, 740, 709, 710, 742, 709, 742, 741, 710, 711, 743, 710, 743, 742, 711, 712, 744, 711, 744, 743, 712, 713, 745, 712, 745, 744, 713, 714, 746, 713, 746, 745, 714, 715, 747, 714, 747, 746, 715, 716, 748, 715, 748, 747, 716, 717, 749, 716, 749, 748, 717, 718, 750, 717, 750, 749, 718, 719, 751, 718, 751, 750, 719, 720, 752, 719, 752, 751, 720, 721, 753, 720, 753, 752, 721, 722, 754, 721, 754, 753, 722, 723, 755, 722, 755, 754, 723, 724, 756, 723, 756, 755, 724, 725, 757, 724, 757, 756, 725, 726, 758, 725, 758, 757, 726, 727, 759, 726, 759, 758, 727, 728, 760, 727, 760, 759, 728, 729, 761, 728, 761, 760, 729, 730, 762, 729, 762, 761, 730, 731, 763, 730, 763, 762, 731, 732, 764, 731, 764, 763, 732, 733, 765, 732, 765, 764, 733, 734, 766, 733, 766, 765, 734, 735, 767, 734, 767, 766, 736, 737, 769, 736, 769, 768, 737, 738, 770, 737, 770, 769, 738, 739, 771, 738, 771, 770, 739, 740, 772, 739, 772, 771, 740, 741, 773, 740, 773, 772, 741, 742, 774, 741, 774, 773, 742, 743, 775, 742, 775, 774, 743, 744, 776, 743, 776, 775, 744, 745, 777, 744, 777, 776, 745, 746, 778, 745, 778, 777, 746, 747, 779, 746, 779, 778, 747, 748, 780, 747, 780, 779, 748, 749, 781, 748, 781, 780, 749, 750, 782, 749, 782, 781, 750, 751, 783, 750, 783, 782, 751, 752, 784, 751, 784, 783, 752, 753, 785, 752, 785, 784, 753, 754, 786, 753, 786, 785, 754, 755, 787, 754, 787, 786, 755, 756, 788, 755, 788, 787, 756, 757, 789, 756, 789, 788, 757, 758, 790, 757, 790, 789, 758, 759, 791, 758, 791, 790, 759, 760, 792, 759, 792, 791, 760, 761, 793, 760, 793, 792, 761, 762, 794, 761, 794, 793, 762, 763, 795, 762, 795, 794, 763, 764, 796, 763, 796, 795, 764, 765, 797, 764, 797, 796, 765, 766, 798, 765, 798, 797, 766, 767, 799, 766, 799, 798, 768, 769, 801, 768, 801, 800, 769, 770, 802, 769, 802, 801, 770, 771, 803, 770, 803, 802, 771, 772, 804, 771, 804, 803, 772, 773, 805, 772, 805, 804, 773, 774, 806, 773, 806, 805, 774, 775, 807, 774, 807, 806, 775, 776, 808, 775, 808, 807, 776, 777, 809, 776, 809, 808, 777, 778, 810, 777, 810, 809, 778, 779, 811, 778, 811, 810, 779, 780, 812, 779, 812, 811, 780, 781, 813, 780, 813, 812, 781, 782, 814, 781, 814, 813, 782, 783, 815, 782, 815, 814, 783, 784, 816, 783, 816, 815, 784, 785, 817, 784, 817, 816, 785, 786, 818, 785, 818, 817, 786, 787, 819, 786, 819, 818, 787, 788, 820, 787, 820, 819, 788, 789, 821, 788, 821, 820, 789, 790, 822, 789, 822, 821, 790, 791, 823, 790, 823, 822, 791, 792, 824, 791, 824, 823, 792, 793, 825, 792, 825, 824, 793, 794, 826, 793, 826, 825, 794, 795, 827, 794, 827, 826, 795, 796, 828, 795, 828, 827, 796, 797, 829, 796, 829, 828, 797, 798, 830, 797, 830, 829, 798, 799, 831, 798, 831, 830, 800, 801, 833, 800, 833, 832, 801, 802, 834, 801, 834, 833, 802, 803, 835, 802, 835, 834, 803, 804, 836, 803, 836, 835, 804, 805, 837, 804, 837, 836, 805, 806, 838, 805, 838, 837, 806, 807, 839, 806, 839, 838, 807, 808, 840, 807, 840, 839, 808, 809, 841, 808, 841, 840, 809, 810, 842, 809, 842, 841, 810, 811, 843, 810, 843, 842, 811, 812, 844, 811, 844, 843, 812, 813, 845, 812, 845, 844, 813, 814, 846, 813, 846, 845, 814, 815, 847, 814, 847, 846, 815, 816, 848, 815, 848, 847, 816, 817, 849, 816, 849, 848, 817, 818, 850, 817, 850, 849, 818, 819, 851, 818, 851, 850, 819, 820, 852, 819, 852, 851, 820, 821, 853, 820, 853, 852, 821, 822, 854, 821, 854, 853, 822, 823, 855, 822, 855, 854, 823, 824, 856, 823, 856, 855, 824, 825, 857, 824, 857, 856, 825, 826, 858, 825, 858, 857, 826, 827, 859, 826, 859, 858, 827, 828, 860, 827, 860, 859, 828, 829, 861, 828, 861, 860, 829, 830, 862, 829, 862, 861, 830, 831, 863, 830, 863, 862, 832, 833, 865, 832, 865, 864, 833, 834, 866, 833, 866, 865, 834, 835, 867, 834, 867, 866, 835, 836, 868, 835, 868, 867, 836, 837, 869, 836, 869, 868, 837, 838, 870, 837, 870, 869, 838, 839, 871, 838, 871, 870, 839, 840, 872, 839, 872, 871, 840, 841, 873, 840, 873, 872, 841, 842, 874, 841, 874, 873, 842, 843, 875, 842, 875, 874, 843, 844, 876, 843, 876, 875, 844, 845, 877, 844, 877, 876, 845, 846, 878, 845, 878, 877, 846, 847, 879, 846, 879, 878, 847, 848, 880, 847, 880, 879, 848, 849, 881, 848, 881, 880, 849, 850, 882, 849, 882, 881, 850, 851, 883, 850, 883, 882, 851, 852, 884, 851, 884, 883, 852, 853, 885, 852, 885, 884, 853, 854, 886, 853, 886, 885, 854, 855, 887, 854, 887, 886, 855, 856, 888, 855, 888, 887, 856, 857, 889, 856, 889, 888, 857, 858, 890, 857, 890, 889, 858, 859, 891, 858, 891, 890, 859, 860, 892, 859, 892, 891, 860, 861, 893, 860, 893, 892, 861, 862, 894, 861, 894, 893, 862, 863, 895, 862, 895, 894, 864, 865, 897, 864, 897, 896, 865, 866, 898, 865, 898, 897, 866, 867, 899, 866, 899, 898, 867, 868, 900, 867, 900, 899, 868, 869, 901, 868, 901, 900, 869, 870, 902, 869, 902, 901, 870, 871, 903, 870, 903, 902, 871, 872, 904, 871, 904, 903, 872, 873, 905, 872, 905, 904, 873, 874, 906, 873, 906, 905, 874, 875, 907, 874, 907, 906, 875, 876, 908, 875, 908, 907, 876, 877, 909, 876, 909, 908, 877, 878, 910, 877, 910, 909, 878, 879, 911, 878, 911, 910, 879, 880, 912, 879, 912, 911, 880, 881, 913, 880, 913, 912, 881, 882, 914, 881, 914, 913, 882, 883, 915, 882, 915, 914, 883, 884, 916, 883, 916, 915, 884, 885, 917, 884, 917, 916, 885, 886, 918, 885, 918, 917, 886, 887, 919, 886, 919, 918, 887, 888, 920, 887, 920, 919, 888, 889, 921, 888, 921, 920, 889, 890, 922, 889, 922, 921, 890, 891, 923, 890, 923, 922, 891, 892, 924, 891, 924, 923, 892, 893, 925, 892, 925, 924, 893, 894, 926, 893, 926, 925, 894, 895, 927, 894, 927, 926, 896, 897, 929, 896, 929, 928, 897, 898, 930, 897, 930, 929, 898, 899, 931, 898, 931, 930, 899, 900, 932, 899, 932, 931, 900, 901, 933, 900, 933, 932, 901, 902, 934, 901, 934, 933, 902, 903, 935, 902, 935, 934, 903, 904, 936, 903, 936, 935, 904, 905, 937, 904, 937, 936, 905, 906, 938, 905, 938, 937, 906, 907, 939, 906, 939, 938, 907, 908, 940, 907, 940, 939, 908, 909, 941, 908, 941, 940, 909, 910, 942, 909, 942, 941, 910, 911, 943, 910, 943, 942, 911, 912, 944, 911, 944, 943, 912, 913, 945, 912, 945, 944, 913, 914, 946, 913, 946, 945, 914, 915, 947, 914, 947, 946, 915, 916, 948, 915, 948, 947, 916, 917, 949, 916, 949, 948, 917, 918, 950, 917, 950, 949, 918, 919, 951, 918, 951, 950, 919, 920, 952, 919, 952, 951, 920, 921, 953, 920, 953, 952, 921, 922, 954, 921, 954, 953, 922, 923, 955, 922, 955, 954, 923, 924, 956, 923, 956, 955, 924, 925, 957, 924, 957, 956, 925, 926, 958, 925, 958, 957, 926, 927, 959, 926, 959, 958, 928, 929, 961, 928, 961, 960, 929, 930, 962, 929, 962, 961, 930, 931, 963, 930, 963, 962, 931, 932, 964, 931, 964, 963, 932, 933, 965, 932, 965, 964, 933, 934, 966, 933, 966, 965, 934, 935, 967, 934, 967, 966, 935, 936, 968, 935, 968, 967, 936, 937, 969, 936, 969, 968, 937, 938, 970, 937, 970, 969, 938, 939, 971, 938, 971, 970, 939, 940, 972, 939, 972, 971, 940, 941, 973, 940, 973, 972, 941, 942, 974, 941, 974, 973, 942, 943, 975, 942, 975, 974, 943, 944, 976, 943, 976, 975, 944, 945, 977, 944, 977, 976, 945, 946, 978, 945, 978, 977, 946, 947, 979, 946, 979, 978, 947, 948, 980, 947, 980, 979, 948, 949, 981, 948, 981, 980, 949, 950, 982, 949, 982, 981, 950, 951, 983, 950, 983, 982, 951, 952, 984, 951, 984, 983, 952, 953, 985, 952, 985, 984, 953, 954, 986, 953, 986, 985, 954, 955, 987, 954, 987, 986, 955, 956, 988, 955, 988, 987, 956, 957, 989, 956, 989, 988, 957, 958, 990, 957, 990, 989, 958, 959, 991, 958, 991, 990, 960, 961, 993, 960, 993, 992, 961, 962, 994, 961, 994, 993, 962, 963, 995, 962, 995, 994, 963, 964, 996, 963, 996, 995, 964, 965, 997, 964, 997, 996, 965, 966, 998, 965, 998, 997, 966, 967, 999, 966, 999, 998, 967, 968, 1000, 967, 1000, 999, 968, 969, 1001, 968, 1001, 1000, 969, 970, 1002, 969, 1002, 1001, 970, 971, 1003, 970, 1003, 1002, 971, 972, 1004, 971, 1004, 1003, 972, 973, 1005, 972, 1005, 1004, 973, 974, 1006, 973, 1006, 1005, 974, 975, 1007, 974, 1007, 1006, 975, 976, 1008, 975, 1008, 1007, 976, 977, 1009, 976, 1009, 1008, 977, 978, 1010, 977, 1010, 1009, 978, 979, 1011, 978, 1011, 1010, 979, 980, 1012, 979, 1012, 1011, 980, 981, 1013, 980, 1013, 1012, 981, 982, 1014, 981, 1014, 1013, 982, 983, 1015, 982, 1015, 1014, 983, 984, 1016, 983, 1016, 1015, 984, 985, 1017, 984, 1017, 1016, 985, 986, 1018, 985, 1018, 1017, 986, 987, 1019, 986, 1019, 1018, 987, 988, 1020, 987, 1020, 1019, 988, 989, 1021, 988, 1021, 1020, 989, 990, 1022, 989, 1022, 1021, 990, 991, 1023, 990, 1023, 1022] color3f[] primvars:displayColor = [(0.784314, 0.64705884, 0.1)] point3f[] points = [(0, 0, 20), (20, 0, 20), (40, 0, 20), (60, 0, 20), (80, 0, 20), (100, 0, 20), (120, 0, 20), (140, 0, 20), (160, 0, 20), (180, 0, 20), (200, 0, 20), (220, 0, 20), (240, 0, 20), (260, 0, 20), (280, 0, 20), (300, 0, 20), (320, 0, 20), (340, 0, 20), (360, 0, 20), (380, 0, 20), (400, 0, 20), (420, 0, 20), (440, 0, 20), (460, 0, 20), (480, 0, 20), (500, 0, 20), (520, 0, 20), (540, 0, 20), (560, 0, 20), (580, 0, 20), (600, 0, 20), (620, 0, 20), (0, 20, 20), (20, 20, 20), (40, 20, 20), (60, 20, 20), (80, 20, 20), (100, 20, 20), (120, 20, 20), (140, 20, 20), (160, 20, 20), (180, 20, 20), (200, 20, 20), (220, 20, 20), (240, 20, 20), (260, 20, 20), (280, 20, 20), (300, 20, 20), (320, 20, 20), (340, 20, 20), (360, 20, 20), (380, 20, 20), (400, 20, 20), (420, 20, 20), (440, 20, 20), (460, 20, 20), (480, 20, 20), (500, 20, 20), (520, 20, 20), (540, 20, 20), (560, 20, 20), (580, 20, 20), (600, 20, 20), (620, 20, 20), (0, 40, 20), (20, 40, 20), (40, 40, 20), (60, 40, 20), (80, 40, 20), (100, 40, 20), (120, 40, 20), (140, 40, 20), (160, 40, 20), (180, 40, 20), (200, 40, 20), (220, 40, 20), (240, 40, 20), (260, 40, 20), (280, 40, 20), (300, 40, 20), (320, 40, 20), (340, 40, 20), (360, 40, 20), (380, 40, 20), (400, 40, 20), (420, 40, 20), (440, 40, 20), (460, 40, 20), (480, 40, 20), (500, 40, 20), (520, 40, 20), (540, 40, 20), (560, 40, 20), (580, 40, 20), (600, 40, 20), (620, 40, 20), (0, 60, 20), (20, 60, 20), (40, 60, 20), (60, 60, 20), (80, 60, 20), (100, 60, 20), (120, 60, 20), (140, 60, 20), (160, 60, 20), (180, 60, 20), (200, 60, 20), (220, 60, 20), (240, 60, 20), (260, 60, 20), (280, 60, 20), (300, 60, 20), (320, 60, 20), (340, 60, 20), (360, 60, 20), (380, 60, 20), (400, 60, 20), (420, 60, 20), (440, 60, 20), (460, 60, 20), (480, 60, 20), (500, 60, 20), (520, 60, 20), (540, 60, 20), (560, 60, 20), (580, 60, 20), (600, 60, 20), (620, 60, 20), (0, 80, 20), (20, 80, 20), (40, 80, 20), (60, 80, 20), (80, 80, 20), (100, 80, 20), (120, 80, 20), (140, 80, 20), (160, 80, 20), (180, 80, 20), (200, 80, 20), (220, 80, 20), (240, 80, 20), (260, 80, 20), (280, 80, 20), (300, 80, 20), (320, 80, 20), (340, 80, 20), (360, 80, 20), (380, 80, 20), (400, 80, 20), (420, 80, 20), (440, 80, 20), (460, 80, 20), (480, 80, 20), (500, 80, 20), (520, 80, 20), (540, 80, 20), (560, 80, 20), (580, 80, 20), (600, 80, 20), (620, 80, 20), (0, 100, 20), (20, 100, 20), (40, 100, 20), (60, 100, 20), (80, 100, 20), (100, 100, 20), (120, 100, 20), (140, 100, 20), (160, 100, 20), (180, 100, 20), (200, 100, 20), (220, 100, 20), (240, 100, 20), (260, 100, 20), (280, 100, 20), (300, 100, 20), (320, 100, 20), (340, 100, 20), (360, 100, 20), (380, 100, 20), (400, 100, 20), (420, 100, 20), (440, 100, 20), (460, 100, 20), (480, 100, 20), (500, 100, 20), (520, 100, 20), (540, 100, 20), (560, 100, 20), (580, 100, 20), (600, 100, 20), (620, 100, 20), (0, 120, 20), (20, 120, 20), (40, 120, 20), (60, 120, 20), (80, 120, 20), (100, 120, 20), (120, 120, 20), (140, 120, 20), (160, 120, 20), (180, 120, 20), (200, 120, 20), (220, 120, 20), (240, 120, 20), (260, 120, 20), (280, 120, 20), (300, 120, 20), (320, 120, 20), (340, 120, 20), (360, 120, 20), (380, 120, 20), (400, 120, 20), (420, 120, 20), (440, 120, 20), (460, 120, 20), (480, 120, 20), (500, 120, 20), (520, 120, 20), (540, 120, 20), (560, 120, 20), (580, 120, 20), (600, 120, 20), (620, 120, 20), (0, 140, 20), (20, 140, 20), (40, 140, 20), (60, 140, 20), (80, 140, 20), (100, 140, 20), (120, 140, 20), (140, 140, 20), (160, 140, 20), (180, 140, 20), (200, 140, 20), (220, 140, 20), (240, 140, 20), (260, 140, 20), (280, 140, 20), (300, 140, 20), (320, 140, 20), (340, 140, 20), (360, 140, 20), (380, 140, 20), (400, 140, 20), (420, 140, 20), (440, 140, 20), (460, 140, 20), (480, 140, 20), (500, 140, 20), (520, 140, 20), (540, 140, 20), (560, 140, 20), (580, 140, 20), (600, 140, 20), (620, 140, 20), (0, 160, 20), (20, 160, 20), (40, 160, 20), (60, 160, 20), (80, 160, 20), (100, 160, 20), (120, 160, 20), (140, 160, 20), (160, 160, 20), (180, 160, 20), (200, 160, 20), (220, 160, 20), (240, 160, 20), (260, 160, 20), (280, 160, 20), (300, 160, 20), (320, 160, 20), (340, 160, 20), (360, 160, 20), (380, 160, 20), (400, 160, 20), (420, 160, 20), (440, 160, 20), (460, 160, 20), (480, 160, 20), (500, 160, 20), (520, 160, 20), (540, 160, 20), (560, 160, 20), (580, 160, 20), (600, 160, 20), (620, 160, 20), (0, 180, 20), (20, 180, 20), (40, 180, 20), (60, 180, 20), (80, 180, 20), (100, 180, 20), (120, 180, 20), (140, 180, 20), (160, 180, 20), (180, 180, 20), (200, 180, 20), (220, 180, 20), (240, 180, 20), (260, 180, 20), (280, 180, 20), (300, 180, 20), (320, 180, 20), (340, 180, 20), (360, 180, 20), (380, 180, 20), (400, 180, 20), (420, 180, 20), (440, 180, 20), (460, 180, 20), (480, 180, 20), (500, 180, 20), (520, 180, 20), (540, 180, 20), (560, 180, 20), (580, 180, 20), (600, 180, 20), (620, 180, 20), (0, 200, 20), (20, 200, 20), (40, 200, 20), (60, 200, 20), (80, 200, 20), (100, 200, 20), (120, 200, 20), (140, 200, 20), (160, 200, 20), (180, 200, 20), (200, 200, 20), (220, 200, 20), (240, 200, 20), (260, 200, 20), (280, 200, 20), (300, 200, 20), (320, 200, 20), (340, 200, 20), (360, 200, 20), (380, 200, 20), (400, 200, 20), (420, 200, 20), (440, 200, 20), (460, 200, 20), (480, 200, 20), (500, 200, 20), (520, 200, 20), (540, 200, 20), (560, 200, 20), (580, 200, 20), (600, 200, 20), (620, 200, 20), (0, 220, 20), (20, 220, 20), (40, 220, 20), (60, 220, 20), (80, 220, 20), (100, 220, 20), (120, 220, 20), (140, 220, 20), (160, 220, 20), (180, 220, 20), (200, 220, 20), (220, 220, 20), (240, 220, 20), (260, 220, 20), (280, 220, 20), (300, 220, 20), (320, 220, 20), (340, 220, 20), (360, 220, 20), (380, 220, 20), (400, 220, 20), (420, 220, 20), (440, 220, 20), (460, 220, 20), (480, 220, 20), (500, 220, 20), (520, 220, 20), (540, 220, 20), (560, 220, 20), (580, 220, 20), (600, 220, 20), (620, 220, 20), (0, 240, 20), (20, 240, 20), (40, 240, 20), (60, 240, 20), (80, 240, 20), (100, 240, 20), (120, 240, 20), (140, 240, 20), (160, 240, 20), (180, 240, 20), (200, 240, 20), (220, 240, 20), (240, 240, 20), (260, 240, 20), (280, 240, 20), (300, 240, 20), (320, 240, 20), (340, 240, 20), (360, 240, 20), (380, 240, 20), (400, 240, 20), (420, 240, 20), (440, 240, 20), (460, 240, 20), (480, 240, 20), (500, 240, 20), (520, 240, 20), (540, 240, 20), (560, 240, 20), (580, 240, 20), (600, 240, 20), (620, 240, 20), (0, 260, 20), (20, 260, 20), (40, 260, 20), (60, 260, 20), (80, 260, 20), (100, 260, 20), (120, 260, 20), (140, 260, 20), (160, 260, 20), (180, 260, 20), (200, 260, 20), (220, 260, 20), (240, 260, 20), (260, 260, 20), (280, 260, 20), (300, 260, 20), (320, 260, 20), (340, 260, 20), (360, 260, 20), (380, 260, 20), (400, 260, 20), (420, 260, 20), (440, 260, 20), (460, 260, 20), (480, 260, 20), (500, 260, 20), (520, 260, 20), (540, 260, 20), (560, 260, 20), (580, 260, 20), (600, 260, 20), (620, 260, 20), (0, 280, 20), (20, 280, 20), (40, 280, 20), (60, 280, 20), (80, 280, 20), (100, 280, 20), (120, 280, 20), (140, 280, 20), (160, 280, 20), (180, 280, 20), (200, 280, 20), (220, 280, 20), (240, 280, 20), (260, 280, 20), (280, 280, 20), (300, 280, 20), (320, 280, 20), (340, 280, 20), (360, 280, 20), (380, 280, 20), (400, 280, 20), (420, 280, 20), (440, 280, 20), (460, 280, 20), (480, 280, 20), (500, 280, 20), (520, 280, 20), (540, 280, 20), (560, 280, 20), (580, 280, 20), (600, 280, 20), (620, 280, 20), (0, 300, 20), (20, 300, 20), (40, 300, 20), (60, 300, 20), (80, 300, 20), (100, 300, 20), (120, 300, 20), (140, 300, 20), (160, 300, 20), (180, 300, 20), (200, 300, 20), (220, 300, 20), (240, 300, 20), (260, 300, 20), (280, 300, 20), (300, 300, 20), (320, 300, 20), (340, 300, 20), (360, 300, 20), (380, 300, 20), (400, 300, 20), (420, 300, 20), (440, 300, 20), (460, 300, 20), (480, 300, 20), (500, 300, 20), (520, 300, 20), (540, 300, 20), (560, 300, 20), (580, 300, 20), (600, 300, 20), (620, 300, 20), (0, 320, 20), (20, 320, 20), (40, 320, 20), (60, 320, 20), (80, 320, 20), (100, 320, 20), (120, 320, 20), (140, 320, 20), (160, 320, 20), (180, 320, 20), (200, 320, 20), (220, 320, 20), (240, 320, 20), (260, 320, 20), (280, 320, 20), (300, 320, 20), (320, 320, 20), (340, 320, 20), (360, 320, 20), (380, 320, 20), (400, 320, 20), (420, 320, 20), (440, 320, 20), (460, 320, 20), (480, 320, 20), (500, 320, 20), (520, 320, 20), (540, 320, 20), (560, 320, 20), (580, 320, 20), (600, 320, 20), (620, 320, 20), (0, 340, 20), (20, 340, 20), (40, 340, 20), (60, 340, 20), (80, 340, 20), (100, 340, 20), (120, 340, 20), (140, 340, 20), (160, 340, 20), (180, 340, 20), (200, 340, 20), (220, 340, 20), (240, 340, 20), (260, 340, 20), (280, 340, 20), (300, 340, 20), (320, 340, 20), (340, 340, 20), (360, 340, 20), (380, 340, 20), (400, 340, 20), (420, 340, 20), (440, 340, 20), (460, 340, 20), (480, 340, 20), (500, 340, 20), (520, 340, 20), (540, 340, 20), (560, 340, 20), (580, 340, 20), (600, 340, 20), (620, 340, 20), (0, 360, 20), (20, 360, 20), (40, 360, 20), (60, 360, 20), (80, 360, 20), (100, 360, 20), (120, 360, 20), (140, 360, 20), (160, 360, 20), (180, 360, 20), (200, 360, 20), (220, 360, 20), (240, 360, 20), (260, 360, 20), (280, 360, 20), (300, 360, 20), (320, 360, 20), (340, 360, 20), (360, 360, 20), (380, 360, 20), (400, 360, 20), (420, 360, 20), (440, 360, 20), (460, 360, 20), (480, 360, 20), (500, 360, 20), (520, 360, 20), (540, 360, 20), (560, 360, 20), (580, 360, 20), (600, 360, 20), (620, 360, 20), (0, 380, 20), (20, 380, 20), (40, 380, 20), (60, 380, 20), (80, 380, 20), (100, 380, 20), (120, 380, 20), (140, 380, 20), (160, 380, 20), (180, 380, 20), (200, 380, 20), (220, 380, 20), (240, 380, 20), (260, 380, 20), (280, 380, 20), (300, 380, 20), (320, 380, 20), (340, 380, 20), (360, 380, 20), (380, 380, 20), (400, 380, 20), (420, 380, 20), (440, 380, 20), (460, 380, 20), (480, 380, 20), (500, 380, 20), (520, 380, 20), (540, 380, 20), (560, 380, 20), (580, 380, 20), (600, 380, 20), (620, 380, 20), (0, 400, 20), (20, 400, 20), (40, 400, 20), (60, 400, 20), (80, 400, 20), (100, 400, 20), (120, 400, 20), (140, 400, 20), (160, 400, 20), (180, 400, 20), (200, 400, 20), (220, 400, 20), (240, 400, 20), (260, 400, 20), (280, 400, 20), (300, 400, 20), (320, 400, 20), (340, 400, 20), (360, 400, 20), (380, 400, 20), (400, 400, 20), (420, 400, 20), (440, 400, 20), (460, 400, 20), (480, 400, 20), (500, 400, 20), (520, 400, 20), (540, 400, 20), (560, 400, 20), (580, 400, 20), (600, 400, 20), (620, 400, 20), (0, 420, 20), (20, 420, 20), (40, 420, 20), (60, 420, 20), (80, 420, 20), (100, 420, 20), (120, 420, 20), (140, 420, 20), (160, 420, 20), (180, 420, 20), (200, 420, 20), (220, 420, 20), (240, 420, 20), (260, 420, 20), (280, 420, 20), (300, 420, 20), (320, 420, 20), (340, 420, 20), (360, 420, 20), (380, 420, 20), (400, 420, 20), (420, 420, 20), (440, 420, 20), (460, 420, 20), (480, 420, 20), (500, 420, 20), (520, 420, 20), (540, 420, 20), (560, 420, 20), (580, 420, 20), (600, 420, 20), (620, 420, 20), (0, 440, 20), (20, 440, 20), (40, 440, 20), (60, 440, 20), (80, 440, 20), (100, 440, 20), (120, 440, 20), (140, 440, 20), (160, 440, 20), (180, 440, 20), (200, 440, 20), (220, 440, 20), (240, 440, 20), (260, 440, 20), (280, 440, 20), (300, 440, 20), (320, 440, 20), (340, 440, 20), (360, 440, 20), (380, 440, 20), (400, 440, 20), (420, 440, 20), (440, 440, 20), (460, 440, 20), (480, 440, 20), (500, 440, 20), (520, 440, 20), (540, 440, 20), (560, 440, 20), (580, 440, 20), (600, 440, 20), (620, 440, 20), (0, 460, 20), (20, 460, 20), (40, 460, 20), (60, 460, 20), (80, 460, 20), (100, 460, 20), (120, 460, 20), (140, 460, 20), (160, 460, 20), (180, 460, 20), (200, 460, 20), (220, 460, 20), (240, 460, 20), (260, 460, 20), (280, 460, 20), (300, 460, 20), (320, 460, 20), (340, 460, 20), (360, 460, 20), (380, 460, 20), (400, 460, 20), (420, 460, 20), (440, 460, 20), (460, 460, 20), (480, 460, 20), (500, 460, 20), (520, 460, 20), (540, 460, 20), (560, 460, 20), (580, 460, 20), (600, 460, 20), (620, 460, 20), (0, 480, 20), (20, 480, 20), (40, 480, 20), (60, 480, 20), (80, 480, 20), (100, 480, 20), (120, 480, 20), (140, 480, 20), (160, 480, 20), (180, 480, 20), (200, 480, 20), (220, 480, 20), (240, 480, 20), (260, 480, 20), (280, 480, 20), (300, 480, 20), (320, 480, 20), (340, 480, 20), (360, 480, 20), (380, 480, 20), (400, 480, 20), (420, 480, 20), (440, 480, 20), (460, 480, 20), (480, 480, 20), (500, 480, 20), (520, 480, 20), (540, 480, 20), (560, 480, 20), (580, 480, 20), (600, 480, 20), (620, 480, 20), (0, 500, 20), (20, 500, 20), (40, 500, 20), (60, 500, 20), (80, 500, 20), (100, 500, 20), (120, 500, 20), (140, 500, 20), (160, 500, 20), (180, 500, 20), (200, 500, 20), (220, 500, 20), (240, 500, 20), (260, 500, 20), (280, 500, 20), (300, 500, 20), (320, 500, 20), (340, 500, 20), (360, 500, 20), (380, 500, 20), (400, 500, 20), (420, 500, 20), (440, 500, 20), (460, 500, 20), (480, 500, 20), (500, 500, 20), (520, 500, 20), (540, 500, 20), (560, 500, 20), (580, 500, 20), (600, 500, 20), (620, 500, 20), (0, 520, 20), (20, 520, 20), (40, 520, 20), (60, 520, 20), (80, 520, 20), (100, 520, 20), (120, 520, 20), (140, 520, 20), (160, 520, 20), (180, 520, 20), (200, 520, 20), (220, 520, 20), (240, 520, 20), (260, 520, 20), (280, 520, 20), (300, 520, 20), (320, 520, 20), (340, 520, 20), (360, 520, 20), (380, 520, 20), (400, 520, 20), (420, 520, 20), (440, 520, 20), (460, 520, 20), (480, 520, 20), (500, 520, 20), (520, 520, 20), (540, 520, 20), (560, 520, 20), (580, 520, 20), (600, 520, 20), (620, 520, 20), (0, 540, 20), (20, 540, 20), (40, 540, 20), (60, 540, 20), (80, 540, 20), (100, 540, 20), (120, 540, 20), (140, 540, 20), (160, 540, 20), (180, 540, 20), (200, 540, 20), (220, 540, 20), (240, 540, 20), (260, 540, 20), (280, 540, 20), (300, 540, 20), (320, 540, 20), (340, 540, 20), (360, 540, 20), (380, 540, 20), (400, 540, 20), (420, 540, 20), (440, 540, 20), (460, 540, 20), (480, 540, 20), (500, 540, 20), (520, 540, 20), (540, 540, 20), (560, 540, 20), (580, 540, 20), (600, 540, 20), (620, 540, 20), (0, 560, 20), (20, 560, 20), (40, 560, 20), (60, 560, 20), (80, 560, 20), (100, 560, 20), (120, 560, 20), (140, 560, 20), (160, 560, 20), (180, 560, 20), (200, 560, 20), (220, 560, 20), (240, 560, 20), (260, 560, 20), (280, 560, 20), (300, 560, 20), (320, 560, 20), (340, 560, 20), (360, 560, 20), (380, 560, 20), (400, 560, 20), (420, 560, 20), (440, 560, 20), (460, 560, 20), (480, 560, 20), (500, 560, 20), (520, 560, 20), (540, 560, 20), (560, 560, 20), (580, 560, 20), (600, 560, 20), (620, 560, 20), (0, 580, 20), (20, 580, 20), (40, 580, 20), (60, 580, 20), (80, 580, 20), (100, 580, 20), (120, 580, 20), (140, 580, 20), (160, 580, 20), (180, 580, 20), (200, 580, 20), (220, 580, 20), (240, 580, 20), (260, 580, 20), (280, 580, 20), (300, 580, 20), (320, 580, 20), (340, 580, 20), (360, 580, 20), (380, 580, 20), (400, 580, 20), (420, 580, 20), (440, 580, 20), (460, 580, 20), (480, 580, 20), (500, 580, 20), (520, 580, 20), (540, 580, 20), (560, 580, 20), (580, 580, 20), (600, 580, 20), (620, 580, 20), (0, 600, 20), (20, 600, 20), (40, 600, 20), (60, 600, 20), (80, 600, 20), (100, 600, 20), (120, 600, 20), (140, 600, 20), (160, 600, 20), (180, 600, 20), (200, 600, 20), (220, 600, 20), (240, 600, 20), (260, 600, 20), (280, 600, 20), (300, 600, 20), (320, 600, 20), (340, 600, 20), (360, 600, 20), (380, 600, 20), (400, 600, 20), (420, 600, 20), (440, 600, 20), (460, 600, 20), (480, 600, 20), (500, 600, 20), (520, 600, 20), (540, 600, 20), (560, 600, 20), (580, 600, 20), (600, 600, 20), (620, 600, 20), (0, 620, 20), (20, 620, 20), (40, 620, 20), (60, 620, 20), (80, 620, 20), (100, 620, 20), (120, 620, 20), (140, 620, 20), (160, 620, 20), (180, 620, 20), (200, 620, 20), (220, 620, 20), (240, 620, 20), (260, 620, 20), (280, 620, 20), (300, 620, 20), (320, 620, 20), (340, 620, 20), (360, 620, 20), (380, 620, 20), (400, 620, 20), (420, 620, 20), (440, 620, 20), (460, 620, 20), (480, 620, 20), (500, 620, 20), (520, 620, 20), (540, 620, 20), (560, 620, 20), (580, 620, 20), (600, 620, 20), (620, 620, 20)] point3f[] points.connect = </defaultPrim/testDeformer.outputs:points> } }
omniverse-code/kit/exts/omni.graph/omni/graph/core/data/ExampleTestNonUSD.usda
#usda 1.0 ( doc = """This file is generated using UniversalAddGenerator.py """ ) def Xform "defaultPrim" { def Xform "in_0" { bool bool_0 = true bool[] bool_arr_0 = ['false', 'true', 'false', 'true'] color3d colord3_0 = (-2.4949365863755943, 4.097462559682402, 4.827854760376532) color4d colord4_0 = (-0.2785728454728664, -3.992987919316342, -0.6582816454621634, 1.1088697344380165) color3d[] colord3_arr_0 = [(2.1970468640395415, -1.0117645777573125, 3.2484497714823295), (1.6815320123185087, -4.988571806855717, -0.06422133534675378), (3.6760277549278086, -2.5608912311286804, -1.7479563725260991), (3.7047123210865465, -3.089329084976095, 0.6751074062067186)] color4d[] colord4_arr_0 = [(1.1277317986860673, 1.5665938898962883, -0.2346900799061924, -4.1017563880440635), (2.576039219664368, 3.7677037082277476, 4.233810159462806, 3.424602231401824), (3.98173121357879, 4.230824398201769, 0.4059992494805442, -1.087039497653751), (2.0528339985440622, -2.2436587868787283, 3.1162870850787847, 3.4948596518636705)] color3f colorf3_0 = (0.7595294803154076, -1.0879059067717312, -1.298600596648125) color4f colorf4_0 = (-2.8942349011335358, 3.00746590354181, 4.369691586445807, -4.772174243313416) color3f[] colorf3_arr_0 = [(-4.6062129291530765, -3.990787588110334, 4.8823514872250104), (-3.00644209532937, -1.4144469868839815, 2.315983062253606), (3.3832656519341633, 4.184820619953314, -3.3057539390253234), (1.7264056357305257, 4.665489030431832, -4.419490561735014)] color4f[] colorf4_arr_0 = [(-2.121220851436, -1.4079880274625367, 4.469058356578911, 1.3374785224925256), (1.2107684561866723, 2.1561935030145634, -1.1198276468749437, -0.8558201172275268), (1.5083286226334502, -4.984757781432798, -3.076904587553242, -1.6559830933749842), (-2.6058403981404146, 1.3739940112930027, -1.2135192967690553, 3.754233917130172)] color3h colorh3_0 = (-4.976424352806461, 3.227314105314157, 0.2834597685979281) color4h colorh4_0 = (-3.9981931093629095, 3.5393810959733827, -1.0330382266909552, -4.186545832317659) color3h[] colorh3_arr_0 = [(3.7186383571058617, -2.2159018478363945, -4.814256724544048), (-4.593367263247391, 1.8099677011124324, 0.5835573609704694), (4.46502554169996, 4.384387997349187, 4.098511774051024), (-4.579954680326588, 2.4913482339086315, 2.013248175948597)] color4h[] colorh4_arr_0 = [(-4.517436377117056, -3.2041315095844434, 0.23050231700098145, -4.291371159056525), (-0.968308535549065, -1.714792899845131, -0.8527839102855763, -4.005996617612989), (4.086575543967806, -0.25995348862703604, 3.4084833262767162, 4.76229457649057), (-1.5634840634223224, -0.20913480848013943, 1.9959529115061851, -0.7346467645597174)] double double_0 = -3.8108971344614426 double2 double2_0 = (-4.57898572109338, 4.4796135125631995) double3 double3_0 = (0.46391262315113657, -3.486656315271089, 4.886898889857566) double4 double4_0 = (4.170466727598152, -1.775396851186939, -0.015591085092497181, -0.013534081349910743) double[] double_arr_0 = [-4.645317381239877, -3.5163311753807025, -2.431180879280962, 2.8416656818915422] double2[] double2_arr_0 = [(-2.7490934632350394, -4.5936797335409905), (-4.847148600302732, 3.4395468569240784), (-1.6940563274991973, -3.393099397372794), (-3.511805097110905, 1.5608366177033695)] double3[] double3_arr_0 = [(2.910402117090955, -1.1143110984988578, 0.8638845558144954), (3.5131660748106786, 2.980594711041583, 1.5698455188613414), (-4.997593034748331, -3.180310778137889, 0.06857786851127656), (-2.455406015166207, -4.343791567272692, 3.5988342212146165)] double4[] double4_arr_0 = [(-4.675345376260561, 1.1740042368100543, 1.299662912183356, -3.947071753436351), (0.49143766231777164, -1.533320233600317, -1.165859268351126, 2.7641989869967833), (-0.09680322475754366, 3.8127661541224143, 1.1011974290622337, -0.3281158496192971), (1.3231264005538454, -1.621346201712476, -3.756762074717476, 1.8252961869252378)] float float_0 = -1.9468840997304362 float2 float2_0 = (0.660129742477574, 4.228805831375125) float3 float3_0 = (2.3427934165711584, -4.692991540480938, -0.5328140086616351) float4 float4_0 = (-4.296705341236443, -1.407466851787631, -4.706224922430136, -1.521222727156605) float[] float_arr_0 = [4.382622681625481, -3.768118787707626, -4.928154327477295, -1.3086985282997432] float2[] float2_arr_0 = [(4.665192604669938, -1.3776013005515075), (-0.2662959723988845, -2.0736801403502647), (4.3712684421546975, 4.581478949874976), (1.3591570650774347, -3.1595444982484446)] float3[] float3_arr_0 = [(-4.267888506351392, -0.797682978258532, 0.5077717763743781), (2.4087881987092192, -3.57716526157584, -0.7781125383058116), (1.3696603741172044, -4.1544430518106745, -0.5518884485379614), (-1.3074396076020225, 4.489319289416617, -4.421428860989828)] float4[] float4_arr_0 = [(-2.9636009562963004, -4.981568393843341, 1.9899171180343895, 1.1873551802345252), (-4.922233505641358, -2.014398789818792, 2.686342595428415, 1.289203785446209), (0.4520811594397225, -3.437788901909511, 2.0629404299968845, -0.2856507828419632), (1.7817874623596364, 2.6008983672349215, -2.6763727855875485, 2.6199501309771165)] frame4d frame4_0 = ((2.785502590540477, 2.881774252549901, -2.0774583188917783, -1.2819567644422545), (1.2881090594688613, -3.4293003288434285, 1.9703193098692484, -1.1857224701928692), (0.9106247475700702, -3.604669007687782, 1.6825838609755985, -1.459421393863003), (-0.27334423792768536, -0.8489259915046432, -0.23284752004905407, 1.9469563291644416)) frame4d[] frame4_arr_0 = [((3.9720097696387544, -0.6472972670183115, -0.5270810475027519, 2.0882775744423796), (0.2416187015229232, -3.707769646580065, 4.103923975439699, -0.5587566383803484), (2.8933773922535906, -1.1112486997775584, 3.0684601882069202, -1.1046358399254732), (-2.7984047833395422, -3.0380533308333133, 4.4003464433751045, 0.8653025858102001)), ((-4.502067349417351, -1.1165240382195085, -2.65970739475073, -4.153429353907007), (-3.1324413147859156, -4.430095200004965, 1.3807362822810267, -3.266261351625311), (1.1077987624352552, 1.125067478912297, 2.0492371073993674, 0.12118650611431292), (-2.1557600966520174, 3.774574539285279, -1.4692891827648635, -0.417056750212609)), ((1.3187943173054641, 0.16124298167449513, 4.564683485665338, 4.547176774381221), (4.297598506094264, 4.340763496652581, 0.8096013556869597, -0.0979793626999701), (2.0411681738236886, -2.84580407014532, -2.3412796078447173, -4.561927463669083), (-3.3714245744196902, -4.961254500611894, 1.5462757652349808, -3.595930109643181)), ((2.8667934557605212, 1.8050399588172503, 4.7067579335449565, -1.0348551304810871), (4.213919134510528, -0.4629582768046685, -1.6049626016379293, -3.9766113008294623), (3.8283218507185968, 2.9479015856258686, -1.7707102346493944, -0.4425561507437106), (-1.7485653418675176, -4.711708834619053, -4.55647474600883, -1.3129587411794108))] half half_0 = -2.3989341151586396 half2 half2_0 = (-1.4364209343796155, 0.39513305263094356) half3 half3_0 = (-4.754353222141638, -4.550367592838315, -2.7422442327786642) half4 half4_0 = (-2.8347571604723596, -0.6478682054538307, -1.4196486538684496, -3.2306446396503086) half[] half_arr_0 = [1.8664661575060109, -0.3735016465868046, -4.58060953283843, 4.215078064992685] half2[] half2_arr_0 = [(-1.6994899334475058, 3.4013655653786383), (3.2065852117742466, -2.5320573191375937), (-4.780246916669277, 3.064669735456029), (-3.3115599496057833, 2.876813921208954)] half3[] half3_arr_0 = [(-2.0726543909575468, -3.491909395298599, -2.6385491708339757), (-1.4419051138844532, 2.3549971545471386, -0.952886392351556), (-2.3016024527457413, -0.07686846372330436, -1.0740675021123947), (-1.8923580251379302, 4.00541657866744, 0.5044845095960433)] half4[] half4_arr_0 = [(-1.7055731412172745, 4.685381870202809, 4.245259481865659, 0.8614585305648959), (2.2008445510849377, 1.8132475670906958, -1.4664436755663903, 4.1636156937516), (3.99453536816357, -1.6934153552192068, 2.4739491060435856, -4.909078733255514), (3.1635911055844197, 0.6486934539799964, 4.523067127509503, -1.3680692545182547)] int int_0 = 4 int2 int2_0 = (0, 0) int3 int3_0 = (3, 2, -4) int4 int4_0 = (-1, 1, 3, -3) int[] int_arr_0 = [-3, 3, -3, 4] int2[] int2_arr_0 = [(4, -4), (4, 4), (1, 4), (-3, 3)] int3[] int3_arr_0 = [(2, -2, -5), (-1, 0, -5), (0, -2, -5), (-4, -4, 0)] int4[] int4_arr_0 = [(1, 4, -2, 0), (-5, 0, 3, -3), (-3, 2, -3, -3), (4, 4, -4, 4)] int64 int64_0 = 2 int64[] int64_arr_0 = [-4, -1, -5, -2] matrix2d matrixd2_0 = ((-1.45019705562727, 4.0184133216839495), (2.564677019106462, 1.7231767855393034)) matrix3d matrixd3_0 = ((-3.766343740657966, -1.4921563102798818, -3.229131221490852), (1.160138300848896, 1.5343435776978147, -4.8635344711837725), (-0.43524147639008337, 0.5405265648671618, 3.7166299443578357)) matrix4d matrixd4_0 = ((-1.2331360326937544, -3.431394402353912, 0.48280311345881266, -3.5311632483781685), (-3.253857211818878, 4.20869485728258, 1.4012003451464352, -2.5741858822737917), (3.7889628063246956, 1.2471582985125842, 4.455993400800832, -0.17083205591292394), (3.879008339780402, 1.7844380734938605, -4.558314440665724, -2.5970950994140085)) matrix2d[] matrixd2_arr_0 = [((0.33348272743729446, -4.2695175759645085), (-0.9224151398160387, 1.586814548864428)), ((4.660506851714608, -0.6845887828093531), (-0.639646631058647, -0.2886602743149336)), ((-2.7496650877343622, -1.051623579855657), (1.4526472599195719, -1.0294079094813746)), ((0.8137574843330437, 3.355822879997545), (4.97967573075557, 3.850396836294676))] matrix3d[] matrixd3_arr_0 = [((2.5343067984212366, -3.043069997643034, 4.573376868488813), (-3.2310219315099364, 0.8368117604159693, -2.0395739093338348), (1.3442302526133147, -2.0888958460513454, -0.6878664318545971)), ((1.8222254820575507, -2.3093124944595713, 2.2787588244806827), (-1.5312232722220798, -3.678439027793785, 1.1312871692302595), (-3.342419711409076, -0.6942255365329846, -1.0160258812070397)), ((-4.2383115260381485, 2.1076983740207265, 1.8082356510926045), (2.7779500503411816, 0.44913140879645397, 0.5391677572057212), (-3.307669970917091, -2.925361010099088, -2.7175050951747224)), ((0.2530352872279362, 3.189825824874795, -1.4302588328824752), (3.8187198805325195, 2.358782685401996, 2.164471432061884), (-1.64827870695348, -3.815225079464782, 4.627904811064049))] matrix4d[] matrixd4_arr_0 = [((0.06795122276368559, -0.44475197500690644, -0.20056727379538675, -3.9819419183811666), (3.331600837968306, -0.09720038244186391, 1.4498755629428342, -0.2732124726990648), (-3.189816234277887, 0.4100058499218662, -3.404602609391987, 3.5217925614758343), (3.3160402563814486, -3.5636122184305687, -4.311560469685674, -4.315080830595502)), ((-1.0675597514122535, 4.530414373426318, 0.5614041605771636, -2.344734260269111), (-2.703511728758212, -3.8912680524070797, -3.5892878950042393, 3.11863266633069), (-3.6136653528781757, 3.6406155717900752, 3.2299807418544404, -3.631911979131779), (0.587247699387591, -4.929447320620451, 3.620361343350499, 0.5827712043961419)), ((2.5534039439054386, -0.0965467308374155, 1.9042199929836778, 4.312391241860542), (0.5954581012785827, 3.747054769100579, -1.569545576528788, -4.0246745433107805), (-4.948553573959391, -2.733497210015279, 3.3858683693586453, -1.885045373852786), (-2.7538385235539034, -0.04369576611629622, 4.469041224934578, 0.08978448260699956)), ((-1.591283374155612, -4.224982089939294, 0.7366693334499885, -2.737430204528144), (-1.3250087228736196, -1.1883763327649435, 2.58184337209737, -2.683711552031135), (4.358922257968159, 2.4238806796255465, -0.18880459219180956, 3.804744912800885), (-1.4083201972470736, -1.156601264147723, -3.706308690372675, 2.7855609446361527))] normal3d normald3_0 = (-4.633152981516693, 3.7003568278093617, 3.0516436815526387) normal3d[] normald3_arr_0 = [(2.8704659602126084, 3.0185562202455642, 4.611344660741372), (3.8766712516427067, 1.820845367745056, 0.20912022796594787), (2.2392702347078544, -3.167964106857001, 4.230845312981147), (2.1257657446946396, 0.9448555546026194, -0.659582827080162)] normal3f normalf3_0 = (1.8544705355276312, -3.367887186062468, 0.5736847105054466) normal3f[] normalf3_arr_0 = [(-3.5341521188785006, 2.5415427322161763, 2.5164301064439254), (4.538452397018828, -1.059439931011903, -0.3612099060599405), (0.40595741644650474, 3.921233964553201, 2.0421651785525015), (-4.787218763966997, -2.9267731243693627, 3.5389484772337294)] normal3h normalh3_0 = (0.12649121638476046, -3.466205115187776, -2.4160705424707016) normal3h[] normalh3_arr_0 = [(-1.6022703626523538, 3.241428031789603, -2.3611779558964727), (-4.110228267013314, -3.4521481159674994, 1.269454552544671), (0.6356265012204609, -4.367016780732671, 4.9304916357483), (-0.20559367278968477, -1.8056279878667434, 2.2916240149859153)] point3d pointd3_0 = (-1.5595705065302878, 4.951519973525604, 1.1345573187798506) point3d[] pointd3_arr_0 = [(0.8620034253792195, -0.14727584759450796, 0.20225858991120926), (2.8189730810665807, -1.5267920421946144, 0.5778941390170358), (2.073902727437412, 4.955554543226288, 1.9368419545413742), (4.618711712222828, -1.0096733867075134, 1.0878099276410147)] point3f pointf3_0 = (0.12710500915889789, -1.5365579079786027, -0.5091040515222804) point3f[] pointf3_arr_0 = [(-3.25865445311614, -2.589600337421584, -0.6304370855069745), (1.9873293702849972, -4.686550645313764, 3.35497550727583), (1.3843337331459562, -2.307064378546646, 3.7086721491694217), (1.6120921308631875, -1.8307571874776771, 0.4784599433460679)] point3h pointh3_0 = (4.041434759548311, 4.6029784856490075, -4.848059200233491) point3h[] pointh3_arr_0 = [(-0.29278727640329816, 4.367888564384515, -4.416449430269579), (2.0916930501846522, 3.5410609486873454, -1.427000820453228), (-2.5078280157483834, -2.786915093740144, -1.9916082330890292), (-3.5470200936287446, 0.5167798685226774, -2.496004958140148)] quatd quatd4_0 = (0.33218022630599897, -0.06817660458118713, -3.7322855103161325, -4.140388478874495) quatd[] quatd4_arr_0 = [(-0.8754757811888316, -1.5470673395814503, -1.0370486037243767, 2.2619578299399574), (3.925262075815482, -3.4228497306979078, -2.5732942118667324, -2.901030938476051), (-4.546540099262733, 3.5420057962581666, 0.11275543340352723, -4.329652213072595), (-0.5374473892906249, -0.49389208032640397, 2.779559559896053, 2.6139744864033974)] quatf quatf4_0 = (-2.836151028785312, 0.14371351654905862, 0.09657018931696548, 3.0772549359026673) quatf[] quatf4_arr_0 = [(-0.4379198769958803, 1.5053195153716832, -4.47842905003893, 2.2950867708268907), (4.682327751591194, -0.41182430897844213, -4.312277062365519, -2.9874361606546005), (-3.9678596067665284, -2.4364633873851993, 2.9390710550006656, -4.989505646715983), (3.7357933235602676, 4.39547150551736, -3.149969159204251, -3.26413565075291)] quath quath4_0 = (3.612100871405886, 4.059345200862648, -4.458421659757619, 3.9741277400017267) quath[] quath4_arr_0 = [(1.1912550918061129, 2.1442898408668176, -1.60872958812732, -3.618252328327097), (4.790009780231678, 1.5702211668360553, -2.2561245049501597, 4.770835524890504), (1.0896993363485086, -1.69414913135956, 3.9581300054462396, -4.22099571983082), (3.0415366407220734, -3.40420984491391, -3.9232555395044333, -2.4105593145693693)] texCoord2d texcoordd2_0 = (3.1979844823807717, -4.149222247086231) texCoord3d texcoordd3_0 = (-0.8757898274844154, 4.196104400046069, -4.72389317697525) texCoord2d[] texcoordd2_arr_0 = [(4.5571452255059945, 4.850591312821615), (-4.452215005256458, 3.368294570273749), (3.783725093483909, -3.5459474056536355), (4.4142949508076, -3.7288614627539065)] texCoord3d[] texcoordd3_arr_0 = [(0.07302762080599123, 4.382972940439453, -3.8548297469861357), (-1.6778059298973655, 2.4034529045623776, -1.7668008180291137), (-3.5463925204973687, 0.783607643176687, -4.374260076423246), (-1.2698317909906978, -2.461312603126201, -1.6818763552385887)] texCoord2f texcoordf2_0 = (-0.9787459975872279, 3.1491247802360576) texCoord3f texcoordf3_0 = (2.772036679251233, -4.624065702765928, -1.1612371517977116) texCoord2f[] texcoordf2_arr_0 = [(-0.6478992278437987, 1.190023142389542), (0.4574840533949249, 0.1868221542096462), (-3.883490638841577, -4.597407164431737), (-1.4130380720087454, 4.42484888179278)] texCoord3f[] texcoordf3_arr_0 = [(2.387786394375336, 0.25918898422267045, 4.978655049817808), (-3.351094586171408, -1.1473006237042451, -2.1221642430908916), (3.786973176916403, -0.16304238043511088, 4.136495815761021), (2.071900029051184, 4.988061683109192, 0.9977901597238779)] texCoord2h texcoordh2_0 = (0.5039189884793398, 0.36523019557099623) texCoord3h texcoordh3_0 = (1.9182889298738273, 1.003242608751183, 1.0523292607868964) texCoord2h[] texcoordh2_arr_0 = [(-1.4605136331878699, -0.9328709307816121), (2.3086982235861573, -4.566727340810726), (4.565935894623465, 1.0391752296141927), (-3.364453625164796, 0.572187636668521)] texCoord3h[] texcoordh3_arr_0 = [(-1.9112105259331602, 3.9908216457715167, 3.527504497478022), (-0.18284996040344836, -2.796171982135718, 1.763951785092713), (2.2618924141062315, 4.955062640731494, 2.9037816545478066), (-4.087531379898569, 4.899408446068302, 3.5451281562529235)] timecode timecode_0 = -3.699025520985785 timecode[] timecode_arr_0 = [-1.9651090245493763, 2.3442174208321065, -2.2868899103673987, -4.215623949739972] token token_0 = "token1" token[] token_arr_0 = ["token8", "token6", "token8", "token8"] matrix4d transform4_0 = ((-0.1503329322821667, -4.589357264092503, -1.812536124171431, -2.8001165636025647), (-3.2559294658433116, -1.833943526136629, 3.812167677476193, -2.6855734034909826), (1.4915882525845134, 2.3399818148718534, 1.7528058370569708, -3.112545378477638), (-1.5019927553725596, -2.2784296160470463, 0.38646329854670647, 4.690351581776422)) matrix4d[] transform4_arr_0 = [((-0.8413878671724682, -0.312881603580216, -1.085737869902724, -4.122746505024305), (0.3530512304689246, -3.783957696950544, 1.73488620419538, 2.494181741285856), (-3.320709613540649, -2.9848830228291714, -2.592888765399357, 0.9851011915491483), (-0.9350741602731691, 3.8753030321422095, 0.4796716729268127, 0.25636272122798864)), ((-2.81506110043926, -4.091427460948753, 4.247099895721538, -4.003610125690429), (-3.6977497783456306, -3.0469163842322744, 0.7682636767472841, 1.390334414021483), (-0.6836349814566143, -1.0510241341049795, 1.410272860001994, -2.3790554946173104), (3.0045044773324214, 1.4004973046706422, 1.0286262473970265, -4.71123394736706)), ((-1.5462570652154595, 2.6885979464951575, -2.9409235937852065, 1.4449417616922187), (4.747197195708541, -0.594595207628414, 0.1794726164718563, -2.879598675245525), (-4.929832358408824, -2.6339886744513166, -0.2816003492915158, 1.0427136924911284), (3.3592942840573627, -2.0998114800316947, -1.709555556028024, 2.206486384349531)), ((1.642812631821072, 2.1452249808206982, 3.7728476279121264, -4.113186924585501), (-3.7551362196633784, -0.03657472352915292, 1.1260459289969047, 1.540715179469995), (-2.6990250601461065, -3.6390401863040256, 4.214358618820164, -2.5992914395875033), (-4.8217176284700445, -2.170874614717293, 0.1719992492038802, 1.3335402585683722))] uchar uchar_0 = 9 uchar[] uchar_arr_0 = [3, 7, 8, 1] uint uint_0 = 2 uint[] uint_arr_0 = [4, 6, 3, 8] uint64 uint64_0 = 7 uint64[] uint64_arr_0 = [6, 0, 0, 8] vector3d vectord3_0 = (2.5308604790074565, -0.4766528422472156, -3.01603397408417) vector3d[] vectord3_arr_0 = [(-3.967460766081886, -3.928615500805528, 2.2471735781225943), (-1.875304241122823, -3.8496194406583584, 2.7818116025059245), (3.8881956854852717, -3.9764315974147424, 1.165138355544916), (2.404883582959025, -2.5416535197905024, 3.3666887962269545)] vector3f vectorf3_0 = (1.0247371519882869, -2.1670937279751246, 0.13115579738026995) vector3f[] vectorf3_arr_0 = [(-2.271846996590371, -3.3619159321110423, 3.7904201613545947), (4.000828077068476, -1.7643561480433623, -4.76776358691498), (-0.2573243065253372, 2.883794526868381, 2.0295653705534678), (1.7560371940728272, -4.789851309193884, -3.9808437631067073)] vector3h vectorh3_0 = (-0.22824490685452403, 2.437017287517338, 2.392411970693379) vector3h[] vectorh3_arr_0 = [(2.039576360123415, 2.0153351339363024, -4.357965589877921), (-4.611115970755076, -1.5386739090893196, 1.4335573771978094), (-1.1903369589449908, 1.4498971920879313, 2.615127462176704), (2.713775950089601, -2.1681667503188606, 4.717371717135773)] } def Xform "in_1" { bool bool_0 = true bool[] bool_arr_0 = ['false', 'false', 'true', 'true'] color3d colord3_0 = (3.102172359965895, 4.021659504395828, -1.8985243068066735) color4d colord4_0 = (4.130110532378982, 4.666063677707587, -0.22990223447282965, 3.6530992777164) color3d[] colord3_arr_0 = [(-2.6138407138477984, 4.675402502901434, 3.0317946927987), (-0.5203042856442961, -4.195541814474646, -1.7994539532745426), (0.0794064252057396, 4.3283382422690675, -3.909421540688963), (0.5126724609055122, 2.0656140986688962, 0.4744091132842376)] color4d[] colord4_arr_0 = [(3.950389674266752, 0.898011835311598, 4.497648732321206, 0.796950107456059), (-0.49436893368844803, 1.6024537862238901, 4.962578393535727, 4.169412179474561), (2.9332508413022413, -4.176270118033526, 1.1278310504071225, -0.13555798030833177), (1.301473404114728, 3.450775756715153, -2.5696437793814377, 2.3148922079084775)] color3f colorf3_0 = (4.805166506472688, -4.636079623885142, -4.7836349014497594) color4f colorf4_0 = (-0.7438116803318282, -3.9849978062583027, -2.4008011020716804, -2.7917072868368265) color3f[] colorf3_arr_0 = [(1.7620178429937825, 3.4542459370161644, -1.5768745892141602), (-2.4931266071488833, 0.9679139346941099, -0.5768596630092109), (-3.251805155485589, -0.2837458490371203, -0.9009460434244545), (0.6911273952428019, 0.08600130062633138, -1.8855399899979322)] color4f[] colorf4_arr_0 = [(0.6815142091019188, -0.855936033163557, -0.9773292488092045, 2.0182962393367543), (-0.8177344670753399, 1.621958889738174, -4.532203140432017, -0.5464781028117018), (-2.4077307655277727, -3.4231342787768915, 0.2757313016761467, -0.12734398930967927), (0.614049256144269, 2.554847672586825, 3.8387515424870085, -0.054173296247132185)] color3h colorh3_0 = (-4.022156581993407, -3.8109610521525417, 1.4926542489615358) color4h colorh4_0 = (-2.252861565807379, -0.47021815182085724, 2.9234153118565223, 3.613599036372362) color3h[] colorh3_arr_0 = [(1.5536186467472959, 2.1235765251624175, 4.027101506193308), (1.4014119979322412, -1.27550737027744, 0.3792878373182056), (-2.9215589630917527, 0.8712550469514344, -4.911029179509212), (-3.489768261360122, -1.6659161197013361, 2.896231589257826)] color4h[] colorh4_arr_0 = [(-1.9809688378064405, 2.347509912186152, 3.943997782145745, 4.196888444316102), (1.2674204680686731, -1.2442865367145473, 4.7456052147969405, 1.3887851750047329), (-4.34165322722699, -4.153304308798889, 2.49869571783086, -4.3884384345403395), (-4.9214899466874815, -1.0619204821829054, 0.19003728701329248, -0.5145571440344545)] double double_0 = -1.0204639839768657 double2 double2_0 = (-2.8410563153464286, -3.536455101919943) double3 double3_0 = (4.829892105452821, -3.5159798291397015, -0.9409311683205113) double4 double4_0 = (1.7006815131529418, -2.980086912005464, 1.0977061041678038, -2.8122690312784426) double[] double_arr_0 = [3.4233332707736714, 0.8294818024622153, 2.181316517768294, 3.0705537997507584] double2[] double2_arr_0 = [(4.685982716927072, 0.04999692605678341), (4.010904768840049, 0.024285989524274854), (0.7387247749154922, 1.7857135678935911), (3.051099890321371, 2.5784638226138252)] double3[] double3_arr_0 = [(4.429470213131632, -1.9719512185096635, -0.9192683261513928), (3.100375338172869, -4.377412411287769, 1.4098486256245026), (-3.7267918706721295, -2.129116600047748, 3.2994068662840608), (-4.444729541103386, -4.640661665698111, -0.8213395520370543)] double4[] double4_arr_0 = [(1.2203744274665693, 2.885664913738635, -3.728908750528912, 4.117833181295222), (2.99341211421814, 4.1688740809100935, 3.7253472177346687, 1.81006446357057), (3.1025084943735894, 0.1900730923140177, 2.854891493606652, -3.1087253214281496), (2.8211410635729415, -0.5542039594365935, 2.5661622129736505, -0.4452976318781223)] float float_0 = -3.86555104362291 float2 float2_0 = (4.357547693309531, -0.8435880345908684) float3 float3_0 = (1.8641810429855807, -4.698657654477301, 4.192823534016137) float4 float4_0 = (-4.9003575868703395, 4.743235128409678, 3.190066990688628, -4.294823885218126) float[] float_arr_0 = [-4.7534998556384425, 1.0484823758053103, 3.5917560861920883, -3.130082975771422] float2[] float2_arr_0 = [(4.929517886102872, -3.9741956045308804), (0.8084938159408042, -3.4359693991699123), (3.9767531415020567, 4.4567839149561514), (3.0439029800010786, -1.841085813318756)] float3[] float3_arr_0 = [(-0.9137377881685191, -0.8277452020379492, 2.28180504599678), (-1.793289971254961, -2.96009724053766, -2.066883448336949), (-0.29112457550641313, 4.502683295716212, 2.965170227633064), (-2.2302975422025675, 0.5818158839304637, 1.8820030356853321)] float4[] float4_arr_0 = [(-2.1991161531161074, 4.840151371182454, -3.7916838921548135, 3.8371801874405644), (-4.594528749566287, -2.4342418165185595, 0.2610190876246845, 0.8161618344459463), (-1.0376501497190782, -3.9796827177292893, -2.473919141752867, -2.1660349613951135), (2.5522285455873153, 4.08774325222007, 0.9540991548641937, -4.645490343089725)] frame4d frame4_0 = ((-1.8175982316792205, 1.5205448089854832, -4.397778925002981, -1.998148475377901), (2.4520969015004574, -4.475941219379363, 1.2114219528223522, -4.744532007321615), (-0.28471131690099494, 3.8854504371347645, -4.898899060023961, 0.2682802065392291), (-4.33543170341137, 3.6710977614948828, 1.862965222396646, 2.419538566814291)) frame4d[] frame4_arr_0 = [((-2.904086718712163, 0.24514603210592334, -3.122149643503811, -2.983784135335903), (1.726678813176303, 2.3560265676171586, -1.8776790412589506, 3.599943994333726), (-2.453608253442894, -1.5605962371844284, 2.1248039036960895, -4.554970986707904), (4.34183460116191, -4.2766226821237465, -0.3906894106193981, 2.246048259600892)), ((-4.525314650152019, 3.0900268563717734, 4.788933433114138, -0.3948832720437201), (-3.818763637124319, -4.1852300434452, -4.012695638368648, 2.6544137413647526), (-0.859871515314814, 4.192341581990311, -0.593602239135155, -4.228566898553919), (-0.7306441248199933, 2.5482789342555643, 3.2933842684679497, -4.606483134708082)), ((-3.196106087436662, -0.09986547976355986, -3.719145220483914, 3.7109264194217335), (4.344608884461488, -1.804030016461824, -0.6515631744797998, 0.570540644200566), (-2.1449420891641093, 0.4107569745956141, -2.988149545262162, -2.0335874872308715), (-0.5821636681232256, 1.0466990219114303, 0.36165026086243124, -2.390120232660605)), ((-2.682121245819448, -3.8126976329928897, 2.834936358921726, -4.010992335336195), (2.328850061793606, -2.512263043369003, -2.1544301599421747, 2.360834330107994), (1.596207917216363, 2.419215555155583, 0.15283058794361448, 3.590958196652707), (-3.7820610862452844, 1.4519696140650513, -3.81755687511344, 2.3728336814542814))] half half_0 = 1.7158484579870246 half2 half2_0 = (2.323138239267305, -3.487837884320352) half3 half3_0 = (1.5387687330445559, -4.334549023139712, -4.375942323734723) half4 half4_0 = (-1.7118681424808333, 4.8679581869604664, 2.4730900979511947, -1.173317208168415) half[] half_arr_0 = [-0.9106619690393387, -1.0970113298806838, -4.96889885510845, -3.617727859180869] half2[] half2_arr_0 = [(1.8365922988510706, -3.3168523968910577), (-4.215113563300873, 4.27649429922289), (0.9787839728339351, 1.2051017305651097), (-0.4248819716194632, -3.499290226777114)] half3[] half3_arr_0 = [(4.773275109747672, 2.7291240939343817, 0.7049929761957694), (-2.37553410723136, 1.8684365628883874, -0.4408228103022829), (2.2138771504175336, -0.9622119108893843, -0.039949636820524326), (-4.793162325542443, 2.3995850232005296, -4.657264556443693)] half4[] half4_arr_0 = [(1.2571307490337071, -1.7699756849662132, 2.8278538140399965, 1.007029967830003), (4.874710229786892, -4.9898720690354645, -3.592412578418646, -4.563986179091866), (-3.741521511871655, 4.293852970698307, 4.486082995058949, -0.19587465301856266), (4.466893945947962, 3.1838761018839907, 2.786177341461099, 2.472819508031961)] int int_0 = 2 int2 int2_0 = (4, -4) int3 int3_0 = (1, 4, 0) int4 int4_0 = (-5, 0, 4, 1) int[] int_arr_0 = [4, -5, -1, 2] int2[] int2_arr_0 = [(2, 1), (-5, -5), (-5, -3), (2, -2)] int3[] int3_arr_0 = [(-5, 4, 3), (4, -2, 4), (4, 2, -3), (1, 0, -1)] int4[] int4_arr_0 = [(0, -5, 0, 1), (-5, 2, 3, -5), (1, -1, -3, -1), (-4, -2, 1, -1)] int64 int64_0 = -5 int64[] int64_arr_0 = [-2, -5, 2, 2] matrix2d matrixd2_0 = ((0.6273573524573441, 3.037655387344799), (-0.8777330681185225, -4.693114202191752)) matrix3d matrixd3_0 = ((-0.03968689765538436, -4.195495630951477, -4.482761209039862), (3.6210908295164366, 2.9072940933491207, 3.5844793115161124), (-2.37757332415904, 1.479973607947307, -4.042819527044902)) matrix4d matrixd4_0 = ((-2.184235950665989, -3.2998331661355076, -2.6181304937539873, -2.739598515359958), (3.783437492009087, -0.37101206456970903, 3.7651183132365915, -3.620021165422347), (0.6491848655610832, -4.8653232185437645, 4.303014098379872, -4.9436288560226505), (-1.1009235144803609, 3.015859586891702, 4.998815592294843, -4.804902596386813)) matrix2d[] matrixd2_arr_0 = [((-1.2820337308689913, -4.782728656825924), (1.1160459950264334, -0.2544929178989257)), ((-2.629828879514199, -4.596959008949507), (-1.7842976102729868, 2.9807131283563093)), ((4.641190068878396, -3.9333986092752227), (3.7763941178144975, -4.512823287829218)), ((2.134758188756509, -4.732042866368275), (-0.7895031771807037, 3.702308384812625))] matrix3d[] matrixd3_arr_0 = [((3.5461063562401822, -0.9113200922742042, 3.63218190236155), (3.992171150320745, -1.5752637663501332, 0.015614924470503944), (-1.68210159740363, 1.9515751409963134, 4.121673135171752)), ((4.8454410388916145, 2.437790748140129, -1.947576460649337), (3.8049329008775885, 4.926196290445818, -1.5347383625607893), (4.4871235244924765, 0.11546405450690678, 4.646354422725825)), ((4.958559900991514, 3.129420958288966, 1.8343704918935098), (-3.459855307068959, -4.9508271676680415, 0.9547085042336096), (2.0445990548305364, 4.3553804517901025, 0.17119900187953707)), ((1.9684660270275387, 1.4735597147100172, -2.9507987502376833), (1.4430009278008011, 4.817212113250202, -3.8881504336983506), (1.885432431989881, 1.143051174926554, -1.2414527620839322))] matrix4d[] matrixd4_arr_0 = [((-0.9880734715566808, 0.0025302818902197544, -0.2903133460396905, 1.5618181757107719), (-1.260615689146558, 4.158613261487421, -0.6807774098655699, -1.4078602215126477), (-0.9912194484975956, 2.6629572148896354, 4.930565899841893, 3.665146463013338), (-0.2027250153125193, -2.0864065646657703, -0.5401294563512407, -1.559844469064359)), ((-2.5646794778613904, -3.130590846415504, 4.558757345236511, -0.006948096402220827), (-3.9002512632976982, -1.1609338987387083, -1.1128308277712429, 0.13534526987193285), (4.800413246136939, 4.7663349657404765, 0.6589411071314819, 1.1809152529131905), (1.7562907486623676, 0.022221826851781756, -0.1332194184767852, -1.8547606082321586)), ((1.8392173947126613, -4.081047216671253, -1.8285475377538507, 3.9097855947761335), (-2.7262184902454756, 4.675823780249894, 4.841697219657126, 0.7538266309623616), (-4.59564019691178, -4.065218026678067, -2.9969836231000757, -1.7318843172064735), (-3.868917883871256, 2.9721077307051837, -1.3584542998475935, -2.662663016253277)), ((-4.563061296336918, -1.1732814062701946, -4.954932694907777, -3.835085494704127), (1.0464551006167255, 4.349454113281105, -3.0063407807376707, 2.4106120665438793), (-3.0229447895462758, -4.985048061592826, 3.9653804616180235, 3.4610873770120687), (-4.332212840249255, -3.2286471183613052, -2.6569907198138756, 4.283213646369056))] normal3d normald3_0 = (2.6574827656176367, -0.31399232221403395, 1.777807041081183) normal3d[] normald3_arr_0 = [(1.3354158914636605, 1.1767872790578258, 3.9885412650706726), (0.7073631084566125, -2.8662284763109858, -0.5862063890019833), (-2.570314892548474, 4.049501687583959, 3.435258143967946), (0.5581911452934474, -3.0360843240831503, -4.56457986963803)] normal3f normalf3_0 = (-1.4346603514622238, -0.6185368157313942, -0.6110114611667328) normal3f[] normalf3_arr_0 = [(0.8547381736048818, 3.739084660315621, -0.8860086246696195), (-2.895321128265671, -4.958592730709295, 4.960509588477288), (-3.6361846677333376, 1.4296876569411756, -0.10291089798272512), (-1.198506091243413, 0.3720215012166852, -4.217164396878599)] normal3h normalh3_0 = (0.9351729189718458, -2.2154283614433345, 3.384210763946543) normal3h[] normalh3_arr_0 = [(-4.757081410542282, -0.6575085515413388, 1.6441383909952503), (4.621362249074849, 2.6163777814612432, 3.851592096024911), (-3.810940928347489, -0.7022939437717088, -4.682095748981794), (-2.2800580215330433, -1.1570313486881911, -1.561789192882955)] point3d pointd3_0 = (-0.8234630558411311, 2.9065672127778743, -4.3233529290912065) point3d[] pointd3_arr_0 = [(2.452948573156023, -1.515840503725292, -2.3082506119639454), (4.728331110968115, -1.5146602709710733, 4.999026771431975), (3.522709846555646, -2.8393188516996846, 3.282192223797381), (4.836271265779761, -2.2317977576629877, 1.6445441377301204)] point3f pointf3_0 = (-0.8538211507552029, 0.3190190964552775, -0.9082416353592162) point3f[] pointf3_arr_0 = [(4.792375585990726, -4.515670330578247, 2.0846201664814874), (3.4941361016273813, 1.9231684890840262, -3.5998158708533756), (0.9714960348671484, 2.8595524570803397, -0.8140408783498376), (0.8242827821850671, -2.465320456713177, -1.872514492979127)] point3h pointh3_0 = (2.538941306037737, 0.2548403601277336, -3.754399230529698) point3h[] pointh3_arr_0 = [(-4.727484644856338, -2.6736656677581405, 3.2063210548289263), (-0.826297780480445, 3.8353625465355883, 4.436156314376301), (-2.566516715417897, 0.5997245109692386, 3.8106690968028456), (0.8142033726877296, -3.319997135923277, -2.5204675254214393)] quatd quatd4_0 = (-4.88347203291039, 3.2503613005434957, -4.182583316374765, 4.615653287386671) quatd[] quatd4_arr_0 = [(-3.655110105885404, 1.2687561571699195, 0.09686293372173793, -4.865082234265979), (-3.5226417071222818, 1.6684842376395643, -1.3297419376899846, 4.636853955488903), (0.01750362229774094, 1.8828316966822847, -3.66382360290721, -0.20551541396130446), (2.3412147116094673, 3.334816757993984, -3.0039257102784136, -1.0309327885972586)] quatf quatf4_0 = (0.17383372460212243, 4.000524694601582, 2.77602835828604, 0.06315811248085534) quatf[] quatf4_arr_0 = [(4.657629628575435, -1.3961984508188232, 3.117763047492076, -4.909893224053118), (4.9079157901306285, -4.835097937237399, 1.0757059541697611, 4.284503546914316), (3.312608589988235, -1.8959744302695736, 3.220804127762994, -1.0695236307971578), (-0.0019358293459603715, -1.367219995093337, -1.452819325937964, 0.8207522654485881)] quath quath4_0 = (-4.686493527413762, 1.4764294511265517, 4.308321784104978, 0.02463423350588556) quath[] quath4_arr_0 = [(2.1482554379522902, 1.0800829863392902, -0.7872162259413127, -3.4095380747707615), (4.237518639799774, 2.6628517453673064, 1.8626662833154235, 3.1290906621664067), (2.742452605631767, -3.8757498871888227, 2.733542182403604, 3.3872543413955984), (2.4675586047502227, -0.17722723676215502, 1.8644564396862613, -3.999923863666063)] texCoord2d texcoordd2_0 = (-1.079596605606178, 0.7920578680563501) texCoord3d texcoordd3_0 = (0.9908237890911211, -1.0060625424618683, 0.602684671516923) texCoord2d[] texcoordd2_arr_0 = [(-2.92685921575481, 4.555467156198219), (3.3078315920593173, 0.7655118755700352), (-2.121916691372421, -2.4728451511536544), (-0.9686146911497904, -4.910065020254757)] texCoord3d[] texcoordd3_arr_0 = [(-0.14817778240730295, 0.35702448535309017, -4.156425440246555), (-1.8447188706132267, -1.1630325930904153, -0.9669559790038216), (-0.19964646165947375, -0.7412797571233654, -4.259724176939539), (-2.8067541760412453, 1.4428603201814898, 3.2876401301090485)] texCoord2f texcoordf2_0 = (2.439320286339112, 4.047439889784037) texCoord3f texcoordf3_0 = (4.771932092754975, -1.5773611670360745, 0.12322388640754234) texCoord2f[] texcoordf2_arr_0 = [(-3.2018244757569683, -2.307386138584826), (-0.16859034031831222, 4.142072042990311), (4.469743625751805, -4.986964254739494), (1.4789560265539778, -2.6384187747276755)] texCoord3f[] texcoordf3_arr_0 = [(4.761591529166639, -3.2659366271219525, -0.5831993881428241), (0.7839120423615871, 4.78295910581493, 0.6787982411272155), (3.652649809797756, 1.2850555884902848, 0.12401025217273443), (-1.0855861576476555, -1.3136595203740664, -2.0478196262852766)] texCoord2h texcoordh2_0 = (2.104710384938592, -3.8525974829735343) texCoord3h texcoordh3_0 = (2.0991168023758124, -4.112043563960633, -0.03266782278261804) texCoord2h[] texcoordh2_arr_0 = [(-4.190644379641527, 0.01473704634352302), (1.8863142644197488, -0.8022206415294324), (-1.8581868075953922, 1.7371410684833544), (4.352851860227156, 3.7363584113918726)] texCoord3h[] texcoordh3_arr_0 = [(0.8252393836579133, -1.6906885090694033, 2.3292770100150317), (0.9662130471038202, -4.042344175195023, 0.6351262506042428), (-4.798030701186544, 2.8869664740171475, 3.235857556247053), (2.301155053979844, -4.0852158653906665, 0.880937194102299)] timecode timecode_0 = -2.7168807940275053 timecode[] timecode_arr_0 = [3.9821264776151395, 1.6383930598911434, 4.740642901678283, -3.180029153907679] token token_0 = "token8" token[] token_arr_0 = ["token7", "token7", "token0", "token1"] matrix4d transform4_0 = ((-2.8212742294565896, 0.5237069273342048, -4.345233650863114, -1.2443283115479966), (4.541729509085174, 4.084773112215224, -4.047938621274534, 3.525258760040952), (2.1570639215592413, 4.179234572892788, -0.3918453943594935, -0.7744499101044466), (3.9615297118990203, 0.3615731146247523, 2.613674982733807, -3.2235789493423086)) matrix4d[] transform4_arr_0 = [((2.3920902369295094, -3.544112360793712, 0.07876160155743417, -1.7980585483108191), (2.2468351629066854, -1.4050576907640302, 3.1114336729678396, -3.0838037133045972), (4.947020060955987, 0.2143963200835044, -0.7615486792456032, 2.2565720779928258), (-1.2115467045634034, -4.645211909508436, -0.5912357511294815, -2.12205867249894)), ((1.6121164079801984, 0.26714572221262856, 3.3009811939569857, -0.10720876232362198), (-3.4465410869266377, -3.5139566752181883, 0.7262315921032068, -2.35126013002827), (-2.884007162096035, 4.417827141119313, -3.6070374070522115, 4.160704899499436), (0.3622753488880939, 4.369081942697894, 3.39033082413032, -2.0112170465250125)), ((-0.2980335374997569, -4.1471699861840685, -1.3332864904860586, 4.267272807547686), (-3.990003206262389, -2.5436275809686704, -4.57273579909592, 3.608282633918696), (1.835875869098313, 0.8934521739383747, -0.34347170431284724, -2.3995641814823996), (0.8584353519123669, 2.027155798859228, 2.929996503619103, -3.375258130014723)), ((1.2530358226576706, 1.7882579432778094, 0.8117375484209655, 2.2775421127418483), (0.17783635555643418, 4.546400643636819, 1.5018536845935548, 1.2804767670624972), (-4.868422357255665, -3.56458211638261, 1.010715341181541, 2.669116547094946), (-3.557418818461212, 1.3682857879607475, -3.4565362447327375, 2.632040441829881))] uchar uchar_0 = 1 uchar[] uchar_arr_0 = [0, 3, 6, 9] uint uint_0 = 7 uint[] uint_arr_0 = [4, 5, 9, 5] uint64 uint64_0 = 6 uint64[] uint64_arr_0 = [6, 3, 5, 5] vector3d vectord3_0 = (-1.2551394193224286, 1.6945459374411982, -0.3877592636996816) vector3d[] vectord3_arr_0 = [(1.8401241425090085, -0.5543020244260086, -3.342843766119996), (-2.4216721278254685, 3.2946815858989584, -3.321921718131222), (2.0463334643651008, 0.7094258090297316, 0.6071799530471234), (-4.836683276237533, -3.772987119820388, -1.9019543317806455)] vector3f vectorf3_0 = (-0.270981667273853, 3.529260885964339, 2.3749954601792123) vector3f[] vectorf3_arr_0 = [(2.2921590892643584, 3.1855114475810566, -3.177824676205583), (3.1638016096259083, 4.5128041282306945, 1.0163470604845664), (0.517201657063973, -4.670776464675045, -0.8605697086402593), (-0.3300460582923668, 4.534540837788567, -0.5913880938487246)] vector3h vectorh3_0 = (-4.97125057893369, 1.1665999364230935, 3.31782175336423) vector3h[] vectorh3_arr_0 = [(0.5379460752501313, 1.2790358390601355, 1.3520854181447595), (1.7334618035788338, -3.4599207044329185, 1.745798053184945), (-0.6846252889976645, 4.686896681404548, 2.141501748516327), (4.739901341063126, 4.910601583666134, 3.339999986429836)] } def Xform "out_0" { bool bool_0 = false bool[] bool_arr_0 = ['true', 'false', 'true', 'true'] color3d colord3_0 = (2.298317482601286, 3.9883828796799357, 1.8398393191544127) color4d colord4_0 = (-2.395076896080406, 3.0502782701302227, 0.4869930383558927, -4.8595829983598104) color3d[] colord3_arr_0 = [(3.14466863291336, 0.4028360697032394, 4.638385459738009), (1.0318562796138302, 0.8761706417543635, -0.5501097372448385), (0.9628686158310629, -1.1509885402733957, 0.7565101416488851), (-2.09670497597242, -3.1060867144564384, -3.132704717444449)] color4d[] colord4_arr_0 = [(-3.82865706791482, -2.795394631321715, 2.9458297171057595, -1.6746385078034454), (3.1591309653365958, -3.993924797839038, -3.5364151108769617, 1.976706401912388), (-4.547659321343876, 0.7386603678916694, 4.100160146990397, 0.34197968260723943), (1.8058913256225653, -4.733032053377948, 1.3499990991145827, 1.063384177542189)] color3f colorf3_0 = (4.610312802396111, -3.150280586025617, -3.761048355755683) color4f colorf4_0 = (1.4692571983532252, -1.4970603260346769, -3.1968209847031215, 0.03636505209887275) color3f[] colorf3_arr_0 = [(-1.4284831740973711, 3.3766117436897893, -2.4906733517786295), (0.6060021885352391, -4.8756368117068565, 2.4157437741066357), (-1.6408344552653942, -4.543035064315833, -2.1911683578165175), (-2.5986959217364602, 4.531293398277988, -1.4777443848449257)] color4f[] colorf4_arr_0 = [(-1.8794175358312701, -0.331077646474764, 3.090458573603623, 3.7501633148027107), (3.1241493236375906, -3.11998705949172, 4.994203594553303, 1.3308875991830043), (-4.165329498242707, 2.2555435546131246, 4.868214802051282, -0.9818317778745644), (1.7851500524196826, -1.8382286277865765, -2.864753379353039, 2.1732414331103724)] color3h colorh3_0 = (3.7365382390034227, -2.2001725667312746, 4.7851518677339815) color4h colorh4_0 = (-3.6657944579745094, 0.20865528414198842, 1.5078323814973729, -1.5294698540039855) color3h[] colorh3_arr_0 = [(2.1849942277153955, -1.6174402997332136, 1.2053810831655163), (-4.587970504937907, -3.3613945432442405, 4.819140701253055), (-2.1046914636413305, -1.0520801701170934, 0.4848429657251341), (-2.065929985426634, -0.21935330848979007, -2.602939163613761)] color4h[] colorh4_arr_0 = [(-0.11381195572847425, 0.8488870199327438, 1.7930256737212495, -0.7696192649257751), (-1.3166854366557414, 4.884590580992894, -2.3908346455374376, 2.7710015450850953), (-0.6877897536795583, -1.4147961799046103, -4.361420510561713, 3.6357894430204247), (2.0200414976193715, 4.030107075409271, -0.4838820731313227, 1.7692096681660354)] double double_0 = -2.927680265829171 double2 double2_0 = (-3.0202995644205775, -1.2196803568570247) double3 double3_0 = (1.7992948311000223, 3.776565829010952, -0.04594075088811245) double4 double4_0 = (-1.5977968494896801, 4.625664632546817, 3.9900803803100757, 3.1811838091779414) double[] double_arr_0 = [-4.336408689622147, -4.153568631669299, 3.6889531400437843, -4.605841706219712] double2[] double2_arr_0 = [(4.905325627055623, 2.469653891501328), (4.0578072335286635, -2.938951679344167), (0.3541630432858103, 0.9861426366746908), (3.2569661716035387, -0.17786436934083838)] double3[] double3_arr_0 = [(-0.08169040903736047, 3.633251831082008, 2.1718874634518945), (1.7354380859953462, -3.4862622760021322, 4.867059242186832), (-0.8885980371251865, 1.1177086432485996, -1.1331699446676424), (-4.529670841881596, -0.29110790951934806, -3.4863224610516372)] double4[] double4_arr_0 = [(2.895587282777832, -4.246604147814398, -4.553590945755875, 4.342895823715677), (-0.13834899251264865, 4.010713996489047, 4.447832518820702, 1.6651115245563357), (0.7179682609347458, -2.8402061589319083, -4.065237807009918, 3.193942150822732), (3.887720676319878, 2.7939571069488567, 1.9850243273162498, -0.7988888392517923)] float float_0 = -0.7402975192783696 float2 float2_0 = (-4.007890119019043, 2.738187324714434) float3 float3_0 = (4.6224248651041915, 2.2254277208883995, -4.214614603481962) float4 float4_0 = (3.9343509184786036, -2.9202195999598435, -2.9520920173065, 1.7375914552883405) float[] float_arr_0 = [-3.8760896416981594, -1.5555039266138913, 4.591715206073138, -3.6984230557131594] float2[] float2_arr_0 = [(-2.571613100420148, 2.5485841321903777), (-2.08940480854646, -0.802146221459247), (-4.537443230973587, -3.6776618956619345), (-4.794503793582233, -4.220788799064642)] float3[] float3_arr_0 = [(2.9565715568213227, -0.5383561605015244, -1.01223094870294), (2.6764074282127845, -0.6828350443588791, -2.520423311029949), (-0.4655296846935233, 4.371046462904561, -3.574325117813987), (-0.37564645472787905, 1.3730352436378146, -0.16712011731899779)] float4[] float4_arr_0 = [(2.9223647164171034, -1.9439606716008004, -1.6010959358375656, 0.3018543764541466), (-2.5095295242444493, 4.199780878573696, -3.364452416591871, -0.8516959949626726), (-2.1030805049279424, 0.19834102201614634, 0.7398180308237654, 1.2713968910484263), (0.3137580383797278, -0.8919549766440049, 1.3459401237646595, -0.9658712341318241)] frame4d frame4_0 = ((1.6900757994588798, -4.9357654630185435, -4.588221377421014, 1.2087680402204661), (4.996851255769114, 3.7314723909179293, 1.9968580672537097, 2.2709995434228976), (-2.733129773983376, 2.5161393413581203, -2.1207589513656244, -3.9453973297760703), (-0.3910510453324214, -1.6980422747038193, -3.31744601348821, -0.7829010748859533)) frame4d[] frame4_arr_0 = [((-1.410953385415473, 1.7488210437111, 2.0348391344128167, 1.6060845764105833), (-2.7844201967217352, 3.3179988638735374, -2.598639125765325, 0.18153297212112207), (1.7464575415335126, -2.6639682521524346, 1.2851172298393898, -2.131689520026714), (-3.286176239156131, 3.0974882852657704, 0.5312277007736039, -1.7211529339114398)), ((0.854309472055399, -4.747136025727117, -3.7017714323967277, -1.0441914830175691), (4.7575657946441225, 0.1047451787612319, -4.235437949331048, 2.6504061524945666), (2.814438709253152, 2.748021743948562, 0.6949803804795387, 1.9569873786946266), (-2.8654206368836865, 2.325605908939883, 3.1617398734159448, 2.599665402219192)), ((-1.4653759741411299, 0.9102805057570862, 1.2898935748983877, 4.008098536570838), (-3.9198610472666653, 3.3393377085040843, 0.2643555846903922, -1.413858794480627), (-0.44397098506247623, -4.873645010692612, -2.7992640766857235, 1.5276342006800494), (1.6084927975444892, -0.0530105971368684, 4.533258805973196, -0.19084911450528796)), ((-1.8605634045433952, 3.4778083919564136, -2.4084170060273804, 1.043059930343495), (2.0341885232229995, 3.216962986917842, 2.8536875018274888, -1.159076694862887), (-4.408196940372631, -4.617121345165573, 2.2646038790845946, 4.616913814068509), (-1.568346257287061, -0.588049019244858, 2.257980157417766, 1.5783124585387984))] half half_0 = -1.9509758042561618 half2 half2_0 = (-4.780127891070612, 1.2782995448502188) half3 half3_0 = (4.720932443736167, -0.7734710621945018, 3.924289339928592) half4 half4_0 = (-0.9071556560006844, -2.3625909884493366, 0.31336678598825074, 2.3563691214194655) half[] half_arr_0 = [3.6885341750067866, 0.13934596181302972, 2.324348442226767, -3.5183211356664144] half2[] half2_arr_0 = [(1.0196991294658773, -2.475271199624963), (3.058946560175414, 2.327189548054161), (-4.727328149544883, 4.324230096450348), (-4.636839516733219, -4.103806811692926)] half3[] half3_arr_0 = [(1.8072538584763969, 0.8200369553796216, 2.7591761148812664), (-2.1022240076258436, 1.8611081512332985, -2.929020243689618), (0.292720013578311, -1.5971962074881985, 4.784545513570128), (4.718665573793185, -2.910302645266399, 0.6603823588582935)] half4[] half4_arr_0 = [(-3.1234541483040115, 0.48877261102780345, -0.761207693911552, 4.49788047597888), (-3.2616646193318353, -3.301411564403254, 1.5886175363801494, -3.425982104265172), (-3.8994632704813927, 0.03923197330006545, 2.9666097122000803, 1.0504567164703262), (2.5475397284803947, -2.342414683744478, -2.1503716697070665, -0.7129635826847549)] int int_0 = 4 int2 int2_0 = (2, 2) int3 int3_0 = (-2, 4, 0) int4 int4_0 = (1, 1, -1, 2) int[] int_arr_0 = [-1, 0, 3, 2] int2[] int2_arr_0 = [(2, 1), (-2, 3), (-5, -1), (3, -4)] int3[] int3_arr_0 = [(-2, -5, -4), (-4, -1, 1), (2, -5, 3), (-5, 0, 2)] int4[] int4_arr_0 = [(0, 0, 3, -2), (3, -5, -1, -2), (-1, 3, 0, 4), (3, -4, -2, -5)] int64 int64_0 = 3 int64[] int64_arr_0 = [-2, 3, -5, -5] matrix2d matrixd2_0 = ((3.024042864453003, -3.095065657102679), (-1.123411501639132, -1.423906527734904)) matrix3d matrixd3_0 = ((3.2657311171362124, -1.6638706357367616, 4.551472373193942), (-0.28617434440952927, -4.669323030540955, 4.09055877600589), (1.255321488137767, -2.129187139881359, -4.631961062496416)) matrix4d matrixd4_0 = ((3.2408548387381035, 0.10087959495908017, -4.618179794609153, 2.771192709025531), (-3.880975874289777, 1.1147418728243332, 2.7832521612310472, 1.735909267280185), (-1.2012567529303642, -4.7355836317883995, -0.6373603218761223, 4.136944836857255), (-1.6707663453217423, -2.5204128084676913, -3.6216916617731187, 0.10252455001047522)) matrix2d[] matrixd2_arr_0 = [((-1.0689185237171794, 4.245643176497426), (2.1319514111195765, 1.041842807977467)), ((-3.3862095199816835, -1.5950421635539036), (-0.8890383572124456, 0.9020486413249538)), ((4.960381602092927, -2.1629025219506848), (0.035628908314976115, 4.334479076287334)), ((-1.545792062379916, 1.286047872723735), (2.6613153869419035, 1.3026972501514313))] matrix3d[] matrixd3_arr_0 = [((2.9334775385276277, -4.895141414150707, 3.9241162212317064), (3.1736395301270015, -0.19295168531286233, -3.9186084511895034), (-0.473714443363658, 0.8425289911538698, -2.4611652145875773)), ((-0.13468535154404293, 2.7572876385387524, 4.227317956018975), (0.6164502763473152, 3.272417850395824, -4.22066787030399), (3.563680463134652, 4.208145654644209, -3.3199862371547884)), ((3.2748736175307265, 3.4956617032598807, 3.7865886832576283), (0.17139519817392213, 1.0825424388534355, -2.9191675455730093), (2.081315493857046, -0.9498269659185734, -4.788309142929446)), ((-3.6573288649574485, -1.1178196838993593, 3.851798060608111), (0.6494229326883616, 4.162570340562471, 4.294838443573095), (-4.132050078805002, 0.8821541372826891, -1.6547196184772597))] matrix4d[] matrixd4_arr_0 = [((-1.180709043541186, 3.073817566064733, -0.6418646715504224, -1.1875533330391521), (2.6534805477556143, 1.1576099659902548, -2.30682305778915, 0.8281059821746304), (2.038528499563493, 3.270780916312745, 1.7717907915944044, 1.407470713136978), (0.9590234247618037, -4.07949050875617, 4.451890595499945, 2.148419104776332)), ((-2.27128870605441, 1.9235069410426329, 1.2081743607008057, 1.5885144573378787), (-1.2109102899515047, 0.7317585480117241, 1.6002723067653868, -2.9834393098077063), (0.08012164386884368, -3.79658344689025, -3.944695018744034, 4.1106057520665935), (-3.7545277544113342, 3.9326697176464265, -0.30200800458520227, -0.4509738424588221)), ((-1.6018468045531398, -0.837822835562049, -1.227676192034044, 0.6498294700264786), (-1.644066809111143, 3.21975863451304, -2.6643824984280995, -2.515298772525143), (-0.1944845337256753, 4.350812838247558, -4.76084325857471, 2.234136155845775), (-4.939934123123898, -0.9513978690970637, 2.6420724969551728, -0.5392087829125298)), ((-0.705110710780362, -2.4678317101871974, -0.24904361806866593, -2.717405003241533), (-2.1647871017473097, 1.5329356108744001, 0.994470561435099, 4.295455153942724), (4.688690813748526, 0.22380193207408539, -4.12443487438509, -2.000969057323826), (0.17804895571644863, 1.7316289337542603, 4.461972494348656, -3.4489256633213996))] normal3d normald3_0 = (-0.8853077518865762, -3.0794834220773657, -1.0910623485495607) normal3d[] normald3_arr_0 = [(-3.6583054629825265, -0.567807192045712, 1.7420407839099115), (-2.760018955109178, 1.845203497190341, 3.619493839565875), (2.572410815635461, -0.7447252478743529, 1.4572790737498984), (4.883674329995545, 3.8541160287726566, -1.6185049345024147)] normal3f normalf3_0 = (1.6323293982093823, 3.4599600726253694, -0.31428157781636656) normal3f[] normalf3_arr_0 = [(4.700342024153565, -0.07263058779486009, -4.847104832235239), (-0.8065656857927559, 2.5720190525063504, -1.879163303694634), (2.4502240883734006, 2.6736271983753603, -2.608792810599149), (4.679724862095583, -4.721112505503335, 3.636054840560119)] normal3h normalh3_0 = (-2.804714859819608, -1.159387026281756, 0.06813167984786173) normal3h[] normalh3_arr_0 = [(-1.2625920313464842, 3.0308000473050605, -3.104563672463998), (3.2449561016051653, 0.4192108705345978, -1.6125487152195008), (0.5223576734925617, -3.385766676959644, -0.04545250389710276), (-4.780467030617913, 3.6297507776214157, -1.684189652080228)] point3d pointd3_0 = (0.705042042150394, 0.20700961910799798, 3.612281680032071) point3d[] pointd3_arr_0 = [(2.695892229710263, -4.167180012145115, 3.1933180487216575), (-1.9163926786014618, 2.063817961665891, 4.501382211094212), (-4.6489097860031485, 1.1171288053780888, -2.0759537217506328), (-3.8534121091304296, 2.1185480263311787, 4.790465623245286)] point3f pointf3_0 = (-4.196275353910731, 4.79427735976566, 4.967072779247953) point3f[] pointf3_arr_0 = [(3.0857014307971937, -0.10501862396416595, -0.5118826249043362), (-3.771161628987315, -1.2552910171795082, 0.20721055949361755), (-2.6898766527915488, 3.0793556181579724, -1.162992937072569), (-2.615102076448416, -1.917025067029785, 3.2446353273554376)] point3h pointh3_0 = (-2.5346642360215554, -2.183091694969601, -0.9578331238400608) point3h[] pointh3_arr_0 = [(4.876248298134623, -2.0061313510982104, 3.677029822430992), (2.950123377807312, 2.4198470280345363, 2.2194225684462543), (2.8998186368367254, 3.474076852186398, -4.376335634884163), (-3.3219017549592103, 0.05529324620242804, -2.8751047413939412)] quatd quatd4_0 = (4.838318544851981, 2.456964432885293, -0.4961671923027211, -2.2421153646196643) quatd[] quatd4_arr_0 = [(-0.2647299094930524, -0.5962760642675926, -0.24558329442731086, -2.0409977482584996), (3.0872074291841773, 4.1307794549970005, -1.509992714735544, 1.378600716821179), (-1.1929408165915434, 0.7875199169867475, 1.9553894471620854, 0.015162773274203012), (1.745820702230903, 2.5714574429921653, 3.4329563554555858, -3.1119011021164122)] quatf quatf4_0 = (3.2632612174353373, -0.24144039175892562, -1.5828484103847895, -0.6657656057438857) quatf[] quatf4_arr_0 = [(2.8206798520193255, 1.9949112850974347, 2.680779559328453, -4.857267320612465), (0.31693393532505887, -1.4721139715337195, -2.9138516731109734, 4.2085182207787035), (-3.0319195002862562, -3.155250341026139, -3.2118590551386337, 1.580949064429583), (1.1173993044653283, 0.056334689832341134, 0.8680175712310678, 4.405763142596822)] quath quath4_0 = (-0.8067933238812195, -1.6825704550043605, 4.161236183812688, 4.259692641075571) quath[] quath4_arr_0 = [(2.6434535850412306, -2.3777223172691198, 2.851263963478723, 1.3528408375156262), (0.09078456649293631, 0.360171556608079, -4.252691938871371, -4.591020896447607), (-4.8517518510139555, 2.755424674851799, -3.6150468224022605, -3.7713346326275223), (-1.1493721020355796, 4.777029714087606, 3.8592429479247183, -1.867109713560481)] texCoord2d texcoordd2_0 = (4.862469153487261, -4.512930422333016) texCoord3d texcoordd3_0 = (2.0334941370189394, -0.9330458637534775, 3.9205224050411616) texCoord2d[] texcoordd2_arr_0 = [(1.363591839541237, -4.484498908857308), (2.738521380586124, -4.298363560720997), (-4.897456195989327, -2.1534299735347915), (2.7269204065836607, 3.326370251305894)] texCoord3d[] texcoordd3_arr_0 = [(0.11440614710681718, -3.5181023270410092, -4.295329962434363), (-3.4410580221975886, -1.1595285203653316, 0.652064168146195), (1.6425723633255087, 0.243593176276379, 0.6529066192141117), (-1.4776659057800834, 1.6559690884766898, 2.268602436554543)] texCoord2f texcoordf2_0 = (-0.33251691517151816, -1.547780690171149) texCoord3f texcoordf3_0 = (-2.5023046453025923, -4.230530226581272, -3.8904825323827286) texCoord2f[] texcoordf2_arr_0 = [(1.5448169765930775, 2.4284663591733864), (3.8713938999369866, 1.8341748269497247), (3.4720959384694297, 2.8447991405160504), (-3.3928386180089665, -4.563072341590727)] texCoord3f[] texcoordf3_arr_0 = [(-2.886300291499686, 4.625770244136284, 0.3646121611561073), (3.658695364577362, 3.8496376106191335, 4.422998611296343), (-2.6183319390322604, -1.6227110755456864, 1.3313987960266793), (-1.7794595477301667, -3.5607190546335197, 2.598592136554477)] texCoord2h texcoordh2_0 = (4.219090077794494, -0.20176915788542082) texCoord3h texcoordh3_0 = (-2.897105791140875, -1.103161478531959, 0.11745789662260275) texCoord2h[] texcoordh2_arr_0 = [(-1.1463178653677906, 3.6340223934264433), (-3.8496583780235616, -4.412794013720417), (4.831869688608714, 2.629087214628383), (1.1498842924984078, 0.5878075538667566)] texCoord3h[] texcoordh3_arr_0 = [(-1.08604433314621, -3.7160694768900004, 3.9209044408625378), (4.422941202449211, 4.222836912506558, 0.31217828083056975), (3.6442848951514524, -3.021637851169454, -2.04516059467599), (4.087112410642483, 0.9037397020443425, -2.7398419278186092)] timecode timecode_0 = -0.03993117895122911 timecode[] timecode_arr_0 = [3.70387558555516, -4.828044522445748, 0.3782213224836095, -0.202575647972294] token token_0 = "token2" token[] token_arr_0 = ["token2", "token5", "token0", "token1"] matrix4d transform4_0 = ((-4.315666611115594, -0.5950617064362174, -1.7294846939915773, 0.11873454237452741), (-1.5567666416525738, 3.625880136342319, 2.3560493977317476, -1.1604313887970363), (-3.741335289759374, 2.0984457218980515, 0.4108555294001075, -3.480547170634325), (-4.652152485743758, 1.1670018318051758, 0.16247948716651273, 0.7545527807326105)) matrix4d[] transform4_arr_0 = [((3.2120522552758626, 1.206139860847025, -4.3208610187764505, -2.2056156325742657), (-2.3046870810568687, -0.32166461816463876, 2.800651360897125, 0.7831783160453796), (4.919561150782094, 2.0824714805738314, -3.586409328318637, 4.7912914642326125), (-4.4138721863152295, -1.671427990947747, 1.372512758358849, -1.095134473922049)), ((-4.778275043977223, -2.0351541300932907, -2.581333129681753, 2.7614903516431353), (0.9255393386510988, -3.560041021715316, 3.7260572256810676, -2.8700144251451087), (-1.8032164891002678, 3.747233972749223, 2.6521635987222725, -0.7916891144036695), (0.19271742908036416, 4.791690195290002, 2.108063573530919, 2.1572915143879046)), ((1.5578217456694787, 4.882384716588184, 4.240089297326895, -2.017606340725968), (-0.5484204255755154, 1.3568611643968946, -2.6309958248708734, 1.4728395090865698), (4.032728580755631, -1.9372431125726686, -1.3207746189118943, -0.5006036142808457), (-1.1368231500658443, 1.4332241898253795, -4.480307874713544, 2.767360789424755)), ((-2.146577126503564, 1.220060867962606, -0.7613170543158976, 1.1128909023816993), (0.6894869911367296, 0.1755784596991452, -3.3967684330451497, -4.9247725109168705), (-3.930232387798318, -1.1510660716924548, -2.4290251584470557, -0.1520297765574039), (-0.29168633634304975, 0.1538833531855266, -3.672902985760805, -0.02591220526901772))] uchar uchar_0 = 0 uchar[] uchar_arr_0 = [3, 7, 1, 6] uint uint_0 = 9 uint[] uint_arr_0 = [4, 0, 9, 5] uint64 uint64_0 = 2 uint64[] uint64_arr_0 = [6, 0, 1, 0] vector3d vectord3_0 = (0.45859047555978094, 4.375332701930809, -0.9967680264372998) vector3d[] vectord3_arr_0 = [(1.303292421141978, -1.1856458180650908, -2.4350814727477497), (-1.1615917660648325, -0.36884243450072596, 0.9458318728714312), (0.5974745628938392, -1.319819823907864, -0.7453772694023151), (3.062392473844323, 0.8901532307958249, 4.704846959334615)] vector3f vectorf3_0 = (3.8058776963174807, 2.1782935339032505, -2.4672420811215936) vector3f[] vectorf3_arr_0 = [(-4.880890310004532, 0.6710010918997238, -4.318791069809047), (4.9201959469560475, 1.5969249671513852, 2.190894523189365), (1.9348718726477143, 4.409961220171333, -0.9505269219399555), (-2.2105945491893397, -4.21285283356359, -4.771789644319281)] vector3h vectorh3_0 = (3.6694971388250757, 2.696248501681783, -0.8111925088705672) vector3h[] vectorh3_arr_0 = [(0.8619310499562571, 1.006759576646692, -0.3031477669130602), (-1.3032544177729921, -0.8125928180001898, 4.134927361146396), (1.4630483666366354, -3.300727729003129, -4.6273935269964905), (-0.6084882498801267, -0.5913373596695966, -4.341752776375682)] } }
omniverse-code/kit/exts/omni.graph/omni/graph/core/data/ExampleTwoDeformers.usda
#usda 1.0 ( doc = """Generated from Composed Stage of root layer """ ) def Xform "defaultPrim" { def Mesh "inputGrid" { uniform bool doubleSided = 1 int[] faceVertexCounts = [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 1, 33, 0, 33, 32, 1, 2, 34, 1, 34, 33, 2, 3, 35, 2, 35, 34, 3, 4, 36, 3, 36, 35, 4, 5, 37, 4, 37, 36, 5, 6, 38, 5, 38, 37, 6, 7, 39, 6, 39, 38, 7, 8, 40, 7, 40, 39, 8, 9, 41, 8, 41, 40, 9, 10, 42, 9, 42, 41, 10, 11, 43, 10, 43, 42, 11, 12, 44, 11, 44, 43, 12, 13, 45, 12, 45, 44, 13, 14, 46, 13, 46, 45, 14, 15, 47, 14, 47, 46, 15, 16, 48, 15, 48, 47, 16, 17, 49, 16, 49, 48, 17, 18, 50, 17, 50, 49, 18, 19, 51, 18, 51, 50, 19, 20, 52, 19, 52, 51, 20, 21, 53, 20, 53, 52, 21, 22, 54, 21, 54, 53, 22, 23, 55, 22, 55, 54, 23, 24, 56, 23, 56, 55, 24, 25, 57, 24, 57, 56, 25, 26, 58, 25, 58, 57, 26, 27, 59, 26, 59, 58, 27, 28, 60, 27, 60, 59, 28, 29, 61, 28, 61, 60, 29, 30, 62, 29, 62, 61, 30, 31, 63, 30, 63, 62, 32, 33, 65, 32, 65, 64, 33, 34, 66, 33, 66, 65, 34, 35, 67, 34, 67, 66, 35, 36, 68, 35, 68, 67, 36, 37, 69, 36, 69, 68, 37, 38, 70, 37, 70, 69, 38, 39, 71, 38, 71, 70, 39, 40, 72, 39, 72, 71, 40, 41, 73, 40, 73, 72, 41, 42, 74, 41, 74, 73, 42, 43, 75, 42, 75, 74, 43, 44, 76, 43, 76, 75, 44, 45, 77, 44, 77, 76, 45, 46, 78, 45, 78, 77, 46, 47, 79, 46, 79, 78, 47, 48, 80, 47, 80, 79, 48, 49, 81, 48, 81, 80, 49, 50, 82, 49, 82, 81, 50, 51, 83, 50, 83, 82, 51, 52, 84, 51, 84, 83, 52, 53, 85, 52, 85, 84, 53, 54, 86, 53, 86, 85, 54, 55, 87, 54, 87, 86, 55, 56, 88, 55, 88, 87, 56, 57, 89, 56, 89, 88, 57, 58, 90, 57, 90, 89, 58, 59, 91, 58, 91, 90, 59, 60, 92, 59, 92, 91, 60, 61, 93, 60, 93, 92, 61, 62, 94, 61, 94, 93, 62, 63, 95, 62, 95, 94, 64, 65, 97, 64, 97, 96, 65, 66, 98, 65, 98, 97, 66, 67, 99, 66, 99, 98, 67, 68, 100, 67, 100, 99, 68, 69, 101, 68, 101, 100, 69, 70, 102, 69, 102, 101, 70, 71, 103, 70, 103, 102, 71, 72, 104, 71, 104, 103, 72, 73, 105, 72, 105, 104, 73, 74, 106, 73, 106, 105, 74, 75, 107, 74, 107, 106, 75, 76, 108, 75, 108, 107, 76, 77, 109, 76, 109, 108, 77, 78, 110, 77, 110, 109, 78, 79, 111, 78, 111, 110, 79, 80, 112, 79, 112, 111, 80, 81, 113, 80, 113, 112, 81, 82, 114, 81, 114, 113, 82, 83, 115, 82, 115, 114, 83, 84, 116, 83, 116, 115, 84, 85, 117, 84, 117, 116, 85, 86, 118, 85, 118, 117, 86, 87, 119, 86, 119, 118, 87, 88, 120, 87, 120, 119, 88, 89, 121, 88, 121, 120, 89, 90, 122, 89, 122, 121, 90, 91, 123, 90, 123, 122, 91, 92, 124, 91, 124, 123, 92, 93, 125, 92, 125, 124, 93, 94, 126, 93, 126, 125, 94, 95, 127, 94, 127, 126, 96, 97, 129, 96, 129, 128, 97, 98, 130, 97, 130, 129, 98, 99, 131, 98, 131, 130, 99, 100, 132, 99, 132, 131, 100, 101, 133, 100, 133, 132, 101, 102, 134, 101, 134, 133, 102, 103, 135, 102, 135, 134, 103, 104, 136, 103, 136, 135, 104, 105, 137, 104, 137, 136, 105, 106, 138, 105, 138, 137, 106, 107, 139, 106, 139, 138, 107, 108, 140, 107, 140, 139, 108, 109, 141, 108, 141, 140, 109, 110, 142, 109, 142, 141, 110, 111, 143, 110, 143, 142, 111, 112, 144, 111, 144, 143, 112, 113, 145, 112, 145, 144, 113, 114, 146, 113, 146, 145, 114, 115, 147, 114, 147, 146, 115, 116, 148, 115, 148, 147, 116, 117, 149, 116, 149, 148, 117, 118, 150, 117, 150, 149, 118, 119, 151, 118, 151, 150, 119, 120, 152, 119, 152, 151, 120, 121, 153, 120, 153, 152, 121, 122, 154, 121, 154, 153, 122, 123, 155, 122, 155, 154, 123, 124, 156, 123, 156, 155, 124, 125, 157, 124, 157, 156, 125, 126, 158, 125, 158, 157, 126, 127, 159, 126, 159, 158, 128, 129, 161, 128, 161, 160, 129, 130, 162, 129, 162, 161, 130, 131, 163, 130, 163, 162, 131, 132, 164, 131, 164, 163, 132, 133, 165, 132, 165, 164, 133, 134, 166, 133, 166, 165, 134, 135, 167, 134, 167, 166, 135, 136, 168, 135, 168, 167, 136, 137, 169, 136, 169, 168, 137, 138, 170, 137, 170, 169, 138, 139, 171, 138, 171, 170, 139, 140, 172, 139, 172, 171, 140, 141, 173, 140, 173, 172, 141, 142, 174, 141, 174, 173, 142, 143, 175, 142, 175, 174, 143, 144, 176, 143, 176, 175, 144, 145, 177, 144, 177, 176, 145, 146, 178, 145, 178, 177, 146, 147, 179, 146, 179, 178, 147, 148, 180, 147, 180, 179, 148, 149, 181, 148, 181, 180, 149, 150, 182, 149, 182, 181, 150, 151, 183, 150, 183, 182, 151, 152, 184, 151, 184, 183, 152, 153, 185, 152, 185, 184, 153, 154, 186, 153, 186, 185, 154, 155, 187, 154, 187, 186, 155, 156, 188, 155, 188, 187, 156, 157, 189, 156, 189, 188, 157, 158, 190, 157, 190, 189, 158, 159, 191, 158, 191, 190, 160, 161, 193, 160, 193, 192, 161, 162, 194, 161, 194, 193, 162, 163, 195, 162, 195, 194, 163, 164, 196, 163, 196, 195, 164, 165, 197, 164, 197, 196, 165, 166, 198, 165, 198, 197, 166, 167, 199, 166, 199, 198, 167, 168, 200, 167, 200, 199, 168, 169, 201, 168, 201, 200, 169, 170, 202, 169, 202, 201, 170, 171, 203, 170, 203, 202, 171, 172, 204, 171, 204, 203, 172, 173, 205, 172, 205, 204, 173, 174, 206, 173, 206, 205, 174, 175, 207, 174, 207, 206, 175, 176, 208, 175, 208, 207, 176, 177, 209, 176, 209, 208, 177, 178, 210, 177, 210, 209, 178, 179, 211, 178, 211, 210, 179, 180, 212, 179, 212, 211, 180, 181, 213, 180, 213, 212, 181, 182, 214, 181, 214, 213, 182, 183, 215, 182, 215, 214, 183, 184, 216, 183, 216, 215, 184, 185, 217, 184, 217, 216, 185, 186, 218, 185, 218, 217, 186, 187, 219, 186, 219, 218, 187, 188, 220, 187, 220, 219, 188, 189, 221, 188, 221, 220, 189, 190, 222, 189, 222, 221, 190, 191, 223, 190, 223, 222, 192, 193, 225, 192, 225, 224, 193, 194, 226, 193, 226, 225, 194, 195, 227, 194, 227, 226, 195, 196, 228, 195, 228, 227, 196, 197, 229, 196, 229, 228, 197, 198, 230, 197, 230, 229, 198, 199, 231, 198, 231, 230, 199, 200, 232, 199, 232, 231, 200, 201, 233, 200, 233, 232, 201, 202, 234, 201, 234, 233, 202, 203, 235, 202, 235, 234, 203, 204, 236, 203, 236, 235, 204, 205, 237, 204, 237, 236, 205, 206, 238, 205, 238, 237, 206, 207, 239, 206, 239, 238, 207, 208, 240, 207, 240, 239, 208, 209, 241, 208, 241, 240, 209, 210, 242, 209, 242, 241, 210, 211, 243, 210, 243, 242, 211, 212, 244, 211, 244, 243, 212, 213, 245, 212, 245, 244, 213, 214, 246, 213, 246, 245, 214, 215, 247, 214, 247, 246, 215, 216, 248, 215, 248, 247, 216, 217, 249, 216, 249, 248, 217, 218, 250, 217, 250, 249, 218, 219, 251, 218, 251, 250, 219, 220, 252, 219, 252, 251, 220, 221, 253, 220, 253, 252, 221, 222, 254, 221, 254, 253, 222, 223, 255, 222, 255, 254, 224, 225, 257, 224, 257, 256, 225, 226, 258, 225, 258, 257, 226, 227, 259, 226, 259, 258, 227, 228, 260, 227, 260, 259, 228, 229, 261, 228, 261, 260, 229, 230, 262, 229, 262, 261, 230, 231, 263, 230, 263, 262, 231, 232, 264, 231, 264, 263, 232, 233, 265, 232, 265, 264, 233, 234, 266, 233, 266, 265, 234, 235, 267, 234, 267, 266, 235, 236, 268, 235, 268, 267, 236, 237, 269, 236, 269, 268, 237, 238, 270, 237, 270, 269, 238, 239, 271, 238, 271, 270, 239, 240, 272, 239, 272, 271, 240, 241, 273, 240, 273, 272, 241, 242, 274, 241, 274, 273, 242, 243, 275, 242, 275, 274, 243, 244, 276, 243, 276, 275, 244, 245, 277, 244, 277, 276, 245, 246, 278, 245, 278, 277, 246, 247, 279, 246, 279, 278, 247, 248, 280, 247, 280, 279, 248, 249, 281, 248, 281, 280, 249, 250, 282, 249, 282, 281, 250, 251, 283, 250, 283, 282, 251, 252, 284, 251, 284, 283, 252, 253, 285, 252, 285, 284, 253, 254, 286, 253, 286, 285, 254, 255, 287, 254, 287, 286, 256, 257, 289, 256, 289, 288, 257, 258, 290, 257, 290, 289, 258, 259, 291, 258, 291, 290, 259, 260, 292, 259, 292, 291, 260, 261, 293, 260, 293, 292, 261, 262, 294, 261, 294, 293, 262, 263, 295, 262, 295, 294, 263, 264, 296, 263, 296, 295, 264, 265, 297, 264, 297, 296, 265, 266, 298, 265, 298, 297, 266, 267, 299, 266, 299, 298, 267, 268, 300, 267, 300, 299, 268, 269, 301, 268, 301, 300, 269, 270, 302, 269, 302, 301, 270, 271, 303, 270, 303, 302, 271, 272, 304, 271, 304, 303, 272, 273, 305, 272, 305, 304, 273, 274, 306, 273, 306, 305, 274, 275, 307, 274, 307, 306, 275, 276, 308, 275, 308, 307, 276, 277, 309, 276, 309, 308, 277, 278, 310, 277, 310, 309, 278, 279, 311, 278, 311, 310, 279, 280, 312, 279, 312, 311, 280, 281, 313, 280, 313, 312, 281, 282, 314, 281, 314, 313, 282, 283, 315, 282, 315, 314, 283, 284, 316, 283, 316, 315, 284, 285, 317, 284, 317, 316, 285, 286, 318, 285, 318, 317, 286, 287, 319, 286, 319, 318, 288, 289, 321, 288, 321, 320, 289, 290, 322, 289, 322, 321, 290, 291, 323, 290, 323, 322, 291, 292, 324, 291, 324, 323, 292, 293, 325, 292, 325, 324, 293, 294, 326, 293, 326, 325, 294, 295, 327, 294, 327, 326, 295, 296, 328, 295, 328, 327, 296, 297, 329, 296, 329, 328, 297, 298, 330, 297, 330, 329, 298, 299, 331, 298, 331, 330, 299, 300, 332, 299, 332, 331, 300, 301, 333, 300, 333, 332, 301, 302, 334, 301, 334, 333, 302, 303, 335, 302, 335, 334, 303, 304, 336, 303, 336, 335, 304, 305, 337, 304, 337, 336, 305, 306, 338, 305, 338, 337, 306, 307, 339, 306, 339, 338, 307, 308, 340, 307, 340, 339, 308, 309, 341, 308, 341, 340, 309, 310, 342, 309, 342, 341, 310, 311, 343, 310, 343, 342, 311, 312, 344, 311, 344, 343, 312, 313, 345, 312, 345, 344, 313, 314, 346, 313, 346, 345, 314, 315, 347, 314, 347, 346, 315, 316, 348, 315, 348, 347, 316, 317, 349, 316, 349, 348, 317, 318, 350, 317, 350, 349, 318, 319, 351, 318, 351, 350, 320, 321, 353, 320, 353, 352, 321, 322, 354, 321, 354, 353, 322, 323, 355, 322, 355, 354, 323, 324, 356, 323, 356, 355, 324, 325, 357, 324, 357, 356, 325, 326, 358, 325, 358, 357, 326, 327, 359, 326, 359, 358, 327, 328, 360, 327, 360, 359, 328, 329, 361, 328, 361, 360, 329, 330, 362, 329, 362, 361, 330, 331, 363, 330, 363, 362, 331, 332, 364, 331, 364, 363, 332, 333, 365, 332, 365, 364, 333, 334, 366, 333, 366, 365, 334, 335, 367, 334, 367, 366, 335, 336, 368, 335, 368, 367, 336, 337, 369, 336, 369, 368, 337, 338, 370, 337, 370, 369, 338, 339, 371, 338, 371, 370, 339, 340, 372, 339, 372, 371, 340, 341, 373, 340, 373, 372, 341, 342, 374, 341, 374, 373, 342, 343, 375, 342, 375, 374, 343, 344, 376, 343, 376, 375, 344, 345, 377, 344, 377, 376, 345, 346, 378, 345, 378, 377, 346, 347, 379, 346, 379, 378, 347, 348, 380, 347, 380, 379, 348, 349, 381, 348, 381, 380, 349, 350, 382, 349, 382, 381, 350, 351, 383, 350, 383, 382, 352, 353, 385, 352, 385, 384, 353, 354, 386, 353, 386, 385, 354, 355, 387, 354, 387, 386, 355, 356, 388, 355, 388, 387, 356, 357, 389, 356, 389, 388, 357, 358, 390, 357, 390, 389, 358, 359, 391, 358, 391, 390, 359, 360, 392, 359, 392, 391, 360, 361, 393, 360, 393, 392, 361, 362, 394, 361, 394, 393, 362, 363, 395, 362, 395, 394, 363, 364, 396, 363, 396, 395, 364, 365, 397, 364, 397, 396, 365, 366, 398, 365, 398, 397, 366, 367, 399, 366, 399, 398, 367, 368, 400, 367, 400, 399, 368, 369, 401, 368, 401, 400, 369, 370, 402, 369, 402, 401, 370, 371, 403, 370, 403, 402, 371, 372, 404, 371, 404, 403, 372, 373, 405, 372, 405, 404, 373, 374, 406, 373, 406, 405, 374, 375, 407, 374, 407, 406, 375, 376, 408, 375, 408, 407, 376, 377, 409, 376, 409, 408, 377, 378, 410, 377, 410, 409, 378, 379, 411, 378, 411, 410, 379, 380, 412, 379, 412, 411, 380, 381, 413, 380, 413, 412, 381, 382, 414, 381, 414, 413, 382, 383, 415, 382, 415, 414, 384, 385, 417, 384, 417, 416, 385, 386, 418, 385, 418, 417, 386, 387, 419, 386, 419, 418, 387, 388, 420, 387, 420, 419, 388, 389, 421, 388, 421, 420, 389, 390, 422, 389, 422, 421, 390, 391, 423, 390, 423, 422, 391, 392, 424, 391, 424, 423, 392, 393, 425, 392, 425, 424, 393, 394, 426, 393, 426, 425, 394, 395, 427, 394, 427, 426, 395, 396, 428, 395, 428, 427, 396, 397, 429, 396, 429, 428, 397, 398, 430, 397, 430, 429, 398, 399, 431, 398, 431, 430, 399, 400, 432, 399, 432, 431, 400, 401, 433, 400, 433, 432, 401, 402, 434, 401, 434, 433, 402, 403, 435, 402, 435, 434, 403, 404, 436, 403, 436, 435, 404, 405, 437, 404, 437, 436, 405, 406, 438, 405, 438, 437, 406, 407, 439, 406, 439, 438, 407, 408, 440, 407, 440, 439, 408, 409, 441, 408, 441, 440, 409, 410, 442, 409, 442, 441, 410, 411, 443, 410, 443, 442, 411, 412, 444, 411, 444, 443, 412, 413, 445, 412, 445, 444, 413, 414, 446, 413, 446, 445, 414, 415, 447, 414, 447, 446, 416, 417, 449, 416, 449, 448, 417, 418, 450, 417, 450, 449, 418, 419, 451, 418, 451, 450, 419, 420, 452, 419, 452, 451, 420, 421, 453, 420, 453, 452, 421, 422, 454, 421, 454, 453, 422, 423, 455, 422, 455, 454, 423, 424, 456, 423, 456, 455, 424, 425, 457, 424, 457, 456, 425, 426, 458, 425, 458, 457, 426, 427, 459, 426, 459, 458, 427, 428, 460, 427, 460, 459, 428, 429, 461, 428, 461, 460, 429, 430, 462, 429, 462, 461, 430, 431, 463, 430, 463, 462, 431, 432, 464, 431, 464, 463, 432, 433, 465, 432, 465, 464, 433, 434, 466, 433, 466, 465, 434, 435, 467, 434, 467, 466, 435, 436, 468, 435, 468, 467, 436, 437, 469, 436, 469, 468, 437, 438, 470, 437, 470, 469, 438, 439, 471, 438, 471, 470, 439, 440, 472, 439, 472, 471, 440, 441, 473, 440, 473, 472, 441, 442, 474, 441, 474, 473, 442, 443, 475, 442, 475, 474, 443, 444, 476, 443, 476, 475, 444, 445, 477, 444, 477, 476, 445, 446, 478, 445, 478, 477, 446, 447, 479, 446, 479, 478, 448, 449, 481, 448, 481, 480, 449, 450, 482, 449, 482, 481, 450, 451, 483, 450, 483, 482, 451, 452, 484, 451, 484, 483, 452, 453, 485, 452, 485, 484, 453, 454, 486, 453, 486, 485, 454, 455, 487, 454, 487, 486, 455, 456, 488, 455, 488, 487, 456, 457, 489, 456, 489, 488, 457, 458, 490, 457, 490, 489, 458, 459, 491, 458, 491, 490, 459, 460, 492, 459, 492, 491, 460, 461, 493, 460, 493, 492, 461, 462, 494, 461, 494, 493, 462, 463, 495, 462, 495, 494, 463, 464, 496, 463, 496, 495, 464, 465, 497, 464, 497, 496, 465, 466, 498, 465, 498, 497, 466, 467, 499, 466, 499, 498, 467, 468, 500, 467, 500, 499, 468, 469, 501, 468, 501, 500, 469, 470, 502, 469, 502, 501, 470, 471, 503, 470, 503, 502, 471, 472, 504, 471, 504, 503, 472, 473, 505, 472, 505, 504, 473, 474, 506, 473, 506, 505, 474, 475, 507, 474, 507, 506, 475, 476, 508, 475, 508, 507, 476, 477, 509, 476, 509, 508, 477, 478, 510, 477, 510, 509, 478, 479, 511, 478, 511, 510, 480, 481, 513, 480, 513, 512, 481, 482, 514, 481, 514, 513, 482, 483, 515, 482, 515, 514, 483, 484, 516, 483, 516, 515, 484, 485, 517, 484, 517, 516, 485, 486, 518, 485, 518, 517, 486, 487, 519, 486, 519, 518, 487, 488, 520, 487, 520, 519, 488, 489, 521, 488, 521, 520, 489, 490, 522, 489, 522, 521, 490, 491, 523, 490, 523, 522, 491, 492, 524, 491, 524, 523, 492, 493, 525, 492, 525, 524, 493, 494, 526, 493, 526, 525, 494, 495, 527, 494, 527, 526, 495, 496, 528, 495, 528, 527, 496, 497, 529, 496, 529, 528, 497, 498, 530, 497, 530, 529, 498, 499, 531, 498, 531, 530, 499, 500, 532, 499, 532, 531, 500, 501, 533, 500, 533, 532, 501, 502, 534, 501, 534, 533, 502, 503, 535, 502, 535, 534, 503, 504, 536, 503, 536, 535, 504, 505, 537, 504, 537, 536, 505, 506, 538, 505, 538, 537, 506, 507, 539, 506, 539, 538, 507, 508, 540, 507, 540, 539, 508, 509, 541, 508, 541, 540, 509, 510, 542, 509, 542, 541, 510, 511, 543, 510, 543, 542, 512, 513, 545, 512, 545, 544, 513, 514, 546, 513, 546, 545, 514, 515, 547, 514, 547, 546, 515, 516, 548, 515, 548, 547, 516, 517, 549, 516, 549, 548, 517, 518, 550, 517, 550, 549, 518, 519, 551, 518, 551, 550, 519, 520, 552, 519, 552, 551, 520, 521, 553, 520, 553, 552, 521, 522, 554, 521, 554, 553, 522, 523, 555, 522, 555, 554, 523, 524, 556, 523, 556, 555, 524, 525, 557, 524, 557, 556, 525, 526, 558, 525, 558, 557, 526, 527, 559, 526, 559, 558, 527, 528, 560, 527, 560, 559, 528, 529, 561, 528, 561, 560, 529, 530, 562, 529, 562, 561, 530, 531, 563, 530, 563, 562, 531, 532, 564, 531, 564, 563, 532, 533, 565, 532, 565, 564, 533, 534, 566, 533, 566, 565, 534, 535, 567, 534, 567, 566, 535, 536, 568, 535, 568, 567, 536, 537, 569, 536, 569, 568, 537, 538, 570, 537, 570, 569, 538, 539, 571, 538, 571, 570, 539, 540, 572, 539, 572, 571, 540, 541, 573, 540, 573, 572, 541, 542, 574, 541, 574, 573, 542, 543, 575, 542, 575, 574, 544, 545, 577, 544, 577, 576, 545, 546, 578, 545, 578, 577, 546, 547, 579, 546, 579, 578, 547, 548, 580, 547, 580, 579, 548, 549, 581, 548, 581, 580, 549, 550, 582, 549, 582, 581, 550, 551, 583, 550, 583, 582, 551, 552, 584, 551, 584, 583, 552, 553, 585, 552, 585, 584, 553, 554, 586, 553, 586, 585, 554, 555, 587, 554, 587, 586, 555, 556, 588, 555, 588, 587, 556, 557, 589, 556, 589, 588, 557, 558, 590, 557, 590, 589, 558, 559, 591, 558, 591, 590, 559, 560, 592, 559, 592, 591, 560, 561, 593, 560, 593, 592, 561, 562, 594, 561, 594, 593, 562, 563, 595, 562, 595, 594, 563, 564, 596, 563, 596, 595, 564, 565, 597, 564, 597, 596, 565, 566, 598, 565, 598, 597, 566, 567, 599, 566, 599, 598, 567, 568, 600, 567, 600, 599, 568, 569, 601, 568, 601, 600, 569, 570, 602, 569, 602, 601, 570, 571, 603, 570, 603, 602, 571, 572, 604, 571, 604, 603, 572, 573, 605, 572, 605, 604, 573, 574, 606, 573, 606, 605, 574, 575, 607, 574, 607, 606, 576, 577, 609, 576, 609, 608, 577, 578, 610, 577, 610, 609, 578, 579, 611, 578, 611, 610, 579, 580, 612, 579, 612, 611, 580, 581, 613, 580, 613, 612, 581, 582, 614, 581, 614, 613, 582, 583, 615, 582, 615, 614, 583, 584, 616, 583, 616, 615, 584, 585, 617, 584, 617, 616, 585, 586, 618, 585, 618, 617, 586, 587, 619, 586, 619, 618, 587, 588, 620, 587, 620, 619, 588, 589, 621, 588, 621, 620, 589, 590, 622, 589, 622, 621, 590, 591, 623, 590, 623, 622, 591, 592, 624, 591, 624, 623, 592, 593, 625, 592, 625, 624, 593, 594, 626, 593, 626, 625, 594, 595, 627, 594, 627, 626, 595, 596, 628, 595, 628, 627, 596, 597, 629, 596, 629, 628, 597, 598, 630, 597, 630, 629, 598, 599, 631, 598, 631, 630, 599, 600, 632, 599, 632, 631, 600, 601, 633, 600, 633, 632, 601, 602, 634, 601, 634, 633, 602, 603, 635, 602, 635, 634, 603, 604, 636, 603, 636, 635, 604, 605, 637, 604, 637, 636, 605, 606, 638, 605, 638, 637, 606, 607, 639, 606, 639, 638, 608, 609, 641, 608, 641, 640, 609, 610, 642, 609, 642, 641, 610, 611, 643, 610, 643, 642, 611, 612, 644, 611, 644, 643, 612, 613, 645, 612, 645, 644, 613, 614, 646, 613, 646, 645, 614, 615, 647, 614, 647, 646, 615, 616, 648, 615, 648, 647, 616, 617, 649, 616, 649, 648, 617, 618, 650, 617, 650, 649, 618, 619, 651, 618, 651, 650, 619, 620, 652, 619, 652, 651, 620, 621, 653, 620, 653, 652, 621, 622, 654, 621, 654, 653, 622, 623, 655, 622, 655, 654, 623, 624, 656, 623, 656, 655, 624, 625, 657, 624, 657, 656, 625, 626, 658, 625, 658, 657, 626, 627, 659, 626, 659, 658, 627, 628, 660, 627, 660, 659, 628, 629, 661, 628, 661, 660, 629, 630, 662, 629, 662, 661, 630, 631, 663, 630, 663, 662, 631, 632, 664, 631, 664, 663, 632, 633, 665, 632, 665, 664, 633, 634, 666, 633, 666, 665, 634, 635, 667, 634, 667, 666, 635, 636, 668, 635, 668, 667, 636, 637, 669, 636, 669, 668, 637, 638, 670, 637, 670, 669, 638, 639, 671, 638, 671, 670, 640, 641, 673, 640, 673, 672, 641, 642, 674, 641, 674, 673, 642, 643, 675, 642, 675, 674, 643, 644, 676, 643, 676, 675, 644, 645, 677, 644, 677, 676, 645, 646, 678, 645, 678, 677, 646, 647, 679, 646, 679, 678, 647, 648, 680, 647, 680, 679, 648, 649, 681, 648, 681, 680, 649, 650, 682, 649, 682, 681, 650, 651, 683, 650, 683, 682, 651, 652, 684, 651, 684, 683, 652, 653, 685, 652, 685, 684, 653, 654, 686, 653, 686, 685, 654, 655, 687, 654, 687, 686, 655, 656, 688, 655, 688, 687, 656, 657, 689, 656, 689, 688, 657, 658, 690, 657, 690, 689, 658, 659, 691, 658, 691, 690, 659, 660, 692, 659, 692, 691, 660, 661, 693, 660, 693, 692, 661, 662, 694, 661, 694, 693, 662, 663, 695, 662, 695, 694, 663, 664, 696, 663, 696, 695, 664, 665, 697, 664, 697, 696, 665, 666, 698, 665, 698, 697, 666, 667, 699, 666, 699, 698, 667, 668, 700, 667, 700, 699, 668, 669, 701, 668, 701, 700, 669, 670, 702, 669, 702, 701, 670, 671, 703, 670, 703, 702, 672, 673, 705, 672, 705, 704, 673, 674, 706, 673, 706, 705, 674, 675, 707, 674, 707, 706, 675, 676, 708, 675, 708, 707, 676, 677, 709, 676, 709, 708, 677, 678, 710, 677, 710, 709, 678, 679, 711, 678, 711, 710, 679, 680, 712, 679, 712, 711, 680, 681, 713, 680, 713, 712, 681, 682, 714, 681, 714, 713, 682, 683, 715, 682, 715, 714, 683, 684, 716, 683, 716, 715, 684, 685, 717, 684, 717, 716, 685, 686, 718, 685, 718, 717, 686, 687, 719, 686, 719, 718, 687, 688, 720, 687, 720, 719, 688, 689, 721, 688, 721, 720, 689, 690, 722, 689, 722, 721, 690, 691, 723, 690, 723, 722, 691, 692, 724, 691, 724, 723, 692, 693, 725, 692, 725, 724, 693, 694, 726, 693, 726, 725, 694, 695, 727, 694, 727, 726, 695, 696, 728, 695, 728, 727, 696, 697, 729, 696, 729, 728, 697, 698, 730, 697, 730, 729, 698, 699, 731, 698, 731, 730, 699, 700, 732, 699, 732, 731, 700, 701, 733, 700, 733, 732, 701, 702, 734, 701, 734, 733, 702, 703, 735, 702, 735, 734, 704, 705, 737, 704, 737, 736, 705, 706, 738, 705, 738, 737, 706, 707, 739, 706, 739, 738, 707, 708, 740, 707, 740, 739, 708, 709, 741, 708, 741, 740, 709, 710, 742, 709, 742, 741, 710, 711, 743, 710, 743, 742, 711, 712, 744, 711, 744, 743, 712, 713, 745, 712, 745, 744, 713, 714, 746, 713, 746, 745, 714, 715, 747, 714, 747, 746, 715, 716, 748, 715, 748, 747, 716, 717, 749, 716, 749, 748, 717, 718, 750, 717, 750, 749, 718, 719, 751, 718, 751, 750, 719, 720, 752, 719, 752, 751, 720, 721, 753, 720, 753, 752, 721, 722, 754, 721, 754, 753, 722, 723, 755, 722, 755, 754, 723, 724, 756, 723, 756, 755, 724, 725, 757, 724, 757, 756, 725, 726, 758, 725, 758, 757, 726, 727, 759, 726, 759, 758, 727, 728, 760, 727, 760, 759, 728, 729, 761, 728, 761, 760, 729, 730, 762, 729, 762, 761, 730, 731, 763, 730, 763, 762, 731, 732, 764, 731, 764, 763, 732, 733, 765, 732, 765, 764, 733, 734, 766, 733, 766, 765, 734, 735, 767, 734, 767, 766, 736, 737, 769, 736, 769, 768, 737, 738, 770, 737, 770, 769, 738, 739, 771, 738, 771, 770, 739, 740, 772, 739, 772, 771, 740, 741, 773, 740, 773, 772, 741, 742, 774, 741, 774, 773, 742, 743, 775, 742, 775, 774, 743, 744, 776, 743, 776, 775, 744, 745, 777, 744, 777, 776, 745, 746, 778, 745, 778, 777, 746, 747, 779, 746, 779, 778, 747, 748, 780, 747, 780, 779, 748, 749, 781, 748, 781, 780, 749, 750, 782, 749, 782, 781, 750, 751, 783, 750, 783, 782, 751, 752, 784, 751, 784, 783, 752, 753, 785, 752, 785, 784, 753, 754, 786, 753, 786, 785, 754, 755, 787, 754, 787, 786, 755, 756, 788, 755, 788, 787, 756, 757, 789, 756, 789, 788, 757, 758, 790, 757, 790, 789, 758, 759, 791, 758, 791, 790, 759, 760, 792, 759, 792, 791, 760, 761, 793, 760, 793, 792, 761, 762, 794, 761, 794, 793, 762, 763, 795, 762, 795, 794, 763, 764, 796, 763, 796, 795, 764, 765, 797, 764, 797, 796, 765, 766, 798, 765, 798, 797, 766, 767, 799, 766, 799, 798, 768, 769, 801, 768, 801, 800, 769, 770, 802, 769, 802, 801, 770, 771, 803, 770, 803, 802, 771, 772, 804, 771, 804, 803, 772, 773, 805, 772, 805, 804, 773, 774, 806, 773, 806, 805, 774, 775, 807, 774, 807, 806, 775, 776, 808, 775, 808, 807, 776, 777, 809, 776, 809, 808, 777, 778, 810, 777, 810, 809, 778, 779, 811, 778, 811, 810, 779, 780, 812, 779, 812, 811, 780, 781, 813, 780, 813, 812, 781, 782, 814, 781, 814, 813, 782, 783, 815, 782, 815, 814, 783, 784, 816, 783, 816, 815, 784, 785, 817, 784, 817, 816, 785, 786, 818, 785, 818, 817, 786, 787, 819, 786, 819, 818, 787, 788, 820, 787, 820, 819, 788, 789, 821, 788, 821, 820, 789, 790, 822, 789, 822, 821, 790, 791, 823, 790, 823, 822, 791, 792, 824, 791, 824, 823, 792, 793, 825, 792, 825, 824, 793, 794, 826, 793, 826, 825, 794, 795, 827, 794, 827, 826, 795, 796, 828, 795, 828, 827, 796, 797, 829, 796, 829, 828, 797, 798, 830, 797, 830, 829, 798, 799, 831, 798, 831, 830, 800, 801, 833, 800, 833, 832, 801, 802, 834, 801, 834, 833, 802, 803, 835, 802, 835, 834, 803, 804, 836, 803, 836, 835, 804, 805, 837, 804, 837, 836, 805, 806, 838, 805, 838, 837, 806, 807, 839, 806, 839, 838, 807, 808, 840, 807, 840, 839, 808, 809, 841, 808, 841, 840, 809, 810, 842, 809, 842, 841, 810, 811, 843, 810, 843, 842, 811, 812, 844, 811, 844, 843, 812, 813, 845, 812, 845, 844, 813, 814, 846, 813, 846, 845, 814, 815, 847, 814, 847, 846, 815, 816, 848, 815, 848, 847, 816, 817, 849, 816, 849, 848, 817, 818, 850, 817, 850, 849, 818, 819, 851, 818, 851, 850, 819, 820, 852, 819, 852, 851, 820, 821, 853, 820, 853, 852, 821, 822, 854, 821, 854, 853, 822, 823, 855, 822, 855, 854, 823, 824, 856, 823, 856, 855, 824, 825, 857, 824, 857, 856, 825, 826, 858, 825, 858, 857, 826, 827, 859, 826, 859, 858, 827, 828, 860, 827, 860, 859, 828, 829, 861, 828, 861, 860, 829, 830, 862, 829, 862, 861, 830, 831, 863, 830, 863, 862, 832, 833, 865, 832, 865, 864, 833, 834, 866, 833, 866, 865, 834, 835, 867, 834, 867, 866, 835, 836, 868, 835, 868, 867, 836, 837, 869, 836, 869, 868, 837, 838, 870, 837, 870, 869, 838, 839, 871, 838, 871, 870, 839, 840, 872, 839, 872, 871, 840, 841, 873, 840, 873, 872, 841, 842, 874, 841, 874, 873, 842, 843, 875, 842, 875, 874, 843, 844, 876, 843, 876, 875, 844, 845, 877, 844, 877, 876, 845, 846, 878, 845, 878, 877, 846, 847, 879, 846, 879, 878, 847, 848, 880, 847, 880, 879, 848, 849, 881, 848, 881, 880, 849, 850, 882, 849, 882, 881, 850, 851, 883, 850, 883, 882, 851, 852, 884, 851, 884, 883, 852, 853, 885, 852, 885, 884, 853, 854, 886, 853, 886, 885, 854, 855, 887, 854, 887, 886, 855, 856, 888, 855, 888, 887, 856, 857, 889, 856, 889, 888, 857, 858, 890, 857, 890, 889, 858, 859, 891, 858, 891, 890, 859, 860, 892, 859, 892, 891, 860, 861, 893, 860, 893, 892, 861, 862, 894, 861, 894, 893, 862, 863, 895, 862, 895, 894, 864, 865, 897, 864, 897, 896, 865, 866, 898, 865, 898, 897, 866, 867, 899, 866, 899, 898, 867, 868, 900, 867, 900, 899, 868, 869, 901, 868, 901, 900, 869, 870, 902, 869, 902, 901, 870, 871, 903, 870, 903, 902, 871, 872, 904, 871, 904, 903, 872, 873, 905, 872, 905, 904, 873, 874, 906, 873, 906, 905, 874, 875, 907, 874, 907, 906, 875, 876, 908, 875, 908, 907, 876, 877, 909, 876, 909, 908, 877, 878, 910, 877, 910, 909, 878, 879, 911, 878, 911, 910, 879, 880, 912, 879, 912, 911, 880, 881, 913, 880, 913, 912, 881, 882, 914, 881, 914, 913, 882, 883, 915, 882, 915, 914, 883, 884, 916, 883, 916, 915, 884, 885, 917, 884, 917, 916, 885, 886, 918, 885, 918, 917, 886, 887, 919, 886, 919, 918, 887, 888, 920, 887, 920, 919, 888, 889, 921, 888, 921, 920, 889, 890, 922, 889, 922, 921, 890, 891, 923, 890, 923, 922, 891, 892, 924, 891, 924, 923, 892, 893, 925, 892, 925, 924, 893, 894, 926, 893, 926, 925, 894, 895, 927, 894, 927, 926, 896, 897, 929, 896, 929, 928, 897, 898, 930, 897, 930, 929, 898, 899, 931, 898, 931, 930, 899, 900, 932, 899, 932, 931, 900, 901, 933, 900, 933, 932, 901, 902, 934, 901, 934, 933, 902, 903, 935, 902, 935, 934, 903, 904, 936, 903, 936, 935, 904, 905, 937, 904, 937, 936, 905, 906, 938, 905, 938, 937, 906, 907, 939, 906, 939, 938, 907, 908, 940, 907, 940, 939, 908, 909, 941, 908, 941, 940, 909, 910, 942, 909, 942, 941, 910, 911, 943, 910, 943, 942, 911, 912, 944, 911, 944, 943, 912, 913, 945, 912, 945, 944, 913, 914, 946, 913, 946, 945, 914, 915, 947, 914, 947, 946, 915, 916, 948, 915, 948, 947, 916, 917, 949, 916, 949, 948, 917, 918, 950, 917, 950, 949, 918, 919, 951, 918, 951, 950, 919, 920, 952, 919, 952, 951, 920, 921, 953, 920, 953, 952, 921, 922, 954, 921, 954, 953, 922, 923, 955, 922, 955, 954, 923, 924, 956, 923, 956, 955, 924, 925, 957, 924, 957, 956, 925, 926, 958, 925, 958, 957, 926, 927, 959, 926, 959, 958, 928, 929, 961, 928, 961, 960, 929, 930, 962, 929, 962, 961, 930, 931, 963, 930, 963, 962, 931, 932, 964, 931, 964, 963, 932, 933, 965, 932, 965, 964, 933, 934, 966, 933, 966, 965, 934, 935, 967, 934, 967, 966, 935, 936, 968, 935, 968, 967, 936, 937, 969, 936, 969, 968, 937, 938, 970, 937, 970, 969, 938, 939, 971, 938, 971, 970, 939, 940, 972, 939, 972, 971, 940, 941, 973, 940, 973, 972, 941, 942, 974, 941, 974, 973, 942, 943, 975, 942, 975, 974, 943, 944, 976, 943, 976, 975, 944, 945, 977, 944, 977, 976, 945, 946, 978, 945, 978, 977, 946, 947, 979, 946, 979, 978, 947, 948, 980, 947, 980, 979, 948, 949, 981, 948, 981, 980, 949, 950, 982, 949, 982, 981, 950, 951, 983, 950, 983, 982, 951, 952, 984, 951, 984, 983, 952, 953, 985, 952, 985, 984, 953, 954, 986, 953, 986, 985, 954, 955, 987, 954, 987, 986, 955, 956, 988, 955, 988, 987, 956, 957, 989, 956, 989, 988, 957, 958, 990, 957, 990, 989, 958, 959, 991, 958, 991, 990, 960, 961, 993, 960, 993, 992, 961, 962, 994, 961, 994, 993, 962, 963, 995, 962, 995, 994, 963, 964, 996, 963, 996, 995, 964, 965, 997, 964, 997, 996, 965, 966, 998, 965, 998, 997, 966, 967, 999, 966, 999, 998, 967, 968, 1000, 967, 1000, 999, 968, 969, 1001, 968, 1001, 1000, 969, 970, 1002, 969, 1002, 1001, 970, 971, 1003, 970, 1003, 1002, 971, 972, 1004, 971, 1004, 1003, 972, 973, 1005, 972, 1005, 1004, 973, 974, 1006, 973, 1006, 1005, 974, 975, 1007, 974, 1007, 1006, 975, 976, 1008, 975, 1008, 1007, 976, 977, 1009, 976, 1009, 1008, 977, 978, 1010, 977, 1010, 1009, 978, 979, 1011, 978, 1011, 1010, 979, 980, 1012, 979, 1012, 1011, 980, 981, 1013, 980, 1013, 1012, 981, 982, 1014, 981, 1014, 1013, 982, 983, 1015, 982, 1015, 1014, 983, 984, 1016, 983, 1016, 1015, 984, 985, 1017, 984, 1017, 1016, 985, 986, 1018, 985, 1018, 1017, 986, 987, 1019, 986, 1019, 1018, 987, 988, 1020, 987, 1020, 1019, 988, 989, 1021, 988, 1021, 1020, 989, 990, 1022, 989, 1022, 1021, 990, 991, 1023, 990, 1023, 1022] point3f[] points = [(0, 0, 20), (20, 0, 20), (40, 0, 20), (60, 0, 20), (80, 0, 20), (100, 0, 20), (120, 0, 20), (140, 0, 20), (160, 0, 20), (180, 0, 20), (200, 0, 20), (220, 0, 20), (240, 0, 20), (260, 0, 20), (280, 0, 20), (300, 0, 20), (320, 0, 20), (340, 0, 20), (360, 0, 20), (380, 0, 20), (400, 0, 20), (420, 0, 20), (440, 0, 20), (460, 0, 20), (480, 0, 20), (500, 0, 20), (520, 0, 20), (540, 0, 20), (560, 0, 20), (580, 0, 20), (600, 0, 20), (620, 0, 20), (0, 20, 20), (20, 20, 20), (40, 20, 20), (60, 20, 20), (80, 20, 20), (100, 20, 20), (120, 20, 20), (140, 20, 20), (160, 20, 20), (180, 20, 20), (200, 20, 20), (220, 20, 20), (240, 20, 20), (260, 20, 20), (280, 20, 20), (300, 20, 20), (320, 20, 20), (340, 20, 20), (360, 20, 20), (380, 20, 20), (400, 20, 20), (420, 20, 20), (440, 20, 20), (460, 20, 20), (480, 20, 20), (500, 20, 20), (520, 20, 20), (540, 20, 20), (560, 20, 20), (580, 20, 20), (600, 20, 20), (620, 20, 20), (0, 40, 20), (20, 40, 20), (40, 40, 20), (60, 40, 20), (80, 40, 20), (100, 40, 20), (120, 40, 20), (140, 40, 20), (160, 40, 20), (180, 40, 20), (200, 40, 20), (220, 40, 20), (240, 40, 20), (260, 40, 20), (280, 40, 20), (300, 40, 20), (320, 40, 20), (340, 40, 20), (360, 40, 20), (380, 40, 20), (400, 40, 20), (420, 40, 20), (440, 40, 20), (460, 40, 20), (480, 40, 20), (500, 40, 20), (520, 40, 20), (540, 40, 20), (560, 40, 20), (580, 40, 20), (600, 40, 20), (620, 40, 20), (0, 60, 20), (20, 60, 20), (40, 60, 20), (60, 60, 20), (80, 60, 20), (100, 60, 20), (120, 60, 20), (140, 60, 20), (160, 60, 20), (180, 60, 20), (200, 60, 20), (220, 60, 20), (240, 60, 20), (260, 60, 20), (280, 60, 20), (300, 60, 20), (320, 60, 20), (340, 60, 20), (360, 60, 20), (380, 60, 20), (400, 60, 20), (420, 60, 20), (440, 60, 20), (460, 60, 20), (480, 60, 20), (500, 60, 20), (520, 60, 20), (540, 60, 20), (560, 60, 20), (580, 60, 20), (600, 60, 20), (620, 60, 20), (0, 80, 20), (20, 80, 20), (40, 80, 20), (60, 80, 20), (80, 80, 20), (100, 80, 20), (120, 80, 20), (140, 80, 20), (160, 80, 20), (180, 80, 20), (200, 80, 20), (220, 80, 20), (240, 80, 20), (260, 80, 20), (280, 80, 20), (300, 80, 20), (320, 80, 20), (340, 80, 20), (360, 80, 20), (380, 80, 20), (400, 80, 20), (420, 80, 20), (440, 80, 20), (460, 80, 20), (480, 80, 20), (500, 80, 20), (520, 80, 20), (540, 80, 20), (560, 80, 20), (580, 80, 20), (600, 80, 20), (620, 80, 20), (0, 100, 20), (20, 100, 20), (40, 100, 20), (60, 100, 20), (80, 100, 20), (100, 100, 20), (120, 100, 20), (140, 100, 20), (160, 100, 20), (180, 100, 20), (200, 100, 20), (220, 100, 20), (240, 100, 20), (260, 100, 20), (280, 100, 20), (300, 100, 20), (320, 100, 20), (340, 100, 20), (360, 100, 20), (380, 100, 20), (400, 100, 20), (420, 100, 20), (440, 100, 20), (460, 100, 20), (480, 100, 20), (500, 100, 20), (520, 100, 20), (540, 100, 20), (560, 100, 20), (580, 100, 20), (600, 100, 20), (620, 100, 20), (0, 120, 20), (20, 120, 20), (40, 120, 20), (60, 120, 20), (80, 120, 20), (100, 120, 20), (120, 120, 20), (140, 120, 20), (160, 120, 20), (180, 120, 20), (200, 120, 20), (220, 120, 20), (240, 120, 20), (260, 120, 20), (280, 120, 20), (300, 120, 20), (320, 120, 20), (340, 120, 20), (360, 120, 20), (380, 120, 20), (400, 120, 20), (420, 120, 20), (440, 120, 20), (460, 120, 20), (480, 120, 20), (500, 120, 20), (520, 120, 20), (540, 120, 20), (560, 120, 20), (580, 120, 20), (600, 120, 20), (620, 120, 20), (0, 140, 20), (20, 140, 20), (40, 140, 20), (60, 140, 20), (80, 140, 20), (100, 140, 20), (120, 140, 20), (140, 140, 20), (160, 140, 20), (180, 140, 20), (200, 140, 20), (220, 140, 20), (240, 140, 20), (260, 140, 20), (280, 140, 20), (300, 140, 20), (320, 140, 20), (340, 140, 20), (360, 140, 20), (380, 140, 20), (400, 140, 20), (420, 140, 20), (440, 140, 20), (460, 140, 20), (480, 140, 20), (500, 140, 20), (520, 140, 20), (540, 140, 20), (560, 140, 20), (580, 140, 20), (600, 140, 20), (620, 140, 20), (0, 160, 20), (20, 160, 20), (40, 160, 20), (60, 160, 20), (80, 160, 20), (100, 160, 20), (120, 160, 20), (140, 160, 20), (160, 160, 20), (180, 160, 20), (200, 160, 20), (220, 160, 20), (240, 160, 20), (260, 160, 20), (280, 160, 20), (300, 160, 20), (320, 160, 20), (340, 160, 20), (360, 160, 20), (380, 160, 20), (400, 160, 20), (420, 160, 20), (440, 160, 20), (460, 160, 20), (480, 160, 20), (500, 160, 20), (520, 160, 20), (540, 160, 20), (560, 160, 20), (580, 160, 20), (600, 160, 20), (620, 160, 20), (0, 180, 20), (20, 180, 20), (40, 180, 20), (60, 180, 20), (80, 180, 20), (100, 180, 20), (120, 180, 20), (140, 180, 20), (160, 180, 20), (180, 180, 20), (200, 180, 20), (220, 180, 20), (240, 180, 20), (260, 180, 20), (280, 180, 20), (300, 180, 20), (320, 180, 20), (340, 180, 20), (360, 180, 20), (380, 180, 20), (400, 180, 20), (420, 180, 20), (440, 180, 20), (460, 180, 20), (480, 180, 20), (500, 180, 20), (520, 180, 20), (540, 180, 20), (560, 180, 20), (580, 180, 20), (600, 180, 20), (620, 180, 20), (0, 200, 20), (20, 200, 20), (40, 200, 20), (60, 200, 20), (80, 200, 20), (100, 200, 20), (120, 200, 20), (140, 200, 20), (160, 200, 20), (180, 200, 20), (200, 200, 20), (220, 200, 20), (240, 200, 20), (260, 200, 20), (280, 200, 20), (300, 200, 20), (320, 200, 20), (340, 200, 20), (360, 200, 20), (380, 200, 20), (400, 200, 20), (420, 200, 20), (440, 200, 20), (460, 200, 20), (480, 200, 20), (500, 200, 20), (520, 200, 20), (540, 200, 20), (560, 200, 20), (580, 200, 20), (600, 200, 20), (620, 200, 20), (0, 220, 20), (20, 220, 20), (40, 220, 20), (60, 220, 20), (80, 220, 20), (100, 220, 20), (120, 220, 20), (140, 220, 20), (160, 220, 20), (180, 220, 20), (200, 220, 20), (220, 220, 20), (240, 220, 20), (260, 220, 20), (280, 220, 20), (300, 220, 20), (320, 220, 20), (340, 220, 20), (360, 220, 20), (380, 220, 20), (400, 220, 20), (420, 220, 20), (440, 220, 20), (460, 220, 20), (480, 220, 20), (500, 220, 20), (520, 220, 20), (540, 220, 20), (560, 220, 20), (580, 220, 20), (600, 220, 20), (620, 220, 20), (0, 240, 20), (20, 240, 20), (40, 240, 20), (60, 240, 20), (80, 240, 20), (100, 240, 20), (120, 240, 20), (140, 240, 20), (160, 240, 20), (180, 240, 20), (200, 240, 20), (220, 240, 20), (240, 240, 20), (260, 240, 20), (280, 240, 20), (300, 240, 20), (320, 240, 20), (340, 240, 20), (360, 240, 20), (380, 240, 20), (400, 240, 20), (420, 240, 20), (440, 240, 20), (460, 240, 20), (480, 240, 20), (500, 240, 20), (520, 240, 20), (540, 240, 20), (560, 240, 20), (580, 240, 20), (600, 240, 20), (620, 240, 20), (0, 260, 20), (20, 260, 20), (40, 260, 20), (60, 260, 20), (80, 260, 20), (100, 260, 20), (120, 260, 20), (140, 260, 20), (160, 260, 20), (180, 260, 20), (200, 260, 20), (220, 260, 20), (240, 260, 20), (260, 260, 20), (280, 260, 20), (300, 260, 20), (320, 260, 20), (340, 260, 20), (360, 260, 20), (380, 260, 20), (400, 260, 20), (420, 260, 20), (440, 260, 20), (460, 260, 20), (480, 260, 20), (500, 260, 20), (520, 260, 20), (540, 260, 20), (560, 260, 20), (580, 260, 20), (600, 260, 20), (620, 260, 20), (0, 280, 20), (20, 280, 20), (40, 280, 20), (60, 280, 20), (80, 280, 20), (100, 280, 20), (120, 280, 20), (140, 280, 20), (160, 280, 20), (180, 280, 20), (200, 280, 20), (220, 280, 20), (240, 280, 20), (260, 280, 20), (280, 280, 20), (300, 280, 20), (320, 280, 20), (340, 280, 20), (360, 280, 20), (380, 280, 20), (400, 280, 20), (420, 280, 20), (440, 280, 20), (460, 280, 20), (480, 280, 20), (500, 280, 20), (520, 280, 20), (540, 280, 20), (560, 280, 20), (580, 280, 20), (600, 280, 20), (620, 280, 20), (0, 300, 20), (20, 300, 20), (40, 300, 20), (60, 300, 20), (80, 300, 20), (100, 300, 20), (120, 300, 20), (140, 300, 20), (160, 300, 20), (180, 300, 20), (200, 300, 20), (220, 300, 20), (240, 300, 20), (260, 300, 20), (280, 300, 20), (300, 300, 20), (320, 300, 20), (340, 300, 20), (360, 300, 20), (380, 300, 20), (400, 300, 20), (420, 300, 20), (440, 300, 20), (460, 300, 20), (480, 300, 20), (500, 300, 20), (520, 300, 20), (540, 300, 20), (560, 300, 20), (580, 300, 20), (600, 300, 20), (620, 300, 20), (0, 320, 20), (20, 320, 20), (40, 320, 20), (60, 320, 20), (80, 320, 20), (100, 320, 20), (120, 320, 20), (140, 320, 20), (160, 320, 20), (180, 320, 20), (200, 320, 20), (220, 320, 20), (240, 320, 20), (260, 320, 20), (280, 320, 20), (300, 320, 20), (320, 320, 20), (340, 320, 20), (360, 320, 20), (380, 320, 20), (400, 320, 20), (420, 320, 20), (440, 320, 20), (460, 320, 20), (480, 320, 20), (500, 320, 20), (520, 320, 20), (540, 320, 20), (560, 320, 20), (580, 320, 20), (600, 320, 20), (620, 320, 20), (0, 340, 20), (20, 340, 20), (40, 340, 20), (60, 340, 20), (80, 340, 20), (100, 340, 20), (120, 340, 20), (140, 340, 20), (160, 340, 20), (180, 340, 20), (200, 340, 20), (220, 340, 20), (240, 340, 20), (260, 340, 20), (280, 340, 20), (300, 340, 20), (320, 340, 20), (340, 340, 20), (360, 340, 20), (380, 340, 20), (400, 340, 20), (420, 340, 20), (440, 340, 20), (460, 340, 20), (480, 340, 20), (500, 340, 20), (520, 340, 20), (540, 340, 20), (560, 340, 20), (580, 340, 20), (600, 340, 20), (620, 340, 20), (0, 360, 20), (20, 360, 20), (40, 360, 20), (60, 360, 20), (80, 360, 20), (100, 360, 20), (120, 360, 20), (140, 360, 20), (160, 360, 20), (180, 360, 20), (200, 360, 20), (220, 360, 20), (240, 360, 20), (260, 360, 20), (280, 360, 20), (300, 360, 20), (320, 360, 20), (340, 360, 20), (360, 360, 20), (380, 360, 20), (400, 360, 20), (420, 360, 20), (440, 360, 20), (460, 360, 20), (480, 360, 20), (500, 360, 20), (520, 360, 20), (540, 360, 20), (560, 360, 20), (580, 360, 20), (600, 360, 20), (620, 360, 20), (0, 380, 20), (20, 380, 20), (40, 380, 20), (60, 380, 20), (80, 380, 20), (100, 380, 20), (120, 380, 20), (140, 380, 20), (160, 380, 20), (180, 380, 20), (200, 380, 20), (220, 380, 20), (240, 380, 20), (260, 380, 20), (280, 380, 20), (300, 380, 20), (320, 380, 20), (340, 380, 20), (360, 380, 20), (380, 380, 20), (400, 380, 20), (420, 380, 20), (440, 380, 20), (460, 380, 20), (480, 380, 20), (500, 380, 20), (520, 380, 20), (540, 380, 20), (560, 380, 20), (580, 380, 20), (600, 380, 20), (620, 380, 20), (0, 400, 20), (20, 400, 20), (40, 400, 20), (60, 400, 20), (80, 400, 20), (100, 400, 20), (120, 400, 20), (140, 400, 20), (160, 400, 20), (180, 400, 20), (200, 400, 20), (220, 400, 20), (240, 400, 20), (260, 400, 20), (280, 400, 20), (300, 400, 20), (320, 400, 20), (340, 400, 20), (360, 400, 20), (380, 400, 20), (400, 400, 20), (420, 400, 20), (440, 400, 20), (460, 400, 20), (480, 400, 20), (500, 400, 20), (520, 400, 20), (540, 400, 20), (560, 400, 20), (580, 400, 20), (600, 400, 20), (620, 400, 20), (0, 420, 20), (20, 420, 20), (40, 420, 20), (60, 420, 20), (80, 420, 20), (100, 420, 20), (120, 420, 20), (140, 420, 20), (160, 420, 20), (180, 420, 20), (200, 420, 20), (220, 420, 20), (240, 420, 20), (260, 420, 20), (280, 420, 20), (300, 420, 20), (320, 420, 20), (340, 420, 20), (360, 420, 20), (380, 420, 20), (400, 420, 20), (420, 420, 20), (440, 420, 20), (460, 420, 20), (480, 420, 20), (500, 420, 20), (520, 420, 20), (540, 420, 20), (560, 420, 20), (580, 420, 20), (600, 420, 20), (620, 420, 20), (0, 440, 20), (20, 440, 20), (40, 440, 20), (60, 440, 20), (80, 440, 20), (100, 440, 20), (120, 440, 20), (140, 440, 20), (160, 440, 20), (180, 440, 20), (200, 440, 20), (220, 440, 20), (240, 440, 20), (260, 440, 20), (280, 440, 20), (300, 440, 20), (320, 440, 20), (340, 440, 20), (360, 440, 20), (380, 440, 20), (400, 440, 20), (420, 440, 20), (440, 440, 20), (460, 440, 20), (480, 440, 20), (500, 440, 20), (520, 440, 20), (540, 440, 20), (560, 440, 20), (580, 440, 20), (600, 440, 20), (620, 440, 20), (0, 460, 20), (20, 460, 20), (40, 460, 20), (60, 460, 20), (80, 460, 20), (100, 460, 20), (120, 460, 20), (140, 460, 20), (160, 460, 20), (180, 460, 20), (200, 460, 20), (220, 460, 20), (240, 460, 20), (260, 460, 20), (280, 460, 20), (300, 460, 20), (320, 460, 20), (340, 460, 20), (360, 460, 20), (380, 460, 20), (400, 460, 20), (420, 460, 20), (440, 460, 20), (460, 460, 20), (480, 460, 20), (500, 460, 20), (520, 460, 20), (540, 460, 20), (560, 460, 20), (580, 460, 20), (600, 460, 20), (620, 460, 20), (0, 480, 20), (20, 480, 20), (40, 480, 20), (60, 480, 20), (80, 480, 20), (100, 480, 20), (120, 480, 20), (140, 480, 20), (160, 480, 20), (180, 480, 20), (200, 480, 20), (220, 480, 20), (240, 480, 20), (260, 480, 20), (280, 480, 20), (300, 480, 20), (320, 480, 20), (340, 480, 20), (360, 480, 20), (380, 480, 20), (400, 480, 20), (420, 480, 20), (440, 480, 20), (460, 480, 20), (480, 480, 20), (500, 480, 20), (520, 480, 20), (540, 480, 20), (560, 480, 20), (580, 480, 20), (600, 480, 20), (620, 480, 20), (0, 500, 20), (20, 500, 20), (40, 500, 20), (60, 500, 20), (80, 500, 20), (100, 500, 20), (120, 500, 20), (140, 500, 20), (160, 500, 20), (180, 500, 20), (200, 500, 20), (220, 500, 20), (240, 500, 20), (260, 500, 20), (280, 500, 20), (300, 500, 20), (320, 500, 20), (340, 500, 20), (360, 500, 20), (380, 500, 20), (400, 500, 20), (420, 500, 20), (440, 500, 20), (460, 500, 20), (480, 500, 20), (500, 500, 20), (520, 500, 20), (540, 500, 20), (560, 500, 20), (580, 500, 20), (600, 500, 20), (620, 500, 20), (0, 520, 20), (20, 520, 20), (40, 520, 20), (60, 520, 20), (80, 520, 20), (100, 520, 20), (120, 520, 20), (140, 520, 20), (160, 520, 20), (180, 520, 20), (200, 520, 20), (220, 520, 20), (240, 520, 20), (260, 520, 20), (280, 520, 20), (300, 520, 20), (320, 520, 20), (340, 520, 20), (360, 520, 20), (380, 520, 20), (400, 520, 20), (420, 520, 20), (440, 520, 20), (460, 520, 20), (480, 520, 20), (500, 520, 20), (520, 520, 20), (540, 520, 20), (560, 520, 20), (580, 520, 20), (600, 520, 20), (620, 520, 20), (0, 540, 20), (20, 540, 20), (40, 540, 20), (60, 540, 20), (80, 540, 20), (100, 540, 20), (120, 540, 20), (140, 540, 20), (160, 540, 20), (180, 540, 20), (200, 540, 20), (220, 540, 20), (240, 540, 20), (260, 540, 20), (280, 540, 20), (300, 540, 20), (320, 540, 20), (340, 540, 20), (360, 540, 20), (380, 540, 20), (400, 540, 20), (420, 540, 20), (440, 540, 20), (460, 540, 20), (480, 540, 20), (500, 540, 20), (520, 540, 20), (540, 540, 20), (560, 540, 20), (580, 540, 20), (600, 540, 20), (620, 540, 20), (0, 560, 20), (20, 560, 20), (40, 560, 20), (60, 560, 20), (80, 560, 20), (100, 560, 20), (120, 560, 20), (140, 560, 20), (160, 560, 20), (180, 560, 20), (200, 560, 20), (220, 560, 20), (240, 560, 20), (260, 560, 20), (280, 560, 20), (300, 560, 20), (320, 560, 20), (340, 560, 20), (360, 560, 20), (380, 560, 20), (400, 560, 20), (420, 560, 20), (440, 560, 20), (460, 560, 20), (480, 560, 20), (500, 560, 20), (520, 560, 20), (540, 560, 20), (560, 560, 20), (580, 560, 20), (600, 560, 20), (620, 560, 20), (0, 580, 20), (20, 580, 20), (40, 580, 20), (60, 580, 20), (80, 580, 20), (100, 580, 20), (120, 580, 20), (140, 580, 20), (160, 580, 20), (180, 580, 20), (200, 580, 20), (220, 580, 20), (240, 580, 20), (260, 580, 20), (280, 580, 20), (300, 580, 20), (320, 580, 20), (340, 580, 20), (360, 580, 20), (380, 580, 20), (400, 580, 20), (420, 580, 20), (440, 580, 20), (460, 580, 20), (480, 580, 20), (500, 580, 20), (520, 580, 20), (540, 580, 20), (560, 580, 20), (580, 580, 20), (600, 580, 20), (620, 580, 20), (0, 600, 20), (20, 600, 20), (40, 600, 20), (60, 600, 20), (80, 600, 20), (100, 600, 20), (120, 600, 20), (140, 600, 20), (160, 600, 20), (180, 600, 20), (200, 600, 20), (220, 600, 20), (240, 600, 20), (260, 600, 20), (280, 600, 20), (300, 600, 20), (320, 600, 20), (340, 600, 20), (360, 600, 20), (380, 600, 20), (400, 600, 20), (420, 600, 20), (440, 600, 20), (460, 600, 20), (480, 600, 20), (500, 600, 20), (520, 600, 20), (540, 600, 20), (560, 600, 20), (580, 600, 20), (600, 600, 20), (620, 600, 20), (0, 620, 20), (20, 620, 20), (40, 620, 20), (60, 620, 20), (80, 620, 20), (100, 620, 20), (120, 620, 20), (140, 620, 20), (160, 620, 20), (180, 620, 20), (200, 620, 20), (220, 620, 20), (240, 620, 20), (260, 620, 20), (280, 620, 20), (300, 620, 20), (320, 620, 20), (340, 620, 20), (360, 620, 20), (380, 620, 20), (400, 620, 20), (420, 620, 20), (440, 620, 20), (460, 620, 20), (480, 620, 20), (500, 620, 20), (520, 620, 20), (540, 620, 20), (560, 620, 20), (580, 620, 20), (600, 620, 20), (620, 620, 20)] color3f[] primvars:displayColor = [(0.2784314, 0.64705884, 1)] } def ComputeNode "deformer1" { custom token node:type = "omni.graph.examples.cpp.Deformer1" point3f[] inputs:points.connect = </defaultPrim/inputGrid.points> float inputs:multiplier = 3 point3f[] outputs:points } def ComputeNode "deformer2" { custom token node:type = "omni.graph.examples.cpp.Deformer2" point3f[] inputs:points.connect = </defaultPrim/deformer1.outputs:points> float inputs:threshold = 10 point3f[] outputs:points } def ComputeGraphSettings "computegraphSettings" { custom token evaluator:type = "dirty_push" } def Mesh "outputGrid" { uniform bool doubleSided = 1 int[] faceVertexCounts = [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 1, 33, 0, 33, 32, 1, 2, 34, 1, 34, 33, 2, 3, 35, 2, 35, 34, 3, 4, 36, 3, 36, 35, 4, 5, 37, 4, 37, 36, 5, 6, 38, 5, 38, 37, 6, 7, 39, 6, 39, 38, 7, 8, 40, 7, 40, 39, 8, 9, 41, 8, 41, 40, 9, 10, 42, 9, 42, 41, 10, 11, 43, 10, 43, 42, 11, 12, 44, 11, 44, 43, 12, 13, 45, 12, 45, 44, 13, 14, 46, 13, 46, 45, 14, 15, 47, 14, 47, 46, 15, 16, 48, 15, 48, 47, 16, 17, 49, 16, 49, 48, 17, 18, 50, 17, 50, 49, 18, 19, 51, 18, 51, 50, 19, 20, 52, 19, 52, 51, 20, 21, 53, 20, 53, 52, 21, 22, 54, 21, 54, 53, 22, 23, 55, 22, 55, 54, 23, 24, 56, 23, 56, 55, 24, 25, 57, 24, 57, 56, 25, 26, 58, 25, 58, 57, 26, 27, 59, 26, 59, 58, 27, 28, 60, 27, 60, 59, 28, 29, 61, 28, 61, 60, 29, 30, 62, 29, 62, 61, 30, 31, 63, 30, 63, 62, 32, 33, 65, 32, 65, 64, 33, 34, 66, 33, 66, 65, 34, 35, 67, 34, 67, 66, 35, 36, 68, 35, 68, 67, 36, 37, 69, 36, 69, 68, 37, 38, 70, 37, 70, 69, 38, 39, 71, 38, 71, 70, 39, 40, 72, 39, 72, 71, 40, 41, 73, 40, 73, 72, 41, 42, 74, 41, 74, 73, 42, 43, 75, 42, 75, 74, 43, 44, 76, 43, 76, 75, 44, 45, 77, 44, 77, 76, 45, 46, 78, 45, 78, 77, 46, 47, 79, 46, 79, 78, 47, 48, 80, 47, 80, 79, 48, 49, 81, 48, 81, 80, 49, 50, 82, 49, 82, 81, 50, 51, 83, 50, 83, 82, 51, 52, 84, 51, 84, 83, 52, 53, 85, 52, 85, 84, 53, 54, 86, 53, 86, 85, 54, 55, 87, 54, 87, 86, 55, 56, 88, 55, 88, 87, 56, 57, 89, 56, 89, 88, 57, 58, 90, 57, 90, 89, 58, 59, 91, 58, 91, 90, 59, 60, 92, 59, 92, 91, 60, 61, 93, 60, 93, 92, 61, 62, 94, 61, 94, 93, 62, 63, 95, 62, 95, 94, 64, 65, 97, 64, 97, 96, 65, 66, 98, 65, 98, 97, 66, 67, 99, 66, 99, 98, 67, 68, 100, 67, 100, 99, 68, 69, 101, 68, 101, 100, 69, 70, 102, 69, 102, 101, 70, 71, 103, 70, 103, 102, 71, 72, 104, 71, 104, 103, 72, 73, 105, 72, 105, 104, 73, 74, 106, 73, 106, 105, 74, 75, 107, 74, 107, 106, 75, 76, 108, 75, 108, 107, 76, 77, 109, 76, 109, 108, 77, 78, 110, 77, 110, 109, 78, 79, 111, 78, 111, 110, 79, 80, 112, 79, 112, 111, 80, 81, 113, 80, 113, 112, 81, 82, 114, 81, 114, 113, 82, 83, 115, 82, 115, 114, 83, 84, 116, 83, 116, 115, 84, 85, 117, 84, 117, 116, 85, 86, 118, 85, 118, 117, 86, 87, 119, 86, 119, 118, 87, 88, 120, 87, 120, 119, 88, 89, 121, 88, 121, 120, 89, 90, 122, 89, 122, 121, 90, 91, 123, 90, 123, 122, 91, 92, 124, 91, 124, 123, 92, 93, 125, 92, 125, 124, 93, 94, 126, 93, 126, 125, 94, 95, 127, 94, 127, 126, 96, 97, 129, 96, 129, 128, 97, 98, 130, 97, 130, 129, 98, 99, 131, 98, 131, 130, 99, 100, 132, 99, 132, 131, 100, 101, 133, 100, 133, 132, 101, 102, 134, 101, 134, 133, 102, 103, 135, 102, 135, 134, 103, 104, 136, 103, 136, 135, 104, 105, 137, 104, 137, 136, 105, 106, 138, 105, 138, 137, 106, 107, 139, 106, 139, 138, 107, 108, 140, 107, 140, 139, 108, 109, 141, 108, 141, 140, 109, 110, 142, 109, 142, 141, 110, 111, 143, 110, 143, 142, 111, 112, 144, 111, 144, 143, 112, 113, 145, 112, 145, 144, 113, 114, 146, 113, 146, 145, 114, 115, 147, 114, 147, 146, 115, 116, 148, 115, 148, 147, 116, 117, 149, 116, 149, 148, 117, 118, 150, 117, 150, 149, 118, 119, 151, 118, 151, 150, 119, 120, 152, 119, 152, 151, 120, 121, 153, 120, 153, 152, 121, 122, 154, 121, 154, 153, 122, 123, 155, 122, 155, 154, 123, 124, 156, 123, 156, 155, 124, 125, 157, 124, 157, 156, 125, 126, 158, 125, 158, 157, 126, 127, 159, 126, 159, 158, 128, 129, 161, 128, 161, 160, 129, 130, 162, 129, 162, 161, 130, 131, 163, 130, 163, 162, 131, 132, 164, 131, 164, 163, 132, 133, 165, 132, 165, 164, 133, 134, 166, 133, 166, 165, 134, 135, 167, 134, 167, 166, 135, 136, 168, 135, 168, 167, 136, 137, 169, 136, 169, 168, 137, 138, 170, 137, 170, 169, 138, 139, 171, 138, 171, 170, 139, 140, 172, 139, 172, 171, 140, 141, 173, 140, 173, 172, 141, 142, 174, 141, 174, 173, 142, 143, 175, 142, 175, 174, 143, 144, 176, 143, 176, 175, 144, 145, 177, 144, 177, 176, 145, 146, 178, 145, 178, 177, 146, 147, 179, 146, 179, 178, 147, 148, 180, 147, 180, 179, 148, 149, 181, 148, 181, 180, 149, 150, 182, 149, 182, 181, 150, 151, 183, 150, 183, 182, 151, 152, 184, 151, 184, 183, 152, 153, 185, 152, 185, 184, 153, 154, 186, 153, 186, 185, 154, 155, 187, 154, 187, 186, 155, 156, 188, 155, 188, 187, 156, 157, 189, 156, 189, 188, 157, 158, 190, 157, 190, 189, 158, 159, 191, 158, 191, 190, 160, 161, 193, 160, 193, 192, 161, 162, 194, 161, 194, 193, 162, 163, 195, 162, 195, 194, 163, 164, 196, 163, 196, 195, 164, 165, 197, 164, 197, 196, 165, 166, 198, 165, 198, 197, 166, 167, 199, 166, 199, 198, 167, 168, 200, 167, 200, 199, 168, 169, 201, 168, 201, 200, 169, 170, 202, 169, 202, 201, 170, 171, 203, 170, 203, 202, 171, 172, 204, 171, 204, 203, 172, 173, 205, 172, 205, 204, 173, 174, 206, 173, 206, 205, 174, 175, 207, 174, 207, 206, 175, 176, 208, 175, 208, 207, 176, 177, 209, 176, 209, 208, 177, 178, 210, 177, 210, 209, 178, 179, 211, 178, 211, 210, 179, 180, 212, 179, 212, 211, 180, 181, 213, 180, 213, 212, 181, 182, 214, 181, 214, 213, 182, 183, 215, 182, 215, 214, 183, 184, 216, 183, 216, 215, 184, 185, 217, 184, 217, 216, 185, 186, 218, 185, 218, 217, 186, 187, 219, 186, 219, 218, 187, 188, 220, 187, 220, 219, 188, 189, 221, 188, 221, 220, 189, 190, 222, 189, 222, 221, 190, 191, 223, 190, 223, 222, 192, 193, 225, 192, 225, 224, 193, 194, 226, 193, 226, 225, 194, 195, 227, 194, 227, 226, 195, 196, 228, 195, 228, 227, 196, 197, 229, 196, 229, 228, 197, 198, 230, 197, 230, 229, 198, 199, 231, 198, 231, 230, 199, 200, 232, 199, 232, 231, 200, 201, 233, 200, 233, 232, 201, 202, 234, 201, 234, 233, 202, 203, 235, 202, 235, 234, 203, 204, 236, 203, 236, 235, 204, 205, 237, 204, 237, 236, 205, 206, 238, 205, 238, 237, 206, 207, 239, 206, 239, 238, 207, 208, 240, 207, 240, 239, 208, 209, 241, 208, 241, 240, 209, 210, 242, 209, 242, 241, 210, 211, 243, 210, 243, 242, 211, 212, 244, 211, 244, 243, 212, 213, 245, 212, 245, 244, 213, 214, 246, 213, 246, 245, 214, 215, 247, 214, 247, 246, 215, 216, 248, 215, 248, 247, 216, 217, 249, 216, 249, 248, 217, 218, 250, 217, 250, 249, 218, 219, 251, 218, 251, 250, 219, 220, 252, 219, 252, 251, 220, 221, 253, 220, 253, 252, 221, 222, 254, 221, 254, 253, 222, 223, 255, 222, 255, 254, 224, 225, 257, 224, 257, 256, 225, 226, 258, 225, 258, 257, 226, 227, 259, 226, 259, 258, 227, 228, 260, 227, 260, 259, 228, 229, 261, 228, 261, 260, 229, 230, 262, 229, 262, 261, 230, 231, 263, 230, 263, 262, 231, 232, 264, 231, 264, 263, 232, 233, 265, 232, 265, 264, 233, 234, 266, 233, 266, 265, 234, 235, 267, 234, 267, 266, 235, 236, 268, 235, 268, 267, 236, 237, 269, 236, 269, 268, 237, 238, 270, 237, 270, 269, 238, 239, 271, 238, 271, 270, 239, 240, 272, 239, 272, 271, 240, 241, 273, 240, 273, 272, 241, 242, 274, 241, 274, 273, 242, 243, 275, 242, 275, 274, 243, 244, 276, 243, 276, 275, 244, 245, 277, 244, 277, 276, 245, 246, 278, 245, 278, 277, 246, 247, 279, 246, 279, 278, 247, 248, 280, 247, 280, 279, 248, 249, 281, 248, 281, 280, 249, 250, 282, 249, 282, 281, 250, 251, 283, 250, 283, 282, 251, 252, 284, 251, 284, 283, 252, 253, 285, 252, 285, 284, 253, 254, 286, 253, 286, 285, 254, 255, 287, 254, 287, 286, 256, 257, 289, 256, 289, 288, 257, 258, 290, 257, 290, 289, 258, 259, 291, 258, 291, 290, 259, 260, 292, 259, 292, 291, 260, 261, 293, 260, 293, 292, 261, 262, 294, 261, 294, 293, 262, 263, 295, 262, 295, 294, 263, 264, 296, 263, 296, 295, 264, 265, 297, 264, 297, 296, 265, 266, 298, 265, 298, 297, 266, 267, 299, 266, 299, 298, 267, 268, 300, 267, 300, 299, 268, 269, 301, 268, 301, 300, 269, 270, 302, 269, 302, 301, 270, 271, 303, 270, 303, 302, 271, 272, 304, 271, 304, 303, 272, 273, 305, 272, 305, 304, 273, 274, 306, 273, 306, 305, 274, 275, 307, 274, 307, 306, 275, 276, 308, 275, 308, 307, 276, 277, 309, 276, 309, 308, 277, 278, 310, 277, 310, 309, 278, 279, 311, 278, 311, 310, 279, 280, 312, 279, 312, 311, 280, 281, 313, 280, 313, 312, 281, 282, 314, 281, 314, 313, 282, 283, 315, 282, 315, 314, 283, 284, 316, 283, 316, 315, 284, 285, 317, 284, 317, 316, 285, 286, 318, 285, 318, 317, 286, 287, 319, 286, 319, 318, 288, 289, 321, 288, 321, 320, 289, 290, 322, 289, 322, 321, 290, 291, 323, 290, 323, 322, 291, 292, 324, 291, 324, 323, 292, 293, 325, 292, 325, 324, 293, 294, 326, 293, 326, 325, 294, 295, 327, 294, 327, 326, 295, 296, 328, 295, 328, 327, 296, 297, 329, 296, 329, 328, 297, 298, 330, 297, 330, 329, 298, 299, 331, 298, 331, 330, 299, 300, 332, 299, 332, 331, 300, 301, 333, 300, 333, 332, 301, 302, 334, 301, 334, 333, 302, 303, 335, 302, 335, 334, 303, 304, 336, 303, 336, 335, 304, 305, 337, 304, 337, 336, 305, 306, 338, 305, 338, 337, 306, 307, 339, 306, 339, 338, 307, 308, 340, 307, 340, 339, 308, 309, 341, 308, 341, 340, 309, 310, 342, 309, 342, 341, 310, 311, 343, 310, 343, 342, 311, 312, 344, 311, 344, 343, 312, 313, 345, 312, 345, 344, 313, 314, 346, 313, 346, 345, 314, 315, 347, 314, 347, 346, 315, 316, 348, 315, 348, 347, 316, 317, 349, 316, 349, 348, 317, 318, 350, 317, 350, 349, 318, 319, 351, 318, 351, 350, 320, 321, 353, 320, 353, 352, 321, 322, 354, 321, 354, 353, 322, 323, 355, 322, 355, 354, 323, 324, 356, 323, 356, 355, 324, 325, 357, 324, 357, 356, 325, 326, 358, 325, 358, 357, 326, 327, 359, 326, 359, 358, 327, 328, 360, 327, 360, 359, 328, 329, 361, 328, 361, 360, 329, 330, 362, 329, 362, 361, 330, 331, 363, 330, 363, 362, 331, 332, 364, 331, 364, 363, 332, 333, 365, 332, 365, 364, 333, 334, 366, 333, 366, 365, 334, 335, 367, 334, 367, 366, 335, 336, 368, 335, 368, 367, 336, 337, 369, 336, 369, 368, 337, 338, 370, 337, 370, 369, 338, 339, 371, 338, 371, 370, 339, 340, 372, 339, 372, 371, 340, 341, 373, 340, 373, 372, 341, 342, 374, 341, 374, 373, 342, 343, 375, 342, 375, 374, 343, 344, 376, 343, 376, 375, 344, 345, 377, 344, 377, 376, 345, 346, 378, 345, 378, 377, 346, 347, 379, 346, 379, 378, 347, 348, 380, 347, 380, 379, 348, 349, 381, 348, 381, 380, 349, 350, 382, 349, 382, 381, 350, 351, 383, 350, 383, 382, 352, 353, 385, 352, 385, 384, 353, 354, 386, 353, 386, 385, 354, 355, 387, 354, 387, 386, 355, 356, 388, 355, 388, 387, 356, 357, 389, 356, 389, 388, 357, 358, 390, 357, 390, 389, 358, 359, 391, 358, 391, 390, 359, 360, 392, 359, 392, 391, 360, 361, 393, 360, 393, 392, 361, 362, 394, 361, 394, 393, 362, 363, 395, 362, 395, 394, 363, 364, 396, 363, 396, 395, 364, 365, 397, 364, 397, 396, 365, 366, 398, 365, 398, 397, 366, 367, 399, 366, 399, 398, 367, 368, 400, 367, 400, 399, 368, 369, 401, 368, 401, 400, 369, 370, 402, 369, 402, 401, 370, 371, 403, 370, 403, 402, 371, 372, 404, 371, 404, 403, 372, 373, 405, 372, 405, 404, 373, 374, 406, 373, 406, 405, 374, 375, 407, 374, 407, 406, 375, 376, 408, 375, 408, 407, 376, 377, 409, 376, 409, 408, 377, 378, 410, 377, 410, 409, 378, 379, 411, 378, 411, 410, 379, 380, 412, 379, 412, 411, 380, 381, 413, 380, 413, 412, 381, 382, 414, 381, 414, 413, 382, 383, 415, 382, 415, 414, 384, 385, 417, 384, 417, 416, 385, 386, 418, 385, 418, 417, 386, 387, 419, 386, 419, 418, 387, 388, 420, 387, 420, 419, 388, 389, 421, 388, 421, 420, 389, 390, 422, 389, 422, 421, 390, 391, 423, 390, 423, 422, 391, 392, 424, 391, 424, 423, 392, 393, 425, 392, 425, 424, 393, 394, 426, 393, 426, 425, 394, 395, 427, 394, 427, 426, 395, 396, 428, 395, 428, 427, 396, 397, 429, 396, 429, 428, 397, 398, 430, 397, 430, 429, 398, 399, 431, 398, 431, 430, 399, 400, 432, 399, 432, 431, 400, 401, 433, 400, 433, 432, 401, 402, 434, 401, 434, 433, 402, 403, 435, 402, 435, 434, 403, 404, 436, 403, 436, 435, 404, 405, 437, 404, 437, 436, 405, 406, 438, 405, 438, 437, 406, 407, 439, 406, 439, 438, 407, 408, 440, 407, 440, 439, 408, 409, 441, 408, 441, 440, 409, 410, 442, 409, 442, 441, 410, 411, 443, 410, 443, 442, 411, 412, 444, 411, 444, 443, 412, 413, 445, 412, 445, 444, 413, 414, 446, 413, 446, 445, 414, 415, 447, 414, 447, 446, 416, 417, 449, 416, 449, 448, 417, 418, 450, 417, 450, 449, 418, 419, 451, 418, 451, 450, 419, 420, 452, 419, 452, 451, 420, 421, 453, 420, 453, 452, 421, 422, 454, 421, 454, 453, 422, 423, 455, 422, 455, 454, 423, 424, 456, 423, 456, 455, 424, 425, 457, 424, 457, 456, 425, 426, 458, 425, 458, 457, 426, 427, 459, 426, 459, 458, 427, 428, 460, 427, 460, 459, 428, 429, 461, 428, 461, 460, 429, 430, 462, 429, 462, 461, 430, 431, 463, 430, 463, 462, 431, 432, 464, 431, 464, 463, 432, 433, 465, 432, 465, 464, 433, 434, 466, 433, 466, 465, 434, 435, 467, 434, 467, 466, 435, 436, 468, 435, 468, 467, 436, 437, 469, 436, 469, 468, 437, 438, 470, 437, 470, 469, 438, 439, 471, 438, 471, 470, 439, 440, 472, 439, 472, 471, 440, 441, 473, 440, 473, 472, 441, 442, 474, 441, 474, 473, 442, 443, 475, 442, 475, 474, 443, 444, 476, 443, 476, 475, 444, 445, 477, 444, 477, 476, 445, 446, 478, 445, 478, 477, 446, 447, 479, 446, 479, 478, 448, 449, 481, 448, 481, 480, 449, 450, 482, 449, 482, 481, 450, 451, 483, 450, 483, 482, 451, 452, 484, 451, 484, 483, 452, 453, 485, 452, 485, 484, 453, 454, 486, 453, 486, 485, 454, 455, 487, 454, 487, 486, 455, 456, 488, 455, 488, 487, 456, 457, 489, 456, 489, 488, 457, 458, 490, 457, 490, 489, 458, 459, 491, 458, 491, 490, 459, 460, 492, 459, 492, 491, 460, 461, 493, 460, 493, 492, 461, 462, 494, 461, 494, 493, 462, 463, 495, 462, 495, 494, 463, 464, 496, 463, 496, 495, 464, 465, 497, 464, 497, 496, 465, 466, 498, 465, 498, 497, 466, 467, 499, 466, 499, 498, 467, 468, 500, 467, 500, 499, 468, 469, 501, 468, 501, 500, 469, 470, 502, 469, 502, 501, 470, 471, 503, 470, 503, 502, 471, 472, 504, 471, 504, 503, 472, 473, 505, 472, 505, 504, 473, 474, 506, 473, 506, 505, 474, 475, 507, 474, 507, 506, 475, 476, 508, 475, 508, 507, 476, 477, 509, 476, 509, 508, 477, 478, 510, 477, 510, 509, 478, 479, 511, 478, 511, 510, 480, 481, 513, 480, 513, 512, 481, 482, 514, 481, 514, 513, 482, 483, 515, 482, 515, 514, 483, 484, 516, 483, 516, 515, 484, 485, 517, 484, 517, 516, 485, 486, 518, 485, 518, 517, 486, 487, 519, 486, 519, 518, 487, 488, 520, 487, 520, 519, 488, 489, 521, 488, 521, 520, 489, 490, 522, 489, 522, 521, 490, 491, 523, 490, 523, 522, 491, 492, 524, 491, 524, 523, 492, 493, 525, 492, 525, 524, 493, 494, 526, 493, 526, 525, 494, 495, 527, 494, 527, 526, 495, 496, 528, 495, 528, 527, 496, 497, 529, 496, 529, 528, 497, 498, 530, 497, 530, 529, 498, 499, 531, 498, 531, 530, 499, 500, 532, 499, 532, 531, 500, 501, 533, 500, 533, 532, 501, 502, 534, 501, 534, 533, 502, 503, 535, 502, 535, 534, 503, 504, 536, 503, 536, 535, 504, 505, 537, 504, 537, 536, 505, 506, 538, 505, 538, 537, 506, 507, 539, 506, 539, 538, 507, 508, 540, 507, 540, 539, 508, 509, 541, 508, 541, 540, 509, 510, 542, 509, 542, 541, 510, 511, 543, 510, 543, 542, 512, 513, 545, 512, 545, 544, 513, 514, 546, 513, 546, 545, 514, 515, 547, 514, 547, 546, 515, 516, 548, 515, 548, 547, 516, 517, 549, 516, 549, 548, 517, 518, 550, 517, 550, 549, 518, 519, 551, 518, 551, 550, 519, 520, 552, 519, 552, 551, 520, 521, 553, 520, 553, 552, 521, 522, 554, 521, 554, 553, 522, 523, 555, 522, 555, 554, 523, 524, 556, 523, 556, 555, 524, 525, 557, 524, 557, 556, 525, 526, 558, 525, 558, 557, 526, 527, 559, 526, 559, 558, 527, 528, 560, 527, 560, 559, 528, 529, 561, 528, 561, 560, 529, 530, 562, 529, 562, 561, 530, 531, 563, 530, 563, 562, 531, 532, 564, 531, 564, 563, 532, 533, 565, 532, 565, 564, 533, 534, 566, 533, 566, 565, 534, 535, 567, 534, 567, 566, 535, 536, 568, 535, 568, 567, 536, 537, 569, 536, 569, 568, 537, 538, 570, 537, 570, 569, 538, 539, 571, 538, 571, 570, 539, 540, 572, 539, 572, 571, 540, 541, 573, 540, 573, 572, 541, 542, 574, 541, 574, 573, 542, 543, 575, 542, 575, 574, 544, 545, 577, 544, 577, 576, 545, 546, 578, 545, 578, 577, 546, 547, 579, 546, 579, 578, 547, 548, 580, 547, 580, 579, 548, 549, 581, 548, 581, 580, 549, 550, 582, 549, 582, 581, 550, 551, 583, 550, 583, 582, 551, 552, 584, 551, 584, 583, 552, 553, 585, 552, 585, 584, 553, 554, 586, 553, 586, 585, 554, 555, 587, 554, 587, 586, 555, 556, 588, 555, 588, 587, 556, 557, 589, 556, 589, 588, 557, 558, 590, 557, 590, 589, 558, 559, 591, 558, 591, 590, 559, 560, 592, 559, 592, 591, 560, 561, 593, 560, 593, 592, 561, 562, 594, 561, 594, 593, 562, 563, 595, 562, 595, 594, 563, 564, 596, 563, 596, 595, 564, 565, 597, 564, 597, 596, 565, 566, 598, 565, 598, 597, 566, 567, 599, 566, 599, 598, 567, 568, 600, 567, 600, 599, 568, 569, 601, 568, 601, 600, 569, 570, 602, 569, 602, 601, 570, 571, 603, 570, 603, 602, 571, 572, 604, 571, 604, 603, 572, 573, 605, 572, 605, 604, 573, 574, 606, 573, 606, 605, 574, 575, 607, 574, 607, 606, 576, 577, 609, 576, 609, 608, 577, 578, 610, 577, 610, 609, 578, 579, 611, 578, 611, 610, 579, 580, 612, 579, 612, 611, 580, 581, 613, 580, 613, 612, 581, 582, 614, 581, 614, 613, 582, 583, 615, 582, 615, 614, 583, 584, 616, 583, 616, 615, 584, 585, 617, 584, 617, 616, 585, 586, 618, 585, 618, 617, 586, 587, 619, 586, 619, 618, 587, 588, 620, 587, 620, 619, 588, 589, 621, 588, 621, 620, 589, 590, 622, 589, 622, 621, 590, 591, 623, 590, 623, 622, 591, 592, 624, 591, 624, 623, 592, 593, 625, 592, 625, 624, 593, 594, 626, 593, 626, 625, 594, 595, 627, 594, 627, 626, 595, 596, 628, 595, 628, 627, 596, 597, 629, 596, 629, 628, 597, 598, 630, 597, 630, 629, 598, 599, 631, 598, 631, 630, 599, 600, 632, 599, 632, 631, 600, 601, 633, 600, 633, 632, 601, 602, 634, 601, 634, 633, 602, 603, 635, 602, 635, 634, 603, 604, 636, 603, 636, 635, 604, 605, 637, 604, 637, 636, 605, 606, 638, 605, 638, 637, 606, 607, 639, 606, 639, 638, 608, 609, 641, 608, 641, 640, 609, 610, 642, 609, 642, 641, 610, 611, 643, 610, 643, 642, 611, 612, 644, 611, 644, 643, 612, 613, 645, 612, 645, 644, 613, 614, 646, 613, 646, 645, 614, 615, 647, 614, 647, 646, 615, 616, 648, 615, 648, 647, 616, 617, 649, 616, 649, 648, 617, 618, 650, 617, 650, 649, 618, 619, 651, 618, 651, 650, 619, 620, 652, 619, 652, 651, 620, 621, 653, 620, 653, 652, 621, 622, 654, 621, 654, 653, 622, 623, 655, 622, 655, 654, 623, 624, 656, 623, 656, 655, 624, 625, 657, 624, 657, 656, 625, 626, 658, 625, 658, 657, 626, 627, 659, 626, 659, 658, 627, 628, 660, 627, 660, 659, 628, 629, 661, 628, 661, 660, 629, 630, 662, 629, 662, 661, 630, 631, 663, 630, 663, 662, 631, 632, 664, 631, 664, 663, 632, 633, 665, 632, 665, 664, 633, 634, 666, 633, 666, 665, 634, 635, 667, 634, 667, 666, 635, 636, 668, 635, 668, 667, 636, 637, 669, 636, 669, 668, 637, 638, 670, 637, 670, 669, 638, 639, 671, 638, 671, 670, 640, 641, 673, 640, 673, 672, 641, 642, 674, 641, 674, 673, 642, 643, 675, 642, 675, 674, 643, 644, 676, 643, 676, 675, 644, 645, 677, 644, 677, 676, 645, 646, 678, 645, 678, 677, 646, 647, 679, 646, 679, 678, 647, 648, 680, 647, 680, 679, 648, 649, 681, 648, 681, 680, 649, 650, 682, 649, 682, 681, 650, 651, 683, 650, 683, 682, 651, 652, 684, 651, 684, 683, 652, 653, 685, 652, 685, 684, 653, 654, 686, 653, 686, 685, 654, 655, 687, 654, 687, 686, 655, 656, 688, 655, 688, 687, 656, 657, 689, 656, 689, 688, 657, 658, 690, 657, 690, 689, 658, 659, 691, 658, 691, 690, 659, 660, 692, 659, 692, 691, 660, 661, 693, 660, 693, 692, 661, 662, 694, 661, 694, 693, 662, 663, 695, 662, 695, 694, 663, 664, 696, 663, 696, 695, 664, 665, 697, 664, 697, 696, 665, 666, 698, 665, 698, 697, 666, 667, 699, 666, 699, 698, 667, 668, 700, 667, 700, 699, 668, 669, 701, 668, 701, 700, 669, 670, 702, 669, 702, 701, 670, 671, 703, 670, 703, 702, 672, 673, 705, 672, 705, 704, 673, 674, 706, 673, 706, 705, 674, 675, 707, 674, 707, 706, 675, 676, 708, 675, 708, 707, 676, 677, 709, 676, 709, 708, 677, 678, 710, 677, 710, 709, 678, 679, 711, 678, 711, 710, 679, 680, 712, 679, 712, 711, 680, 681, 713, 680, 713, 712, 681, 682, 714, 681, 714, 713, 682, 683, 715, 682, 715, 714, 683, 684, 716, 683, 716, 715, 684, 685, 717, 684, 717, 716, 685, 686, 718, 685, 718, 717, 686, 687, 719, 686, 719, 718, 687, 688, 720, 687, 720, 719, 688, 689, 721, 688, 721, 720, 689, 690, 722, 689, 722, 721, 690, 691, 723, 690, 723, 722, 691, 692, 724, 691, 724, 723, 692, 693, 725, 692, 725, 724, 693, 694, 726, 693, 726, 725, 694, 695, 727, 694, 727, 726, 695, 696, 728, 695, 728, 727, 696, 697, 729, 696, 729, 728, 697, 698, 730, 697, 730, 729, 698, 699, 731, 698, 731, 730, 699, 700, 732, 699, 732, 731, 700, 701, 733, 700, 733, 732, 701, 702, 734, 701, 734, 733, 702, 703, 735, 702, 735, 734, 704, 705, 737, 704, 737, 736, 705, 706, 738, 705, 738, 737, 706, 707, 739, 706, 739, 738, 707, 708, 740, 707, 740, 739, 708, 709, 741, 708, 741, 740, 709, 710, 742, 709, 742, 741, 710, 711, 743, 710, 743, 742, 711, 712, 744, 711, 744, 743, 712, 713, 745, 712, 745, 744, 713, 714, 746, 713, 746, 745, 714, 715, 747, 714, 747, 746, 715, 716, 748, 715, 748, 747, 716, 717, 749, 716, 749, 748, 717, 718, 750, 717, 750, 749, 718, 719, 751, 718, 751, 750, 719, 720, 752, 719, 752, 751, 720, 721, 753, 720, 753, 752, 721, 722, 754, 721, 754, 753, 722, 723, 755, 722, 755, 754, 723, 724, 756, 723, 756, 755, 724, 725, 757, 724, 757, 756, 725, 726, 758, 725, 758, 757, 726, 727, 759, 726, 759, 758, 727, 728, 760, 727, 760, 759, 728, 729, 761, 728, 761, 760, 729, 730, 762, 729, 762, 761, 730, 731, 763, 730, 763, 762, 731, 732, 764, 731, 764, 763, 732, 733, 765, 732, 765, 764, 733, 734, 766, 733, 766, 765, 734, 735, 767, 734, 767, 766, 736, 737, 769, 736, 769, 768, 737, 738, 770, 737, 770, 769, 738, 739, 771, 738, 771, 770, 739, 740, 772, 739, 772, 771, 740, 741, 773, 740, 773, 772, 741, 742, 774, 741, 774, 773, 742, 743, 775, 742, 775, 774, 743, 744, 776, 743, 776, 775, 744, 745, 777, 744, 777, 776, 745, 746, 778, 745, 778, 777, 746, 747, 779, 746, 779, 778, 747, 748, 780, 747, 780, 779, 748, 749, 781, 748, 781, 780, 749, 750, 782, 749, 782, 781, 750, 751, 783, 750, 783, 782, 751, 752, 784, 751, 784, 783, 752, 753, 785, 752, 785, 784, 753, 754, 786, 753, 786, 785, 754, 755, 787, 754, 787, 786, 755, 756, 788, 755, 788, 787, 756, 757, 789, 756, 789, 788, 757, 758, 790, 757, 790, 789, 758, 759, 791, 758, 791, 790, 759, 760, 792, 759, 792, 791, 760, 761, 793, 760, 793, 792, 761, 762, 794, 761, 794, 793, 762, 763, 795, 762, 795, 794, 763, 764, 796, 763, 796, 795, 764, 765, 797, 764, 797, 796, 765, 766, 798, 765, 798, 797, 766, 767, 799, 766, 799, 798, 768, 769, 801, 768, 801, 800, 769, 770, 802, 769, 802, 801, 770, 771, 803, 770, 803, 802, 771, 772, 804, 771, 804, 803, 772, 773, 805, 772, 805, 804, 773, 774, 806, 773, 806, 805, 774, 775, 807, 774, 807, 806, 775, 776, 808, 775, 808, 807, 776, 777, 809, 776, 809, 808, 777, 778, 810, 777, 810, 809, 778, 779, 811, 778, 811, 810, 779, 780, 812, 779, 812, 811, 780, 781, 813, 780, 813, 812, 781, 782, 814, 781, 814, 813, 782, 783, 815, 782, 815, 814, 783, 784, 816, 783, 816, 815, 784, 785, 817, 784, 817, 816, 785, 786, 818, 785, 818, 817, 786, 787, 819, 786, 819, 818, 787, 788, 820, 787, 820, 819, 788, 789, 821, 788, 821, 820, 789, 790, 822, 789, 822, 821, 790, 791, 823, 790, 823, 822, 791, 792, 824, 791, 824, 823, 792, 793, 825, 792, 825, 824, 793, 794, 826, 793, 826, 825, 794, 795, 827, 794, 827, 826, 795, 796, 828, 795, 828, 827, 796, 797, 829, 796, 829, 828, 797, 798, 830, 797, 830, 829, 798, 799, 831, 798, 831, 830, 800, 801, 833, 800, 833, 832, 801, 802, 834, 801, 834, 833, 802, 803, 835, 802, 835, 834, 803, 804, 836, 803, 836, 835, 804, 805, 837, 804, 837, 836, 805, 806, 838, 805, 838, 837, 806, 807, 839, 806, 839, 838, 807, 808, 840, 807, 840, 839, 808, 809, 841, 808, 841, 840, 809, 810, 842, 809, 842, 841, 810, 811, 843, 810, 843, 842, 811, 812, 844, 811, 844, 843, 812, 813, 845, 812, 845, 844, 813, 814, 846, 813, 846, 845, 814, 815, 847, 814, 847, 846, 815, 816, 848, 815, 848, 847, 816, 817, 849, 816, 849, 848, 817, 818, 850, 817, 850, 849, 818, 819, 851, 818, 851, 850, 819, 820, 852, 819, 852, 851, 820, 821, 853, 820, 853, 852, 821, 822, 854, 821, 854, 853, 822, 823, 855, 822, 855, 854, 823, 824, 856, 823, 856, 855, 824, 825, 857, 824, 857, 856, 825, 826, 858, 825, 858, 857, 826, 827, 859, 826, 859, 858, 827, 828, 860, 827, 860, 859, 828, 829, 861, 828, 861, 860, 829, 830, 862, 829, 862, 861, 830, 831, 863, 830, 863, 862, 832, 833, 865, 832, 865, 864, 833, 834, 866, 833, 866, 865, 834, 835, 867, 834, 867, 866, 835, 836, 868, 835, 868, 867, 836, 837, 869, 836, 869, 868, 837, 838, 870, 837, 870, 869, 838, 839, 871, 838, 871, 870, 839, 840, 872, 839, 872, 871, 840, 841, 873, 840, 873, 872, 841, 842, 874, 841, 874, 873, 842, 843, 875, 842, 875, 874, 843, 844, 876, 843, 876, 875, 844, 845, 877, 844, 877, 876, 845, 846, 878, 845, 878, 877, 846, 847, 879, 846, 879, 878, 847, 848, 880, 847, 880, 879, 848, 849, 881, 848, 881, 880, 849, 850, 882, 849, 882, 881, 850, 851, 883, 850, 883, 882, 851, 852, 884, 851, 884, 883, 852, 853, 885, 852, 885, 884, 853, 854, 886, 853, 886, 885, 854, 855, 887, 854, 887, 886, 855, 856, 888, 855, 888, 887, 856, 857, 889, 856, 889, 888, 857, 858, 890, 857, 890, 889, 858, 859, 891, 858, 891, 890, 859, 860, 892, 859, 892, 891, 860, 861, 893, 860, 893, 892, 861, 862, 894, 861, 894, 893, 862, 863, 895, 862, 895, 894, 864, 865, 897, 864, 897, 896, 865, 866, 898, 865, 898, 897, 866, 867, 899, 866, 899, 898, 867, 868, 900, 867, 900, 899, 868, 869, 901, 868, 901, 900, 869, 870, 902, 869, 902, 901, 870, 871, 903, 870, 903, 902, 871, 872, 904, 871, 904, 903, 872, 873, 905, 872, 905, 904, 873, 874, 906, 873, 906, 905, 874, 875, 907, 874, 907, 906, 875, 876, 908, 875, 908, 907, 876, 877, 909, 876, 909, 908, 877, 878, 910, 877, 910, 909, 878, 879, 911, 878, 911, 910, 879, 880, 912, 879, 912, 911, 880, 881, 913, 880, 913, 912, 881, 882, 914, 881, 914, 913, 882, 883, 915, 882, 915, 914, 883, 884, 916, 883, 916, 915, 884, 885, 917, 884, 917, 916, 885, 886, 918, 885, 918, 917, 886, 887, 919, 886, 919, 918, 887, 888, 920, 887, 920, 919, 888, 889, 921, 888, 921, 920, 889, 890, 922, 889, 922, 921, 890, 891, 923, 890, 923, 922, 891, 892, 924, 891, 924, 923, 892, 893, 925, 892, 925, 924, 893, 894, 926, 893, 926, 925, 894, 895, 927, 894, 927, 926, 896, 897, 929, 896, 929, 928, 897, 898, 930, 897, 930, 929, 898, 899, 931, 898, 931, 930, 899, 900, 932, 899, 932, 931, 900, 901, 933, 900, 933, 932, 901, 902, 934, 901, 934, 933, 902, 903, 935, 902, 935, 934, 903, 904, 936, 903, 936, 935, 904, 905, 937, 904, 937, 936, 905, 906, 938, 905, 938, 937, 906, 907, 939, 906, 939, 938, 907, 908, 940, 907, 940, 939, 908, 909, 941, 908, 941, 940, 909, 910, 942, 909, 942, 941, 910, 911, 943, 910, 943, 942, 911, 912, 944, 911, 944, 943, 912, 913, 945, 912, 945, 944, 913, 914, 946, 913, 946, 945, 914, 915, 947, 914, 947, 946, 915, 916, 948, 915, 948, 947, 916, 917, 949, 916, 949, 948, 917, 918, 950, 917, 950, 949, 918, 919, 951, 918, 951, 950, 919, 920, 952, 919, 952, 951, 920, 921, 953, 920, 953, 952, 921, 922, 954, 921, 954, 953, 922, 923, 955, 922, 955, 954, 923, 924, 956, 923, 956, 955, 924, 925, 957, 924, 957, 956, 925, 926, 958, 925, 958, 957, 926, 927, 959, 926, 959, 958, 928, 929, 961, 928, 961, 960, 929, 930, 962, 929, 962, 961, 930, 931, 963, 930, 963, 962, 931, 932, 964, 931, 964, 963, 932, 933, 965, 932, 965, 964, 933, 934, 966, 933, 966, 965, 934, 935, 967, 934, 967, 966, 935, 936, 968, 935, 968, 967, 936, 937, 969, 936, 969, 968, 937, 938, 970, 937, 970, 969, 938, 939, 971, 938, 971, 970, 939, 940, 972, 939, 972, 971, 940, 941, 973, 940, 973, 972, 941, 942, 974, 941, 974, 973, 942, 943, 975, 942, 975, 974, 943, 944, 976, 943, 976, 975, 944, 945, 977, 944, 977, 976, 945, 946, 978, 945, 978, 977, 946, 947, 979, 946, 979, 978, 947, 948, 980, 947, 980, 979, 948, 949, 981, 948, 981, 980, 949, 950, 982, 949, 982, 981, 950, 951, 983, 950, 983, 982, 951, 952, 984, 951, 984, 983, 952, 953, 985, 952, 985, 984, 953, 954, 986, 953, 986, 985, 954, 955, 987, 954, 987, 986, 955, 956, 988, 955, 988, 987, 956, 957, 989, 956, 989, 988, 957, 958, 990, 957, 990, 989, 958, 959, 991, 958, 991, 990, 960, 961, 993, 960, 993, 992, 961, 962, 994, 961, 994, 993, 962, 963, 995, 962, 995, 994, 963, 964, 996, 963, 996, 995, 964, 965, 997, 964, 997, 996, 965, 966, 998, 965, 998, 997, 966, 967, 999, 966, 999, 998, 967, 968, 1000, 967, 1000, 999, 968, 969, 1001, 968, 1001, 1000, 969, 970, 1002, 969, 1002, 1001, 970, 971, 1003, 970, 1003, 1002, 971, 972, 1004, 971, 1004, 1003, 972, 973, 1005, 972, 1005, 1004, 973, 974, 1006, 973, 1006, 1005, 974, 975, 1007, 974, 1007, 1006, 975, 976, 1008, 975, 1008, 1007, 976, 977, 1009, 976, 1009, 1008, 977, 978, 1010, 977, 1010, 1009, 978, 979, 1011, 978, 1011, 1010, 979, 980, 1012, 979, 1012, 1011, 980, 981, 1013, 980, 1013, 1012, 981, 982, 1014, 981, 1014, 1013, 982, 983, 1015, 982, 1015, 1014, 983, 984, 1016, 983, 1016, 1015, 984, 985, 1017, 984, 1017, 1016, 985, 986, 1018, 985, 1018, 1017, 986, 987, 1019, 986, 1019, 1018, 987, 988, 1020, 987, 1020, 1019, 988, 989, 1021, 988, 1021, 1020, 989, 990, 1022, 989, 1022, 1021, 990, 991, 1023, 990, 1023, 1022] color3f[] primvars:displayColor = [(0.784314, 0.64705884, 0.1)] point3f[] points = [(0, 0, 20), (20, 0, 20), (40, 0, 20), (60, 0, 20), (80, 0, 20), (100, 0, 20), (120, 0, 20), (140, 0, 20), (160, 0, 20), (180, 0, 20), (200, 0, 20), (220, 0, 20), (240, 0, 20), (260, 0, 20), (280, 0, 20), (300, 0, 20), (320, 0, 20), (340, 0, 20), (360, 0, 20), (380, 0, 20), (400, 0, 20), (420, 0, 20), (440, 0, 20), (460, 0, 20), (480, 0, 20), (500, 0, 20), (520, 0, 20), (540, 0, 20), (560, 0, 20), (580, 0, 20), (600, 0, 20), (620, 0, 20), (0, 20, 20), (20, 20, 20), (40, 20, 20), (60, 20, 20), (80, 20, 20), (100, 20, 20), (120, 20, 20), (140, 20, 20), (160, 20, 20), (180, 20, 20), (200, 20, 20), (220, 20, 20), (240, 20, 20), (260, 20, 20), (280, 20, 20), (300, 20, 20), (320, 20, 20), (340, 20, 20), (360, 20, 20), (380, 20, 20), (400, 20, 20), (420, 20, 20), (440, 20, 20), (460, 20, 20), (480, 20, 20), (500, 20, 20), (520, 20, 20), (540, 20, 20), (560, 20, 20), (580, 20, 20), (600, 20, 20), (620, 20, 20), (0, 40, 20), (20, 40, 20), (40, 40, 20), (60, 40, 20), (80, 40, 20), (100, 40, 20), (120, 40, 20), (140, 40, 20), (160, 40, 20), (180, 40, 20), (200, 40, 20), (220, 40, 20), (240, 40, 20), (260, 40, 20), (280, 40, 20), (300, 40, 20), (320, 40, 20), (340, 40, 20), (360, 40, 20), (380, 40, 20), (400, 40, 20), (420, 40, 20), (440, 40, 20), (460, 40, 20), (480, 40, 20), (500, 40, 20), (520, 40, 20), (540, 40, 20), (560, 40, 20), (580, 40, 20), (600, 40, 20), (620, 40, 20), (0, 60, 20), (20, 60, 20), (40, 60, 20), (60, 60, 20), (80, 60, 20), (100, 60, 20), (120, 60, 20), (140, 60, 20), (160, 60, 20), (180, 60, 20), (200, 60, 20), (220, 60, 20), (240, 60, 20), (260, 60, 20), (280, 60, 20), (300, 60, 20), (320, 60, 20), (340, 60, 20), (360, 60, 20), (380, 60, 20), (400, 60, 20), (420, 60, 20), (440, 60, 20), (460, 60, 20), (480, 60, 20), (500, 60, 20), (520, 60, 20), (540, 60, 20), (560, 60, 20), (580, 60, 20), (600, 60, 20), (620, 60, 20), (0, 80, 20), (20, 80, 20), (40, 80, 20), (60, 80, 20), (80, 80, 20), (100, 80, 20), (120, 80, 20), (140, 80, 20), (160, 80, 20), (180, 80, 20), (200, 80, 20), (220, 80, 20), (240, 80, 20), (260, 80, 20), (280, 80, 20), (300, 80, 20), (320, 80, 20), (340, 80, 20), (360, 80, 20), (380, 80, 20), (400, 80, 20), (420, 80, 20), (440, 80, 20), (460, 80, 20), (480, 80, 20), (500, 80, 20), (520, 80, 20), (540, 80, 20), (560, 80, 20), (580, 80, 20), (600, 80, 20), (620, 80, 20), (0, 100, 20), (20, 100, 20), (40, 100, 20), (60, 100, 20), (80, 100, 20), (100, 100, 20), (120, 100, 20), (140, 100, 20), (160, 100, 20), (180, 100, 20), (200, 100, 20), (220, 100, 20), (240, 100, 20), (260, 100, 20), (280, 100, 20), (300, 100, 20), (320, 100, 20), (340, 100, 20), (360, 100, 20), (380, 100, 20), (400, 100, 20), (420, 100, 20), (440, 100, 20), (460, 100, 20), (480, 100, 20), (500, 100, 20), (520, 100, 20), (540, 100, 20), (560, 100, 20), (580, 100, 20), (600, 100, 20), (620, 100, 20), (0, 120, 20), (20, 120, 20), (40, 120, 20), (60, 120, 20), (80, 120, 20), (100, 120, 20), (120, 120, 20), (140, 120, 20), (160, 120, 20), (180, 120, 20), (200, 120, 20), (220, 120, 20), (240, 120, 20), (260, 120, 20), (280, 120, 20), (300, 120, 20), (320, 120, 20), (340, 120, 20), (360, 120, 20), (380, 120, 20), (400, 120, 20), (420, 120, 20), (440, 120, 20), (460, 120, 20), (480, 120, 20), (500, 120, 20), (520, 120, 20), (540, 120, 20), (560, 120, 20), (580, 120, 20), (600, 120, 20), (620, 120, 20), (0, 140, 20), (20, 140, 20), (40, 140, 20), (60, 140, 20), (80, 140, 20), (100, 140, 20), (120, 140, 20), (140, 140, 20), (160, 140, 20), (180, 140, 20), (200, 140, 20), (220, 140, 20), (240, 140, 20), (260, 140, 20), (280, 140, 20), (300, 140, 20), (320, 140, 20), (340, 140, 20), (360, 140, 20), (380, 140, 20), (400, 140, 20), (420, 140, 20), (440, 140, 20), (460, 140, 20), (480, 140, 20), (500, 140, 20), (520, 140, 20), (540, 140, 20), (560, 140, 20), (580, 140, 20), (600, 140, 20), (620, 140, 20), (0, 160, 20), (20, 160, 20), (40, 160, 20), (60, 160, 20), (80, 160, 20), (100, 160, 20), (120, 160, 20), (140, 160, 20), (160, 160, 20), (180, 160, 20), (200, 160, 20), (220, 160, 20), (240, 160, 20), (260, 160, 20), (280, 160, 20), (300, 160, 20), (320, 160, 20), (340, 160, 20), (360, 160, 20), (380, 160, 20), (400, 160, 20), (420, 160, 20), (440, 160, 20), (460, 160, 20), (480, 160, 20), (500, 160, 20), (520, 160, 20), (540, 160, 20), (560, 160, 20), (580, 160, 20), (600, 160, 20), (620, 160, 20), (0, 180, 20), (20, 180, 20), (40, 180, 20), (60, 180, 20), (80, 180, 20), (100, 180, 20), (120, 180, 20), (140, 180, 20), (160, 180, 20), (180, 180, 20), (200, 180, 20), (220, 180, 20), (240, 180, 20), (260, 180, 20), (280, 180, 20), (300, 180, 20), (320, 180, 20), (340, 180, 20), (360, 180, 20), (380, 180, 20), (400, 180, 20), (420, 180, 20), (440, 180, 20), (460, 180, 20), (480, 180, 20), (500, 180, 20), (520, 180, 20), (540, 180, 20), (560, 180, 20), (580, 180, 20), (600, 180, 20), (620, 180, 20), (0, 200, 20), (20, 200, 20), (40, 200, 20), (60, 200, 20), (80, 200, 20), (100, 200, 20), (120, 200, 20), (140, 200, 20), (160, 200, 20), (180, 200, 20), (200, 200, 20), (220, 200, 20), (240, 200, 20), (260, 200, 20), (280, 200, 20), (300, 200, 20), (320, 200, 20), (340, 200, 20), (360, 200, 20), (380, 200, 20), (400, 200, 20), (420, 200, 20), (440, 200, 20), (460, 200, 20), (480, 200, 20), (500, 200, 20), (520, 200, 20), (540, 200, 20), (560, 200, 20), (580, 200, 20), (600, 200, 20), (620, 200, 20), (0, 220, 20), (20, 220, 20), (40, 220, 20), (60, 220, 20), (80, 220, 20), (100, 220, 20), (120, 220, 20), (140, 220, 20), (160, 220, 20), (180, 220, 20), (200, 220, 20), (220, 220, 20), (240, 220, 20), (260, 220, 20), (280, 220, 20), (300, 220, 20), (320, 220, 20), (340, 220, 20), (360, 220, 20), (380, 220, 20), (400, 220, 20), (420, 220, 20), (440, 220, 20), (460, 220, 20), (480, 220, 20), (500, 220, 20), (520, 220, 20), (540, 220, 20), (560, 220, 20), (580, 220, 20), (600, 220, 20), (620, 220, 20), (0, 240, 20), (20, 240, 20), (40, 240, 20), (60, 240, 20), (80, 240, 20), (100, 240, 20), (120, 240, 20), (140, 240, 20), (160, 240, 20), (180, 240, 20), (200, 240, 20), (220, 240, 20), (240, 240, 20), (260, 240, 20), (280, 240, 20), (300, 240, 20), (320, 240, 20), (340, 240, 20), (360, 240, 20), (380, 240, 20), (400, 240, 20), (420, 240, 20), (440, 240, 20), (460, 240, 20), (480, 240, 20), (500, 240, 20), (520, 240, 20), (540, 240, 20), (560, 240, 20), (580, 240, 20), (600, 240, 20), (620, 240, 20), (0, 260, 20), (20, 260, 20), (40, 260, 20), (60, 260, 20), (80, 260, 20), (100, 260, 20), (120, 260, 20), (140, 260, 20), (160, 260, 20), (180, 260, 20), (200, 260, 20), (220, 260, 20), (240, 260, 20), (260, 260, 20), (280, 260, 20), (300, 260, 20), (320, 260, 20), (340, 260, 20), (360, 260, 20), (380, 260, 20), (400, 260, 20), (420, 260, 20), (440, 260, 20), (460, 260, 20), (480, 260, 20), (500, 260, 20), (520, 260, 20), (540, 260, 20), (560, 260, 20), (580, 260, 20), (600, 260, 20), (620, 260, 20), (0, 280, 20), (20, 280, 20), (40, 280, 20), (60, 280, 20), (80, 280, 20), (100, 280, 20), (120, 280, 20), (140, 280, 20), (160, 280, 20), (180, 280, 20), (200, 280, 20), (220, 280, 20), (240, 280, 20), (260, 280, 20), (280, 280, 20), (300, 280, 20), (320, 280, 20), (340, 280, 20), (360, 280, 20), (380, 280, 20), (400, 280, 20), (420, 280, 20), (440, 280, 20), (460, 280, 20), (480, 280, 20), (500, 280, 20), (520, 280, 20), (540, 280, 20), (560, 280, 20), (580, 280, 20), (600, 280, 20), (620, 280, 20), (0, 300, 20), (20, 300, 20), (40, 300, 20), (60, 300, 20), (80, 300, 20), (100, 300, 20), (120, 300, 20), (140, 300, 20), (160, 300, 20), (180, 300, 20), (200, 300, 20), (220, 300, 20), (240, 300, 20), (260, 300, 20), (280, 300, 20), (300, 300, 20), (320, 300, 20), (340, 300, 20), (360, 300, 20), (380, 300, 20), (400, 300, 20), (420, 300, 20), (440, 300, 20), (460, 300, 20), (480, 300, 20), (500, 300, 20), (520, 300, 20), (540, 300, 20), (560, 300, 20), (580, 300, 20), (600, 300, 20), (620, 300, 20), (0, 320, 20), (20, 320, 20), (40, 320, 20), (60, 320, 20), (80, 320, 20), (100, 320, 20), (120, 320, 20), (140, 320, 20), (160, 320, 20), (180, 320, 20), (200, 320, 20), (220, 320, 20), (240, 320, 20), (260, 320, 20), (280, 320, 20), (300, 320, 20), (320, 320, 20), (340, 320, 20), (360, 320, 20), (380, 320, 20), (400, 320, 20), (420, 320, 20), (440, 320, 20), (460, 320, 20), (480, 320, 20), (500, 320, 20), (520, 320, 20), (540, 320, 20), (560, 320, 20), (580, 320, 20), (600, 320, 20), (620, 320, 20), (0, 340, 20), (20, 340, 20), (40, 340, 20), (60, 340, 20), (80, 340, 20), (100, 340, 20), (120, 340, 20), (140, 340, 20), (160, 340, 20), (180, 340, 20), (200, 340, 20), (220, 340, 20), (240, 340, 20), (260, 340, 20), (280, 340, 20), (300, 340, 20), (320, 340, 20), (340, 340, 20), (360, 340, 20), (380, 340, 20), (400, 340, 20), (420, 340, 20), (440, 340, 20), (460, 340, 20), (480, 340, 20), (500, 340, 20), (520, 340, 20), (540, 340, 20), (560, 340, 20), (580, 340, 20), (600, 340, 20), (620, 340, 20), (0, 360, 20), (20, 360, 20), (40, 360, 20), (60, 360, 20), (80, 360, 20), (100, 360, 20), (120, 360, 20), (140, 360, 20), (160, 360, 20), (180, 360, 20), (200, 360, 20), (220, 360, 20), (240, 360, 20), (260, 360, 20), (280, 360, 20), (300, 360, 20), (320, 360, 20), (340, 360, 20), (360, 360, 20), (380, 360, 20), (400, 360, 20), (420, 360, 20), (440, 360, 20), (460, 360, 20), (480, 360, 20), (500, 360, 20), (520, 360, 20), (540, 360, 20), (560, 360, 20), (580, 360, 20), (600, 360, 20), (620, 360, 20), (0, 380, 20), (20, 380, 20), (40, 380, 20), (60, 380, 20), (80, 380, 20), (100, 380, 20), (120, 380, 20), (140, 380, 20), (160, 380, 20), (180, 380, 20), (200, 380, 20), (220, 380, 20), (240, 380, 20), (260, 380, 20), (280, 380, 20), (300, 380, 20), (320, 380, 20), (340, 380, 20), (360, 380, 20), (380, 380, 20), (400, 380, 20), (420, 380, 20), (440, 380, 20), (460, 380, 20), (480, 380, 20), (500, 380, 20), (520, 380, 20), (540, 380, 20), (560, 380, 20), (580, 380, 20), (600, 380, 20), (620, 380, 20), (0, 400, 20), (20, 400, 20), (40, 400, 20), (60, 400, 20), (80, 400, 20), (100, 400, 20), (120, 400, 20), (140, 400, 20), (160, 400, 20), (180, 400, 20), (200, 400, 20), (220, 400, 20), (240, 400, 20), (260, 400, 20), (280, 400, 20), (300, 400, 20), (320, 400, 20), (340, 400, 20), (360, 400, 20), (380, 400, 20), (400, 400, 20), (420, 400, 20), (440, 400, 20), (460, 400, 20), (480, 400, 20), (500, 400, 20), (520, 400, 20), (540, 400, 20), (560, 400, 20), (580, 400, 20), (600, 400, 20), (620, 400, 20), (0, 420, 20), (20, 420, 20), (40, 420, 20), (60, 420, 20), (80, 420, 20), (100, 420, 20), (120, 420, 20), (140, 420, 20), (160, 420, 20), (180, 420, 20), (200, 420, 20), (220, 420, 20), (240, 420, 20), (260, 420, 20), (280, 420, 20), (300, 420, 20), (320, 420, 20), (340, 420, 20), (360, 420, 20), (380, 420, 20), (400, 420, 20), (420, 420, 20), (440, 420, 20), (460, 420, 20), (480, 420, 20), (500, 420, 20), (520, 420, 20), (540, 420, 20), (560, 420, 20), (580, 420, 20), (600, 420, 20), (620, 420, 20), (0, 440, 20), (20, 440, 20), (40, 440, 20), (60, 440, 20), (80, 440, 20), (100, 440, 20), (120, 440, 20), (140, 440, 20), (160, 440, 20), (180, 440, 20), (200, 440, 20), (220, 440, 20), (240, 440, 20), (260, 440, 20), (280, 440, 20), (300, 440, 20), (320, 440, 20), (340, 440, 20), (360, 440, 20), (380, 440, 20), (400, 440, 20), (420, 440, 20), (440, 440, 20), (460, 440, 20), (480, 440, 20), (500, 440, 20), (520, 440, 20), (540, 440, 20), (560, 440, 20), (580, 440, 20), (600, 440, 20), (620, 440, 20), (0, 460, 20), (20, 460, 20), (40, 460, 20), (60, 460, 20), (80, 460, 20), (100, 460, 20), (120, 460, 20), (140, 460, 20), (160, 460, 20), (180, 460, 20), (200, 460, 20), (220, 460, 20), (240, 460, 20), (260, 460, 20), (280, 460, 20), (300, 460, 20), (320, 460, 20), (340, 460, 20), (360, 460, 20), (380, 460, 20), (400, 460, 20), (420, 460, 20), (440, 460, 20), (460, 460, 20), (480, 460, 20), (500, 460, 20), (520, 460, 20), (540, 460, 20), (560, 460, 20), (580, 460, 20), (600, 460, 20), (620, 460, 20), (0, 480, 20), (20, 480, 20), (40, 480, 20), (60, 480, 20), (80, 480, 20), (100, 480, 20), (120, 480, 20), (140, 480, 20), (160, 480, 20), (180, 480, 20), (200, 480, 20), (220, 480, 20), (240, 480, 20), (260, 480, 20), (280, 480, 20), (300, 480, 20), (320, 480, 20), (340, 480, 20), (360, 480, 20), (380, 480, 20), (400, 480, 20), (420, 480, 20), (440, 480, 20), (460, 480, 20), (480, 480, 20), (500, 480, 20), (520, 480, 20), (540, 480, 20), (560, 480, 20), (580, 480, 20), (600, 480, 20), (620, 480, 20), (0, 500, 20), (20, 500, 20), (40, 500, 20), (60, 500, 20), (80, 500, 20), (100, 500, 20), (120, 500, 20), (140, 500, 20), (160, 500, 20), (180, 500, 20), (200, 500, 20), (220, 500, 20), (240, 500, 20), (260, 500, 20), (280, 500, 20), (300, 500, 20), (320, 500, 20), (340, 500, 20), (360, 500, 20), (380, 500, 20), (400, 500, 20), (420, 500, 20), (440, 500, 20), (460, 500, 20), (480, 500, 20), (500, 500, 20), (520, 500, 20), (540, 500, 20), (560, 500, 20), (580, 500, 20), (600, 500, 20), (620, 500, 20), (0, 520, 20), (20, 520, 20), (40, 520, 20), (60, 520, 20), (80, 520, 20), (100, 520, 20), (120, 520, 20), (140, 520, 20), (160, 520, 20), (180, 520, 20), (200, 520, 20), (220, 520, 20), (240, 520, 20), (260, 520, 20), (280, 520, 20), (300, 520, 20), (320, 520, 20), (340, 520, 20), (360, 520, 20), (380, 520, 20), (400, 520, 20), (420, 520, 20), (440, 520, 20), (460, 520, 20), (480, 520, 20), (500, 520, 20), (520, 520, 20), (540, 520, 20), (560, 520, 20), (580, 520, 20), (600, 520, 20), (620, 520, 20), (0, 540, 20), (20, 540, 20), (40, 540, 20), (60, 540, 20), (80, 540, 20), (100, 540, 20), (120, 540, 20), (140, 540, 20), (160, 540, 20), (180, 540, 20), (200, 540, 20), (220, 540, 20), (240, 540, 20), (260, 540, 20), (280, 540, 20), (300, 540, 20), (320, 540, 20), (340, 540, 20), (360, 540, 20), (380, 540, 20), (400, 540, 20), (420, 540, 20), (440, 540, 20), (460, 540, 20), (480, 540, 20), (500, 540, 20), (520, 540, 20), (540, 540, 20), (560, 540, 20), (580, 540, 20), (600, 540, 20), (620, 540, 20), (0, 560, 20), (20, 560, 20), (40, 560, 20), (60, 560, 20), (80, 560, 20), (100, 560, 20), (120, 560, 20), (140, 560, 20), (160, 560, 20), (180, 560, 20), (200, 560, 20), (220, 560, 20), (240, 560, 20), (260, 560, 20), (280, 560, 20), (300, 560, 20), (320, 560, 20), (340, 560, 20), (360, 560, 20), (380, 560, 20), (400, 560, 20), (420, 560, 20), (440, 560, 20), (460, 560, 20), (480, 560, 20), (500, 560, 20), (520, 560, 20), (540, 560, 20), (560, 560, 20), (580, 560, 20), (600, 560, 20), (620, 560, 20), (0, 580, 20), (20, 580, 20), (40, 580, 20), (60, 580, 20), (80, 580, 20), (100, 580, 20), (120, 580, 20), (140, 580, 20), (160, 580, 20), (180, 580, 20), (200, 580, 20), (220, 580, 20), (240, 580, 20), (260, 580, 20), (280, 580, 20), (300, 580, 20), (320, 580, 20), (340, 580, 20), (360, 580, 20), (380, 580, 20), (400, 580, 20), (420, 580, 20), (440, 580, 20), (460, 580, 20), (480, 580, 20), (500, 580, 20), (520, 580, 20), (540, 580, 20), (560, 580, 20), (580, 580, 20), (600, 580, 20), (620, 580, 20), (0, 600, 20), (20, 600, 20), (40, 600, 20), (60, 600, 20), (80, 600, 20), (100, 600, 20), (120, 600, 20), (140, 600, 20), (160, 600, 20), (180, 600, 20), (200, 600, 20), (220, 600, 20), (240, 600, 20), (260, 600, 20), (280, 600, 20), (300, 600, 20), (320, 600, 20), (340, 600, 20), (360, 600, 20), (380, 600, 20), (400, 600, 20), (420, 600, 20), (440, 600, 20), (460, 600, 20), (480, 600, 20), (500, 600, 20), (520, 600, 20), (540, 600, 20), (560, 600, 20), (580, 600, 20), (600, 600, 20), (620, 600, 20), (0, 620, 20), (20, 620, 20), (40, 620, 20), (60, 620, 20), (80, 620, 20), (100, 620, 20), (120, 620, 20), (140, 620, 20), (160, 620, 20), (180, 620, 20), (200, 620, 20), (220, 620, 20), (240, 620, 20), (260, 620, 20), (280, 620, 20), (300, 620, 20), (320, 620, 20), (340, 620, 20), (360, 620, 20), (380, 620, 20), (400, 620, 20), (420, 620, 20), (440, 620, 20), (460, 620, 20), (480, 620, 20), (500, 620, 20), (520, 620, 20), (540, 620, 20), (560, 620, 20), (580, 620, 20), (600, 620, 20), (620, 620, 20)] point3f[] points.connect = </defaultPrim/deformer2.outputs:points> } }
omniverse-code/kit/exts/omni.graph/omni/graph/core/data/ExampleGridDeformerCuda.usda
#usda 1.0 ( doc = """Generated from Composed Stage of root layer """ ) def Xform "defaultPrim" { def Mesh "inputGrid" { uniform bool doubleSided = 1 int[] faceVertexCounts = [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 1, 33, 0, 33, 32, 1, 2, 34, 1, 34, 33, 2, 3, 35, 2, 35, 34, 3, 4, 36, 3, 36, 35, 4, 5, 37, 4, 37, 36, 5, 6, 38, 5, 38, 37, 6, 7, 39, 6, 39, 38, 7, 8, 40, 7, 40, 39, 8, 9, 41, 8, 41, 40, 9, 10, 42, 9, 42, 41, 10, 11, 43, 10, 43, 42, 11, 12, 44, 11, 44, 43, 12, 13, 45, 12, 45, 44, 13, 14, 46, 13, 46, 45, 14, 15, 47, 14, 47, 46, 15, 16, 48, 15, 48, 47, 16, 17, 49, 16, 49, 48, 17, 18, 50, 17, 50, 49, 18, 19, 51, 18, 51, 50, 19, 20, 52, 19, 52, 51, 20, 21, 53, 20, 53, 52, 21, 22, 54, 21, 54, 53, 22, 23, 55, 22, 55, 54, 23, 24, 56, 23, 56, 55, 24, 25, 57, 24, 57, 56, 25, 26, 58, 25, 58, 57, 26, 27, 59, 26, 59, 58, 27, 28, 60, 27, 60, 59, 28, 29, 61, 28, 61, 60, 29, 30, 62, 29, 62, 61, 30, 31, 63, 30, 63, 62, 32, 33, 65, 32, 65, 64, 33, 34, 66, 33, 66, 65, 34, 35, 67, 34, 67, 66, 35, 36, 68, 35, 68, 67, 36, 37, 69, 36, 69, 68, 37, 38, 70, 37, 70, 69, 38, 39, 71, 38, 71, 70, 39, 40, 72, 39, 72, 71, 40, 41, 73, 40, 73, 72, 41, 42, 74, 41, 74, 73, 42, 43, 75, 42, 75, 74, 43, 44, 76, 43, 76, 75, 44, 45, 77, 44, 77, 76, 45, 46, 78, 45, 78, 77, 46, 47, 79, 46, 79, 78, 47, 48, 80, 47, 80, 79, 48, 49, 81, 48, 81, 80, 49, 50, 82, 49, 82, 81, 50, 51, 83, 50, 83, 82, 51, 52, 84, 51, 84, 83, 52, 53, 85, 52, 85, 84, 53, 54, 86, 53, 86, 85, 54, 55, 87, 54, 87, 86, 55, 56, 88, 55, 88, 87, 56, 57, 89, 56, 89, 88, 57, 58, 90, 57, 90, 89, 58, 59, 91, 58, 91, 90, 59, 60, 92, 59, 92, 91, 60, 61, 93, 60, 93, 92, 61, 62, 94, 61, 94, 93, 62, 63, 95, 62, 95, 94, 64, 65, 97, 64, 97, 96, 65, 66, 98, 65, 98, 97, 66, 67, 99, 66, 99, 98, 67, 68, 100, 67, 100, 99, 68, 69, 101, 68, 101, 100, 69, 70, 102, 69, 102, 101, 70, 71, 103, 70, 103, 102, 71, 72, 104, 71, 104, 103, 72, 73, 105, 72, 105, 104, 73, 74, 106, 73, 106, 105, 74, 75, 107, 74, 107, 106, 75, 76, 108, 75, 108, 107, 76, 77, 109, 76, 109, 108, 77, 78, 110, 77, 110, 109, 78, 79, 111, 78, 111, 110, 79, 80, 112, 79, 112, 111, 80, 81, 113, 80, 113, 112, 81, 82, 114, 81, 114, 113, 82, 83, 115, 82, 115, 114, 83, 84, 116, 83, 116, 115, 84, 85, 117, 84, 117, 116, 85, 86, 118, 85, 118, 117, 86, 87, 119, 86, 119, 118, 87, 88, 120, 87, 120, 119, 88, 89, 121, 88, 121, 120, 89, 90, 122, 89, 122, 121, 90, 91, 123, 90, 123, 122, 91, 92, 124, 91, 124, 123, 92, 93, 125, 92, 125, 124, 93, 94, 126, 93, 126, 125, 94, 95, 127, 94, 127, 126, 96, 97, 129, 96, 129, 128, 97, 98, 130, 97, 130, 129, 98, 99, 131, 98, 131, 130, 99, 100, 132, 99, 132, 131, 100, 101, 133, 100, 133, 132, 101, 102, 134, 101, 134, 133, 102, 103, 135, 102, 135, 134, 103, 104, 136, 103, 136, 135, 104, 105, 137, 104, 137, 136, 105, 106, 138, 105, 138, 137, 106, 107, 139, 106, 139, 138, 107, 108, 140, 107, 140, 139, 108, 109, 141, 108, 141, 140, 109, 110, 142, 109, 142, 141, 110, 111, 143, 110, 143, 142, 111, 112, 144, 111, 144, 143, 112, 113, 145, 112, 145, 144, 113, 114, 146, 113, 146, 145, 114, 115, 147, 114, 147, 146, 115, 116, 148, 115, 148, 147, 116, 117, 149, 116, 149, 148, 117, 118, 150, 117, 150, 149, 118, 119, 151, 118, 151, 150, 119, 120, 152, 119, 152, 151, 120, 121, 153, 120, 153, 152, 121, 122, 154, 121, 154, 153, 122, 123, 155, 122, 155, 154, 123, 124, 156, 123, 156, 155, 124, 125, 157, 124, 157, 156, 125, 126, 158, 125, 158, 157, 126, 127, 159, 126, 159, 158, 128, 129, 161, 128, 161, 160, 129, 130, 162, 129, 162, 161, 130, 131, 163, 130, 163, 162, 131, 132, 164, 131, 164, 163, 132, 133, 165, 132, 165, 164, 133, 134, 166, 133, 166, 165, 134, 135, 167, 134, 167, 166, 135, 136, 168, 135, 168, 167, 136, 137, 169, 136, 169, 168, 137, 138, 170, 137, 170, 169, 138, 139, 171, 138, 171, 170, 139, 140, 172, 139, 172, 171, 140, 141, 173, 140, 173, 172, 141, 142, 174, 141, 174, 173, 142, 143, 175, 142, 175, 174, 143, 144, 176, 143, 176, 175, 144, 145, 177, 144, 177, 176, 145, 146, 178, 145, 178, 177, 146, 147, 179, 146, 179, 178, 147, 148, 180, 147, 180, 179, 148, 149, 181, 148, 181, 180, 149, 150, 182, 149, 182, 181, 150, 151, 183, 150, 183, 182, 151, 152, 184, 151, 184, 183, 152, 153, 185, 152, 185, 184, 153, 154, 186, 153, 186, 185, 154, 155, 187, 154, 187, 186, 155, 156, 188, 155, 188, 187, 156, 157, 189, 156, 189, 188, 157, 158, 190, 157, 190, 189, 158, 159, 191, 158, 191, 190, 160, 161, 193, 160, 193, 192, 161, 162, 194, 161, 194, 193, 162, 163, 195, 162, 195, 194, 163, 164, 196, 163, 196, 195, 164, 165, 197, 164, 197, 196, 165, 166, 198, 165, 198, 197, 166, 167, 199, 166, 199, 198, 167, 168, 200, 167, 200, 199, 168, 169, 201, 168, 201, 200, 169, 170, 202, 169, 202, 201, 170, 171, 203, 170, 203, 202, 171, 172, 204, 171, 204, 203, 172, 173, 205, 172, 205, 204, 173, 174, 206, 173, 206, 205, 174, 175, 207, 174, 207, 206, 175, 176, 208, 175, 208, 207, 176, 177, 209, 176, 209, 208, 177, 178, 210, 177, 210, 209, 178, 179, 211, 178, 211, 210, 179, 180, 212, 179, 212, 211, 180, 181, 213, 180, 213, 212, 181, 182, 214, 181, 214, 213, 182, 183, 215, 182, 215, 214, 183, 184, 216, 183, 216, 215, 184, 185, 217, 184, 217, 216, 185, 186, 218, 185, 218, 217, 186, 187, 219, 186, 219, 218, 187, 188, 220, 187, 220, 219, 188, 189, 221, 188, 221, 220, 189, 190, 222, 189, 222, 221, 190, 191, 223, 190, 223, 222, 192, 193, 225, 192, 225, 224, 193, 194, 226, 193, 226, 225, 194, 195, 227, 194, 227, 226, 195, 196, 228, 195, 228, 227, 196, 197, 229, 196, 229, 228, 197, 198, 230, 197, 230, 229, 198, 199, 231, 198, 231, 230, 199, 200, 232, 199, 232, 231, 200, 201, 233, 200, 233, 232, 201, 202, 234, 201, 234, 233, 202, 203, 235, 202, 235, 234, 203, 204, 236, 203, 236, 235, 204, 205, 237, 204, 237, 236, 205, 206, 238, 205, 238, 237, 206, 207, 239, 206, 239, 238, 207, 208, 240, 207, 240, 239, 208, 209, 241, 208, 241, 240, 209, 210, 242, 209, 242, 241, 210, 211, 243, 210, 243, 242, 211, 212, 244, 211, 244, 243, 212, 213, 245, 212, 245, 244, 213, 214, 246, 213, 246, 245, 214, 215, 247, 214, 247, 246, 215, 216, 248, 215, 248, 247, 216, 217, 249, 216, 249, 248, 217, 218, 250, 217, 250, 249, 218, 219, 251, 218, 251, 250, 219, 220, 252, 219, 252, 251, 220, 221, 253, 220, 253, 252, 221, 222, 254, 221, 254, 253, 222, 223, 255, 222, 255, 254, 224, 225, 257, 224, 257, 256, 225, 226, 258, 225, 258, 257, 226, 227, 259, 226, 259, 258, 227, 228, 260, 227, 260, 259, 228, 229, 261, 228, 261, 260, 229, 230, 262, 229, 262, 261, 230, 231, 263, 230, 263, 262, 231, 232, 264, 231, 264, 263, 232, 233, 265, 232, 265, 264, 233, 234, 266, 233, 266, 265, 234, 235, 267, 234, 267, 266, 235, 236, 268, 235, 268, 267, 236, 237, 269, 236, 269, 268, 237, 238, 270, 237, 270, 269, 238, 239, 271, 238, 271, 270, 239, 240, 272, 239, 272, 271, 240, 241, 273, 240, 273, 272, 241, 242, 274, 241, 274, 273, 242, 243, 275, 242, 275, 274, 243, 244, 276, 243, 276, 275, 244, 245, 277, 244, 277, 276, 245, 246, 278, 245, 278, 277, 246, 247, 279, 246, 279, 278, 247, 248, 280, 247, 280, 279, 248, 249, 281, 248, 281, 280, 249, 250, 282, 249, 282, 281, 250, 251, 283, 250, 283, 282, 251, 252, 284, 251, 284, 283, 252, 253, 285, 252, 285, 284, 253, 254, 286, 253, 286, 285, 254, 255, 287, 254, 287, 286, 256, 257, 289, 256, 289, 288, 257, 258, 290, 257, 290, 289, 258, 259, 291, 258, 291, 290, 259, 260, 292, 259, 292, 291, 260, 261, 293, 260, 293, 292, 261, 262, 294, 261, 294, 293, 262, 263, 295, 262, 295, 294, 263, 264, 296, 263, 296, 295, 264, 265, 297, 264, 297, 296, 265, 266, 298, 265, 298, 297, 266, 267, 299, 266, 299, 298, 267, 268, 300, 267, 300, 299, 268, 269, 301, 268, 301, 300, 269, 270, 302, 269, 302, 301, 270, 271, 303, 270, 303, 302, 271, 272, 304, 271, 304, 303, 272, 273, 305, 272, 305, 304, 273, 274, 306, 273, 306, 305, 274, 275, 307, 274, 307, 306, 275, 276, 308, 275, 308, 307, 276, 277, 309, 276, 309, 308, 277, 278, 310, 277, 310, 309, 278, 279, 311, 278, 311, 310, 279, 280, 312, 279, 312, 311, 280, 281, 313, 280, 313, 312, 281, 282, 314, 281, 314, 313, 282, 283, 315, 282, 315, 314, 283, 284, 316, 283, 316, 315, 284, 285, 317, 284, 317, 316, 285, 286, 318, 285, 318, 317, 286, 287, 319, 286, 319, 318, 288, 289, 321, 288, 321, 320, 289, 290, 322, 289, 322, 321, 290, 291, 323, 290, 323, 322, 291, 292, 324, 291, 324, 323, 292, 293, 325, 292, 325, 324, 293, 294, 326, 293, 326, 325, 294, 295, 327, 294, 327, 326, 295, 296, 328, 295, 328, 327, 296, 297, 329, 296, 329, 328, 297, 298, 330, 297, 330, 329, 298, 299, 331, 298, 331, 330, 299, 300, 332, 299, 332, 331, 300, 301, 333, 300, 333, 332, 301, 302, 334, 301, 334, 333, 302, 303, 335, 302, 335, 334, 303, 304, 336, 303, 336, 335, 304, 305, 337, 304, 337, 336, 305, 306, 338, 305, 338, 337, 306, 307, 339, 306, 339, 338, 307, 308, 340, 307, 340, 339, 308, 309, 341, 308, 341, 340, 309, 310, 342, 309, 342, 341, 310, 311, 343, 310, 343, 342, 311, 312, 344, 311, 344, 343, 312, 313, 345, 312, 345, 344, 313, 314, 346, 313, 346, 345, 314, 315, 347, 314, 347, 346, 315, 316, 348, 315, 348, 347, 316, 317, 349, 316, 349, 348, 317, 318, 350, 317, 350, 349, 318, 319, 351, 318, 351, 350, 320, 321, 353, 320, 353, 352, 321, 322, 354, 321, 354, 353, 322, 323, 355, 322, 355, 354, 323, 324, 356, 323, 356, 355, 324, 325, 357, 324, 357, 356, 325, 326, 358, 325, 358, 357, 326, 327, 359, 326, 359, 358, 327, 328, 360, 327, 360, 359, 328, 329, 361, 328, 361, 360, 329, 330, 362, 329, 362, 361, 330, 331, 363, 330, 363, 362, 331, 332, 364, 331, 364, 363, 332, 333, 365, 332, 365, 364, 333, 334, 366, 333, 366, 365, 334, 335, 367, 334, 367, 366, 335, 336, 368, 335, 368, 367, 336, 337, 369, 336, 369, 368, 337, 338, 370, 337, 370, 369, 338, 339, 371, 338, 371, 370, 339, 340, 372, 339, 372, 371, 340, 341, 373, 340, 373, 372, 341, 342, 374, 341, 374, 373, 342, 343, 375, 342, 375, 374, 343, 344, 376, 343, 376, 375, 344, 345, 377, 344, 377, 376, 345, 346, 378, 345, 378, 377, 346, 347, 379, 346, 379, 378, 347, 348, 380, 347, 380, 379, 348, 349, 381, 348, 381, 380, 349, 350, 382, 349, 382, 381, 350, 351, 383, 350, 383, 382, 352, 353, 385, 352, 385, 384, 353, 354, 386, 353, 386, 385, 354, 355, 387, 354, 387, 386, 355, 356, 388, 355, 388, 387, 356, 357, 389, 356, 389, 388, 357, 358, 390, 357, 390, 389, 358, 359, 391, 358, 391, 390, 359, 360, 392, 359, 392, 391, 360, 361, 393, 360, 393, 392, 361, 362, 394, 361, 394, 393, 362, 363, 395, 362, 395, 394, 363, 364, 396, 363, 396, 395, 364, 365, 397, 364, 397, 396, 365, 366, 398, 365, 398, 397, 366, 367, 399, 366, 399, 398, 367, 368, 400, 367, 400, 399, 368, 369, 401, 368, 401, 400, 369, 370, 402, 369, 402, 401, 370, 371, 403, 370, 403, 402, 371, 372, 404, 371, 404, 403, 372, 373, 405, 372, 405, 404, 373, 374, 406, 373, 406, 405, 374, 375, 407, 374, 407, 406, 375, 376, 408, 375, 408, 407, 376, 377, 409, 376, 409, 408, 377, 378, 410, 377, 410, 409, 378, 379, 411, 378, 411, 410, 379, 380, 412, 379, 412, 411, 380, 381, 413, 380, 413, 412, 381, 382, 414, 381, 414, 413, 382, 383, 415, 382, 415, 414, 384, 385, 417, 384, 417, 416, 385, 386, 418, 385, 418, 417, 386, 387, 419, 386, 419, 418, 387, 388, 420, 387, 420, 419, 388, 389, 421, 388, 421, 420, 389, 390, 422, 389, 422, 421, 390, 391, 423, 390, 423, 422, 391, 392, 424, 391, 424, 423, 392, 393, 425, 392, 425, 424, 393, 394, 426, 393, 426, 425, 394, 395, 427, 394, 427, 426, 395, 396, 428, 395, 428, 427, 396, 397, 429, 396, 429, 428, 397, 398, 430, 397, 430, 429, 398, 399, 431, 398, 431, 430, 399, 400, 432, 399, 432, 431, 400, 401, 433, 400, 433, 432, 401, 402, 434, 401, 434, 433, 402, 403, 435, 402, 435, 434, 403, 404, 436, 403, 436, 435, 404, 405, 437, 404, 437, 436, 405, 406, 438, 405, 438, 437, 406, 407, 439, 406, 439, 438, 407, 408, 440, 407, 440, 439, 408, 409, 441, 408, 441, 440, 409, 410, 442, 409, 442, 441, 410, 411, 443, 410, 443, 442, 411, 412, 444, 411, 444, 443, 412, 413, 445, 412, 445, 444, 413, 414, 446, 413, 446, 445, 414, 415, 447, 414, 447, 446, 416, 417, 449, 416, 449, 448, 417, 418, 450, 417, 450, 449, 418, 419, 451, 418, 451, 450, 419, 420, 452, 419, 452, 451, 420, 421, 453, 420, 453, 452, 421, 422, 454, 421, 454, 453, 422, 423, 455, 422, 455, 454, 423, 424, 456, 423, 456, 455, 424, 425, 457, 424, 457, 456, 425, 426, 458, 425, 458, 457, 426, 427, 459, 426, 459, 458, 427, 428, 460, 427, 460, 459, 428, 429, 461, 428, 461, 460, 429, 430, 462, 429, 462, 461, 430, 431, 463, 430, 463, 462, 431, 432, 464, 431, 464, 463, 432, 433, 465, 432, 465, 464, 433, 434, 466, 433, 466, 465, 434, 435, 467, 434, 467, 466, 435, 436, 468, 435, 468, 467, 436, 437, 469, 436, 469, 468, 437, 438, 470, 437, 470, 469, 438, 439, 471, 438, 471, 470, 439, 440, 472, 439, 472, 471, 440, 441, 473, 440, 473, 472, 441, 442, 474, 441, 474, 473, 442, 443, 475, 442, 475, 474, 443, 444, 476, 443, 476, 475, 444, 445, 477, 444, 477, 476, 445, 446, 478, 445, 478, 477, 446, 447, 479, 446, 479, 478, 448, 449, 481, 448, 481, 480, 449, 450, 482, 449, 482, 481, 450, 451, 483, 450, 483, 482, 451, 452, 484, 451, 484, 483, 452, 453, 485, 452, 485, 484, 453, 454, 486, 453, 486, 485, 454, 455, 487, 454, 487, 486, 455, 456, 488, 455, 488, 487, 456, 457, 489, 456, 489, 488, 457, 458, 490, 457, 490, 489, 458, 459, 491, 458, 491, 490, 459, 460, 492, 459, 492, 491, 460, 461, 493, 460, 493, 492, 461, 462, 494, 461, 494, 493, 462, 463, 495, 462, 495, 494, 463, 464, 496, 463, 496, 495, 464, 465, 497, 464, 497, 496, 465, 466, 498, 465, 498, 497, 466, 467, 499, 466, 499, 498, 467, 468, 500, 467, 500, 499, 468, 469, 501, 468, 501, 500, 469, 470, 502, 469, 502, 501, 470, 471, 503, 470, 503, 502, 471, 472, 504, 471, 504, 503, 472, 473, 505, 472, 505, 504, 473, 474, 506, 473, 506, 505, 474, 475, 507, 474, 507, 506, 475, 476, 508, 475, 508, 507, 476, 477, 509, 476, 509, 508, 477, 478, 510, 477, 510, 509, 478, 479, 511, 478, 511, 510, 480, 481, 513, 480, 513, 512, 481, 482, 514, 481, 514, 513, 482, 483, 515, 482, 515, 514, 483, 484, 516, 483, 516, 515, 484, 485, 517, 484, 517, 516, 485, 486, 518, 485, 518, 517, 486, 487, 519, 486, 519, 518, 487, 488, 520, 487, 520, 519, 488, 489, 521, 488, 521, 520, 489, 490, 522, 489, 522, 521, 490, 491, 523, 490, 523, 522, 491, 492, 524, 491, 524, 523, 492, 493, 525, 492, 525, 524, 493, 494, 526, 493, 526, 525, 494, 495, 527, 494, 527, 526, 495, 496, 528, 495, 528, 527, 496, 497, 529, 496, 529, 528, 497, 498, 530, 497, 530, 529, 498, 499, 531, 498, 531, 530, 499, 500, 532, 499, 532, 531, 500, 501, 533, 500, 533, 532, 501, 502, 534, 501, 534, 533, 502, 503, 535, 502, 535, 534, 503, 504, 536, 503, 536, 535, 504, 505, 537, 504, 537, 536, 505, 506, 538, 505, 538, 537, 506, 507, 539, 506, 539, 538, 507, 508, 540, 507, 540, 539, 508, 509, 541, 508, 541, 540, 509, 510, 542, 509, 542, 541, 510, 511, 543, 510, 543, 542, 512, 513, 545, 512, 545, 544, 513, 514, 546, 513, 546, 545, 514, 515, 547, 514, 547, 546, 515, 516, 548, 515, 548, 547, 516, 517, 549, 516, 549, 548, 517, 518, 550, 517, 550, 549, 518, 519, 551, 518, 551, 550, 519, 520, 552, 519, 552, 551, 520, 521, 553, 520, 553, 552, 521, 522, 554, 521, 554, 553, 522, 523, 555, 522, 555, 554, 523, 524, 556, 523, 556, 555, 524, 525, 557, 524, 557, 556, 525, 526, 558, 525, 558, 557, 526, 527, 559, 526, 559, 558, 527, 528, 560, 527, 560, 559, 528, 529, 561, 528, 561, 560, 529, 530, 562, 529, 562, 561, 530, 531, 563, 530, 563, 562, 531, 532, 564, 531, 564, 563, 532, 533, 565, 532, 565, 564, 533, 534, 566, 533, 566, 565, 534, 535, 567, 534, 567, 566, 535, 536, 568, 535, 568, 567, 536, 537, 569, 536, 569, 568, 537, 538, 570, 537, 570, 569, 538, 539, 571, 538, 571, 570, 539, 540, 572, 539, 572, 571, 540, 541, 573, 540, 573, 572, 541, 542, 574, 541, 574, 573, 542, 543, 575, 542, 575, 574, 544, 545, 577, 544, 577, 576, 545, 546, 578, 545, 578, 577, 546, 547, 579, 546, 579, 578, 547, 548, 580, 547, 580, 579, 548, 549, 581, 548, 581, 580, 549, 550, 582, 549, 582, 581, 550, 551, 583, 550, 583, 582, 551, 552, 584, 551, 584, 583, 552, 553, 585, 552, 585, 584, 553, 554, 586, 553, 586, 585, 554, 555, 587, 554, 587, 586, 555, 556, 588, 555, 588, 587, 556, 557, 589, 556, 589, 588, 557, 558, 590, 557, 590, 589, 558, 559, 591, 558, 591, 590, 559, 560, 592, 559, 592, 591, 560, 561, 593, 560, 593, 592, 561, 562, 594, 561, 594, 593, 562, 563, 595, 562, 595, 594, 563, 564, 596, 563, 596, 595, 564, 565, 597, 564, 597, 596, 565, 566, 598, 565, 598, 597, 566, 567, 599, 566, 599, 598, 567, 568, 600, 567, 600, 599, 568, 569, 601, 568, 601, 600, 569, 570, 602, 569, 602, 601, 570, 571, 603, 570, 603, 602, 571, 572, 604, 571, 604, 603, 572, 573, 605, 572, 605, 604, 573, 574, 606, 573, 606, 605, 574, 575, 607, 574, 607, 606, 576, 577, 609, 576, 609, 608, 577, 578, 610, 577, 610, 609, 578, 579, 611, 578, 611, 610, 579, 580, 612, 579, 612, 611, 580, 581, 613, 580, 613, 612, 581, 582, 614, 581, 614, 613, 582, 583, 615, 582, 615, 614, 583, 584, 616, 583, 616, 615, 584, 585, 617, 584, 617, 616, 585, 586, 618, 585, 618, 617, 586, 587, 619, 586, 619, 618, 587, 588, 620, 587, 620, 619, 588, 589, 621, 588, 621, 620, 589, 590, 622, 589, 622, 621, 590, 591, 623, 590, 623, 622, 591, 592, 624, 591, 624, 623, 592, 593, 625, 592, 625, 624, 593, 594, 626, 593, 626, 625, 594, 595, 627, 594, 627, 626, 595, 596, 628, 595, 628, 627, 596, 597, 629, 596, 629, 628, 597, 598, 630, 597, 630, 629, 598, 599, 631, 598, 631, 630, 599, 600, 632, 599, 632, 631, 600, 601, 633, 600, 633, 632, 601, 602, 634, 601, 634, 633, 602, 603, 635, 602, 635, 634, 603, 604, 636, 603, 636, 635, 604, 605, 637, 604, 637, 636, 605, 606, 638, 605, 638, 637, 606, 607, 639, 606, 639, 638, 608, 609, 641, 608, 641, 640, 609, 610, 642, 609, 642, 641, 610, 611, 643, 610, 643, 642, 611, 612, 644, 611, 644, 643, 612, 613, 645, 612, 645, 644, 613, 614, 646, 613, 646, 645, 614, 615, 647, 614, 647, 646, 615, 616, 648, 615, 648, 647, 616, 617, 649, 616, 649, 648, 617, 618, 650, 617, 650, 649, 618, 619, 651, 618, 651, 650, 619, 620, 652, 619, 652, 651, 620, 621, 653, 620, 653, 652, 621, 622, 654, 621, 654, 653, 622, 623, 655, 622, 655, 654, 623, 624, 656, 623, 656, 655, 624, 625, 657, 624, 657, 656, 625, 626, 658, 625, 658, 657, 626, 627, 659, 626, 659, 658, 627, 628, 660, 627, 660, 659, 628, 629, 661, 628, 661, 660, 629, 630, 662, 629, 662, 661, 630, 631, 663, 630, 663, 662, 631, 632, 664, 631, 664, 663, 632, 633, 665, 632, 665, 664, 633, 634, 666, 633, 666, 665, 634, 635, 667, 634, 667, 666, 635, 636, 668, 635, 668, 667, 636, 637, 669, 636, 669, 668, 637, 638, 670, 637, 670, 669, 638, 639, 671, 638, 671, 670, 640, 641, 673, 640, 673, 672, 641, 642, 674, 641, 674, 673, 642, 643, 675, 642, 675, 674, 643, 644, 676, 643, 676, 675, 644, 645, 677, 644, 677, 676, 645, 646, 678, 645, 678, 677, 646, 647, 679, 646, 679, 678, 647, 648, 680, 647, 680, 679, 648, 649, 681, 648, 681, 680, 649, 650, 682, 649, 682, 681, 650, 651, 683, 650, 683, 682, 651, 652, 684, 651, 684, 683, 652, 653, 685, 652, 685, 684, 653, 654, 686, 653, 686, 685, 654, 655, 687, 654, 687, 686, 655, 656, 688, 655, 688, 687, 656, 657, 689, 656, 689, 688, 657, 658, 690, 657, 690, 689, 658, 659, 691, 658, 691, 690, 659, 660, 692, 659, 692, 691, 660, 661, 693, 660, 693, 692, 661, 662, 694, 661, 694, 693, 662, 663, 695, 662, 695, 694, 663, 664, 696, 663, 696, 695, 664, 665, 697, 664, 697, 696, 665, 666, 698, 665, 698, 697, 666, 667, 699, 666, 699, 698, 667, 668, 700, 667, 700, 699, 668, 669, 701, 668, 701, 700, 669, 670, 702, 669, 702, 701, 670, 671, 703, 670, 703, 702, 672, 673, 705, 672, 705, 704, 673, 674, 706, 673, 706, 705, 674, 675, 707, 674, 707, 706, 675, 676, 708, 675, 708, 707, 676, 677, 709, 676, 709, 708, 677, 678, 710, 677, 710, 709, 678, 679, 711, 678, 711, 710, 679, 680, 712, 679, 712, 711, 680, 681, 713, 680, 713, 712, 681, 682, 714, 681, 714, 713, 682, 683, 715, 682, 715, 714, 683, 684, 716, 683, 716, 715, 684, 685, 717, 684, 717, 716, 685, 686, 718, 685, 718, 717, 686, 687, 719, 686, 719, 718, 687, 688, 720, 687, 720, 719, 688, 689, 721, 688, 721, 720, 689, 690, 722, 689, 722, 721, 690, 691, 723, 690, 723, 722, 691, 692, 724, 691, 724, 723, 692, 693, 725, 692, 725, 724, 693, 694, 726, 693, 726, 725, 694, 695, 727, 694, 727, 726, 695, 696, 728, 695, 728, 727, 696, 697, 729, 696, 729, 728, 697, 698, 730, 697, 730, 729, 698, 699, 731, 698, 731, 730, 699, 700, 732, 699, 732, 731, 700, 701, 733, 700, 733, 732, 701, 702, 734, 701, 734, 733, 702, 703, 735, 702, 735, 734, 704, 705, 737, 704, 737, 736, 705, 706, 738, 705, 738, 737, 706, 707, 739, 706, 739, 738, 707, 708, 740, 707, 740, 739, 708, 709, 741, 708, 741, 740, 709, 710, 742, 709, 742, 741, 710, 711, 743, 710, 743, 742, 711, 712, 744, 711, 744, 743, 712, 713, 745, 712, 745, 744, 713, 714, 746, 713, 746, 745, 714, 715, 747, 714, 747, 746, 715, 716, 748, 715, 748, 747, 716, 717, 749, 716, 749, 748, 717, 718, 750, 717, 750, 749, 718, 719, 751, 718, 751, 750, 719, 720, 752, 719, 752, 751, 720, 721, 753, 720, 753, 752, 721, 722, 754, 721, 754, 753, 722, 723, 755, 722, 755, 754, 723, 724, 756, 723, 756, 755, 724, 725, 757, 724, 757, 756, 725, 726, 758, 725, 758, 757, 726, 727, 759, 726, 759, 758, 727, 728, 760, 727, 760, 759, 728, 729, 761, 728, 761, 760, 729, 730, 762, 729, 762, 761, 730, 731, 763, 730, 763, 762, 731, 732, 764, 731, 764, 763, 732, 733, 765, 732, 765, 764, 733, 734, 766, 733, 766, 765, 734, 735, 767, 734, 767, 766, 736, 737, 769, 736, 769, 768, 737, 738, 770, 737, 770, 769, 738, 739, 771, 738, 771, 770, 739, 740, 772, 739, 772, 771, 740, 741, 773, 740, 773, 772, 741, 742, 774, 741, 774, 773, 742, 743, 775, 742, 775, 774, 743, 744, 776, 743, 776, 775, 744, 745, 777, 744, 777, 776, 745, 746, 778, 745, 778, 777, 746, 747, 779, 746, 779, 778, 747, 748, 780, 747, 780, 779, 748, 749, 781, 748, 781, 780, 749, 750, 782, 749, 782, 781, 750, 751, 783, 750, 783, 782, 751, 752, 784, 751, 784, 783, 752, 753, 785, 752, 785, 784, 753, 754, 786, 753, 786, 785, 754, 755, 787, 754, 787, 786, 755, 756, 788, 755, 788, 787, 756, 757, 789, 756, 789, 788, 757, 758, 790, 757, 790, 789, 758, 759, 791, 758, 791, 790, 759, 760, 792, 759, 792, 791, 760, 761, 793, 760, 793, 792, 761, 762, 794, 761, 794, 793, 762, 763, 795, 762, 795, 794, 763, 764, 796, 763, 796, 795, 764, 765, 797, 764, 797, 796, 765, 766, 798, 765, 798, 797, 766, 767, 799, 766, 799, 798, 768, 769, 801, 768, 801, 800, 769, 770, 802, 769, 802, 801, 770, 771, 803, 770, 803, 802, 771, 772, 804, 771, 804, 803, 772, 773, 805, 772, 805, 804, 773, 774, 806, 773, 806, 805, 774, 775, 807, 774, 807, 806, 775, 776, 808, 775, 808, 807, 776, 777, 809, 776, 809, 808, 777, 778, 810, 777, 810, 809, 778, 779, 811, 778, 811, 810, 779, 780, 812, 779, 812, 811, 780, 781, 813, 780, 813, 812, 781, 782, 814, 781, 814, 813, 782, 783, 815, 782, 815, 814, 783, 784, 816, 783, 816, 815, 784, 785, 817, 784, 817, 816, 785, 786, 818, 785, 818, 817, 786, 787, 819, 786, 819, 818, 787, 788, 820, 787, 820, 819, 788, 789, 821, 788, 821, 820, 789, 790, 822, 789, 822, 821, 790, 791, 823, 790, 823, 822, 791, 792, 824, 791, 824, 823, 792, 793, 825, 792, 825, 824, 793, 794, 826, 793, 826, 825, 794, 795, 827, 794, 827, 826, 795, 796, 828, 795, 828, 827, 796, 797, 829, 796, 829, 828, 797, 798, 830, 797, 830, 829, 798, 799, 831, 798, 831, 830, 800, 801, 833, 800, 833, 832, 801, 802, 834, 801, 834, 833, 802, 803, 835, 802, 835, 834, 803, 804, 836, 803, 836, 835, 804, 805, 837, 804, 837, 836, 805, 806, 838, 805, 838, 837, 806, 807, 839, 806, 839, 838, 807, 808, 840, 807, 840, 839, 808, 809, 841, 808, 841, 840, 809, 810, 842, 809, 842, 841, 810, 811, 843, 810, 843, 842, 811, 812, 844, 811, 844, 843, 812, 813, 845, 812, 845, 844, 813, 814, 846, 813, 846, 845, 814, 815, 847, 814, 847, 846, 815, 816, 848, 815, 848, 847, 816, 817, 849, 816, 849, 848, 817, 818, 850, 817, 850, 849, 818, 819, 851, 818, 851, 850, 819, 820, 852, 819, 852, 851, 820, 821, 853, 820, 853, 852, 821, 822, 854, 821, 854, 853, 822, 823, 855, 822, 855, 854, 823, 824, 856, 823, 856, 855, 824, 825, 857, 824, 857, 856, 825, 826, 858, 825, 858, 857, 826, 827, 859, 826, 859, 858, 827, 828, 860, 827, 860, 859, 828, 829, 861, 828, 861, 860, 829, 830, 862, 829, 862, 861, 830, 831, 863, 830, 863, 862, 832, 833, 865, 832, 865, 864, 833, 834, 866, 833, 866, 865, 834, 835, 867, 834, 867, 866, 835, 836, 868, 835, 868, 867, 836, 837, 869, 836, 869, 868, 837, 838, 870, 837, 870, 869, 838, 839, 871, 838, 871, 870, 839, 840, 872, 839, 872, 871, 840, 841, 873, 840, 873, 872, 841, 842, 874, 841, 874, 873, 842, 843, 875, 842, 875, 874, 843, 844, 876, 843, 876, 875, 844, 845, 877, 844, 877, 876, 845, 846, 878, 845, 878, 877, 846, 847, 879, 846, 879, 878, 847, 848, 880, 847, 880, 879, 848, 849, 881, 848, 881, 880, 849, 850, 882, 849, 882, 881, 850, 851, 883, 850, 883, 882, 851, 852, 884, 851, 884, 883, 852, 853, 885, 852, 885, 884, 853, 854, 886, 853, 886, 885, 854, 855, 887, 854, 887, 886, 855, 856, 888, 855, 888, 887, 856, 857, 889, 856, 889, 888, 857, 858, 890, 857, 890, 889, 858, 859, 891, 858, 891, 890, 859, 860, 892, 859, 892, 891, 860, 861, 893, 860, 893, 892, 861, 862, 894, 861, 894, 893, 862, 863, 895, 862, 895, 894, 864, 865, 897, 864, 897, 896, 865, 866, 898, 865, 898, 897, 866, 867, 899, 866, 899, 898, 867, 868, 900, 867, 900, 899, 868, 869, 901, 868, 901, 900, 869, 870, 902, 869, 902, 901, 870, 871, 903, 870, 903, 902, 871, 872, 904, 871, 904, 903, 872, 873, 905, 872, 905, 904, 873, 874, 906, 873, 906, 905, 874, 875, 907, 874, 907, 906, 875, 876, 908, 875, 908, 907, 876, 877, 909, 876, 909, 908, 877, 878, 910, 877, 910, 909, 878, 879, 911, 878, 911, 910, 879, 880, 912, 879, 912, 911, 880, 881, 913, 880, 913, 912, 881, 882, 914, 881, 914, 913, 882, 883, 915, 882, 915, 914, 883, 884, 916, 883, 916, 915, 884, 885, 917, 884, 917, 916, 885, 886, 918, 885, 918, 917, 886, 887, 919, 886, 919, 918, 887, 888, 920, 887, 920, 919, 888, 889, 921, 888, 921, 920, 889, 890, 922, 889, 922, 921, 890, 891, 923, 890, 923, 922, 891, 892, 924, 891, 924, 923, 892, 893, 925, 892, 925, 924, 893, 894, 926, 893, 926, 925, 894, 895, 927, 894, 927, 926, 896, 897, 929, 896, 929, 928, 897, 898, 930, 897, 930, 929, 898, 899, 931, 898, 931, 930, 899, 900, 932, 899, 932, 931, 900, 901, 933, 900, 933, 932, 901, 902, 934, 901, 934, 933, 902, 903, 935, 902, 935, 934, 903, 904, 936, 903, 936, 935, 904, 905, 937, 904, 937, 936, 905, 906, 938, 905, 938, 937, 906, 907, 939, 906, 939, 938, 907, 908, 940, 907, 940, 939, 908, 909, 941, 908, 941, 940, 909, 910, 942, 909, 942, 941, 910, 911, 943, 910, 943, 942, 911, 912, 944, 911, 944, 943, 912, 913, 945, 912, 945, 944, 913, 914, 946, 913, 946, 945, 914, 915, 947, 914, 947, 946, 915, 916, 948, 915, 948, 947, 916, 917, 949, 916, 949, 948, 917, 918, 950, 917, 950, 949, 918, 919, 951, 918, 951, 950, 919, 920, 952, 919, 952, 951, 920, 921, 953, 920, 953, 952, 921, 922, 954, 921, 954, 953, 922, 923, 955, 922, 955, 954, 923, 924, 956, 923, 956, 955, 924, 925, 957, 924, 957, 956, 925, 926, 958, 925, 958, 957, 926, 927, 959, 926, 959, 958, 928, 929, 961, 928, 961, 960, 929, 930, 962, 929, 962, 961, 930, 931, 963, 930, 963, 962, 931, 932, 964, 931, 964, 963, 932, 933, 965, 932, 965, 964, 933, 934, 966, 933, 966, 965, 934, 935, 967, 934, 967, 966, 935, 936, 968, 935, 968, 967, 936, 937, 969, 936, 969, 968, 937, 938, 970, 937, 970, 969, 938, 939, 971, 938, 971, 970, 939, 940, 972, 939, 972, 971, 940, 941, 973, 940, 973, 972, 941, 942, 974, 941, 974, 973, 942, 943, 975, 942, 975, 974, 943, 944, 976, 943, 976, 975, 944, 945, 977, 944, 977, 976, 945, 946, 978, 945, 978, 977, 946, 947, 979, 946, 979, 978, 947, 948, 980, 947, 980, 979, 948, 949, 981, 948, 981, 980, 949, 950, 982, 949, 982, 981, 950, 951, 983, 950, 983, 982, 951, 952, 984, 951, 984, 983, 952, 953, 985, 952, 985, 984, 953, 954, 986, 953, 986, 985, 954, 955, 987, 954, 987, 986, 955, 956, 988, 955, 988, 987, 956, 957, 989, 956, 989, 988, 957, 958, 990, 957, 990, 989, 958, 959, 991, 958, 991, 990, 960, 961, 993, 960, 993, 992, 961, 962, 994, 961, 994, 993, 962, 963, 995, 962, 995, 994, 963, 964, 996, 963, 996, 995, 964, 965, 997, 964, 997, 996, 965, 966, 998, 965, 998, 997, 966, 967, 999, 966, 999, 998, 967, 968, 1000, 967, 1000, 999, 968, 969, 1001, 968, 1001, 1000, 969, 970, 1002, 969, 1002, 1001, 970, 971, 1003, 970, 1003, 1002, 971, 972, 1004, 971, 1004, 1003, 972, 973, 1005, 972, 1005, 1004, 973, 974, 1006, 973, 1006, 1005, 974, 975, 1007, 974, 1007, 1006, 975, 976, 1008, 975, 1008, 1007, 976, 977, 1009, 976, 1009, 1008, 977, 978, 1010, 977, 1010, 1009, 978, 979, 1011, 978, 1011, 1010, 979, 980, 1012, 979, 1012, 1011, 980, 981, 1013, 980, 1013, 1012, 981, 982, 1014, 981, 1014, 1013, 982, 983, 1015, 982, 1015, 1014, 983, 984, 1016, 983, 1016, 1015, 984, 985, 1017, 984, 1017, 1016, 985, 986, 1018, 985, 1018, 1017, 986, 987, 1019, 986, 1019, 1018, 987, 988, 1020, 987, 1020, 1019, 988, 989, 1021, 988, 1021, 1020, 989, 990, 1022, 989, 1022, 1021, 990, 991, 1023, 990, 1023, 1022] point3f[] points = [(0, 0, 20), (20, 0, 20), (40, 0, 20), (60, 0, 20), (80, 0, 20), (100, 0, 20), (120, 0, 20), (140, 0, 20), (160, 0, 20), (180, 0, 20), (200, 0, 20), (220, 0, 20), (240, 0, 20), (260, 0, 20), (280, 0, 20), (300, 0, 20), (320, 0, 20), (340, 0, 20), (360, 0, 20), (380, 0, 20), (400, 0, 20), (420, 0, 20), (440, 0, 20), (460, 0, 20), (480, 0, 20), (500, 0, 20), (520, 0, 20), (540, 0, 20), (560, 0, 20), (580, 0, 20), (600, 0, 20), (620, 0, 20), (0, 20, 20), (20, 20, 20), (40, 20, 20), (60, 20, 20), (80, 20, 20), (100, 20, 20), (120, 20, 20), (140, 20, 20), (160, 20, 20), (180, 20, 20), (200, 20, 20), (220, 20, 20), (240, 20, 20), (260, 20, 20), (280, 20, 20), (300, 20, 20), (320, 20, 20), (340, 20, 20), (360, 20, 20), (380, 20, 20), (400, 20, 20), (420, 20, 20), (440, 20, 20), (460, 20, 20), (480, 20, 20), (500, 20, 20), (520, 20, 20), (540, 20, 20), (560, 20, 20), (580, 20, 20), (600, 20, 20), (620, 20, 20), (0, 40, 20), (20, 40, 20), (40, 40, 20), (60, 40, 20), (80, 40, 20), (100, 40, 20), (120, 40, 20), (140, 40, 20), (160, 40, 20), (180, 40, 20), (200, 40, 20), (220, 40, 20), (240, 40, 20), (260, 40, 20), (280, 40, 20), (300, 40, 20), (320, 40, 20), (340, 40, 20), (360, 40, 20), (380, 40, 20), (400, 40, 20), (420, 40, 20), (440, 40, 20), (460, 40, 20), (480, 40, 20), (500, 40, 20), (520, 40, 20), (540, 40, 20), (560, 40, 20), (580, 40, 20), (600, 40, 20), (620, 40, 20), (0, 60, 20), (20, 60, 20), (40, 60, 20), (60, 60, 20), (80, 60, 20), (100, 60, 20), (120, 60, 20), (140, 60, 20), (160, 60, 20), (180, 60, 20), (200, 60, 20), (220, 60, 20), (240, 60, 20), (260, 60, 20), (280, 60, 20), (300, 60, 20), (320, 60, 20), (340, 60, 20), (360, 60, 20), (380, 60, 20), (400, 60, 20), (420, 60, 20), (440, 60, 20), (460, 60, 20), (480, 60, 20), (500, 60, 20), (520, 60, 20), (540, 60, 20), (560, 60, 20), (580, 60, 20), (600, 60, 20), (620, 60, 20), (0, 80, 20), (20, 80, 20), (40, 80, 20), (60, 80, 20), (80, 80, 20), (100, 80, 20), (120, 80, 20), (140, 80, 20), (160, 80, 20), (180, 80, 20), (200, 80, 20), (220, 80, 20), (240, 80, 20), (260, 80, 20), (280, 80, 20), (300, 80, 20), (320, 80, 20), (340, 80, 20), (360, 80, 20), (380, 80, 20), (400, 80, 20), (420, 80, 20), (440, 80, 20), (460, 80, 20), (480, 80, 20), (500, 80, 20), (520, 80, 20), (540, 80, 20), (560, 80, 20), (580, 80, 20), (600, 80, 20), (620, 80, 20), (0, 100, 20), (20, 100, 20), (40, 100, 20), (60, 100, 20), (80, 100, 20), (100, 100, 20), (120, 100, 20), (140, 100, 20), (160, 100, 20), (180, 100, 20), (200, 100, 20), (220, 100, 20), (240, 100, 20), (260, 100, 20), (280, 100, 20), (300, 100, 20), (320, 100, 20), (340, 100, 20), (360, 100, 20), (380, 100, 20), (400, 100, 20), (420, 100, 20), (440, 100, 20), (460, 100, 20), (480, 100, 20), (500, 100, 20), (520, 100, 20), (540, 100, 20), (560, 100, 20), (580, 100, 20), (600, 100, 20), (620, 100, 20), (0, 120, 20), (20, 120, 20), (40, 120, 20), (60, 120, 20), (80, 120, 20), (100, 120, 20), (120, 120, 20), (140, 120, 20), (160, 120, 20), (180, 120, 20), (200, 120, 20), (220, 120, 20), (240, 120, 20), (260, 120, 20), (280, 120, 20), (300, 120, 20), (320, 120, 20), (340, 120, 20), (360, 120, 20), (380, 120, 20), (400, 120, 20), (420, 120, 20), (440, 120, 20), (460, 120, 20), (480, 120, 20), (500, 120, 20), (520, 120, 20), (540, 120, 20), (560, 120, 20), (580, 120, 20), (600, 120, 20), (620, 120, 20), (0, 140, 20), (20, 140, 20), (40, 140, 20), (60, 140, 20), (80, 140, 20), (100, 140, 20), (120, 140, 20), (140, 140, 20), (160, 140, 20), (180, 140, 20), (200, 140, 20), (220, 140, 20), (240, 140, 20), (260, 140, 20), (280, 140, 20), (300, 140, 20), (320, 140, 20), (340, 140, 20), (360, 140, 20), (380, 140, 20), (400, 140, 20), (420, 140, 20), (440, 140, 20), (460, 140, 20), (480, 140, 20), (500, 140, 20), (520, 140, 20), (540, 140, 20), (560, 140, 20), (580, 140, 20), (600, 140, 20), (620, 140, 20), (0, 160, 20), (20, 160, 20), (40, 160, 20), (60, 160, 20), (80, 160, 20), (100, 160, 20), (120, 160, 20), (140, 160, 20), (160, 160, 20), (180, 160, 20), (200, 160, 20), (220, 160, 20), (240, 160, 20), (260, 160, 20), (280, 160, 20), (300, 160, 20), (320, 160, 20), (340, 160, 20), (360, 160, 20), (380, 160, 20), (400, 160, 20), (420, 160, 20), (440, 160, 20), (460, 160, 20), (480, 160, 20), (500, 160, 20), (520, 160, 20), (540, 160, 20), (560, 160, 20), (580, 160, 20), (600, 160, 20), (620, 160, 20), (0, 180, 20), (20, 180, 20), (40, 180, 20), (60, 180, 20), (80, 180, 20), (100, 180, 20), (120, 180, 20), (140, 180, 20), (160, 180, 20), (180, 180, 20), (200, 180, 20), (220, 180, 20), (240, 180, 20), (260, 180, 20), (280, 180, 20), (300, 180, 20), (320, 180, 20), (340, 180, 20), (360, 180, 20), (380, 180, 20), (400, 180, 20), (420, 180, 20), (440, 180, 20), (460, 180, 20), (480, 180, 20), (500, 180, 20), (520, 180, 20), (540, 180, 20), (560, 180, 20), (580, 180, 20), (600, 180, 20), (620, 180, 20), (0, 200, 20), (20, 200, 20), (40, 200, 20), (60, 200, 20), (80, 200, 20), (100, 200, 20), (120, 200, 20), (140, 200, 20), (160, 200, 20), (180, 200, 20), (200, 200, 20), (220, 200, 20), (240, 200, 20), (260, 200, 20), (280, 200, 20), (300, 200, 20), (320, 200, 20), (340, 200, 20), (360, 200, 20), (380, 200, 20), (400, 200, 20), (420, 200, 20), (440, 200, 20), (460, 200, 20), (480, 200, 20), (500, 200, 20), (520, 200, 20), (540, 200, 20), (560, 200, 20), (580, 200, 20), (600, 200, 20), (620, 200, 20), (0, 220, 20), (20, 220, 20), (40, 220, 20), (60, 220, 20), (80, 220, 20), (100, 220, 20), (120, 220, 20), (140, 220, 20), (160, 220, 20), (180, 220, 20), (200, 220, 20), (220, 220, 20), (240, 220, 20), (260, 220, 20), (280, 220, 20), (300, 220, 20), (320, 220, 20), (340, 220, 20), (360, 220, 20), (380, 220, 20), (400, 220, 20), (420, 220, 20), (440, 220, 20), (460, 220, 20), (480, 220, 20), (500, 220, 20), (520, 220, 20), (540, 220, 20), (560, 220, 20), (580, 220, 20), (600, 220, 20), (620, 220, 20), (0, 240, 20), (20, 240, 20), (40, 240, 20), (60, 240, 20), (80, 240, 20), (100, 240, 20), (120, 240, 20), (140, 240, 20), (160, 240, 20), (180, 240, 20), (200, 240, 20), (220, 240, 20), (240, 240, 20), (260, 240, 20), (280, 240, 20), (300, 240, 20), (320, 240, 20), (340, 240, 20), (360, 240, 20), (380, 240, 20), (400, 240, 20), (420, 240, 20), (440, 240, 20), (460, 240, 20), (480, 240, 20), (500, 240, 20), (520, 240, 20), (540, 240, 20), (560, 240, 20), (580, 240, 20), (600, 240, 20), (620, 240, 20), (0, 260, 20), (20, 260, 20), (40, 260, 20), (60, 260, 20), (80, 260, 20), (100, 260, 20), (120, 260, 20), (140, 260, 20), (160, 260, 20), (180, 260, 20), (200, 260, 20), (220, 260, 20), (240, 260, 20), (260, 260, 20), (280, 260, 20), (300, 260, 20), (320, 260, 20), (340, 260, 20), (360, 260, 20), (380, 260, 20), (400, 260, 20), (420, 260, 20), (440, 260, 20), (460, 260, 20), (480, 260, 20), (500, 260, 20), (520, 260, 20), (540, 260, 20), (560, 260, 20), (580, 260, 20), (600, 260, 20), (620, 260, 20), (0, 280, 20), (20, 280, 20), (40, 280, 20), (60, 280, 20), (80, 280, 20), (100, 280, 20), (120, 280, 20), (140, 280, 20), (160, 280, 20), (180, 280, 20), (200, 280, 20), (220, 280, 20), (240, 280, 20), (260, 280, 20), (280, 280, 20), (300, 280, 20), (320, 280, 20), (340, 280, 20), (360, 280, 20), (380, 280, 20), (400, 280, 20), (420, 280, 20), (440, 280, 20), (460, 280, 20), (480, 280, 20), (500, 280, 20), (520, 280, 20), (540, 280, 20), (560, 280, 20), (580, 280, 20), (600, 280, 20), (620, 280, 20), (0, 300, 20), (20, 300, 20), (40, 300, 20), (60, 300, 20), (80, 300, 20), (100, 300, 20), (120, 300, 20), (140, 300, 20), (160, 300, 20), (180, 300, 20), (200, 300, 20), (220, 300, 20), (240, 300, 20), (260, 300, 20), (280, 300, 20), (300, 300, 20), (320, 300, 20), (340, 300, 20), (360, 300, 20), (380, 300, 20), (400, 300, 20), (420, 300, 20), (440, 300, 20), (460, 300, 20), (480, 300, 20), (500, 300, 20), (520, 300, 20), (540, 300, 20), (560, 300, 20), (580, 300, 20), (600, 300, 20), (620, 300, 20), (0, 320, 20), (20, 320, 20), (40, 320, 20), (60, 320, 20), (80, 320, 20), (100, 320, 20), (120, 320, 20), (140, 320, 20), (160, 320, 20), (180, 320, 20), (200, 320, 20), (220, 320, 20), (240, 320, 20), (260, 320, 20), (280, 320, 20), (300, 320, 20), (320, 320, 20), (340, 320, 20), (360, 320, 20), (380, 320, 20), (400, 320, 20), (420, 320, 20), (440, 320, 20), (460, 320, 20), (480, 320, 20), (500, 320, 20), (520, 320, 20), (540, 320, 20), (560, 320, 20), (580, 320, 20), (600, 320, 20), (620, 320, 20), (0, 340, 20), (20, 340, 20), (40, 340, 20), (60, 340, 20), (80, 340, 20), (100, 340, 20), (120, 340, 20), (140, 340, 20), (160, 340, 20), (180, 340, 20), (200, 340, 20), (220, 340, 20), (240, 340, 20), (260, 340, 20), (280, 340, 20), (300, 340, 20), (320, 340, 20), (340, 340, 20), (360, 340, 20), (380, 340, 20), (400, 340, 20), (420, 340, 20), (440, 340, 20), (460, 340, 20), (480, 340, 20), (500, 340, 20), (520, 340, 20), (540, 340, 20), (560, 340, 20), (580, 340, 20), (600, 340, 20), (620, 340, 20), (0, 360, 20), (20, 360, 20), (40, 360, 20), (60, 360, 20), (80, 360, 20), (100, 360, 20), (120, 360, 20), (140, 360, 20), (160, 360, 20), (180, 360, 20), (200, 360, 20), (220, 360, 20), (240, 360, 20), (260, 360, 20), (280, 360, 20), (300, 360, 20), (320, 360, 20), (340, 360, 20), (360, 360, 20), (380, 360, 20), (400, 360, 20), (420, 360, 20), (440, 360, 20), (460, 360, 20), (480, 360, 20), (500, 360, 20), (520, 360, 20), (540, 360, 20), (560, 360, 20), (580, 360, 20), (600, 360, 20), (620, 360, 20), (0, 380, 20), (20, 380, 20), (40, 380, 20), (60, 380, 20), (80, 380, 20), (100, 380, 20), (120, 380, 20), (140, 380, 20), (160, 380, 20), (180, 380, 20), (200, 380, 20), (220, 380, 20), (240, 380, 20), (260, 380, 20), (280, 380, 20), (300, 380, 20), (320, 380, 20), (340, 380, 20), (360, 380, 20), (380, 380, 20), (400, 380, 20), (420, 380, 20), (440, 380, 20), (460, 380, 20), (480, 380, 20), (500, 380, 20), (520, 380, 20), (540, 380, 20), (560, 380, 20), (580, 380, 20), (600, 380, 20), (620, 380, 20), (0, 400, 20), (20, 400, 20), (40, 400, 20), (60, 400, 20), (80, 400, 20), (100, 400, 20), (120, 400, 20), (140, 400, 20), (160, 400, 20), (180, 400, 20), (200, 400, 20), (220, 400, 20), (240, 400, 20), (260, 400, 20), (280, 400, 20), (300, 400, 20), (320, 400, 20), (340, 400, 20), (360, 400, 20), (380, 400, 20), (400, 400, 20), (420, 400, 20), (440, 400, 20), (460, 400, 20), (480, 400, 20), (500, 400, 20), (520, 400, 20), (540, 400, 20), (560, 400, 20), (580, 400, 20), (600, 400, 20), (620, 400, 20), (0, 420, 20), (20, 420, 20), (40, 420, 20), (60, 420, 20), (80, 420, 20), (100, 420, 20), (120, 420, 20), (140, 420, 20), (160, 420, 20), (180, 420, 20), (200, 420, 20), (220, 420, 20), (240, 420, 20), (260, 420, 20), (280, 420, 20), (300, 420, 20), (320, 420, 20), (340, 420, 20), (360, 420, 20), (380, 420, 20), (400, 420, 20), (420, 420, 20), (440, 420, 20), (460, 420, 20), (480, 420, 20), (500, 420, 20), (520, 420, 20), (540, 420, 20), (560, 420, 20), (580, 420, 20), (600, 420, 20), (620, 420, 20), (0, 440, 20), (20, 440, 20), (40, 440, 20), (60, 440, 20), (80, 440, 20), (100, 440, 20), (120, 440, 20), (140, 440, 20), (160, 440, 20), (180, 440, 20), (200, 440, 20), (220, 440, 20), (240, 440, 20), (260, 440, 20), (280, 440, 20), (300, 440, 20), (320, 440, 20), (340, 440, 20), (360, 440, 20), (380, 440, 20), (400, 440, 20), (420, 440, 20), (440, 440, 20), (460, 440, 20), (480, 440, 20), (500, 440, 20), (520, 440, 20), (540, 440, 20), (560, 440, 20), (580, 440, 20), (600, 440, 20), (620, 440, 20), (0, 460, 20), (20, 460, 20), (40, 460, 20), (60, 460, 20), (80, 460, 20), (100, 460, 20), (120, 460, 20), (140, 460, 20), (160, 460, 20), (180, 460, 20), (200, 460, 20), (220, 460, 20), (240, 460, 20), (260, 460, 20), (280, 460, 20), (300, 460, 20), (320, 460, 20), (340, 460, 20), (360, 460, 20), (380, 460, 20), (400, 460, 20), (420, 460, 20), (440, 460, 20), (460, 460, 20), (480, 460, 20), (500, 460, 20), (520, 460, 20), (540, 460, 20), (560, 460, 20), (580, 460, 20), (600, 460, 20), (620, 460, 20), (0, 480, 20), (20, 480, 20), (40, 480, 20), (60, 480, 20), (80, 480, 20), (100, 480, 20), (120, 480, 20), (140, 480, 20), (160, 480, 20), (180, 480, 20), (200, 480, 20), (220, 480, 20), (240, 480, 20), (260, 480, 20), (280, 480, 20), (300, 480, 20), (320, 480, 20), (340, 480, 20), (360, 480, 20), (380, 480, 20), (400, 480, 20), (420, 480, 20), (440, 480, 20), (460, 480, 20), (480, 480, 20), (500, 480, 20), (520, 480, 20), (540, 480, 20), (560, 480, 20), (580, 480, 20), (600, 480, 20), (620, 480, 20), (0, 500, 20), (20, 500, 20), (40, 500, 20), (60, 500, 20), (80, 500, 20), (100, 500, 20), (120, 500, 20), (140, 500, 20), (160, 500, 20), (180, 500, 20), (200, 500, 20), (220, 500, 20), (240, 500, 20), (260, 500, 20), (280, 500, 20), (300, 500, 20), (320, 500, 20), (340, 500, 20), (360, 500, 20), (380, 500, 20), (400, 500, 20), (420, 500, 20), (440, 500, 20), (460, 500, 20), (480, 500, 20), (500, 500, 20), (520, 500, 20), (540, 500, 20), (560, 500, 20), (580, 500, 20), (600, 500, 20), (620, 500, 20), (0, 520, 20), (20, 520, 20), (40, 520, 20), (60, 520, 20), (80, 520, 20), (100, 520, 20), (120, 520, 20), (140, 520, 20), (160, 520, 20), (180, 520, 20), (200, 520, 20), (220, 520, 20), (240, 520, 20), (260, 520, 20), (280, 520, 20), (300, 520, 20), (320, 520, 20), (340, 520, 20), (360, 520, 20), (380, 520, 20), (400, 520, 20), (420, 520, 20), (440, 520, 20), (460, 520, 20), (480, 520, 20), (500, 520, 20), (520, 520, 20), (540, 520, 20), (560, 520, 20), (580, 520, 20), (600, 520, 20), (620, 520, 20), (0, 540, 20), (20, 540, 20), (40, 540, 20), (60, 540, 20), (80, 540, 20), (100, 540, 20), (120, 540, 20), (140, 540, 20), (160, 540, 20), (180, 540, 20), (200, 540, 20), (220, 540, 20), (240, 540, 20), (260, 540, 20), (280, 540, 20), (300, 540, 20), (320, 540, 20), (340, 540, 20), (360, 540, 20), (380, 540, 20), (400, 540, 20), (420, 540, 20), (440, 540, 20), (460, 540, 20), (480, 540, 20), (500, 540, 20), (520, 540, 20), (540, 540, 20), (560, 540, 20), (580, 540, 20), (600, 540, 20), (620, 540, 20), (0, 560, 20), (20, 560, 20), (40, 560, 20), (60, 560, 20), (80, 560, 20), (100, 560, 20), (120, 560, 20), (140, 560, 20), (160, 560, 20), (180, 560, 20), (200, 560, 20), (220, 560, 20), (240, 560, 20), (260, 560, 20), (280, 560, 20), (300, 560, 20), (320, 560, 20), (340, 560, 20), (360, 560, 20), (380, 560, 20), (400, 560, 20), (420, 560, 20), (440, 560, 20), (460, 560, 20), (480, 560, 20), (500, 560, 20), (520, 560, 20), (540, 560, 20), (560, 560, 20), (580, 560, 20), (600, 560, 20), (620, 560, 20), (0, 580, 20), (20, 580, 20), (40, 580, 20), (60, 580, 20), (80, 580, 20), (100, 580, 20), (120, 580, 20), (140, 580, 20), (160, 580, 20), (180, 580, 20), (200, 580, 20), (220, 580, 20), (240, 580, 20), (260, 580, 20), (280, 580, 20), (300, 580, 20), (320, 580, 20), (340, 580, 20), (360, 580, 20), (380, 580, 20), (400, 580, 20), (420, 580, 20), (440, 580, 20), (460, 580, 20), (480, 580, 20), (500, 580, 20), (520, 580, 20), (540, 580, 20), (560, 580, 20), (580, 580, 20), (600, 580, 20), (620, 580, 20), (0, 600, 20), (20, 600, 20), (40, 600, 20), (60, 600, 20), (80, 600, 20), (100, 600, 20), (120, 600, 20), (140, 600, 20), (160, 600, 20), (180, 600, 20), (200, 600, 20), (220, 600, 20), (240, 600, 20), (260, 600, 20), (280, 600, 20), (300, 600, 20), (320, 600, 20), (340, 600, 20), (360, 600, 20), (380, 600, 20), (400, 600, 20), (420, 600, 20), (440, 600, 20), (460, 600, 20), (480, 600, 20), (500, 600, 20), (520, 600, 20), (540, 600, 20), (560, 600, 20), (580, 600, 20), (600, 600, 20), (620, 600, 20), (0, 620, 20), (20, 620, 20), (40, 620, 20), (60, 620, 20), (80, 620, 20), (100, 620, 20), (120, 620, 20), (140, 620, 20), (160, 620, 20), (180, 620, 20), (200, 620, 20), (220, 620, 20), (240, 620, 20), (260, 620, 20), (280, 620, 20), (300, 620, 20), (320, 620, 20), (340, 620, 20), (360, 620, 20), (380, 620, 20), (400, 620, 20), (420, 620, 20), (440, 620, 20), (460, 620, 20), (480, 620, 20), (500, 620, 20), (520, 620, 20), (540, 620, 20), (560, 620, 20), (580, 620, 20), (600, 620, 20), (620, 620, 20)] color3f[] primvars:displayColor = [(0.2784314, 0.64705884, 1)] } def ComputeNode "testDeformer" { custom token node:type = "omni.graph.examples.cpp.Deformer1Gpu" point3f[] inputs:points.connect = </defaultPrim/inputGrid.points> float inputs:multiplier = 3 float inputs:wavelength = 310 point3f[] outputs:points } def Mesh "outputGrid" { uniform bool doubleSided = 1 int[] faceVertexCounts = [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 1, 33, 0, 33, 32, 1, 2, 34, 1, 34, 33, 2, 3, 35, 2, 35, 34, 3, 4, 36, 3, 36, 35, 4, 5, 37, 4, 37, 36, 5, 6, 38, 5, 38, 37, 6, 7, 39, 6, 39, 38, 7, 8, 40, 7, 40, 39, 8, 9, 41, 8, 41, 40, 9, 10, 42, 9, 42, 41, 10, 11, 43, 10, 43, 42, 11, 12, 44, 11, 44, 43, 12, 13, 45, 12, 45, 44, 13, 14, 46, 13, 46, 45, 14, 15, 47, 14, 47, 46, 15, 16, 48, 15, 48, 47, 16, 17, 49, 16, 49, 48, 17, 18, 50, 17, 50, 49, 18, 19, 51, 18, 51, 50, 19, 20, 52, 19, 52, 51, 20, 21, 53, 20, 53, 52, 21, 22, 54, 21, 54, 53, 22, 23, 55, 22, 55, 54, 23, 24, 56, 23, 56, 55, 24, 25, 57, 24, 57, 56, 25, 26, 58, 25, 58, 57, 26, 27, 59, 26, 59, 58, 27, 28, 60, 27, 60, 59, 28, 29, 61, 28, 61, 60, 29, 30, 62, 29, 62, 61, 30, 31, 63, 30, 63, 62, 32, 33, 65, 32, 65, 64, 33, 34, 66, 33, 66, 65, 34, 35, 67, 34, 67, 66, 35, 36, 68, 35, 68, 67, 36, 37, 69, 36, 69, 68, 37, 38, 70, 37, 70, 69, 38, 39, 71, 38, 71, 70, 39, 40, 72, 39, 72, 71, 40, 41, 73, 40, 73, 72, 41, 42, 74, 41, 74, 73, 42, 43, 75, 42, 75, 74, 43, 44, 76, 43, 76, 75, 44, 45, 77, 44, 77, 76, 45, 46, 78, 45, 78, 77, 46, 47, 79, 46, 79, 78, 47, 48, 80, 47, 80, 79, 48, 49, 81, 48, 81, 80, 49, 50, 82, 49, 82, 81, 50, 51, 83, 50, 83, 82, 51, 52, 84, 51, 84, 83, 52, 53, 85, 52, 85, 84, 53, 54, 86, 53, 86, 85, 54, 55, 87, 54, 87, 86, 55, 56, 88, 55, 88, 87, 56, 57, 89, 56, 89, 88, 57, 58, 90, 57, 90, 89, 58, 59, 91, 58, 91, 90, 59, 60, 92, 59, 92, 91, 60, 61, 93, 60, 93, 92, 61, 62, 94, 61, 94, 93, 62, 63, 95, 62, 95, 94, 64, 65, 97, 64, 97, 96, 65, 66, 98, 65, 98, 97, 66, 67, 99, 66, 99, 98, 67, 68, 100, 67, 100, 99, 68, 69, 101, 68, 101, 100, 69, 70, 102, 69, 102, 101, 70, 71, 103, 70, 103, 102, 71, 72, 104, 71, 104, 103, 72, 73, 105, 72, 105, 104, 73, 74, 106, 73, 106, 105, 74, 75, 107, 74, 107, 106, 75, 76, 108, 75, 108, 107, 76, 77, 109, 76, 109, 108, 77, 78, 110, 77, 110, 109, 78, 79, 111, 78, 111, 110, 79, 80, 112, 79, 112, 111, 80, 81, 113, 80, 113, 112, 81, 82, 114, 81, 114, 113, 82, 83, 115, 82, 115, 114, 83, 84, 116, 83, 116, 115, 84, 85, 117, 84, 117, 116, 85, 86, 118, 85, 118, 117, 86, 87, 119, 86, 119, 118, 87, 88, 120, 87, 120, 119, 88, 89, 121, 88, 121, 120, 89, 90, 122, 89, 122, 121, 90, 91, 123, 90, 123, 122, 91, 92, 124, 91, 124, 123, 92, 93, 125, 92, 125, 124, 93, 94, 126, 93, 126, 125, 94, 95, 127, 94, 127, 126, 96, 97, 129, 96, 129, 128, 97, 98, 130, 97, 130, 129, 98, 99, 131, 98, 131, 130, 99, 100, 132, 99, 132, 131, 100, 101, 133, 100, 133, 132, 101, 102, 134, 101, 134, 133, 102, 103, 135, 102, 135, 134, 103, 104, 136, 103, 136, 135, 104, 105, 137, 104, 137, 136, 105, 106, 138, 105, 138, 137, 106, 107, 139, 106, 139, 138, 107, 108, 140, 107, 140, 139, 108, 109, 141, 108, 141, 140, 109, 110, 142, 109, 142, 141, 110, 111, 143, 110, 143, 142, 111, 112, 144, 111, 144, 143, 112, 113, 145, 112, 145, 144, 113, 114, 146, 113, 146, 145, 114, 115, 147, 114, 147, 146, 115, 116, 148, 115, 148, 147, 116, 117, 149, 116, 149, 148, 117, 118, 150, 117, 150, 149, 118, 119, 151, 118, 151, 150, 119, 120, 152, 119, 152, 151, 120, 121, 153, 120, 153, 152, 121, 122, 154, 121, 154, 153, 122, 123, 155, 122, 155, 154, 123, 124, 156, 123, 156, 155, 124, 125, 157, 124, 157, 156, 125, 126, 158, 125, 158, 157, 126, 127, 159, 126, 159, 158, 128, 129, 161, 128, 161, 160, 129, 130, 162, 129, 162, 161, 130, 131, 163, 130, 163, 162, 131, 132, 164, 131, 164, 163, 132, 133, 165, 132, 165, 164, 133, 134, 166, 133, 166, 165, 134, 135, 167, 134, 167, 166, 135, 136, 168, 135, 168, 167, 136, 137, 169, 136, 169, 168, 137, 138, 170, 137, 170, 169, 138, 139, 171, 138, 171, 170, 139, 140, 172, 139, 172, 171, 140, 141, 173, 140, 173, 172, 141, 142, 174, 141, 174, 173, 142, 143, 175, 142, 175, 174, 143, 144, 176, 143, 176, 175, 144, 145, 177, 144, 177, 176, 145, 146, 178, 145, 178, 177, 146, 147, 179, 146, 179, 178, 147, 148, 180, 147, 180, 179, 148, 149, 181, 148, 181, 180, 149, 150, 182, 149, 182, 181, 150, 151, 183, 150, 183, 182, 151, 152, 184, 151, 184, 183, 152, 153, 185, 152, 185, 184, 153, 154, 186, 153, 186, 185, 154, 155, 187, 154, 187, 186, 155, 156, 188, 155, 188, 187, 156, 157, 189, 156, 189, 188, 157, 158, 190, 157, 190, 189, 158, 159, 191, 158, 191, 190, 160, 161, 193, 160, 193, 192, 161, 162, 194, 161, 194, 193, 162, 163, 195, 162, 195, 194, 163, 164, 196, 163, 196, 195, 164, 165, 197, 164, 197, 196, 165, 166, 198, 165, 198, 197, 166, 167, 199, 166, 199, 198, 167, 168, 200, 167, 200, 199, 168, 169, 201, 168, 201, 200, 169, 170, 202, 169, 202, 201, 170, 171, 203, 170, 203, 202, 171, 172, 204, 171, 204, 203, 172, 173, 205, 172, 205, 204, 173, 174, 206, 173, 206, 205, 174, 175, 207, 174, 207, 206, 175, 176, 208, 175, 208, 207, 176, 177, 209, 176, 209, 208, 177, 178, 210, 177, 210, 209, 178, 179, 211, 178, 211, 210, 179, 180, 212, 179, 212, 211, 180, 181, 213, 180, 213, 212, 181, 182, 214, 181, 214, 213, 182, 183, 215, 182, 215, 214, 183, 184, 216, 183, 216, 215, 184, 185, 217, 184, 217, 216, 185, 186, 218, 185, 218, 217, 186, 187, 219, 186, 219, 218, 187, 188, 220, 187, 220, 219, 188, 189, 221, 188, 221, 220, 189, 190, 222, 189, 222, 221, 190, 191, 223, 190, 223, 222, 192, 193, 225, 192, 225, 224, 193, 194, 226, 193, 226, 225, 194, 195, 227, 194, 227, 226, 195, 196, 228, 195, 228, 227, 196, 197, 229, 196, 229, 228, 197, 198, 230, 197, 230, 229, 198, 199, 231, 198, 231, 230, 199, 200, 232, 199, 232, 231, 200, 201, 233, 200, 233, 232, 201, 202, 234, 201, 234, 233, 202, 203, 235, 202, 235, 234, 203, 204, 236, 203, 236, 235, 204, 205, 237, 204, 237, 236, 205, 206, 238, 205, 238, 237, 206, 207, 239, 206, 239, 238, 207, 208, 240, 207, 240, 239, 208, 209, 241, 208, 241, 240, 209, 210, 242, 209, 242, 241, 210, 211, 243, 210, 243, 242, 211, 212, 244, 211, 244, 243, 212, 213, 245, 212, 245, 244, 213, 214, 246, 213, 246, 245, 214, 215, 247, 214, 247, 246, 215, 216, 248, 215, 248, 247, 216, 217, 249, 216, 249, 248, 217, 218, 250, 217, 250, 249, 218, 219, 251, 218, 251, 250, 219, 220, 252, 219, 252, 251, 220, 221, 253, 220, 253, 252, 221, 222, 254, 221, 254, 253, 222, 223, 255, 222, 255, 254, 224, 225, 257, 224, 257, 256, 225, 226, 258, 225, 258, 257, 226, 227, 259, 226, 259, 258, 227, 228, 260, 227, 260, 259, 228, 229, 261, 228, 261, 260, 229, 230, 262, 229, 262, 261, 230, 231, 263, 230, 263, 262, 231, 232, 264, 231, 264, 263, 232, 233, 265, 232, 265, 264, 233, 234, 266, 233, 266, 265, 234, 235, 267, 234, 267, 266, 235, 236, 268, 235, 268, 267, 236, 237, 269, 236, 269, 268, 237, 238, 270, 237, 270, 269, 238, 239, 271, 238, 271, 270, 239, 240, 272, 239, 272, 271, 240, 241, 273, 240, 273, 272, 241, 242, 274, 241, 274, 273, 242, 243, 275, 242, 275, 274, 243, 244, 276, 243, 276, 275, 244, 245, 277, 244, 277, 276, 245, 246, 278, 245, 278, 277, 246, 247, 279, 246, 279, 278, 247, 248, 280, 247, 280, 279, 248, 249, 281, 248, 281, 280, 249, 250, 282, 249, 282, 281, 250, 251, 283, 250, 283, 282, 251, 252, 284, 251, 284, 283, 252, 253, 285, 252, 285, 284, 253, 254, 286, 253, 286, 285, 254, 255, 287, 254, 287, 286, 256, 257, 289, 256, 289, 288, 257, 258, 290, 257, 290, 289, 258, 259, 291, 258, 291, 290, 259, 260, 292, 259, 292, 291, 260, 261, 293, 260, 293, 292, 261, 262, 294, 261, 294, 293, 262, 263, 295, 262, 295, 294, 263, 264, 296, 263, 296, 295, 264, 265, 297, 264, 297, 296, 265, 266, 298, 265, 298, 297, 266, 267, 299, 266, 299, 298, 267, 268, 300, 267, 300, 299, 268, 269, 301, 268, 301, 300, 269, 270, 302, 269, 302, 301, 270, 271, 303, 270, 303, 302, 271, 272, 304, 271, 304, 303, 272, 273, 305, 272, 305, 304, 273, 274, 306, 273, 306, 305, 274, 275, 307, 274, 307, 306, 275, 276, 308, 275, 308, 307, 276, 277, 309, 276, 309, 308, 277, 278, 310, 277, 310, 309, 278, 279, 311, 278, 311, 310, 279, 280, 312, 279, 312, 311, 280, 281, 313, 280, 313, 312, 281, 282, 314, 281, 314, 313, 282, 283, 315, 282, 315, 314, 283, 284, 316, 283, 316, 315, 284, 285, 317, 284, 317, 316, 285, 286, 318, 285, 318, 317, 286, 287, 319, 286, 319, 318, 288, 289, 321, 288, 321, 320, 289, 290, 322, 289, 322, 321, 290, 291, 323, 290, 323, 322, 291, 292, 324, 291, 324, 323, 292, 293, 325, 292, 325, 324, 293, 294, 326, 293, 326, 325, 294, 295, 327, 294, 327, 326, 295, 296, 328, 295, 328, 327, 296, 297, 329, 296, 329, 328, 297, 298, 330, 297, 330, 329, 298, 299, 331, 298, 331, 330, 299, 300, 332, 299, 332, 331, 300, 301, 333, 300, 333, 332, 301, 302, 334, 301, 334, 333, 302, 303, 335, 302, 335, 334, 303, 304, 336, 303, 336, 335, 304, 305, 337, 304, 337, 336, 305, 306, 338, 305, 338, 337, 306, 307, 339, 306, 339, 338, 307, 308, 340, 307, 340, 339, 308, 309, 341, 308, 341, 340, 309, 310, 342, 309, 342, 341, 310, 311, 343, 310, 343, 342, 311, 312, 344, 311, 344, 343, 312, 313, 345, 312, 345, 344, 313, 314, 346, 313, 346, 345, 314, 315, 347, 314, 347, 346, 315, 316, 348, 315, 348, 347, 316, 317, 349, 316, 349, 348, 317, 318, 350, 317, 350, 349, 318, 319, 351, 318, 351, 350, 320, 321, 353, 320, 353, 352, 321, 322, 354, 321, 354, 353, 322, 323, 355, 322, 355, 354, 323, 324, 356, 323, 356, 355, 324, 325, 357, 324, 357, 356, 325, 326, 358, 325, 358, 357, 326, 327, 359, 326, 359, 358, 327, 328, 360, 327, 360, 359, 328, 329, 361, 328, 361, 360, 329, 330, 362, 329, 362, 361, 330, 331, 363, 330, 363, 362, 331, 332, 364, 331, 364, 363, 332, 333, 365, 332, 365, 364, 333, 334, 366, 333, 366, 365, 334, 335, 367, 334, 367, 366, 335, 336, 368, 335, 368, 367, 336, 337, 369, 336, 369, 368, 337, 338, 370, 337, 370, 369, 338, 339, 371, 338, 371, 370, 339, 340, 372, 339, 372, 371, 340, 341, 373, 340, 373, 372, 341, 342, 374, 341, 374, 373, 342, 343, 375, 342, 375, 374, 343, 344, 376, 343, 376, 375, 344, 345, 377, 344, 377, 376, 345, 346, 378, 345, 378, 377, 346, 347, 379, 346, 379, 378, 347, 348, 380, 347, 380, 379, 348, 349, 381, 348, 381, 380, 349, 350, 382, 349, 382, 381, 350, 351, 383, 350, 383, 382, 352, 353, 385, 352, 385, 384, 353, 354, 386, 353, 386, 385, 354, 355, 387, 354, 387, 386, 355, 356, 388, 355, 388, 387, 356, 357, 389, 356, 389, 388, 357, 358, 390, 357, 390, 389, 358, 359, 391, 358, 391, 390, 359, 360, 392, 359, 392, 391, 360, 361, 393, 360, 393, 392, 361, 362, 394, 361, 394, 393, 362, 363, 395, 362, 395, 394, 363, 364, 396, 363, 396, 395, 364, 365, 397, 364, 397, 396, 365, 366, 398, 365, 398, 397, 366, 367, 399, 366, 399, 398, 367, 368, 400, 367, 400, 399, 368, 369, 401, 368, 401, 400, 369, 370, 402, 369, 402, 401, 370, 371, 403, 370, 403, 402, 371, 372, 404, 371, 404, 403, 372, 373, 405, 372, 405, 404, 373, 374, 406, 373, 406, 405, 374, 375, 407, 374, 407, 406, 375, 376, 408, 375, 408, 407, 376, 377, 409, 376, 409, 408, 377, 378, 410, 377, 410, 409, 378, 379, 411, 378, 411, 410, 379, 380, 412, 379, 412, 411, 380, 381, 413, 380, 413, 412, 381, 382, 414, 381, 414, 413, 382, 383, 415, 382, 415, 414, 384, 385, 417, 384, 417, 416, 385, 386, 418, 385, 418, 417, 386, 387, 419, 386, 419, 418, 387, 388, 420, 387, 420, 419, 388, 389, 421, 388, 421, 420, 389, 390, 422, 389, 422, 421, 390, 391, 423, 390, 423, 422, 391, 392, 424, 391, 424, 423, 392, 393, 425, 392, 425, 424, 393, 394, 426, 393, 426, 425, 394, 395, 427, 394, 427, 426, 395, 396, 428, 395, 428, 427, 396, 397, 429, 396, 429, 428, 397, 398, 430, 397, 430, 429, 398, 399, 431, 398, 431, 430, 399, 400, 432, 399, 432, 431, 400, 401, 433, 400, 433, 432, 401, 402, 434, 401, 434, 433, 402, 403, 435, 402, 435, 434, 403, 404, 436, 403, 436, 435, 404, 405, 437, 404, 437, 436, 405, 406, 438, 405, 438, 437, 406, 407, 439, 406, 439, 438, 407, 408, 440, 407, 440, 439, 408, 409, 441, 408, 441, 440, 409, 410, 442, 409, 442, 441, 410, 411, 443, 410, 443, 442, 411, 412, 444, 411, 444, 443, 412, 413, 445, 412, 445, 444, 413, 414, 446, 413, 446, 445, 414, 415, 447, 414, 447, 446, 416, 417, 449, 416, 449, 448, 417, 418, 450, 417, 450, 449, 418, 419, 451, 418, 451, 450, 419, 420, 452, 419, 452, 451, 420, 421, 453, 420, 453, 452, 421, 422, 454, 421, 454, 453, 422, 423, 455, 422, 455, 454, 423, 424, 456, 423, 456, 455, 424, 425, 457, 424, 457, 456, 425, 426, 458, 425, 458, 457, 426, 427, 459, 426, 459, 458, 427, 428, 460, 427, 460, 459, 428, 429, 461, 428, 461, 460, 429, 430, 462, 429, 462, 461, 430, 431, 463, 430, 463, 462, 431, 432, 464, 431, 464, 463, 432, 433, 465, 432, 465, 464, 433, 434, 466, 433, 466, 465, 434, 435, 467, 434, 467, 466, 435, 436, 468, 435, 468, 467, 436, 437, 469, 436, 469, 468, 437, 438, 470, 437, 470, 469, 438, 439, 471, 438, 471, 470, 439, 440, 472, 439, 472, 471, 440, 441, 473, 440, 473, 472, 441, 442, 474, 441, 474, 473, 442, 443, 475, 442, 475, 474, 443, 444, 476, 443, 476, 475, 444, 445, 477, 444, 477, 476, 445, 446, 478, 445, 478, 477, 446, 447, 479, 446, 479, 478, 448, 449, 481, 448, 481, 480, 449, 450, 482, 449, 482, 481, 450, 451, 483, 450, 483, 482, 451, 452, 484, 451, 484, 483, 452, 453, 485, 452, 485, 484, 453, 454, 486, 453, 486, 485, 454, 455, 487, 454, 487, 486, 455, 456, 488, 455, 488, 487, 456, 457, 489, 456, 489, 488, 457, 458, 490, 457, 490, 489, 458, 459, 491, 458, 491, 490, 459, 460, 492, 459, 492, 491, 460, 461, 493, 460, 493, 492, 461, 462, 494, 461, 494, 493, 462, 463, 495, 462, 495, 494, 463, 464, 496, 463, 496, 495, 464, 465, 497, 464, 497, 496, 465, 466, 498, 465, 498, 497, 466, 467, 499, 466, 499, 498, 467, 468, 500, 467, 500, 499, 468, 469, 501, 468, 501, 500, 469, 470, 502, 469, 502, 501, 470, 471, 503, 470, 503, 502, 471, 472, 504, 471, 504, 503, 472, 473, 505, 472, 505, 504, 473, 474, 506, 473, 506, 505, 474, 475, 507, 474, 507, 506, 475, 476, 508, 475, 508, 507, 476, 477, 509, 476, 509, 508, 477, 478, 510, 477, 510, 509, 478, 479, 511, 478, 511, 510, 480, 481, 513, 480, 513, 512, 481, 482, 514, 481, 514, 513, 482, 483, 515, 482, 515, 514, 483, 484, 516, 483, 516, 515, 484, 485, 517, 484, 517, 516, 485, 486, 518, 485, 518, 517, 486, 487, 519, 486, 519, 518, 487, 488, 520, 487, 520, 519, 488, 489, 521, 488, 521, 520, 489, 490, 522, 489, 522, 521, 490, 491, 523, 490, 523, 522, 491, 492, 524, 491, 524, 523, 492, 493, 525, 492, 525, 524, 493, 494, 526, 493, 526, 525, 494, 495, 527, 494, 527, 526, 495, 496, 528, 495, 528, 527, 496, 497, 529, 496, 529, 528, 497, 498, 530, 497, 530, 529, 498, 499, 531, 498, 531, 530, 499, 500, 532, 499, 532, 531, 500, 501, 533, 500, 533, 532, 501, 502, 534, 501, 534, 533, 502, 503, 535, 502, 535, 534, 503, 504, 536, 503, 536, 535, 504, 505, 537, 504, 537, 536, 505, 506, 538, 505, 538, 537, 506, 507, 539, 506, 539, 538, 507, 508, 540, 507, 540, 539, 508, 509, 541, 508, 541, 540, 509, 510, 542, 509, 542, 541, 510, 511, 543, 510, 543, 542, 512, 513, 545, 512, 545, 544, 513, 514, 546, 513, 546, 545, 514, 515, 547, 514, 547, 546, 515, 516, 548, 515, 548, 547, 516, 517, 549, 516, 549, 548, 517, 518, 550, 517, 550, 549, 518, 519, 551, 518, 551, 550, 519, 520, 552, 519, 552, 551, 520, 521, 553, 520, 553, 552, 521, 522, 554, 521, 554, 553, 522, 523, 555, 522, 555, 554, 523, 524, 556, 523, 556, 555, 524, 525, 557, 524, 557, 556, 525, 526, 558, 525, 558, 557, 526, 527, 559, 526, 559, 558, 527, 528, 560, 527, 560, 559, 528, 529, 561, 528, 561, 560, 529, 530, 562, 529, 562, 561, 530, 531, 563, 530, 563, 562, 531, 532, 564, 531, 564, 563, 532, 533, 565, 532, 565, 564, 533, 534, 566, 533, 566, 565, 534, 535, 567, 534, 567, 566, 535, 536, 568, 535, 568, 567, 536, 537, 569, 536, 569, 568, 537, 538, 570, 537, 570, 569, 538, 539, 571, 538, 571, 570, 539, 540, 572, 539, 572, 571, 540, 541, 573, 540, 573, 572, 541, 542, 574, 541, 574, 573, 542, 543, 575, 542, 575, 574, 544, 545, 577, 544, 577, 576, 545, 546, 578, 545, 578, 577, 546, 547, 579, 546, 579, 578, 547, 548, 580, 547, 580, 579, 548, 549, 581, 548, 581, 580, 549, 550, 582, 549, 582, 581, 550, 551, 583, 550, 583, 582, 551, 552, 584, 551, 584, 583, 552, 553, 585, 552, 585, 584, 553, 554, 586, 553, 586, 585, 554, 555, 587, 554, 587, 586, 555, 556, 588, 555, 588, 587, 556, 557, 589, 556, 589, 588, 557, 558, 590, 557, 590, 589, 558, 559, 591, 558, 591, 590, 559, 560, 592, 559, 592, 591, 560, 561, 593, 560, 593, 592, 561, 562, 594, 561, 594, 593, 562, 563, 595, 562, 595, 594, 563, 564, 596, 563, 596, 595, 564, 565, 597, 564, 597, 596, 565, 566, 598, 565, 598, 597, 566, 567, 599, 566, 599, 598, 567, 568, 600, 567, 600, 599, 568, 569, 601, 568, 601, 600, 569, 570, 602, 569, 602, 601, 570, 571, 603, 570, 603, 602, 571, 572, 604, 571, 604, 603, 572, 573, 605, 572, 605, 604, 573, 574, 606, 573, 606, 605, 574, 575, 607, 574, 607, 606, 576, 577, 609, 576, 609, 608, 577, 578, 610, 577, 610, 609, 578, 579, 611, 578, 611, 610, 579, 580, 612, 579, 612, 611, 580, 581, 613, 580, 613, 612, 581, 582, 614, 581, 614, 613, 582, 583, 615, 582, 615, 614, 583, 584, 616, 583, 616, 615, 584, 585, 617, 584, 617, 616, 585, 586, 618, 585, 618, 617, 586, 587, 619, 586, 619, 618, 587, 588, 620, 587, 620, 619, 588, 589, 621, 588, 621, 620, 589, 590, 622, 589, 622, 621, 590, 591, 623, 590, 623, 622, 591, 592, 624, 591, 624, 623, 592, 593, 625, 592, 625, 624, 593, 594, 626, 593, 626, 625, 594, 595, 627, 594, 627, 626, 595, 596, 628, 595, 628, 627, 596, 597, 629, 596, 629, 628, 597, 598, 630, 597, 630, 629, 598, 599, 631, 598, 631, 630, 599, 600, 632, 599, 632, 631, 600, 601, 633, 600, 633, 632, 601, 602, 634, 601, 634, 633, 602, 603, 635, 602, 635, 634, 603, 604, 636, 603, 636, 635, 604, 605, 637, 604, 637, 636, 605, 606, 638, 605, 638, 637, 606, 607, 639, 606, 639, 638, 608, 609, 641, 608, 641, 640, 609, 610, 642, 609, 642, 641, 610, 611, 643, 610, 643, 642, 611, 612, 644, 611, 644, 643, 612, 613, 645, 612, 645, 644, 613, 614, 646, 613, 646, 645, 614, 615, 647, 614, 647, 646, 615, 616, 648, 615, 648, 647, 616, 617, 649, 616, 649, 648, 617, 618, 650, 617, 650, 649, 618, 619, 651, 618, 651, 650, 619, 620, 652, 619, 652, 651, 620, 621, 653, 620, 653, 652, 621, 622, 654, 621, 654, 653, 622, 623, 655, 622, 655, 654, 623, 624, 656, 623, 656, 655, 624, 625, 657, 624, 657, 656, 625, 626, 658, 625, 658, 657, 626, 627, 659, 626, 659, 658, 627, 628, 660, 627, 660, 659, 628, 629, 661, 628, 661, 660, 629, 630, 662, 629, 662, 661, 630, 631, 663, 630, 663, 662, 631, 632, 664, 631, 664, 663, 632, 633, 665, 632, 665, 664, 633, 634, 666, 633, 666, 665, 634, 635, 667, 634, 667, 666, 635, 636, 668, 635, 668, 667, 636, 637, 669, 636, 669, 668, 637, 638, 670, 637, 670, 669, 638, 639, 671, 638, 671, 670, 640, 641, 673, 640, 673, 672, 641, 642, 674, 641, 674, 673, 642, 643, 675, 642, 675, 674, 643, 644, 676, 643, 676, 675, 644, 645, 677, 644, 677, 676, 645, 646, 678, 645, 678, 677, 646, 647, 679, 646, 679, 678, 647, 648, 680, 647, 680, 679, 648, 649, 681, 648, 681, 680, 649, 650, 682, 649, 682, 681, 650, 651, 683, 650, 683, 682, 651, 652, 684, 651, 684, 683, 652, 653, 685, 652, 685, 684, 653, 654, 686, 653, 686, 685, 654, 655, 687, 654, 687, 686, 655, 656, 688, 655, 688, 687, 656, 657, 689, 656, 689, 688, 657, 658, 690, 657, 690, 689, 658, 659, 691, 658, 691, 690, 659, 660, 692, 659, 692, 691, 660, 661, 693, 660, 693, 692, 661, 662, 694, 661, 694, 693, 662, 663, 695, 662, 695, 694, 663, 664, 696, 663, 696, 695, 664, 665, 697, 664, 697, 696, 665, 666, 698, 665, 698, 697, 666, 667, 699, 666, 699, 698, 667, 668, 700, 667, 700, 699, 668, 669, 701, 668, 701, 700, 669, 670, 702, 669, 702, 701, 670, 671, 703, 670, 703, 702, 672, 673, 705, 672, 705, 704, 673, 674, 706, 673, 706, 705, 674, 675, 707, 674, 707, 706, 675, 676, 708, 675, 708, 707, 676, 677, 709, 676, 709, 708, 677, 678, 710, 677, 710, 709, 678, 679, 711, 678, 711, 710, 679, 680, 712, 679, 712, 711, 680, 681, 713, 680, 713, 712, 681, 682, 714, 681, 714, 713, 682, 683, 715, 682, 715, 714, 683, 684, 716, 683, 716, 715, 684, 685, 717, 684, 717, 716, 685, 686, 718, 685, 718, 717, 686, 687, 719, 686, 719, 718, 687, 688, 720, 687, 720, 719, 688, 689, 721, 688, 721, 720, 689, 690, 722, 689, 722, 721, 690, 691, 723, 690, 723, 722, 691, 692, 724, 691, 724, 723, 692, 693, 725, 692, 725, 724, 693, 694, 726, 693, 726, 725, 694, 695, 727, 694, 727, 726, 695, 696, 728, 695, 728, 727, 696, 697, 729, 696, 729, 728, 697, 698, 730, 697, 730, 729, 698, 699, 731, 698, 731, 730, 699, 700, 732, 699, 732, 731, 700, 701, 733, 700, 733, 732, 701, 702, 734, 701, 734, 733, 702, 703, 735, 702, 735, 734, 704, 705, 737, 704, 737, 736, 705, 706, 738, 705, 738, 737, 706, 707, 739, 706, 739, 738, 707, 708, 740, 707, 740, 739, 708, 709, 741, 708, 741, 740, 709, 710, 742, 709, 742, 741, 710, 711, 743, 710, 743, 742, 711, 712, 744, 711, 744, 743, 712, 713, 745, 712, 745, 744, 713, 714, 746, 713, 746, 745, 714, 715, 747, 714, 747, 746, 715, 716, 748, 715, 748, 747, 716, 717, 749, 716, 749, 748, 717, 718, 750, 717, 750, 749, 718, 719, 751, 718, 751, 750, 719, 720, 752, 719, 752, 751, 720, 721, 753, 720, 753, 752, 721, 722, 754, 721, 754, 753, 722, 723, 755, 722, 755, 754, 723, 724, 756, 723, 756, 755, 724, 725, 757, 724, 757, 756, 725, 726, 758, 725, 758, 757, 726, 727, 759, 726, 759, 758, 727, 728, 760, 727, 760, 759, 728, 729, 761, 728, 761, 760, 729, 730, 762, 729, 762, 761, 730, 731, 763, 730, 763, 762, 731, 732, 764, 731, 764, 763, 732, 733, 765, 732, 765, 764, 733, 734, 766, 733, 766, 765, 734, 735, 767, 734, 767, 766, 736, 737, 769, 736, 769, 768, 737, 738, 770, 737, 770, 769, 738, 739, 771, 738, 771, 770, 739, 740, 772, 739, 772, 771, 740, 741, 773, 740, 773, 772, 741, 742, 774, 741, 774, 773, 742, 743, 775, 742, 775, 774, 743, 744, 776, 743, 776, 775, 744, 745, 777, 744, 777, 776, 745, 746, 778, 745, 778, 777, 746, 747, 779, 746, 779, 778, 747, 748, 780, 747, 780, 779, 748, 749, 781, 748, 781, 780, 749, 750, 782, 749, 782, 781, 750, 751, 783, 750, 783, 782, 751, 752, 784, 751, 784, 783, 752, 753, 785, 752, 785, 784, 753, 754, 786, 753, 786, 785, 754, 755, 787, 754, 787, 786, 755, 756, 788, 755, 788, 787, 756, 757, 789, 756, 789, 788, 757, 758, 790, 757, 790, 789, 758, 759, 791, 758, 791, 790, 759, 760, 792, 759, 792, 791, 760, 761, 793, 760, 793, 792, 761, 762, 794, 761, 794, 793, 762, 763, 795, 762, 795, 794, 763, 764, 796, 763, 796, 795, 764, 765, 797, 764, 797, 796, 765, 766, 798, 765, 798, 797, 766, 767, 799, 766, 799, 798, 768, 769, 801, 768, 801, 800, 769, 770, 802, 769, 802, 801, 770, 771, 803, 770, 803, 802, 771, 772, 804, 771, 804, 803, 772, 773, 805, 772, 805, 804, 773, 774, 806, 773, 806, 805, 774, 775, 807, 774, 807, 806, 775, 776, 808, 775, 808, 807, 776, 777, 809, 776, 809, 808, 777, 778, 810, 777, 810, 809, 778, 779, 811, 778, 811, 810, 779, 780, 812, 779, 812, 811, 780, 781, 813, 780, 813, 812, 781, 782, 814, 781, 814, 813, 782, 783, 815, 782, 815, 814, 783, 784, 816, 783, 816, 815, 784, 785, 817, 784, 817, 816, 785, 786, 818, 785, 818, 817, 786, 787, 819, 786, 819, 818, 787, 788, 820, 787, 820, 819, 788, 789, 821, 788, 821, 820, 789, 790, 822, 789, 822, 821, 790, 791, 823, 790, 823, 822, 791, 792, 824, 791, 824, 823, 792, 793, 825, 792, 825, 824, 793, 794, 826, 793, 826, 825, 794, 795, 827, 794, 827, 826, 795, 796, 828, 795, 828, 827, 796, 797, 829, 796, 829, 828, 797, 798, 830, 797, 830, 829, 798, 799, 831, 798, 831, 830, 800, 801, 833, 800, 833, 832, 801, 802, 834, 801, 834, 833, 802, 803, 835, 802, 835, 834, 803, 804, 836, 803, 836, 835, 804, 805, 837, 804, 837, 836, 805, 806, 838, 805, 838, 837, 806, 807, 839, 806, 839, 838, 807, 808, 840, 807, 840, 839, 808, 809, 841, 808, 841, 840, 809, 810, 842, 809, 842, 841, 810, 811, 843, 810, 843, 842, 811, 812, 844, 811, 844, 843, 812, 813, 845, 812, 845, 844, 813, 814, 846, 813, 846, 845, 814, 815, 847, 814, 847, 846, 815, 816, 848, 815, 848, 847, 816, 817, 849, 816, 849, 848, 817, 818, 850, 817, 850, 849, 818, 819, 851, 818, 851, 850, 819, 820, 852, 819, 852, 851, 820, 821, 853, 820, 853, 852, 821, 822, 854, 821, 854, 853, 822, 823, 855, 822, 855, 854, 823, 824, 856, 823, 856, 855, 824, 825, 857, 824, 857, 856, 825, 826, 858, 825, 858, 857, 826, 827, 859, 826, 859, 858, 827, 828, 860, 827, 860, 859, 828, 829, 861, 828, 861, 860, 829, 830, 862, 829, 862, 861, 830, 831, 863, 830, 863, 862, 832, 833, 865, 832, 865, 864, 833, 834, 866, 833, 866, 865, 834, 835, 867, 834, 867, 866, 835, 836, 868, 835, 868, 867, 836, 837, 869, 836, 869, 868, 837, 838, 870, 837, 870, 869, 838, 839, 871, 838, 871, 870, 839, 840, 872, 839, 872, 871, 840, 841, 873, 840, 873, 872, 841, 842, 874, 841, 874, 873, 842, 843, 875, 842, 875, 874, 843, 844, 876, 843, 876, 875, 844, 845, 877, 844, 877, 876, 845, 846, 878, 845, 878, 877, 846, 847, 879, 846, 879, 878, 847, 848, 880, 847, 880, 879, 848, 849, 881, 848, 881, 880, 849, 850, 882, 849, 882, 881, 850, 851, 883, 850, 883, 882, 851, 852, 884, 851, 884, 883, 852, 853, 885, 852, 885, 884, 853, 854, 886, 853, 886, 885, 854, 855, 887, 854, 887, 886, 855, 856, 888, 855, 888, 887, 856, 857, 889, 856, 889, 888, 857, 858, 890, 857, 890, 889, 858, 859, 891, 858, 891, 890, 859, 860, 892, 859, 892, 891, 860, 861, 893, 860, 893, 892, 861, 862, 894, 861, 894, 893, 862, 863, 895, 862, 895, 894, 864, 865, 897, 864, 897, 896, 865, 866, 898, 865, 898, 897, 866, 867, 899, 866, 899, 898, 867, 868, 900, 867, 900, 899, 868, 869, 901, 868, 901, 900, 869, 870, 902, 869, 902, 901, 870, 871, 903, 870, 903, 902, 871, 872, 904, 871, 904, 903, 872, 873, 905, 872, 905, 904, 873, 874, 906, 873, 906, 905, 874, 875, 907, 874, 907, 906, 875, 876, 908, 875, 908, 907, 876, 877, 909, 876, 909, 908, 877, 878, 910, 877, 910, 909, 878, 879, 911, 878, 911, 910, 879, 880, 912, 879, 912, 911, 880, 881, 913, 880, 913, 912, 881, 882, 914, 881, 914, 913, 882, 883, 915, 882, 915, 914, 883, 884, 916, 883, 916, 915, 884, 885, 917, 884, 917, 916, 885, 886, 918, 885, 918, 917, 886, 887, 919, 886, 919, 918, 887, 888, 920, 887, 920, 919, 888, 889, 921, 888, 921, 920, 889, 890, 922, 889, 922, 921, 890, 891, 923, 890, 923, 922, 891, 892, 924, 891, 924, 923, 892, 893, 925, 892, 925, 924, 893, 894, 926, 893, 926, 925, 894, 895, 927, 894, 927, 926, 896, 897, 929, 896, 929, 928, 897, 898, 930, 897, 930, 929, 898, 899, 931, 898, 931, 930, 899, 900, 932, 899, 932, 931, 900, 901, 933, 900, 933, 932, 901, 902, 934, 901, 934, 933, 902, 903, 935, 902, 935, 934, 903, 904, 936, 903, 936, 935, 904, 905, 937, 904, 937, 936, 905, 906, 938, 905, 938, 937, 906, 907, 939, 906, 939, 938, 907, 908, 940, 907, 940, 939, 908, 909, 941, 908, 941, 940, 909, 910, 942, 909, 942, 941, 910, 911, 943, 910, 943, 942, 911, 912, 944, 911, 944, 943, 912, 913, 945, 912, 945, 944, 913, 914, 946, 913, 946, 945, 914, 915, 947, 914, 947, 946, 915, 916, 948, 915, 948, 947, 916, 917, 949, 916, 949, 948, 917, 918, 950, 917, 950, 949, 918, 919, 951, 918, 951, 950, 919, 920, 952, 919, 952, 951, 920, 921, 953, 920, 953, 952, 921, 922, 954, 921, 954, 953, 922, 923, 955, 922, 955, 954, 923, 924, 956, 923, 956, 955, 924, 925, 957, 924, 957, 956, 925, 926, 958, 925, 958, 957, 926, 927, 959, 926, 959, 958, 928, 929, 961, 928, 961, 960, 929, 930, 962, 929, 962, 961, 930, 931, 963, 930, 963, 962, 931, 932, 964, 931, 964, 963, 932, 933, 965, 932, 965, 964, 933, 934, 966, 933, 966, 965, 934, 935, 967, 934, 967, 966, 935, 936, 968, 935, 968, 967, 936, 937, 969, 936, 969, 968, 937, 938, 970, 937, 970, 969, 938, 939, 971, 938, 971, 970, 939, 940, 972, 939, 972, 971, 940, 941, 973, 940, 973, 972, 941, 942, 974, 941, 974, 973, 942, 943, 975, 942, 975, 974, 943, 944, 976, 943, 976, 975, 944, 945, 977, 944, 977, 976, 945, 946, 978, 945, 978, 977, 946, 947, 979, 946, 979, 978, 947, 948, 980, 947, 980, 979, 948, 949, 981, 948, 981, 980, 949, 950, 982, 949, 982, 981, 950, 951, 983, 950, 983, 982, 951, 952, 984, 951, 984, 983, 952, 953, 985, 952, 985, 984, 953, 954, 986, 953, 986, 985, 954, 955, 987, 954, 987, 986, 955, 956, 988, 955, 988, 987, 956, 957, 989, 956, 989, 988, 957, 958, 990, 957, 990, 989, 958, 959, 991, 958, 991, 990, 960, 961, 993, 960, 993, 992, 961, 962, 994, 961, 994, 993, 962, 963, 995, 962, 995, 994, 963, 964, 996, 963, 996, 995, 964, 965, 997, 964, 997, 996, 965, 966, 998, 965, 998, 997, 966, 967, 999, 966, 999, 998, 967, 968, 1000, 967, 1000, 999, 968, 969, 1001, 968, 1001, 1000, 969, 970, 1002, 969, 1002, 1001, 970, 971, 1003, 970, 1003, 1002, 971, 972, 1004, 971, 1004, 1003, 972, 973, 1005, 972, 1005, 1004, 973, 974, 1006, 973, 1006, 1005, 974, 975, 1007, 974, 1007, 1006, 975, 976, 1008, 975, 1008, 1007, 976, 977, 1009, 976, 1009, 1008, 977, 978, 1010, 977, 1010, 1009, 978, 979, 1011, 978, 1011, 1010, 979, 980, 1012, 979, 1012, 1011, 980, 981, 1013, 980, 1013, 1012, 981, 982, 1014, 981, 1014, 1013, 982, 983, 1015, 982, 1015, 1014, 983, 984, 1016, 983, 1016, 1015, 984, 985, 1017, 984, 1017, 1016, 985, 986, 1018, 985, 1018, 1017, 986, 987, 1019, 986, 1019, 1018, 987, 988, 1020, 987, 1020, 1019, 988, 989, 1021, 988, 1021, 1020, 989, 990, 1022, 989, 1022, 1021, 990, 991, 1023, 990, 1023, 1022] color3f[] primvars:displayColor = [(0.784314, 0.64705884, 0.1)] point3f[] points = [(0, 0, 20), (20, 0, 20), (40, 0, 20), (60, 0, 20), (80, 0, 20), (100, 0, 20), (120, 0, 20), (140, 0, 20), (160, 0, 20), (180, 0, 20), (200, 0, 20), (220, 0, 20), (240, 0, 20), (260, 0, 20), (280, 0, 20), (300, 0, 20), (320, 0, 20), (340, 0, 20), (360, 0, 20), (380, 0, 20), (400, 0, 20), (420, 0, 20), (440, 0, 20), (460, 0, 20), (480, 0, 20), (500, 0, 20), (520, 0, 20), (540, 0, 20), (560, 0, 20), (580, 0, 20), (600, 0, 20), (620, 0, 20), (0, 20, 20), (20, 20, 20), (40, 20, 20), (60, 20, 20), (80, 20, 20), (100, 20, 20), (120, 20, 20), (140, 20, 20), (160, 20, 20), (180, 20, 20), (200, 20, 20), (220, 20, 20), (240, 20, 20), (260, 20, 20), (280, 20, 20), (300, 20, 20), (320, 20, 20), (340, 20, 20), (360, 20, 20), (380, 20, 20), (400, 20, 20), (420, 20, 20), (440, 20, 20), (460, 20, 20), (480, 20, 20), (500, 20, 20), (520, 20, 20), (540, 20, 20), (560, 20, 20), (580, 20, 20), (600, 20, 20), (620, 20, 20), (0, 40, 20), (20, 40, 20), (40, 40, 20), (60, 40, 20), (80, 40, 20), (100, 40, 20), (120, 40, 20), (140, 40, 20), (160, 40, 20), (180, 40, 20), (200, 40, 20), (220, 40, 20), (240, 40, 20), (260, 40, 20), (280, 40, 20), (300, 40, 20), (320, 40, 20), (340, 40, 20), (360, 40, 20), (380, 40, 20), (400, 40, 20), (420, 40, 20), (440, 40, 20), (460, 40, 20), (480, 40, 20), (500, 40, 20), (520, 40, 20), (540, 40, 20), (560, 40, 20), (580, 40, 20), (600, 40, 20), (620, 40, 20), (0, 60, 20), (20, 60, 20), (40, 60, 20), (60, 60, 20), (80, 60, 20), (100, 60, 20), (120, 60, 20), (140, 60, 20), (160, 60, 20), (180, 60, 20), (200, 60, 20), (220, 60, 20), (240, 60, 20), (260, 60, 20), (280, 60, 20), (300, 60, 20), (320, 60, 20), (340, 60, 20), (360, 60, 20), (380, 60, 20), (400, 60, 20), (420, 60, 20), (440, 60, 20), (460, 60, 20), (480, 60, 20), (500, 60, 20), (520, 60, 20), (540, 60, 20), (560, 60, 20), (580, 60, 20), (600, 60, 20), (620, 60, 20), (0, 80, 20), (20, 80, 20), (40, 80, 20), (60, 80, 20), (80, 80, 20), (100, 80, 20), (120, 80, 20), (140, 80, 20), (160, 80, 20), (180, 80, 20), (200, 80, 20), (220, 80, 20), (240, 80, 20), (260, 80, 20), (280, 80, 20), (300, 80, 20), (320, 80, 20), (340, 80, 20), (360, 80, 20), (380, 80, 20), (400, 80, 20), (420, 80, 20), (440, 80, 20), (460, 80, 20), (480, 80, 20), (500, 80, 20), (520, 80, 20), (540, 80, 20), (560, 80, 20), (580, 80, 20), (600, 80, 20), (620, 80, 20), (0, 100, 20), (20, 100, 20), (40, 100, 20), (60, 100, 20), (80, 100, 20), (100, 100, 20), (120, 100, 20), (140, 100, 20), (160, 100, 20), (180, 100, 20), (200, 100, 20), (220, 100, 20), (240, 100, 20), (260, 100, 20), (280, 100, 20), (300, 100, 20), (320, 100, 20), (340, 100, 20), (360, 100, 20), (380, 100, 20), (400, 100, 20), (420, 100, 20), (440, 100, 20), (460, 100, 20), (480, 100, 20), (500, 100, 20), (520, 100, 20), (540, 100, 20), (560, 100, 20), (580, 100, 20), (600, 100, 20), (620, 100, 20), (0, 120, 20), (20, 120, 20), (40, 120, 20), (60, 120, 20), (80, 120, 20), (100, 120, 20), (120, 120, 20), (140, 120, 20), (160, 120, 20), (180, 120, 20), (200, 120, 20), (220, 120, 20), (240, 120, 20), (260, 120, 20), (280, 120, 20), (300, 120, 20), (320, 120, 20), (340, 120, 20), (360, 120, 20), (380, 120, 20), (400, 120, 20), (420, 120, 20), (440, 120, 20), (460, 120, 20), (480, 120, 20), (500, 120, 20), (520, 120, 20), (540, 120, 20), (560, 120, 20), (580, 120, 20), (600, 120, 20), (620, 120, 20), (0, 140, 20), (20, 140, 20), (40, 140, 20), (60, 140, 20), (80, 140, 20), (100, 140, 20), (120, 140, 20), (140, 140, 20), (160, 140, 20), (180, 140, 20), (200, 140, 20), (220, 140, 20), (240, 140, 20), (260, 140, 20), (280, 140, 20), (300, 140, 20), (320, 140, 20), (340, 140, 20), (360, 140, 20), (380, 140, 20), (400, 140, 20), (420, 140, 20), (440, 140, 20), (460, 140, 20), (480, 140, 20), (500, 140, 20), (520, 140, 20), (540, 140, 20), (560, 140, 20), (580, 140, 20), (600, 140, 20), (620, 140, 20), (0, 160, 20), (20, 160, 20), (40, 160, 20), (60, 160, 20), (80, 160, 20), (100, 160, 20), (120, 160, 20), (140, 160, 20), (160, 160, 20), (180, 160, 20), (200, 160, 20), (220, 160, 20), (240, 160, 20), (260, 160, 20), (280, 160, 20), (300, 160, 20), (320, 160, 20), (340, 160, 20), (360, 160, 20), (380, 160, 20), (400, 160, 20), (420, 160, 20), (440, 160, 20), (460, 160, 20), (480, 160, 20), (500, 160, 20), (520, 160, 20), (540, 160, 20), (560, 160, 20), (580, 160, 20), (600, 160, 20), (620, 160, 20), (0, 180, 20), (20, 180, 20), (40, 180, 20), (60, 180, 20), (80, 180, 20), (100, 180, 20), (120, 180, 20), (140, 180, 20), (160, 180, 20), (180, 180, 20), (200, 180, 20), (220, 180, 20), (240, 180, 20), (260, 180, 20), (280, 180, 20), (300, 180, 20), (320, 180, 20), (340, 180, 20), (360, 180, 20), (380, 180, 20), (400, 180, 20), (420, 180, 20), (440, 180, 20), (460, 180, 20), (480, 180, 20), (500, 180, 20), (520, 180, 20), (540, 180, 20), (560, 180, 20), (580, 180, 20), (600, 180, 20), (620, 180, 20), (0, 200, 20), (20, 200, 20), (40, 200, 20), (60, 200, 20), (80, 200, 20), (100, 200, 20), (120, 200, 20), (140, 200, 20), (160, 200, 20), (180, 200, 20), (200, 200, 20), (220, 200, 20), (240, 200, 20), (260, 200, 20), (280, 200, 20), (300, 200, 20), (320, 200, 20), (340, 200, 20), (360, 200, 20), (380, 200, 20), (400, 200, 20), (420, 200, 20), (440, 200, 20), (460, 200, 20), (480, 200, 20), (500, 200, 20), (520, 200, 20), (540, 200, 20), (560, 200, 20), (580, 200, 20), (600, 200, 20), (620, 200, 20), (0, 220, 20), (20, 220, 20), (40, 220, 20), (60, 220, 20), (80, 220, 20), (100, 220, 20), (120, 220, 20), (140, 220, 20), (160, 220, 20), (180, 220, 20), (200, 220, 20), (220, 220, 20), (240, 220, 20), (260, 220, 20), (280, 220, 20), (300, 220, 20), (320, 220, 20), (340, 220, 20), (360, 220, 20), (380, 220, 20), (400, 220, 20), (420, 220, 20), (440, 220, 20), (460, 220, 20), (480, 220, 20), (500, 220, 20), (520, 220, 20), (540, 220, 20), (560, 220, 20), (580, 220, 20), (600, 220, 20), (620, 220, 20), (0, 240, 20), (20, 240, 20), (40, 240, 20), (60, 240, 20), (80, 240, 20), (100, 240, 20), (120, 240, 20), (140, 240, 20), (160, 240, 20), (180, 240, 20), (200, 240, 20), (220, 240, 20), (240, 240, 20), (260, 240, 20), (280, 240, 20), (300, 240, 20), (320, 240, 20), (340, 240, 20), (360, 240, 20), (380, 240, 20), (400, 240, 20), (420, 240, 20), (440, 240, 20), (460, 240, 20), (480, 240, 20), (500, 240, 20), (520, 240, 20), (540, 240, 20), (560, 240, 20), (580, 240, 20), (600, 240, 20), (620, 240, 20), (0, 260, 20), (20, 260, 20), (40, 260, 20), (60, 260, 20), (80, 260, 20), (100, 260, 20), (120, 260, 20), (140, 260, 20), (160, 260, 20), (180, 260, 20), (200, 260, 20), (220, 260, 20), (240, 260, 20), (260, 260, 20), (280, 260, 20), (300, 260, 20), (320, 260, 20), (340, 260, 20), (360, 260, 20), (380, 260, 20), (400, 260, 20), (420, 260, 20), (440, 260, 20), (460, 260, 20), (480, 260, 20), (500, 260, 20), (520, 260, 20), (540, 260, 20), (560, 260, 20), (580, 260, 20), (600, 260, 20), (620, 260, 20), (0, 280, 20), (20, 280, 20), (40, 280, 20), (60, 280, 20), (80, 280, 20), (100, 280, 20), (120, 280, 20), (140, 280, 20), (160, 280, 20), (180, 280, 20), (200, 280, 20), (220, 280, 20), (240, 280, 20), (260, 280, 20), (280, 280, 20), (300, 280, 20), (320, 280, 20), (340, 280, 20), (360, 280, 20), (380, 280, 20), (400, 280, 20), (420, 280, 20), (440, 280, 20), (460, 280, 20), (480, 280, 20), (500, 280, 20), (520, 280, 20), (540, 280, 20), (560, 280, 20), (580, 280, 20), (600, 280, 20), (620, 280, 20), (0, 300, 20), (20, 300, 20), (40, 300, 20), (60, 300, 20), (80, 300, 20), (100, 300, 20), (120, 300, 20), (140, 300, 20), (160, 300, 20), (180, 300, 20), (200, 300, 20), (220, 300, 20), (240, 300, 20), (260, 300, 20), (280, 300, 20), (300, 300, 20), (320, 300, 20), (340, 300, 20), (360, 300, 20), (380, 300, 20), (400, 300, 20), (420, 300, 20), (440, 300, 20), (460, 300, 20), (480, 300, 20), (500, 300, 20), (520, 300, 20), (540, 300, 20), (560, 300, 20), (580, 300, 20), (600, 300, 20), (620, 300, 20), (0, 320, 20), (20, 320, 20), (40, 320, 20), (60, 320, 20), (80, 320, 20), (100, 320, 20), (120, 320, 20), (140, 320, 20), (160, 320, 20), (180, 320, 20), (200, 320, 20), (220, 320, 20), (240, 320, 20), (260, 320, 20), (280, 320, 20), (300, 320, 20), (320, 320, 20), (340, 320, 20), (360, 320, 20), (380, 320, 20), (400, 320, 20), (420, 320, 20), (440, 320, 20), (460, 320, 20), (480, 320, 20), (500, 320, 20), (520, 320, 20), (540, 320, 20), (560, 320, 20), (580, 320, 20), (600, 320, 20), (620, 320, 20), (0, 340, 20), (20, 340, 20), (40, 340, 20), (60, 340, 20), (80, 340, 20), (100, 340, 20), (120, 340, 20), (140, 340, 20), (160, 340, 20), (180, 340, 20), (200, 340, 20), (220, 340, 20), (240, 340, 20), (260, 340, 20), (280, 340, 20), (300, 340, 20), (320, 340, 20), (340, 340, 20), (360, 340, 20), (380, 340, 20), (400, 340, 20), (420, 340, 20), (440, 340, 20), (460, 340, 20), (480, 340, 20), (500, 340, 20), (520, 340, 20), (540, 340, 20), (560, 340, 20), (580, 340, 20), (600, 340, 20), (620, 340, 20), (0, 360, 20), (20, 360, 20), (40, 360, 20), (60, 360, 20), (80, 360, 20), (100, 360, 20), (120, 360, 20), (140, 360, 20), (160, 360, 20), (180, 360, 20), (200, 360, 20), (220, 360, 20), (240, 360, 20), (260, 360, 20), (280, 360, 20), (300, 360, 20), (320, 360, 20), (340, 360, 20), (360, 360, 20), (380, 360, 20), (400, 360, 20), (420, 360, 20), (440, 360, 20), (460, 360, 20), (480, 360, 20), (500, 360, 20), (520, 360, 20), (540, 360, 20), (560, 360, 20), (580, 360, 20), (600, 360, 20), (620, 360, 20), (0, 380, 20), (20, 380, 20), (40, 380, 20), (60, 380, 20), (80, 380, 20), (100, 380, 20), (120, 380, 20), (140, 380, 20), (160, 380, 20), (180, 380, 20), (200, 380, 20), (220, 380, 20), (240, 380, 20), (260, 380, 20), (280, 380, 20), (300, 380, 20), (320, 380, 20), (340, 380, 20), (360, 380, 20), (380, 380, 20), (400, 380, 20), (420, 380, 20), (440, 380, 20), (460, 380, 20), (480, 380, 20), (500, 380, 20), (520, 380, 20), (540, 380, 20), (560, 380, 20), (580, 380, 20), (600, 380, 20), (620, 380, 20), (0, 400, 20), (20, 400, 20), (40, 400, 20), (60, 400, 20), (80, 400, 20), (100, 400, 20), (120, 400, 20), (140, 400, 20), (160, 400, 20), (180, 400, 20), (200, 400, 20), (220, 400, 20), (240, 400, 20), (260, 400, 20), (280, 400, 20), (300, 400, 20), (320, 400, 20), (340, 400, 20), (360, 400, 20), (380, 400, 20), (400, 400, 20), (420, 400, 20), (440, 400, 20), (460, 400, 20), (480, 400, 20), (500, 400, 20), (520, 400, 20), (540, 400, 20), (560, 400, 20), (580, 400, 20), (600, 400, 20), (620, 400, 20), (0, 420, 20), (20, 420, 20), (40, 420, 20), (60, 420, 20), (80, 420, 20), (100, 420, 20), (120, 420, 20), (140, 420, 20), (160, 420, 20), (180, 420, 20), (200, 420, 20), (220, 420, 20), (240, 420, 20), (260, 420, 20), (280, 420, 20), (300, 420, 20), (320, 420, 20), (340, 420, 20), (360, 420, 20), (380, 420, 20), (400, 420, 20), (420, 420, 20), (440, 420, 20), (460, 420, 20), (480, 420, 20), (500, 420, 20), (520, 420, 20), (540, 420, 20), (560, 420, 20), (580, 420, 20), (600, 420, 20), (620, 420, 20), (0, 440, 20), (20, 440, 20), (40, 440, 20), (60, 440, 20), (80, 440, 20), (100, 440, 20), (120, 440, 20), (140, 440, 20), (160, 440, 20), (180, 440, 20), (200, 440, 20), (220, 440, 20), (240, 440, 20), (260, 440, 20), (280, 440, 20), (300, 440, 20), (320, 440, 20), (340, 440, 20), (360, 440, 20), (380, 440, 20), (400, 440, 20), (420, 440, 20), (440, 440, 20), (460, 440, 20), (480, 440, 20), (500, 440, 20), (520, 440, 20), (540, 440, 20), (560, 440, 20), (580, 440, 20), (600, 440, 20), (620, 440, 20), (0, 460, 20), (20, 460, 20), (40, 460, 20), (60, 460, 20), (80, 460, 20), (100, 460, 20), (120, 460, 20), (140, 460, 20), (160, 460, 20), (180, 460, 20), (200, 460, 20), (220, 460, 20), (240, 460, 20), (260, 460, 20), (280, 460, 20), (300, 460, 20), (320, 460, 20), (340, 460, 20), (360, 460, 20), (380, 460, 20), (400, 460, 20), (420, 460, 20), (440, 460, 20), (460, 460, 20), (480, 460, 20), (500, 460, 20), (520, 460, 20), (540, 460, 20), (560, 460, 20), (580, 460, 20), (600, 460, 20), (620, 460, 20), (0, 480, 20), (20, 480, 20), (40, 480, 20), (60, 480, 20), (80, 480, 20), (100, 480, 20), (120, 480, 20), (140, 480, 20), (160, 480, 20), (180, 480, 20), (200, 480, 20), (220, 480, 20), (240, 480, 20), (260, 480, 20), (280, 480, 20), (300, 480, 20), (320, 480, 20), (340, 480, 20), (360, 480, 20), (380, 480, 20), (400, 480, 20), (420, 480, 20), (440, 480, 20), (460, 480, 20), (480, 480, 20), (500, 480, 20), (520, 480, 20), (540, 480, 20), (560, 480, 20), (580, 480, 20), (600, 480, 20), (620, 480, 20), (0, 500, 20), (20, 500, 20), (40, 500, 20), (60, 500, 20), (80, 500, 20), (100, 500, 20), (120, 500, 20), (140, 500, 20), (160, 500, 20), (180, 500, 20), (200, 500, 20), (220, 500, 20), (240, 500, 20), (260, 500, 20), (280, 500, 20), (300, 500, 20), (320, 500, 20), (340, 500, 20), (360, 500, 20), (380, 500, 20), (400, 500, 20), (420, 500, 20), (440, 500, 20), (460, 500, 20), (480, 500, 20), (500, 500, 20), (520, 500, 20), (540, 500, 20), (560, 500, 20), (580, 500, 20), (600, 500, 20), (620, 500, 20), (0, 520, 20), (20, 520, 20), (40, 520, 20), (60, 520, 20), (80, 520, 20), (100, 520, 20), (120, 520, 20), (140, 520, 20), (160, 520, 20), (180, 520, 20), (200, 520, 20), (220, 520, 20), (240, 520, 20), (260, 520, 20), (280, 520, 20), (300, 520, 20), (320, 520, 20), (340, 520, 20), (360, 520, 20), (380, 520, 20), (400, 520, 20), (420, 520, 20), (440, 520, 20), (460, 520, 20), (480, 520, 20), (500, 520, 20), (520, 520, 20), (540, 520, 20), (560, 520, 20), (580, 520, 20), (600, 520, 20), (620, 520, 20), (0, 540, 20), (20, 540, 20), (40, 540, 20), (60, 540, 20), (80, 540, 20), (100, 540, 20), (120, 540, 20), (140, 540, 20), (160, 540, 20), (180, 540, 20), (200, 540, 20), (220, 540, 20), (240, 540, 20), (260, 540, 20), (280, 540, 20), (300, 540, 20), (320, 540, 20), (340, 540, 20), (360, 540, 20), (380, 540, 20), (400, 540, 20), (420, 540, 20), (440, 540, 20), (460, 540, 20), (480, 540, 20), (500, 540, 20), (520, 540, 20), (540, 540, 20), (560, 540, 20), (580, 540, 20), (600, 540, 20), (620, 540, 20), (0, 560, 20), (20, 560, 20), (40, 560, 20), (60, 560, 20), (80, 560, 20), (100, 560, 20), (120, 560, 20), (140, 560, 20), (160, 560, 20), (180, 560, 20), (200, 560, 20), (220, 560, 20), (240, 560, 20), (260, 560, 20), (280, 560, 20), (300, 560, 20), (320, 560, 20), (340, 560, 20), (360, 560, 20), (380, 560, 20), (400, 560, 20), (420, 560, 20), (440, 560, 20), (460, 560, 20), (480, 560, 20), (500, 560, 20), (520, 560, 20), (540, 560, 20), (560, 560, 20), (580, 560, 20), (600, 560, 20), (620, 560, 20), (0, 580, 20), (20, 580, 20), (40, 580, 20), (60, 580, 20), (80, 580, 20), (100, 580, 20), (120, 580, 20), (140, 580, 20), (160, 580, 20), (180, 580, 20), (200, 580, 20), (220, 580, 20), (240, 580, 20), (260, 580, 20), (280, 580, 20), (300, 580, 20), (320, 580, 20), (340, 580, 20), (360, 580, 20), (380, 580, 20), (400, 580, 20), (420, 580, 20), (440, 580, 20), (460, 580, 20), (480, 580, 20), (500, 580, 20), (520, 580, 20), (540, 580, 20), (560, 580, 20), (580, 580, 20), (600, 580, 20), (620, 580, 20), (0, 600, 20), (20, 600, 20), (40, 600, 20), (60, 600, 20), (80, 600, 20), (100, 600, 20), (120, 600, 20), (140, 600, 20), (160, 600, 20), (180, 600, 20), (200, 600, 20), (220, 600, 20), (240, 600, 20), (260, 600, 20), (280, 600, 20), (300, 600, 20), (320, 600, 20), (340, 600, 20), (360, 600, 20), (380, 600, 20), (400, 600, 20), (420, 600, 20), (440, 600, 20), (460, 600, 20), (480, 600, 20), (500, 600, 20), (520, 600, 20), (540, 600, 20), (560, 600, 20), (580, 600, 20), (600, 600, 20), (620, 600, 20), (0, 620, 20), (20, 620, 20), (40, 620, 20), (60, 620, 20), (80, 620, 20), (100, 620, 20), (120, 620, 20), (140, 620, 20), (160, 620, 20), (180, 620, 20), (200, 620, 20), (220, 620, 20), (240, 620, 20), (260, 620, 20), (280, 620, 20), (300, 620, 20), (320, 620, 20), (340, 620, 20), (360, 620, 20), (380, 620, 20), (400, 620, 20), (420, 620, 20), (440, 620, 20), (460, 620, 20), (480, 620, 20), (500, 620, 20), (520, 620, 20), (540, 620, 20), (560, 620, 20), (580, 620, 20), (600, 620, 20), (620, 620, 20)] point3f[] points.connect = </defaultPrim/testDeformer.outputs:points> } }
omniverse-code/kit/exts/omni.graph/omni/graph/core/data/ExampleScaleCube.usda
#usda 1.0 ( doc = """Generated from Composed Stage of root layer """ ) def Xform "World" { def Xform "inputPrim" { custom float value = 0.5 } def ComputeNode "SimpleNode" { custom float inputs:value prepend float inputs:value.connect = </World/inputPrim.value> custom float inputs:multiplier = 3 custom token node:type = "omni.graph.examples.cpp.ScaleCube" custom double outputs:value } def Cube "Cube" { prepend double size.connect = </World/SimpleNode.outputs:value> } }
omniverse-code/kit/exts/omni.graph/omni/graph/core/data/anim_deformer/morph/simplemorphtest_computegraph_GPU.usda
#usda 1.0 ( defaultPrim = "Root" endTimeCode = 120 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Z" ) def "Root" ( kind = "component" ) { def Xform "MorphMesh"( references = @./simplemorphtest.usda@</Root> ) { over Mesh "base" { token visibility = "invisible" rel deformedPrim = </Root/MorphMesh/base_deformed> } def Mesh "base_deformed" ( references = </Root/MorphMesh/base> ) { point3f[] points.connect = </Root/MorphMesh/Morph.output:points> token visibility = "inherited" } def ComputeNode "Morph" { token[] input:joints matrix4d[] input:jointSkelTransforms point3f[] input:points.connect = </Root/MorphMesh/base.points> rel input:restMesh = </Root/MorphMesh/base_deformed> custom token node:type = "MorphGPU" point3f[] output:points point3f[] output:offsets } } }
omniverse-code/kit/exts/omni.graph/omni/graph/core/data/anim_deformer/morph/simplemorphtest.usda
#usda 1.0 ( defaultPrim = "Root" endTimeCode = 120 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Z" ) def "Root" ( kind = "component" ) { def Mesh "base" ( prepend apiSchemas = ["ShadowAPI"] ) { uniform bool doubleSided = 1 float3[] extent = [(-2.5, -2.5, -0.020237144), (2.5, 2.5, 4.979763)] int[] faceVertexCounts = [4, 4, 4, 4, 4, 4] int[] faceVertexIndices = [0, 1, 3, 2, 2, 3, 5, 4, 4, 5, 7, 6, 6, 7, 1, 0, 1, 7, 5, 3, 6, 0, 2, 4] rel material:binding = </Root/Looks/initialShadingGroup> custom uniform token[] morph:MorphTargetNames = ["a", "b", "a50", "a_b"] custom rel morph:MorphTargets = [ </Root/base/a>, </Root/base/b>, </Root/base/a50>, </Root/base/a_b>, ] custom rel morph:MorphWeights = [ </Root/base.morph:weight_a>, </Root/base.morph:weight_b>, </Root/base.morph:weight_a50>, </Root/base.morph:weight_a_b>, ] custom double morph:weight_a = -0.01387283205986023 double morph:weight_a.timeSamples = { 0: -0.01387283205986023, 1: -0.01387283205986023, 2: -0.0009553414420224726, 3: 0.03539387881755829, 4: 0.0915699452161789, 5: 0.16396796703338623, 6: 0.24898308515548706, 7: 0.34301039576530457, 8: 0.4424450397491455, 9: 0.5436820983886719, 10: 0.6431167721748352, 11: 0.7371440529823303, 12: 0.8221591711044312, 13: 0.8945572376251221, 14: 0.9507333040237427, 15: 0.9870824813842773, 16: 1, 17: 0.9872831702232361, 18: 0.9521538615226746, 19: 0.8991435766220093, 20: 0.8327840566635132, 21: 0.7576068639755249, 22: 0.6781436800956726, 23: 0.5989261269569397, 24: 0.5244857668876648, 25: 0.45935431122779846, 26: 0.4080633521080017, 27: 0.37514451146125793, 28: 0.3532557785511017, 29: 0.33203351497650146, 30: 0.3114769160747528, 31: 0.29158514738082886, 32: 0.27235743403434753, 33: 0.253792941570282, 34: 0.2358909249305725, 35: 0.21865051984786987, 36: 0.202070951461792, 37: 0.1861514002084732, 38: 0.17089107632637024, 39: 0.15628917515277863, 40: 0.1423448920249939, 41: 0.12905742228031158, 42: 0.11642594635486603, 43: 0.10444968193769455, 44: 0.09312780946493149, 45: 0.08245953917503357, 46: 0.07244405150413513, 47: 0.0630805566906929, 48: 0.054368242621421814, 49: 0.0463063083589077, 50: 0.03889394924044609, 51: 0.03213036060333252, 52: 0.02601473778486252, 53: 0.02054627798497677, 54: 0.01572417840361595, 55: 0.0115476343780756, 56: 0.00801584031432867, 57: 0.005127993877977133, 58: 0.0028832906391471624, 59: 0.0012809265172109008, 60: 0.0003200976352673024, 61: 0, 62: 0, 63: 0, 64: 0, 65: 0, 66: 0, 67: 0, 68: 0, 69: 0, 70: 0, 71: 0, 72: 0, 73: 0, 74: 0, 75: 0, 76: 0, 77: 0, 78: 0, 79: 0, 80: 0, 81: 0, 82: 0, 83: 0, 84: 0, 85: 0, 86: 0, 87: 0, 88: 0, 89: 0, 90: 0, 91: 0, 92: 0, 93: 0, 94: 0, 95: 0.0055066985078155994, 96: 0.02136927843093872, 97: 0.04660146310925484, 98: 0.08021698147058487, 99: 0.12122955173254013, 100: 0.16865290701389313, 101: 0.22150078415870667, 102: 0.27878686785697937, 103: 0.3395249545574188, 104: 0.40272870659828186, 105: 0.4674118459224701, 106: 0.5325881242752075, 107: 0.5972713232040405, 108: 0.6604750752449036, 109: 0.7212131023406982, 110: 0.7784992456436157, 111: 0.8313471078872681, 112: 0.8787704706192017, 113: 0.9197829961776733, 114: 0.9533985257148743, 115: 0.9786307215690613, 116: 0.994493305683136, 117: 1, 118: 1, 119: 1, 120: 1, } custom double morph:weight_a50 = 0 custom double morph:weight_a_b = 0 custom double morph:weight_b = 0 double morph:weight_b.timeSamples = { 0: 0, 1: 0, 2: 0, 3: 0, 4: 0, 5: 0, 6: 0, 7: 0, 8: 0, 9: 0, 10: 0, 11: 0, 12: 0, 13: 0, 14: 0, 15: 0, 16: 0, 17: 0, 18: 0, 19: 0, 20: 0, 21: 0, 22: 0, 23: 0, 24: 0, 25: 0, 26: 0, 27: 0, 28: 0, 29: 0, 30: 0, 31: 0, 32: 0, 33: 0, 34: 0, 35: 0, 36: 0, 37: 0, 38: 0, 39: 0, 40: 0, 41: 0, 42: 0, 43: 0, 44: 0, 45: 0, 46: 0, 47: 0, 48: 0, 49: 0, 50: 0, 51: 0, 52: 0, 53: 0, 54: 0, 55: 0, 56: 0, 57: 0, 58: 0, 59: 0, 60: 0, 61: 0, 62: 0.005063657183200121, 63: 0.019675925374031067, 64: 0.04296875, 65: 0.07407407462596893, 66: 0.11212383955717087, 67: 0.15625, 68: 0.20558449625968933, 69: 0.25925925374031067, 70: 0.31640625, 71: 0.37615740299224854, 72: 0.43764469027519226, 73: 0.5, 74: 0.5623553395271301, 75: 0.6238425970077515, 76: 0.68359375, 77: 0.7407407164573669, 78: 0.7944155335426331, 79: 0.84375, 80: 0.8878761529922485, 81: 0.9259259104728699, 82: 0.95703125, 83: 0.9803240895271301, 84: 0.9949363470077515, 85: 1, 86: 1, 87: 1, 88: 1, 89: 1, 90: 1, 91: 1, 92: 1, 93: 1, 94: 1, 95: 1, 96: 1, 97: 1, 98: 1, 99: 1, 100: 1, 101: 1, 102: 1, 103: 1, 104: 1, 105: 1, 106: 1, 107: 1, 108: 1, 109: 1, 110: 1, 111: 1, 112: 1, 113: 1, 114: 1, 115: 1, 116: 1, 117: 1, 118: 1, 119: 1, 120: 1, } normal3f[] normals = [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (1, -0, 0), (1, -0, 0), (1, -0, 0), (1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)] ( interpolation = "faceVarying" ) point3f[] points = [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.5, -2.5, 4.979763), (-2.5, 2.5, 4.979763), (2.5, 2.5, 4.979763), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)] color3f[] primvars:displayColor = [(0.4, 0.4, 0.4)] ( customData = { dictionary Maya = { bool generated = 1 } } ) float2[] primvars:st = [(0.375, 0), (0.625, 0), (0.625, 0.25), (0.375, 0.25), (0.625, 0.5), (0.375, 0.5), (0.625, 0.75), (0.375, 0.75), (0.625, 1), (0.375, 1), (0.875, 0), (0.875, 0.25), (0.125, 0), (0.125, 0.25)] ( customData = { dictionary Maya = { int UVSetIndex = 0 } } interpolation = "faceVarying" ) int[] primvars:st:indices = [0, 1, 2, 3, 3, 2, 4, 5, 5, 4, 6, 7, 7, 6, 8, 9, 1, 10, 11, 2, 12, 0, 3, 13] bool shadow:enable = 1 uniform token subdivisionScheme = "none" matrix4d xformOp:transform = ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (0, 0, 0, 1) ) float3 xformOp:translate:pivot = (0, 2.4797628, 0) uniform token[] xformOpOrder = ["xformOp:transform"] def MorphTarget "a" ( customData = { int rampInput = 0 } ) { custom uniform vector3f[] offsets = [(0, -0, 2.108045), (0, -0, 2.108045)] custom uniform uint[] pointIndices = [3, 5] custom uniform int Priority = 0 custom rel rampInput = </Root/base/a> custom uniform double3 rampKeys = (0.5, 1, 1) custom uniform token targetType = "primary" ( allowedTokens = ["primary", "inbetween", "combination"] ) } def MorphTarget "b" ( customData = { int rampInput = -1 } ) { custom uniform vector3f[] offsets = [(0, -0, 2.0353513), (0, -0, 2.0353513)] custom uniform uint[] pointIndices = [2, 4] custom uniform int Priority = 0 custom uniform token targetType = "primary" ( allowedTokens = ["primary", "inbetween", "combination"] ) } def MorphTarget "a50" ( customData = { int rampInput = 0 } ) { custom uniform vector3f[] offsets = [(0.6987493, -0, 0.8492284), (0.6987493, -0, 0.8492284)] custom uniform uint[] pointIndices = [3, 5] custom uniform int Priority = 1 custom rel rampInput = </Root/base/a> custom uniform double3 rampKeys = (0, 0.5, 1) custom uniform token targetType = "inbetween" ( allowedTokens = ["primary", "inbetween", "combination"] ) } def MorphTarget "a_b" ( customData = { uint[] combinationInputs = [0, 1] int combinationMode = 0 int rampInput = -1 } ) { custom rel combinationInputs = [ </Root/base/a>, </Root/base/b>, ] custom uniform token combinationMode = "multiply" ( allowedTokens = ["multiply", "maximum", "minimum", "average", "softmax 20%", "softmax 40%", "softmax 60%", "softmax 80%", "softmax 100%"] ) custom uniform vector3f[] offsets = [(1.0377623, -0, -0.57505894), (-1.0377623, -0, -0.64775276), (1.0377623, -0, -0.57505894), (-1.0377623, -0, -0.64775276)] custom uniform uint[] pointIndices = [2, 3, 4, 5] custom uniform int Priority = 1 custom uniform token targetType = "combination" ( allowedTokens = ["primary", "inbetween", "combination"] ) } } def Scope "Looks" { def Material "initialShadingGroup" { token outputs:mdl:surface.connect = </Root/Looks/initialShadingGroup/lambert1.outputs:out> def Shader "lambert1" ( kind = "Material" ) { uniform token info:id = "mdlMaterial" custom asset module = @lambert1.mdl@ custom string name = "lambert1" token outputs:out } } } }
omniverse-code/kit/exts/omni.graph/omni/graph/core/data/anim_deformer/morph/simplemorphtest_computegraph.usda
#usda 1.0 ( defaultPrim = "Root" endTimeCode = 120 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Z" ) def "Root" ( kind = "component" ) { def Xform "MorphMesh"( references = @./simplemorphtest.usda@</Root> ) { over Mesh "base" { token visibility = "invisible" rel deformedPrim = </Root/MorphMesh/base_deformed> } def Mesh "base_deformed" ( references = </Root/MorphMesh/base> ) { point3f[] points.connect = </Root/MorphMesh/Morph.output:points> token visibility = "inherited" } def ComputeNode "Morph" { token[] input:joints matrix4d[] input:jointSkelTransforms point3f[] input:points.connect = </Root/MorphMesh/base.points> rel input:restMesh = </Root/MorphMesh/base_deformed> custom token node:type = "Morph" point3f[] output:offsets point3f[] output:points } } }
omniverse-code/kit/exts/omni.graph/omni/graph/core/data/anim_deformer/morph/simplemorphtest_points.usda
#usda 1.0 ( defaultPrim = "Root" endTimeCode = 120 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Z" ) def "Root" ( kind = "component" ) { def Mesh "base" ( prepend apiSchemas = ["ShadowAPI"] ) { uniform bool doubleSided = 1 float3[] extent.timeSamples = { 0: [(-2.5, -2.5, -0.020237144), (2.5, 2.5, 4.979763)], 2: [(-2.5, -2.5, -0.020237144), (2.5, 2.5, 4.979763)], 3: [(-2.5, -2.5, -0.020237144), (2.5494628, 2.5, 5.039878)], 4: [(-2.5, -2.5, -0.020237144), (2.6279688, 2.5, 5.1352906)], 5: [(-2.5, -2.5, -0.020237144), (2.729145, 2.5, 5.2582555)], 6: [(-2.5, -2.5, -0.020237144), (2.8479536, 2.5, 5.40265)], 7: [(-2.5, -2.5, -0.020237144), (2.9793565, 2.5, 5.562351)], 8: [(-2.5, -2.5, -0.020237144), (3.1183162, 2.5, 5.731237)], 9: [(-2.5, -2.5, -0.020237144), (3.1377037, 2.5, 5.938967)], 10: [(-2.5, -2.5, -0.020237144), (2.9987438, 2.5, 6.1893067)], 11: [(-2.5, -2.5, -0.020237144), (2.8673408, 2.5, 6.426033)], 12: [(-2.5, -2.5, -0.020237144), (2.7485323, 2.5, 6.64007)], 13: [(-2.5, -2.5, -0.020237144), (2.647356, 2.5, 6.822342)], 14: [(-2.5, -2.5, -0.020237144), (2.5688503, 2.5, 6.9637723)], 15: [(-2.5, -2.5, -0.020237144), (2.518052, 2.5, 7.055287)], 16: [(-2.5, -2.5, -0.020237144), (2.5, 2.5, 7.087808)], 17: [(-2.5, -2.5, -0.020237144), (2.5177717, 2.5, 7.055792)], 18: [(-2.5, -2.5, -0.020237144), (2.566865, 2.5, 6.967349)], 19: [(-2.5, -2.5, -0.020237144), (2.6409466, 2.5, 6.8338885)], 20: [(-2.5, -2.5, -0.020237144), (2.733684, 2.5, 6.6668196)], 21: [(-2.5, -2.5, -0.020237144), (2.8387442, 2.5, 6.477551)], 22: [(-2.5, -2.5, -0.020237144), (2.9497938, 2.5, 6.277492)], 23: [(-2.5, -2.5, -0.020237144), (3.0605001, 2.5, 6.078051)], 24: [(-2.5, -2.5, -0.020237144), (3.1645305, 2.5, 5.890638)], 25: [(-2.5, -2.5, -0.020237144), (3.141947, 2.5, 5.7599564)], 26: [(-2.5, -2.5, -0.020237144), (3.070268, 2.5, 5.672841)], 27: [(-2.5, -2.5, -0.020237144), (3.0242639, 2.5, 5.61693)], 28: [(-2.5, -2.5, -0.020237144), (2.9936745, 2.5, 5.579753)], 29: [(-2.5, -2.5, -0.020237144), (2.9640164, 2.5, 5.543708)], 30: [(-2.5, -2.5, -0.020237144), (2.9352884, 2.5, 5.508793)], 31: [(-2.5, -2.5, -0.020237144), (2.9074898, 2.5, 5.475008)], 32: [(-2.5, -2.5, -0.020237144), (2.880619, 2.5, 5.4423504)], 33: [(-2.5, -2.5, -0.020237144), (2.8546753, 2.5, 5.4108195)], 34: [(-2.5, -2.5, -0.020237144), (2.8296573, 2.5, 5.3804135)], 35: [(-2.5, -2.5, -0.020237144), (2.805564, 2.5, 5.3511314)], 36: [(-2.5, -2.5, -0.020237144), (2.782394, 2.5, 5.322972)], 37: [(-2.5, -2.5, -0.020237144), (2.7601464, 2.5, 5.2959332)], 38: [(-2.5, -2.5, -0.020237144), (2.73882, 2.5, 5.2700143)], 39: [(-2.5, -2.5, -0.020237144), (2.7184138, 2.5, 5.2452135)], 40: [(-2.5, -2.5, -0.020237144), (2.6989267, 2.5, 5.2215295)], 41: [(-2.5, -2.5, -0.020237144), (2.6803575, 2.5, 5.1989613)], 42: [(-2.5, -2.5, -0.020237144), (2.6627052, 2.5, 5.1775074)], 43: [(-2.5, -2.5, -0.020237144), (2.6459682, 2.5, 5.1571665)], 44: [(-2.5, -2.5, -0.020237144), (2.630146, 2.5, 5.1379366)], 45: [(-2.5, -2.5, -0.020237144), (2.615237, 2.5, 5.119817)], 46: [(-2.5, -2.5, -0.020237144), (2.6012404, 2.5, 5.102806)], 47: [(-2.5, -2.5, -0.020237144), (2.588155, 2.5, 5.0869026)], 48: [(-2.5, -2.5, -0.020237144), (2.5759795, 2.5, 5.072105)], 49: [(-2.5, -2.5, -0.020237144), (2.564713, 2.5, 5.058412)], 50: [(-2.5, -2.5, -0.020237144), (2.5543542, 2.5, 5.0458226)], 51: [(-2.5, -2.5, -0.020237144), (2.544902, 2.5, 5.034335)], 52: [(-2.5, -2.5, -0.020237144), (2.5363555, 2.5, 5.0239477)], 53: [(-2.5, -2.5, -0.020237144), (2.5287135, 2.5, 5.01466)], 54: [(-2.5, -2.5, -0.020237144), (2.5219746, 2.5, 5.0064697)], 55: [(-2.5, -2.5, -0.020237144), (2.5161378, 2.5, 4.9993763)], 56: [(-2.5, -2.5, -0.020237144), (2.511202, 2.5, 4.9933777)], 57: [(-2.5, -2.5, -0.020237144), (2.5071664, 2.5, 4.988473)], 58: [(-2.5, -2.5, -0.020237144), (2.5040295, 2.5, 4.98466)], 59: [(-2.5, -2.5, -0.020237144), (2.50179, 2.5, 4.981939)], 60: [(-2.5, -2.5, -0.020237144), (2.5, 2.5, 4.979763)], 61: [(-2.5, -2.5, -0.020237144), (2.5, 2.5, 4.979763)], 62: [(-2.5, -2.5, -0.020237144), (2.5, 2.5, 4.9900694)], 63: [(-2.5, -2.5, -0.020237144), (2.5, 2.5, 5.0198107)], 64: [(-2.5, -2.5, -0.020237144), (2.5, 2.5, 5.0672197)], 65: [(-2.5, -2.5, -0.020237144), (2.5, 2.5, 5.13053)], 66: [(-2.5, -2.5, -0.020237144), (2.5, 2.5, 5.2079744)], 67: [(-2.5, -2.5, -0.020237144), (2.5, 2.5, 5.2977867)], 68: [(-2.5, -2.5, -0.020237144), (2.5, 2.5, 5.3981996)], 69: [(-2.5, -2.5, -0.020237144), (2.5, 2.5, 5.507447)], 70: [(-2.5, -2.5, -0.020237144), (2.5, 2.5, 5.6237607)], 71: [(-2.5, -2.5, -0.020237144), (2.5, 2.5, 5.7453756)], 72: [(-2.5, -2.5, -0.020237144), (2.5, 2.5, 5.8705235)], 73: [(-2.5, -2.5, -0.020237144), (2.5, 2.5, 5.9974384)], 74: [(-2.5, -2.5, -0.020237144), (2.5, 2.5, 6.1243534)], 75: [(-2.5, -2.5, -0.020237144), (2.5, 2.5, 6.2495017)], 76: [(-2.5, -2.5, -0.020237144), (2.5, 2.5, 6.3711166)], 77: [(-2.5, -2.5, -0.020237144), (2.5, 2.5, 6.4874306)], 78: [(-2.5, -2.5, -0.020237144), (2.5, 2.5, 6.596678)], 79: [(-2.5, -2.5, -0.020237144), (2.5, 2.5, 6.6970906)], 80: [(-2.5, -2.5, -0.020237144), (2.5, 2.5, 6.786903)], 81: [(-2.5, -2.5, -0.020237144), (2.5, 2.5, 6.8643475)], 82: [(-2.5, -2.5, -0.020237144), (2.5, 2.5, 6.927658)], 83: [(-2.5, -2.5, -0.020237144), (2.5, 2.5, 6.975067)], 84: [(-2.5, -2.5, -0.020237144), (2.5, 2.5, 7.004808)], 85: [(-2.5, -2.5, -0.020237144), (2.5, 2.5, 7.0151143)], 94: [(-2.5, -2.5, -0.020237144), (2.5, 2.5, 7.0151143)], 95: [(-2.5, -2.5, -0.020237144), (2.501981, 2.5, 7.0119476)], 96: [(-2.5, -2.5, -0.020237144), (2.5076873, 2.5, 7.0028257)], 97: [(-2.5, -2.5, -0.020237144), (2.5167642, 2.5, 6.9883156)], 98: [(-2.5, -2.5, -0.020237144), (2.528857, 2.5, 6.9689846)], 99: [(-2.5, -2.5, -0.020237144), (2.5436106, 2.5, 6.9454)], 100: [(-2.5, -2.5, -0.020237144), (2.5606706, 2.5, 6.918129)], 101: [(-2.5, -2.5, -0.020237144), (2.5796819, 2.5, 6.887738)], 102: [(-2.5, -2.5, -0.020237144), (2.6002898, 2.5, 6.8547955)], 103: [(-2.5, -2.5, -0.020237144), (2.6221395, 2.5, 6.8198676)], 104: [(-2.5, -2.5, -0.020237144), (2.6448762, 2.5, 6.7835217)], 105: [(-2.5, -2.5, -0.020237144), (2.668145, 2.5, 6.746325)], 106: [(-2.5, -2.5, -0.020237144), (2.6005075, 2.5, 6.7088447)], 107: [(-2.5, -2.5, -0.020237144), (2.5, 2.5, 6.671648)], 108: [(-2.5, -2.5, -0.020237144), (2.5, 2.5, 6.635302)], 109: [(-2.5, -2.5, -0.020237144), (2.5, 2.5, 6.600374)], 110: [(-2.5, -2.5, -0.020237144), (2.5, 2.5, 6.5674314)], 111: [(-2.5, -2.5, -0.020237144), (2.5, 2.5, 6.5370407)], 112: [(-2.5, -2.5, -0.020237144), (2.5, 2.5, 6.5097694)], 113: [(-2.5, -2.5, -0.020237144), (2.5, 2.5, 6.486185)], 114: [(-2.5, -2.5, -0.020237144), (2.5, 2.5, 6.466854)], 115: [(-2.5, -2.5, -0.020237144), (2.5, 2.5, 6.452344)], 116: [(-2.5, -2.5, -0.020237144), (2.5, 2.5, 6.443222)], 117: [(-2.5, -2.5, -0.020237144), (2.5, 2.5, 6.4400554)], } int[] faceVertexCounts.timeSamples = { 0: [4, 4, 4, 4, 4, 4], } int[] faceVertexIndices.timeSamples = { 0: [0, 1, 3, 2, 2, 3, 5, 4, 4, 5, 7, 6, 6, 7, 1, 0, 1, 7, 5, 3, 6, 0, 2, 4], } rel material:binding = </Root/Looks/initialShadingGroup> normal3f[] normals ( interpolation = "faceVarying" ) normal3f[] normals.timeSamples = { 0: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0.0058487854, -0, 0.99998295), (0.0058487854, -0, 0.99998295), (0.0058487854, -0, 0.99998295), (0.0058487854, -0, 0.99998295), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (1, -0, 0), (1, -0, 0), (1, -0, 0), (1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 1: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0.0058487854, -0, 0.99998295), (0.0058487854, -0, 0.99998295), (0.0058487854, -0, 0.99998295), (0.0058487854, -0, 0.99998295), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (1, -0, 0), (1, -0, 0), (1, -0, 0), (1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 2: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (1, -0, 0), (1, -0, 0), (1, -0, 0), (1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 3: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (-0.011904357, -0, 0.9999292), (-0.011904357, -0, 0.9999292), (-0.011904357, -0, 0.9999292), (-0.011904357, -0, 0.9999292), (0, 0.99999994, 0), (0, 1, 0), (0, 1, 0), (0, 0.99999994, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.9999522, -0, -0.009774585), (0.9999522, -0, -0.009774585), (0.9999522, -0, -0.009774585), (0.9999522, -0, -0.009774585), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 4: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (-0.030315338, -0, 0.9995404), (-0.030315338, -0, 0.9995404), (-0.030315338, -0, 0.9995404), (-0.030315338, -0, 0.9995404), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.99969214, -0, -0.024814026), (0.99969214, -0, -0.024814026), (0.99969214, -0, -0.024814026), (0.99969214, -0, -0.024814026), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 5: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (-0.05318237, -0, 0.99858475), (-0.05318237, -0, 0.99858475), (-0.05318237, -0, 0.99858475), (-0.05318237, -0, 0.99858475), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.99905914, -0, -0.043370232), (0.99905914, -0, -0.043370232), (0.99905914, -0, -0.043370232), (0.99905914, -0, -0.043370232), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 6: [(0, -1, 0), (0, -0.99999994, 0), (0, -1, 0), (0, -0.99999994, 0), (-0.07882845, -0, 0.9968882), (-0.07882845, -0, 0.9968882), (-0.07882845, -0, 0.9968882), (-0.07882845, -0, 0.9968882), (0, 0.99999994, 0), (0, 1, 0), (0, 0.99999994, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.9979479, -0, -0.06403224), (0.9979479, -0, -0.06403224), (0.9979479, -0, -0.06403224), (0.9979479, -0, -0.06403224), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 7: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (-0.10572827, -0, 0.99439514), (-0.10572827, -0, 0.99439514), (-0.10572827, -0, 0.99439514), (-0.10572827, -0, 0.99439514), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.99633366, -0, -0.08555155), (0.99633366, -0, -0.08555155), (0.99633366, -0, -0.08555155), (0.99633366, -0, -0.08555155), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 8: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (-0.13257366, -0, 0.9911732), (-0.13257366, -0, 0.9911732), (-0.13257366, -0, 0.9911732), (-0.13257366, -0, 0.9911732), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.99427086, -0, -0.10688979), (0.99427086, -0, -0.10688979), (0.99427086, -0, -0.10688979), (0.99427086, -0, -0.10688979), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 9: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -0.99999994, 0), (-0.16773053, -0, 0.9858328), (-0.16773053, -0, 0.9858328), (-0.16773053, -0, 0.9858328), (-0.16773053, -0, 0.9858328), (0, 0.99999994, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.994323, -0, -0.106404044), (0.994323, -0, -0.106404044), (0.994323, -0, -0.106404044), (0.994323, -0, -0.106404044), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 10: [(0, -1, 0), (0, -0.99999994, 0), (0, -1, 0), (0, -0.99999994, 0), (-0.21483131, -0, 0.9766512), (-0.21483131, -0, 0.9766512), (-0.21483131, -0, 0.9766512), (-0.21483131, -0, 0.9766512), (0, 0.99999994, 0), (0, 1, 0), (0, 0.99999994, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.99679005, -0, -0.0800611), (0.99679005, -0, -0.0800611), (0.99679005, -0, -0.0800611), (0.99679005, -0, -0.0800611), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 11: [(0, -1, 0), (0, -0.99999994, 0), (0, -1, 0), (0, -1, 0), (-0.26017755, -0, 0.9655608), (-0.26017755, -0, 0.9655608), (-0.26017755, -0, 0.9655608), (-0.26017755, -0, 0.9655608), (0, 1, 0), (0, 1, 0), (0, 0.99999994, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.9983803, -0, -0.056892734), (0.9983803, -0, -0.056892734), (0.9983803, -0, -0.056892734), (0.9983803, -0, -0.056892734), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 12: [(-3.203249e-8, -1, 0), (-3.2032485e-8, -0.99999994, 0), (-3.203249e-8, -1, 0), (-3.2032485e-8, -1, 0), (-0.30160636, -0, 0.95343256), (-0.30160636, -0, 0.95343256), (-0.30160636, -0, 0.95343256), (-0.30160636, -0, 0.95343256), (-3.2032485e-8, 1, 0), (-3.203249e-8, 1, 0), (-3.2032485e-8, 0.99999994, 0), (-3.203249e-8, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.99930453, -0, -0.037289485), (0.99930453, -0, -0.037289485), (0.99930453, -0, -0.037289485), (0.99930453, -0, -0.037289485), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 13: [(0, -1, 0), (0, -0.99999994, 0), (0, -1, 0), (0, -0.99999994, 0), (-0.33702374, -0, 0.9414962), (-0.33702374, -0, 0.9414962), (-0.33702374, -0, 0.9414962), (-0.33702374, -0, 0.9414962), (0, 0.99999994, 0), (0, 1, 0), (0, 0.99999994, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.9997682, -0, -0.021530168), (0.9997682, -0, -0.021530168), (0.9997682, -0, -0.021530168), (0.9997682, -0, -0.021530168), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 14: [(-3.1649726e-8, -1, 0), (-3.1649723e-8, -0.99999994, 0), (-3.1649726e-8, -1, 0), (-3.1649726e-8, -0.99999994, 0), (-0.3644863, -0, 0.9312087), (-0.3644863, -0, 0.9312087), (-0.3644863, -0, 0.9312087), (-0.3644863, -0, 0.9312087), (-3.1649726e-8, 0.99999994, 0), (-3.164973e-8, 1, 0), (-3.1649726e-8, 1, 0), (-3.164973e-8, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.9999514, -0, -0.009857802), (0.9999514, -0, -0.009857802), (0.9999514, -0, -0.009857802), (0.9999514, -0, -0.009857802), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 15: [(-3.154317e-8, -1, 0), (-3.154317e-8, -0.99999994, 0), (-3.154317e-8, -1, 0), (-3.1543173e-8, -1, 0), (-0.3822084, -0, 0.9240761), (-0.3822084, -0, 0.9240761), (-0.3822084, -0, 0.9240761), (-0.3822084, -0, 0.9240761), (-3.1543173e-8, 1, 0), (-3.1543173e-8, 1, 0), (-3.1543173e-8, 1, 0), (-3.1543177e-8, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.9999967, -0, -0.002551336), (0.9999967, -0, -0.002551336), (0.9999967, -0, -0.002551336), (0.9999967, -0, -0.002551336), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 16: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (-0.38849244, -0, 0.92145187), (-0.38849244, -0, 0.92145187), (-0.38849244, -0, 0.92145187), (-0.38849244, -0, 0.92145187), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (1, -0, 0), (1, -0, 0), (1, -0, 0), (1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 17: [(3.154258e-8, -1, 0), (3.1542584e-8, -0.99999994, 0), (3.154258e-8, -0.99999994, 0), (3.1542584e-8, -1, 0), (-0.3823061, -0, 0.9240357), (-0.3823061, -0, 0.9240357), (-0.3823061, -0, 0.9240357), (-0.3823061, -0, 0.9240357), (3.1542584e-8, 0.99999994, 0), (3.154259e-8, 1, 0), (3.1542584e-8, 0.99999994, 0), (3.1542587e-8, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.9999969, -0, -0.002511531), (0.9999969, -0, -0.002511531), (0.9999969, -0, -0.002511531), (0.9999969, -0, -0.002511531), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 18: [(0, -0.99999994, 0), (0, -1, 0), (0, -0.99999994, 0), (0, -1, 0), (-0.36517993, -0, 0.930937), (-0.36517993, -0, 0.930937), (-0.36517993, -0, 0.930937), (-0.36517993, -0, 0.930937), (0, 0.99999994, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.99995416, -0, -0.00956867), (0.99995416, -0, -0.00956867), (0.99995416, -0, -0.00956867), (0.99995416, -0, -0.00956867), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 19: [(3.18022e-8, -1, 0), (3.18022e-8, -1, 0), (3.1802205e-8, -1, 0), (3.1802205e-8, -1, 0), (-0.33926773, -0, 0.94068986), (-0.33926773, -0, 0.94068986), (-0.33926773, -0, 0.94068986), (-0.33926773, -0, 0.94068986), (3.1802205e-8, 1, 0), (3.1802205e-8, 1, 0), (3.1802205e-8, 1, 0), (3.1802205e-8, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.99978864, -0, -0.020559413), (0.99978864, -0, -0.020559413), (0.99978864, -0, -0.020559413), (0.99978864, -0, -0.020559413), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 20: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (-0.30680043, -0, 0.9517739), (-0.30680043, -0, 0.9517739), (-0.30680043, -0, 0.9517739), (-0.30680043, -0, 0.9517739), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.99938995, -0, -0.034924425), (0.99938995, -0, -0.034924425), (0.99938995, -0, -0.034924425), (0.99938995, -0, -0.034924425), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 21: [(-3.2228165e-8, -1, 0), (-3.222817e-8, -1, 0), (-3.2228165e-8, -1, 0), (-3.2228165e-8, -1, 0), (-0.27012148, -0, 0.9628262), (-0.27012148, -0, 0.9628262), (-0.27012148, -0, 0.9628262), (-0.27012148, -0, 0.9628262), (-3.222817e-8, 1, 0), (-3.222817e-8, 1, 0), (-3.222817e-8, 1, 0), (-3.222817e-8, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.9986438, -0, -0.052061528), (0.9986438, -0, -0.052061528), (0.9986438, -0, -0.052061528), (0.9986438, -0, -0.052061528), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 22: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (-0.23164739, -0, 0.9727998), (-0.23164739, -0, 0.9727998), (-0.23164739, -0, 0.9727998), (-0.23164739, -0, 0.9727998), (0, 1, 0), (0, 1, 0), (0, 0.99999994, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.99745923, -0, -0.07124012), (0.99745923, -0, -0.07124012), (0.99745923, -0, -0.07124012), (0.99745923, -0, -0.07124012), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 23: [(0, -0.99999994, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (-0.19377244, -0, 0.9810465), (-0.19377244, -0, 0.9810465), (-0.19377244, -0, 0.9810465), (-0.19377244, -0, 0.9810465), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 0.99999994, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.99580276, -0, -0.09152529), (0.99580276, -0, -0.09152529), (0.99580276, -0, -0.09152529), (0.99580276, -0, -0.09152529), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 24: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (-0.1587637, -0, 0.9873166), (-0.1587637, -0, 0.9873166), (-0.1587637, -0, 0.9873166), (-0.1587637, -0, 0.9873166), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.99373955, -0, -0.11172126), (0.99373955, -0, -0.11172126), (0.99373955, -0, -0.11172126), (0.99373955, -0, -0.11172126), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 25: [(0, -0.99999994, 0), (0, -0.99999994, 0), (0, -1, 0), (0, -1, 0), (-0.13698092, -0, 0.99057376), (-0.13698092, -0, 0.99057376), (-0.13698092, -0, 0.99057376), (-0.13698092, -0, 0.99057376), (0, 1, 0), (0, 1, 0), (0, 0.99999994, 0), (0, 0.99999994, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.99388933, -0, -0.11038113), (0.99388933, -0, -0.11038113), (0.99388933, -0, -0.11038113), (0.99388933, -0, -0.11038113), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 26: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (-0.12347244, -0, 0.99234796), (-0.12347244, -0, 0.99234796), (-0.12347244, -0, 0.99234796), (-0.12347244, -0, 0.99234796), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.9950205, -0, -0.09966985), (0.9950205, -0, -0.09966985), (0.9950205, -0, -0.09966985), (0.9950205, -0, -0.09966985), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 27: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (-0.11458009, -0, 0.99341404), (-0.11458009, -0, 0.99341404), (-0.11458009, -0, 0.99341404), (-0.11458009, -0, 0.99341404), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.9957033, -0, -0.092601694), (0.9957033, -0, -0.092601694), (0.9957033, -0, -0.092601694), (0.9957033, -0, -0.092601694), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 28: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (-0.1085691, -0, 0.9940889), (-0.1085691, -0, 0.9940889), (-0.1085691, -0, 0.9940889), (-0.1085691, -0, 0.9940889), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.9961367, -0, -0.08781574), (0.9961367, -0, -0.08781574), (0.9961367, -0, -0.08781574), (0.9961367, -0, -0.08781574), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 29: [(0, -1, 0), (0, -1, 0), (0, -0.99999994, 0), (0, -1, 0), (-0.10266529, -0, 0.9947159), (-0.10266529, -0, 0.9947159), (-0.10266529, -0, 0.9947159), (-0.10266529, -0, 0.9947159), (0, 1, 0), (0, 0.99999994, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.9965405, -0, -0.08310849), (0.9965405, -0, -0.08310849), (0.9965405, -0, -0.08310849), (0.9965405, -0, -0.08310849), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 30: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (-0.096874654, -0, 0.99529666), (-0.096874654, -0, 0.99529666), (-0.096874654, -0, 0.99529666), (-0.096874654, -0, 0.99529666), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.9969153, -0, -0.07848497), (0.9969153, -0, -0.07848497), (0.9969153, -0, -0.07848497), (0.9969153, -0, -0.07848497), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 31: [(0, -0.99999994, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (-0.0912033, -0, 0.99583226), (-0.0912033, -0, 0.99583226), (-0.0912033, -0, 0.99583226), (-0.0912033, -0, 0.99583226), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 0.99999994, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.99726194, -0, -0.07395012), (0.99726194, -0, -0.07395012), (0.99726194, -0, -0.07395012), (0.99726194, -0, -0.07395012), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 32: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (-0.08565692, -0, 0.9963247), (-0.08565692, -0, 0.9963247), (-0.08565692, -0, 0.9963247), (-0.08565692, -0, 0.9963247), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.99758136, -0, -0.06950891), (0.99758136, -0, -0.06950891), (0.99758136, -0, -0.06950891), (0.99758136, -0, -0.06950891), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 33: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (-0.080241375, -0, 0.99677545), (-0.080241375, -0, 0.99677545), (-0.080241375, -0, 0.99677545), (-0.080241375, -0, 0.99677545), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.99787444, -0, -0.06516622), (0.99787444, -0, -0.06516622), (0.99787444, -0, -0.06516622), (0.99787444, -0, -0.06516622), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 34: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (-0.074962266, -0, 0.9971863), (-0.074962266, -0, 0.9971863), (-0.074962266, -0, 0.9971863), (-0.074962266, -0, 0.9971863), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.9981422, -0, -0.060926907), (0.9981422, -0, -0.060926907), (0.9981422, -0, -0.060926907), (0.9981422, -0, -0.060926907), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 35: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (-0.06982518, -0, 0.9975592), (-0.06982518, -0, 0.9975592), (-0.06982518, -0, 0.9975592), (-0.06982518, -0, 0.9975592), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.9983858, -0, -0.05679571), (0.9983858, -0, -0.05679571), (0.9983858, -0, -0.05679571), (0.9983858, -0, -0.05679571), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 36: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (-0.0648355, -0, 0.997896), (-0.0648355, -0, 0.997896), (-0.0648355, -0, 0.997896), (-0.0648355, -0, 0.997896), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.99860626, -0, -0.05277736), (0.99860626, -0, -0.05277736), (0.99860626, -0, -0.05277736), (0.99860626, -0, -0.05277736), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 37: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (-0.059998445, -0, 0.99819845), (-0.059998445, -0, 0.99819845), (-0.059998445, -0, 0.99819845), (-0.059998445, -0, 0.99819845), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.99880487, -0, -0.048876427), (0.99880487, -0, -0.048876427), (0.99880487, -0, -0.048876427), (0.99880487, -0, -0.048876427), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 38: [(0, -1, 0), (0, -0.99999994, 0), (0, -1, 0), (0, -0.99999994, 0), (-0.0553191, -0, 0.9984687), (-0.0553191, -0, 0.9984687), (-0.0553191, -0, 0.9984687), (-0.0553191, -0, 0.9984687), (0, 0.99999994, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.99898255, -0, -0.045097496), (0.99898255, -0, -0.045097496), (0.99898255, -0, -0.045097496), (0.99898255, -0, -0.045097496), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 39: [(0, -1, 0), (0, -1, 0), (0, -0.99999994, 0), (0, -1, 0), (-0.050802354, -0, 0.9987088), (-0.050802354, -0, 0.9987088), (-0.050802354, -0, 0.9987088), (-0.050802354, -0, 0.9987088), (0, 1, 0), (0, 0.99999994, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.99914086, -0, -0.04144494), (0.99914086, -0, -0.04144494), (0.99914086, -0, -0.04144494), (0.99914086, -0, -0.04144494), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 40: [(0, -0.99999994, 0), (0, -1, 0), (0, -0.99999994, 0), (0, -1, 0), (-0.046452943, -0, 0.9989204), (-0.046452943, -0, 0.9989204), (-0.046452943, -0, 0.9989204), (-0.046452943, -0, 0.9989204), (0, 1, 0), (0, 0.99999994, 0), (0, 1, 0), (0, 0.99999994, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.99928063, -0, -0.037923027), (0.99928063, -0, -0.037923027), (0.99928063, -0, -0.037923027), (0.99928063, -0, -0.037923027), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 41: [(0, -1, 0), (0, -0.99999994, 0), (0, -1, 0), (0, -1, 0), (-0.04227551, -0, 0.99910593), (-0.04227551, -0, 0.99910593), (-0.04227551, -0, 0.99910593), (-0.04227551, -0, 0.99910593), (0, 1, 0), (0, 1, 0), (0, 0.99999994, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.9994035, -0, -0.03453591), (0.9994035, -0, -0.03453591), (0.9994035, -0, -0.03453591), (0.9994035, -0, -0.03453591), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 42: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (-0.038274407, -0, 0.99926734), (-0.038274407, -0, 0.99926734), (-0.038274407, -0, 0.99926734), (-0.038274407, -0, 0.99926734), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.99951035, -0, -0.031287715), (0.99951035, -0, -0.031287715), (0.99951035, -0, -0.031287715), (0.99951035, -0, -0.031287715), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 43: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (-0.03445379, -0, 0.99940634), (-0.03445379, -0, 0.99940634), (-0.03445379, -0, 0.99940634), (-0.03445379, -0, 0.99940634), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.9996028, -0, -0.028182132), (0.9996028, -0, -0.028182132), (0.9996028, -0, -0.028182132), (0.9996028, -0, -0.028182132), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 44: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (-0.030817531, -0, 0.99952507), (-0.030817531, -0, 0.99952507), (-0.030817531, -0, 0.99952507), (-0.030817531, -0, 0.99952507), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.9996819, -0, -0.025223), (0.9996819, -0, -0.025223), (0.9996819, -0, -0.025223), (0.9996819, -0, -0.025223), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 45: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (-0.027369462, -0, 0.9996254), (-0.027369462, -0, 0.9996254), (-0.027369462, -0, 0.9996254), (-0.027369462, -0, 0.9996254), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.9997488, -0, -0.022413796), (0.9997488, -0, -0.022413796), (0.9997488, -0, -0.022413796), (0.9997488, -0, -0.022413796), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 46: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (-0.02411321, -0, 0.99970925), (-0.02411321, -0, 0.99970925), (-0.02411321, -0, 0.99970925), (-0.02411321, -0, 0.99970925), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.99980485, -0, -0.019757904), (0.99980485, -0, -0.019757904), (0.99980485, -0, -0.019757904), (0.99980485, -0, -0.019757904), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 47: [(0, -1, 0), (0, -0.99999994, 0), (0, -1, 0), (0, -1, 0), (-0.021052003, -0, 0.99977845), (-0.021052003, -0, 0.99977845), (-0.021052003, -0, 0.99977845), (-0.021052003, -0, 0.99977845), (0, 1, 0), (0, 1, 0), (0, 0.99999994, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.9998511, -0, -0.017258557), (0.9998511, -0, -0.017258557), (0.9998511, -0, -0.017258557), (0.9998511, -0, -0.017258557), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 48: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (-0.018188925, -0, 0.99983454), (-0.018188925, -0, 0.99983454), (-0.018188925, -0, 0.99983454), (-0.018188925, -0, 0.99983454), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.9998887, -0, -0.014918669), (0.9998887, -0, -0.014918669), (0.9998887, -0, -0.014918669), (0.9998887, -0, -0.014918669), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 49: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (-0.015526953, -0, 0.9998795), (-0.015526953, -0, 0.9998795), (-0.015526953, -0, 0.9998795), (-0.015526953, -0, 0.9998795), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.9999188, -0, -0.012741115), (0.9999188, -0, -0.012741115), (0.9999188, -0, -0.012741115), (0.9999188, -0, -0.012741115), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 50: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (-0.013068721, -0, 0.9999146), (-0.013068721, -0, 0.9999146), (-0.013068721, -0, 0.9999146), (-0.013068721, -0, 0.9999146), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.9999425, -0, -0.0107284505), (0.9999425, -0, -0.0107284505), (0.9999425, -0, -0.0107284505), (0.9999425, -0, -0.0107284505), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 51: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (-0.010816645, -0, 0.9999415), (-0.010816645, -0, 0.9999415), (-0.010816645, -0, 0.9999415), (-0.010816645, -0, 0.9999415), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.99996054, -0, -0.008883099), (0.99996054, -0, -0.008883099), (0.99996054, -0, -0.008883099), (0.99996054, -0, -0.008883099), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 52: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (-0.008772808, -0, 0.9999615), (-0.008772808, -0, 0.9999615), (-0.008772808, -0, 0.9999615), (-0.008772808, -0, 0.9999615), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.99997395, -0, -0.0072072395), (0.99997395, -0, -0.0072072395), (0.99997395, -0, -0.0072072395), (0.99997395, -0, -0.0072072395), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 53: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (-0.006939351, -0, 0.9999759), (-0.006939351, -0, 0.9999759), (-0.006939351, -0, 0.9999759), (-0.006939351, -0, 0.9999759), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.99998367, -0, -0.0057027875), (0.99998367, -0, -0.0057027875), (0.99998367, -0, -0.0057027875), (0.99998367, -0, -0.0057027875), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 54: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (-0.005317892, -0, 0.99998593), (-0.005317892, -0, 0.99998593), (-0.005317892, -0, 0.99998593), (-0.005317892, -0, 0.99998593), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.99999046, -0, -0.004371521), (0.99999046, -0, -0.004371521), (0.99999046, -0, -0.004371521), (0.99999046, -0, -0.004371521), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 55: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (-0.003910003, -0, 0.9999924), (-0.003910003, -0, 0.9999924), (-0.003910003, -0, 0.9999924), (-0.003910003, -0, 0.9999924), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.9999948, -0, -0.0032149493), (0.9999948, -0, -0.0032149493), (0.9999948, -0, -0.0032149493), (0.9999948, -0, -0.0032149493), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 56: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (-0.002716834, -0, 0.99999636), (-0.002716834, -0, 0.99999636), (-0.002716834, -0, 0.99999636), (-0.002716834, -0, 0.99999636), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.9999975, -0, -0.0022343202), (0.9999975, -0, -0.0022343202), (0.9999975, -0, -0.0022343202), (0.9999975, -0, -0.0022343202), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 57: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -0.99999994, 0), (-0.0017394857, -0, 0.9999985), (-0.0017394857, -0, 0.9999985), (-0.0017394857, -0, 0.9999985), (-0.0017394857, -0, 0.9999985), (0, 0.99999994, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.99999905, -0, -0.0014307643), (0.99999905, -0, -0.0014307643), (0.99999905, -0, -0.0014307643), (0.99999905, -0, -0.0014307643), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 58: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (-0.0009786342, -0, 0.9999995), (-0.0009786342, -0, 0.9999995), (-0.0009786342, -0, 0.9999995), (-0.0009786342, -0, 0.9999995), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.9999997, -0, -0.00080510415), (0.9999997, -0, -0.00080510415), (0.9999997, -0, -0.00080510415), (0.9999997, -0, -0.00080510415), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 59: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (-0.00043500584, -0, 0.99999994), (-0.00043500584, -0, 0.99999994), (-0.00043500584, -0, 0.99999994), (-0.00043500584, -0, 0.99999994), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.9999999, -0, -0.0003578536), (0.9999999, -0, -0.0003578536), (0.9999999, -0, -0.0003578536), (0.9999999, -0, -0.0003578536), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 60: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (1, -0, 0), (1, -0, 0), (1, -0, 0), (1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 61: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (1, -0, 0), (1, -0, 0), (1, -0, 0), (1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 62: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0.0020612672, -0, 0.99999785), (0.0020612672, -0, 0.99999785), (0.0020612672, -0, 0.99999785), (0.0020612672, -0, 0.99999785), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (1, -0, 0), (1, -0, 0), (1, -0, 0), (1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 63: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0.008009274, -0, 0.99996793), (0.008009274, -0, 0.99996793), (0.008009274, -0, 0.99996793), (0.008009274, -0, 0.99996793), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (1, -0, 0), (1, -0, 0), (1, -0, 0), (1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 64: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0.017488666, -0, 0.99984705), (0.017488666, -0, 0.99984705), (0.017488666, -0, 0.99984705), (0.017488666, -0, 0.99984705), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (1, -0, 0), (1, -0, 0), (1, -0, 0), (1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 65: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0.03013967, -0, 0.9995457), (0.03013967, -0, 0.9995457), (0.03013967, -0, 0.9995457), (0.03013967, -0, 0.9995457), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (1, -0, 0), (1, -0, 0), (1, -0, 0), (1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 66: [(0, -1, 0), (0, -1, 0), (0, -0.99999994, 0), (0, -0.99999994, 0), (0.045594815, -0, 0.99896), (0.045594815, -0, 0.99896), (0.045594815, -0, 0.99896), (0.045594815, -0, 0.99896), (0, 0.99999994, 0), (0, 0.99999994, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (1, -0, 0), (1, -0, 0), (1, -0, 0), (1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 67: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0.06347647, -0, 0.99798334), (0.06347647, -0, 0.99798334), (0.06347647, -0, 0.99798334), (0.06347647, -0, 0.99798334), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (1, -0, 0), (1, -0, 0), (1, -0, 0), (1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 68: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0.08339579, -0, 0.99651647), (0.08339579, -0, 0.99651647), (0.08339579, -0, 0.99651647), (0.08339579, -0, 0.99651647), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (1, -0, 0), (1, -0, 0), (1, -0, 0), (1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 69: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0.10495388, -0, 0.99447715), (0.10495388, -0, 0.99447715), (0.10495388, -0, 0.99447715), (0.10495388, -0, 0.99447715), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (1, -0, 0), (1, -0, 0), (1, -0, 0), (1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 70: [(0, -0.99999994, 0), (0, -0.99999994, 0), (0, -0.99999994, 0), (0, -1, 0), (0.1277443, -0, 0.9918071), (0.1277443, -0, 0.9918071), (0.1277443, -0, 0.9918071), (0.1277443, -0, 0.9918071), (0, 1, 0), (0, 0.99999994, 0), (0, 0.99999994, 0), (0, 0.99999994, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (1, -0, 0), (1, -0, 0), (1, -0, 0), (1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 71: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0.1513584, -0, 0.988479), (0.1513584, -0, 0.988479), (0.1513584, -0, 0.988479), (0.1513584, -0, 0.988479), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (1, -0, 0), (1, -0, 0), (1, -0, 0), (1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 72: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0.17539054, -0, 0.984499), (0.17539054, -0, 0.984499), (0.17539054, -0, 0.984499), (0.17539054, -0, 0.984499), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (1, -0, 0), (1, -0, 0), (1, -0, 0), (1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 73: [(0, -0.99999994, 0), (0, -0.99999994, 0), (0, -1, 0), (0, -1, 0), (0.19944583, -0, 0.9799088), (0.19944583, -0, 0.9799088), (0.19944583, -0, 0.9799088), (0.19944583, -0, 0.9799088), (0, 1, 0), (0, 1, 0), (0, 0.99999994, 0), (0, 0.99999994, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (1, -0, 0), (1, -0, 0), (1, -0, 0), (1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 74: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0.22314593, -0, 0.97478515), (0.22314593, -0, 0.97478515), (0.22314593, -0, 0.97478515), (0.22314593, -0, 0.97478515), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (1, -0, 0), (1, -0, 0), (1, -0, 0), (1, -0, 0), (-0.99999994, -0, 0), (-0.99999994, -0, 0), (-0.99999994, -0, 0), (-0.99999994, -0, 0)], 75: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0.24613518, -0, 0.96923554), (0.24613518, -0, 0.96923554), (0.24613518, -0, 0.96923554), (0.24613518, -0, 0.96923554), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (1, -0, 0), (1, -0, 0), (1, -0, 0), (1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 76: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0.2680847, -0, 0.9633953), (0.2680847, -0, 0.9633953), (0.2680847, -0, 0.9633953), (0.2680847, -0, 0.9633953), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (1, -0, 0), (1, -0, 0), (1, -0, 0), (1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 77: [(0, -0.99999994, 0), (0, -0.99999994, 0), (0, -1, 0), (0, -1, 0), (0.2886946, -0, 0.95742124), (0.2886946, -0, 0.95742124), (0.2886946, -0, 0.95742124), (0.2886946, -0, 0.95742124), (0, 1, 0), (0, 1, 0), (0, 0.99999994, 0), (0, 0.99999994, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (1, -0, 0), (1, -0, 0), (1, -0, 0), (1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 78: [(0, -1, 0), (0, -1, 0), (0, -0.99999994, 0), (0, -1, 0), (0.30769414, -0, 0.9514853), (0.30769414, -0, 0.9514853), (0.30769414, -0, 0.9514853), (0.30769414, -0, 0.9514853), (0, 1, 0), (0, 0.99999994, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (1, -0, 0), (1, -0, 0), (1, -0, 0), (1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 79: [(0, -0.99999994, 0), (0, -0.99999994, 0), (0, -1, 0), (0, -1, 0), (0.32483912, -0, 0.94576925), (0.32483912, -0, 0.94576925), (0.32483912, -0, 0.94576925), (0.32483912, -0, 0.94576925), (0, 1, 0), (0, 1, 0), (0, 0.99999994, 0), (0, 0.99999994, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (1, -0, 0), (1, -0, 0), (1, -0, 0), (1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 80: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0.3399081, -0, 0.94045866), (0.3399081, -0, 0.94045866), (0.3399081, -0, 0.94045866), (0.3399081, -0, 0.94045866), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (1, -0, 0), (1, -0, 0), (1, -0, 0), (1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 81: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0.35269552, -0, 0.93573815), (0.35269552, -0, 0.93573815), (0.35269552, -0, 0.93573815), (0.35269552, -0, 0.93573815), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (1, -0, 0), (1, -0, 0), (1, -0, 0), (1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 82: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0.36300477, -0, 0.93178725), (0.36300477, -0, 0.93178725), (0.36300477, -0, 0.93178725), (0.36300477, -0, 0.93178725), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (1, -0, 0), (1, -0, 0), (1, -0, 0), (1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 83: [(0, -0.99999994, 0), (0, -0.99999994, 0), (0, -1, 0), (0, -1, 0), (0.37063855, -0, 0.92877716), (0.37063855, -0, 0.92877716), (0.37063855, -0, 0.92877716), (0.37063855, -0, 0.92877716), (0, 1, 0), (0, 1, 0), (0, 0.99999994, 0), (0, 0.99999994, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (1, -0, 0), (1, -0, 0), (1, -0, 0), (1, -0, 0), (-0.99999994, -0, 0), (-0.99999994, -0, 0), (-0.99999994, -0, 0), (-0.99999994, -0, 0)], 84: [(0, -1, 0), (0, -1, 0), (0, -0.99999994, 0), (0, -1, 0), (0.37538952, -0, 0.9268672), (0.37538952, -0, 0.9268672), (0.37538952, -0, 0.9268672), (0.37538952, -0, 0.9268672), (0, 1, 0), (0, 0.99999994, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (1, -0, 0), (1, -0, 0), (1, -0, 0), (1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 85: [(0, -1, 0), (0, -1, 0), (0, -0.99999994, 0), (0, -1, 0), (0.37702903, -0, 0.9262014), (0.37702903, -0, 0.9262014), (0.37702903, -0, 0.9262014), (0.37702903, -0, 0.9262014), (0, 1, 0), (0, 0.99999994, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (1, -0, 0), (1, -0, 0), (1, -0, 0), (1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 94: [(0, -1, 0), (0, -1, 0), (0, -0.99999994, 0), (0, -1, 0), (0.37702903, -0, 0.9262014), (0.37702903, -0, 0.9262014), (0.37702903, -0, 0.9262014), (0.37702903, -0, 0.9262014), (0, 1, 0), (0, 0.99999994, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (1, -0, 0), (1, -0, 0), (1, -0, 0), (1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0), (-1, -0, 0)], 95: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0.37584618, -0, 0.9266822), (0.37584618, -0, 0.9266822), (0.37584618, -0, 0.9266822), (0.37584618, -0, 0.9266822), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.99999994, -0, -0.00039573648), (0.99999994, -0, -0.00039573648), (0.99999994, -0, -0.00039573648), (0.99999994, -0, -0.00039573648), (-0.99999964, -0, 0.0008126359), (-0.99999964, -0, 0.0008126359), (-0.99999964, -0, 0.0008126359), (-0.99999964, -0, 0.0008126359)], 96: [(0, -1, 0), (0, -0.99999994, 0), (0, -1, 0), (0, -1, 0), (0.37241843, -0, 0.92806494), (0.37241843, -0, 0.92806494), (0.37241843, -0, 0.92806494), (0.37241843, -0, 0.92806494), (0, 1, 0), (0, 0.99999994, 0), (0, 0.99999994, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.99999887, -0, -0.0015306005), (0.99999887, -0, -0.0015306005), (0.99999887, -0, -0.0015306005), (0.99999887, -0, -0.0015306005), (-0.999995, -0, 0.0031576322), (-0.999995, -0, 0.0031576322), (-0.999995, -0, 0.0031576322), (-0.999995, -0, 0.0031576322)], 97: [(0, -1, 0), (0, -0.99999994, 0), (0, -1, 0), (0, -1, 0), (0.3669035, -0, 0.930259), (0.3669035, -0, 0.930259), (0.3669035, -0, 0.930259), (0.3669035, -0, 0.930259), (0, 1, 0), (0, 1, 0), (0, 0.99999994, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.9999945, -0, -0.0033202798), (0.9999945, -0, -0.0033202798), (0.9999945, -0, -0.0033202798), (0.9999945, -0, -0.0033202798), (-0.9999763, -0, 0.0069001494), (-0.9999763, -0, 0.0069001494), (-0.9999763, -0, 0.0069001494), (-0.9999763, -0, 0.0069001494)], 98: [(0, -1, 0), (0, -0.99999994, 0), (0, -0.99999994, 0), (0, -1, 0), (0.35943586, -0, 0.9331698), (0.35943586, -0, 0.9331698), (0.35943586, -0, 0.9331698), (0.35943586, -0, 0.9331698), (0, 1, 0), (0, 1, 0), (0, 0.99999994, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.99998385, -0, -0.005675642), (0.99998385, -0, -0.005675642), (0.99998385, -0, -0.005675642), (0.99998385, -0, -0.005675642), (-0.999929, -0, 0.011909814), (-0.999929, -0, 0.011909814), (-0.999929, -0, 0.011909814), (-0.999929, -0, 0.011909814)], 99: [(0, -0.99999994, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0.35013548, -0, 0.93669903), (0.35013548, -0, 0.93669903), (0.35013548, -0, 0.93669903), (0.35013548, -0, 0.93669903), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 0.99999994, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.9999638, -0, -0.008505129), (0.9999638, -0, -0.008505129), (0.9999638, -0, -0.008505129), (0.9999638, -0, -0.008505129), (-0.9998369, -0, 0.018058227), (-0.9998369, -0, 0.018058227), (-0.9998369, -0, 0.018058227), (-0.9998369, -0, 0.018058227)], 100: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0.33911625, -0, 0.9407444), (0.33911625, -0, 0.9407444), (0.33911625, -0, 0.9407444), (0.33911625, -0, 0.9407444), (0, 1, 0), (0, 1, 0), (0, 0.99999994, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.99993134, -0, -0.011718004), (0.99993134, -0, -0.011718004), (0.99993134, -0, -0.011718004), (0.99993134, -0, -0.011718004), (-0.9996819, -0, 0.025217189), (-0.9996819, -0, 0.025217189), (-0.9996819, -0, 0.025217189), (-0.9996819, -0, 0.025217189)], 101: [(0, -1, 0), (0, -1, 0), (0, -0.99999994, 0), (0, -1, 0), (0.32649451, -0, 0.9451991), (0.32649451, -0, 0.9451991), (0.32649451, -0, 0.9451991), (0.32649451, -0, 0.9451991), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.99988407, -0, -0.015225803), (0.99988407, -0, -0.015225803), (0.99988407, -0, -0.015225803), (0.99988407, -0, -0.015225803), (-0.99944687, -0, 0.03325691), (-0.99944687, -0, 0.03325691), (-0.99944687, -0, 0.03325691), (-0.99944687, -0, 0.03325691)], 102: [(-6.358045e-8, -1, 0), (-6.358046e-8, -1, 0), (-6.358046e-8, -1, 0), (-6.358046e-8, -1, 0), (0.31239578, -0, 0.94995207), (0.31239578, -0, 0.94995207), (0.31239578, -0, 0.94995207), (0.31239578, -0, 0.94995207), (-6.358046e-8, 1, 0), (-6.358045e-8, 1, 0), (-6.358045e-8, 1, 0), (-6.358046e-8, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.9998206, -0, -0.018944528), (0.9998206, -0, -0.018944528), (0.9998206, -0, -0.018944528), (0.9998206, -0, -0.018944528), (-0.9991157, -0, 0.042044695), (-0.9991157, -0, 0.042044695), (-0.9991157, -0, 0.042044695), (-0.9991157, -0, 0.042044695)], 103: [(0, -0.99999994, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0.2969623, -0, 0.9548892), (0.2969623, -0, 0.9548892), (0.2969623, -0, 0.9548892), (0.2969623, -0, 0.9548892), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 0.99999994, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.9997402, -0, -0.022795137), (0.9997402, -0, -0.022795137), (0.9997402, -0, -0.022795137), (0.9997402, -0, -0.022795137), (-0.998676, -0, 0.051443618), (-0.998676, -0, 0.051443618), (-0.998676, -0, 0.051443618), (-0.998676, -0, 0.051443618)], 104: [(-6.373368e-8, -1, 0), (-6.373369e-8, -1, 0), (-6.373368e-8, -0.99999994, 0), (-6.373369e-8, -1, 0), (0.28035918, -0, 0.9598952), (0.28035918, -0, 0.9598952), (0.28035918, -0, 0.9598952), (0.28035918, -0, 0.9598952), (-6.373369e-8, 1, 0), (-6.373369e-8, 1, 0), (-6.373369e-8, 0.99999994, 0), (-6.373369e-8, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.9996434, -0, -0.026704898), (0.9996434, -0, -0.026704898), (0.9996434, -0, -0.026704898), (0.9996434, -0, -0.026704898), (-0.99811864, -0, 0.061311737), (-0.99811864, -0, 0.061311737), (-0.99811864, -0, 0.061311737), (-0.99811864, -0, 0.061311737)], 105: [(0, -1, 0), (0, -1, 0), (0, -0.99999994, 0), (0, -1, 0), (0.262781, -0, 0.9648555), (0.262781, -0, 0.9648555), (0.262781, -0, 0.9648555), (0.262781, -0, 0.9648555), (0, 1, 0), (0, 0.99999994, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.9995315, -0, -0.030606953), (0.9995315, -0, -0.030606953), (0.9995315, -0, -0.030606953), (0.9995315, -0, -0.030606953), (-0.9974405, -0, 0.07150173), (-0.9974405, -0, 0.07150173), (-0.9974405, -0, 0.07150173), (-0.9974405, -0, 0.07150173)], 106: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0.24370794, -0, 0.96984863), (0.24370794, -0, 0.96984863), (0.24370794, -0, 0.96984863), (0.24370794, -0, 0.96984863), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.9998381, -0, -0.017988916), (0.9998381, -0, -0.017988916), (0.9998381, -0, -0.017988916), (0.9998381, -0, -0.017988916), (-0.9966439, -0, 0.08186033), (-0.9966439, -0, 0.08186033), (-0.9966439, -0, 0.08186033), (-0.9966439, -0, 0.08186033)], 107: [(6.56839e-8, -1, 0), (6.56839e-8, -0.99999994, 0), (6.56839e-8, -1, 0), (6.56839e-8, -0.99999994, 0), (0.22207372, -0, 0.9750299), (0.22207372, -0, 0.9750299), (0.22207372, -0, 0.9750299), (0.22207372, -0, 0.9750299), (6.56839e-8, 1, 0), (6.56839e-8, 1, 0), (6.56839e-8, 0.99999994, 0), (6.56839e-8, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.9999501, -0, 0.009989055), (0.9999501, -0, 0.009989055), (0.9999501, -0, 0.009989055), (0.9999501, -0, 0.009989055), (-0.9957379, -0, 0.09222867), (-0.9957379, -0, 0.09222867), (-0.9957379, -0, 0.09222867), (-0.9957379, -0, 0.09222867)], 108: [(0, -1, 0), (0, -0.99999994, 0), (0, -1, 0), (0, -1, 0), (0.19827148, -0, 0.9801472), (0.19827148, -0, 0.9801472), (0.19827148, -0, 0.9801472), (0.19827148, -0, 0.9801472), (0, 1, 0), (0, 1, 0), (0, 0.99999994, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.99934506, -0, 0.036184873), (0.99934506, -0, 0.036184873), (0.99934506, -0, 0.036184873), (0.99934506, -0, 0.036184873), (-0.994739, -0, 0.102442496), (-0.994739, -0, 0.102442496), (-0.994739, -0, 0.102442496), (-0.994739, -0, 0.102442496)], 109: [(6.8147294e-8, -0.99999994, 0), (6.8147294e-8, -0.99999994, 0), (6.814731e-8, -1, 0), (6.81473e-8, -1, 0), (0.17247687, -0, 0.98501354), (0.17247687, -0, 0.98501354), (0.17247687, -0, 0.98501354), (0.17247687, -0, 0.98501354), (6.81473e-8, 1, 0), (6.814731e-8, 1, 0), (6.8147294e-8, 0.99999994, 0), (6.8147294e-8, 0.99999994, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.9981796, -0, 0.06031156), (0.9981796, -0, 0.06031156), (0.9981796, -0, 0.06031156), (0.9981796, -0, 0.06031156), (-0.9936707, -0, 0.11233261), (-0.9936707, -0, 0.11233261), (-0.9936707, -0, 0.11233261), (-0.9936707, -0, 0.11233261)], 110: [(0, -0.99999994, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0.14506319, -0, 0.98942244), (0.14506319, -0, 0.98942244), (0.14506319, -0, 0.98942244), (0.14506319, -0, 0.98942244), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 0.99999994, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.9966203, -0, 0.08214632), (0.9966203, -0, 0.08214632), (0.9966203, -0, 0.08214632), (0.9966203, -0, 0.08214632), (-0.9925637, -0, 0.12172583), (-0.9925637, -0, 0.12172583), (-0.9925637, -0, 0.12172583), (-0.9925637, -0, 0.12172583)], 111: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0.116668314, -0, 0.9931709), (0.116668314, -0, 0.9931709), (0.116668314, -0, 0.9931709), (0.116668314, -0, 0.9931709), (0, 1, 0), (0, 0.99999994, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.9948339, -0, 0.10151604), (0.9948339, -0, 0.10151604), (0.9948339, -0, 0.10151604), (0.9948339, -0, 0.10151604), (-0.99145544, -0, 0.13044575), (-0.99145544, -0, 0.13044575), (-0.99145544, -0, 0.13044575), (-0.99145544, -0, 0.13044575)], 112: [(0, -0.99999994, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0.08825047, -0, 0.99609834), (0.08825047, -0, 0.99609834), (0.08825047, -0, 0.99609834), (0.08825047, -0, 0.99609834), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.99298, -0, 0.11828208), (0.99298, -0, 0.11828208), (0.99298, -0, 0.11828208), (0.99298, -0, 0.11828208), (-0.9903885, -0, 0.13831376), (-0.9903885, -0, 0.13831376), (-0.9903885, -0, 0.13831376), (-0.9903885, -0, 0.13831376)], 113: [(0, -1, 0), (0, -0.99999994, 0), (0, -1, 0), (0, -1, 0), (0.061116003, -0, 0.9981306), (0.061116003, -0, 0.9981306), (0.061116003, -0, 0.9981306), (0.061116003, -0, 0.9981306), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.9912064, -0, 0.13232422), (0.9912064, -0, 0.13232422), (0.9912064, -0, 0.13232422), (0.9912064, -0, 0.13232422), (-0.9894097, -0, 0.14515005), (-0.9894097, -0, 0.14515005), (-0.9894097, -0, 0.14515005), (-0.9894097, -0, 0.14515005)], 114: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0.036891885, -0, 0.99931926), (0.036891885, -0, 0.99931926), (0.036891885, -0, 0.99931926), (0.036891885, -0, 0.99931926), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.98964673, -0, 0.14352491), (0.98964673, -0, 0.14352491), (0.98964673, -0, 0.14352491), (0.98964673, -0, 0.14352491), (-0.9885681, -0, 0.15077487), (-0.9885681, -0, 0.15077487), (-0.9885681, -0, 0.15077487), (-0.9885681, -0, 0.15077487)], 115: [(-7.397985e-8, -1, 0), (-7.397985e-8, -1, 0), (-7.397985e-8, -1, 0), (-7.397985e-8, -1, 0), (0.017420478, -0, 0.99984825), (0.017420478, -0, 0.99984825), (0.017420478, -0, 0.99984825), (0.017420478, -0, 0.99984825), (-7.397984e-8, 1, 0), (-7.397985e-8, 1, 0), (-7.397985e-8, 1, 0), (-7.397985e-8, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.98841846, -0, 0.15175317), (0.98841846, -0, 0.15175317), (0.98841846, -0, 0.15175317), (0.98841846, -0, 0.15175317), (-0.987913, -0, 0.15500937), (-0.987913, -0, 0.15500937), (-0.987913, -0, 0.15500937), (-0.987913, -0, 0.15500937)], 116: [(-7.4375485e-8, -1, 0), (-7.4375485e-8, -1, 0), (-7.437548e-8, -1, 0), (-7.4375485e-8, -0.99999994, 0), (0.004573933, -0, 0.99998957), (0.004573933, -0, 0.99998957), (0.004573933, -0, 0.99998957), (0.004573933, -0, 0.99998957), (-7.437549e-8, 0.99999994, 0), (-7.4375485e-8, 1, 0), (-7.437549e-8, 1, 0), (-7.43755e-8, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.9876227, -0, 0.15684865), (0.9876227, -0, 0.15684865), (0.9876227, -0, 0.15684865), (0.9876227, -0, 0.15684865), (-0.9874908, -0, 0.1576768), (-0.9874908, -0, 0.1576768), (-0.9874908, -0, 0.1576768), (-0.9874908, -0, 0.1576768)], 117: [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.98734236, -0, 0.15860376), (0.98734236, -0, 0.15860376), (0.98734236, -0, 0.15860376), (0.98734236, -0, 0.15860376), (-0.98734236, -0, 0.15860376), (-0.98734236, -0, 0.15860376), (-0.98734236, -0, 0.15860376), (-0.98734236, -0, 0.15860376)], } point3f[] points.timeSamples = { 0: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.5, -2.5, 4.9505186), (-2.5, 2.5, 4.979763), (2.5, 2.5, 4.9505186), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 1: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.5, -2.5, 4.9505186), (-2.5, 2.5, 4.979763), (2.5, 2.5, 4.9505186), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 2: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.5, -2.5, 4.979763), (-2.5, 2.5, 4.979763), (2.5, 2.5, 4.979763), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 3: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.5494628, -2.5, 5.039878), (-2.5, 2.5, 4.979763), (2.5494628, 2.5, 5.039878), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 4: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.6279688, -2.5, 5.1352906), (-2.5, 2.5, 4.979763), (2.6279688, 2.5, 5.1352906), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 5: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.729145, -2.5, 5.2582555), (-2.5, 2.5, 4.979763), (2.729145, 2.5, 5.2582555), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 6: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.8479536, -2.5, 5.40265), (-2.5, 2.5, 4.979763), (2.8479536, 2.5, 5.40265), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 7: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.9793565, -2.5, 5.562351), (-2.5, 2.5, 4.979763), (2.9793565, 2.5, 5.562351), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 8: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (3.1183162, -2.5, 5.731237), (-2.5, 2.5, 4.979763), (3.1183162, 2.5, 5.731237), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 9: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (3.1377037, -2.5, 5.938967), (-2.5, 2.5, 4.979763), (3.1377037, 2.5, 5.938967), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 10: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.9987438, -2.5, 6.1893067), (-2.5, 2.5, 4.979763), (2.9987438, 2.5, 6.1893067), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 11: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.8673408, -2.5, 6.426033), (-2.5, 2.5, 4.979763), (2.8673408, 2.5, 6.426033), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 12: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.7485323, -2.5, 6.64007), (-2.5, 2.5, 4.979763), (2.7485323, 2.5, 6.64007), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 13: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.647356, -2.5, 6.822342), (-2.5, 2.5, 4.979763), (2.647356, 2.5, 6.822342), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 14: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.5688503, -2.5, 6.9637723), (-2.5, 2.5, 4.979763), (2.5688503, 2.5, 6.9637723), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 15: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.518052, -2.5, 7.055287), (-2.5, 2.5, 4.979763), (2.518052, 2.5, 7.055287), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 16: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.5, -2.5, 7.087808), (-2.5, 2.5, 4.979763), (2.5, 2.5, 7.087808), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 17: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.5177717, -2.5, 7.055792), (-2.5, 2.5, 4.979763), (2.5177717, 2.5, 7.055792), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 18: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.566865, -2.5, 6.967349), (-2.5, 2.5, 4.979763), (2.566865, 2.5, 6.967349), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 19: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.6409466, -2.5, 6.8338885), (-2.5, 2.5, 4.979763), (2.6409466, 2.5, 6.8338885), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 20: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.733684, -2.5, 6.6668196), (-2.5, 2.5, 4.979763), (2.733684, 2.5, 6.6668196), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 21: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.8387442, -2.5, 6.477551), (-2.5, 2.5, 4.979763), (2.8387442, 2.5, 6.477551), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 22: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.9497938, -2.5, 6.277492), (-2.5, 2.5, 4.979763), (2.9497938, 2.5, 6.277492), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 23: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (3.0605001, -2.5, 6.078051), (-2.5, 2.5, 4.979763), (3.0605001, 2.5, 6.078051), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 24: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (3.1645305, -2.5, 5.890638), (-2.5, 2.5, 4.979763), (3.1645305, 2.5, 5.890638), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 25: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (3.141947, -2.5, 5.7599564), (-2.5, 2.5, 4.979763), (3.141947, 2.5, 5.7599564), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 26: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (3.070268, -2.5, 5.672841), (-2.5, 2.5, 4.979763), (3.070268, 2.5, 5.672841), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 27: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (3.0242639, -2.5, 5.61693), (-2.5, 2.5, 4.979763), (3.0242639, 2.5, 5.61693), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 28: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.9936745, -2.5, 5.579753), (-2.5, 2.5, 4.979763), (2.9936745, 2.5, 5.579753), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 29: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.9640164, -2.5, 5.543708), (-2.5, 2.5, 4.979763), (2.9640164, 2.5, 5.543708), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 30: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.9352884, -2.5, 5.508793), (-2.5, 2.5, 4.979763), (2.9352884, 2.5, 5.508793), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 31: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.9074898, -2.5, 5.475008), (-2.5, 2.5, 4.979763), (2.9074898, 2.5, 5.475008), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 32: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.880619, -2.5, 5.4423504), (-2.5, 2.5, 4.979763), (2.880619, 2.5, 5.4423504), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 33: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.8546753, -2.5, 5.4108195), (-2.5, 2.5, 4.979763), (2.8546753, 2.5, 5.4108195), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 34: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.8296573, -2.5, 5.3804135), (-2.5, 2.5, 4.979763), (2.8296573, 2.5, 5.3804135), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 35: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.805564, -2.5, 5.3511314), (-2.5, 2.5, 4.979763), (2.805564, 2.5, 5.3511314), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 36: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.782394, -2.5, 5.322972), (-2.5, 2.5, 4.979763), (2.782394, 2.5, 5.322972), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 37: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.7601464, -2.5, 5.2959332), (-2.5, 2.5, 4.979763), (2.7601464, 2.5, 5.2959332), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 38: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.73882, -2.5, 5.2700143), (-2.5, 2.5, 4.979763), (2.73882, 2.5, 5.2700143), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 39: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.7184138, -2.5, 5.2452135), (-2.5, 2.5, 4.979763), (2.7184138, 2.5, 5.2452135), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 40: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.6989267, -2.5, 5.2215295), (-2.5, 2.5, 4.979763), (2.6989267, 2.5, 5.2215295), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 41: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.6803575, -2.5, 5.1989613), (-2.5, 2.5, 4.979763), (2.6803575, 2.5, 5.1989613), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 42: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.6627052, -2.5, 5.1775074), (-2.5, 2.5, 4.979763), (2.6627052, 2.5, 5.1775074), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 43: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.6459682, -2.5, 5.1571665), (-2.5, 2.5, 4.979763), (2.6459682, 2.5, 5.1571665), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 44: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.630146, -2.5, 5.1379366), (-2.5, 2.5, 4.979763), (2.630146, 2.5, 5.1379366), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 45: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.615237, -2.5, 5.119817), (-2.5, 2.5, 4.979763), (2.615237, 2.5, 5.119817), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 46: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.6012404, -2.5, 5.102806), (-2.5, 2.5, 4.979763), (2.6012404, 2.5, 5.102806), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 47: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.588155, -2.5, 5.0869026), (-2.5, 2.5, 4.979763), (2.588155, 2.5, 5.0869026), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 48: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.5759795, -2.5, 5.072105), (-2.5, 2.5, 4.979763), (2.5759795, 2.5, 5.072105), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 49: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.564713, -2.5, 5.058412), (-2.5, 2.5, 4.979763), (2.564713, 2.5, 5.058412), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 50: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.5543542, -2.5, 5.0458226), (-2.5, 2.5, 4.979763), (2.5543542, 2.5, 5.0458226), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 51: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.544902, -2.5, 5.034335), (-2.5, 2.5, 4.979763), (2.544902, 2.5, 5.034335), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 52: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.5363555, -2.5, 5.0239477), (-2.5, 2.5, 4.979763), (2.5363555, 2.5, 5.0239477), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 53: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.5287135, -2.5, 5.01466), (-2.5, 2.5, 4.979763), (2.5287135, 2.5, 5.01466), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 54: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.5219746, -2.5, 5.0064697), (-2.5, 2.5, 4.979763), (2.5219746, 2.5, 5.0064697), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 55: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.5161378, -2.5, 4.9993763), (-2.5, 2.5, 4.979763), (2.5161378, 2.5, 4.9993763), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 56: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.511202, -2.5, 4.9933777), (-2.5, 2.5, 4.979763), (2.511202, 2.5, 4.9933777), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 57: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.5071664, -2.5, 4.988473), (-2.5, 2.5, 4.979763), (2.5071664, 2.5, 4.988473), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 58: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.5040295, -2.5, 4.98466), (-2.5, 2.5, 4.979763), (2.5040295, 2.5, 4.98466), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 59: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.50179, -2.5, 4.981939), (-2.5, 2.5, 4.979763), (2.50179, 2.5, 4.981939), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 60: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.5, -2.5, 4.979763), (-2.5, 2.5, 4.979763), (2.5, 2.5, 4.979763), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 61: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.979763), (2.5, -2.5, 4.979763), (-2.5, 2.5, 4.979763), (2.5, 2.5, 4.979763), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 62: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 4.9900694), (2.5, -2.5, 4.979763), (-2.5, 2.5, 4.9900694), (2.5, 2.5, 4.979763), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 63: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 5.0198107), (2.5, -2.5, 4.979763), (-2.5, 2.5, 5.0198107), (2.5, 2.5, 4.979763), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 64: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 5.0672197), (2.5, -2.5, 4.979763), (-2.5, 2.5, 5.0672197), (2.5, 2.5, 4.979763), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 65: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 5.13053), (2.5, -2.5, 4.979763), (-2.5, 2.5, 5.13053), (2.5, 2.5, 4.979763), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 66: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 5.2079744), (2.5, -2.5, 4.979763), (-2.5, 2.5, 5.2079744), (2.5, 2.5, 4.979763), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 67: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 5.2977867), (2.5, -2.5, 4.979763), (-2.5, 2.5, 5.2977867), (2.5, 2.5, 4.979763), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 68: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 5.3981996), (2.5, -2.5, 4.979763), (-2.5, 2.5, 5.3981996), (2.5, 2.5, 4.979763), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 69: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 5.507447), (2.5, -2.5, 4.979763), (-2.5, 2.5, 5.507447), (2.5, 2.5, 4.979763), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 70: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 5.6237607), (2.5, -2.5, 4.979763), (-2.5, 2.5, 5.6237607), (2.5, 2.5, 4.979763), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 71: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 5.7453756), (2.5, -2.5, 4.979763), (-2.5, 2.5, 5.7453756), (2.5, 2.5, 4.979763), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 72: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 5.8705235), (2.5, -2.5, 4.979763), (-2.5, 2.5, 5.8705235), (2.5, 2.5, 4.979763), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 73: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 5.9974384), (2.5, -2.5, 4.979763), (-2.5, 2.5, 5.9974384), (2.5, 2.5, 4.979763), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 74: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 6.1243534), (2.5, -2.5, 4.979763), (-2.5, 2.5, 6.1243534), (2.5, 2.5, 4.979763), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 75: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 6.2495017), (2.5, -2.5, 4.979763), (-2.5, 2.5, 6.2495017), (2.5, 2.5, 4.979763), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 76: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 6.3711166), (2.5, -2.5, 4.979763), (-2.5, 2.5, 6.3711166), (2.5, 2.5, 4.979763), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 77: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 6.4874306), (2.5, -2.5, 4.979763), (-2.5, 2.5, 6.4874306), (2.5, 2.5, 4.979763), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 78: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 6.596678), (2.5, -2.5, 4.979763), (-2.5, 2.5, 6.596678), (2.5, 2.5, 4.979763), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 79: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 6.6970906), (2.5, -2.5, 4.979763), (-2.5, 2.5, 6.6970906), (2.5, 2.5, 4.979763), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 80: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 6.786903), (2.5, -2.5, 4.979763), (-2.5, 2.5, 6.786903), (2.5, 2.5, 4.979763), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 81: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 6.8643475), (2.5, -2.5, 4.979763), (-2.5, 2.5, 6.8643475), (2.5, 2.5, 4.979763), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 82: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 6.927658), (2.5, -2.5, 4.979763), (-2.5, 2.5, 6.927658), (2.5, 2.5, 4.979763), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 83: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 6.975067), (2.5, -2.5, 4.979763), (-2.5, 2.5, 6.975067), (2.5, 2.5, 4.979763), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 84: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 7.004808), (2.5, -2.5, 4.979763), (-2.5, 2.5, 7.004808), (2.5, 2.5, 4.979763), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 85: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 7.0151143), (2.5, -2.5, 4.979763), (-2.5, 2.5, 7.0151143), (2.5, 2.5, 4.979763), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 94: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.5, -2.5, 7.0151143), (2.5, -2.5, 4.979763), (-2.5, 2.5, 7.0151143), (2.5, 2.5, 4.979763), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 95: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.4942853, -2.5, 7.0119476), (2.501981, -2.5, 4.985549), (-2.4942853, 2.5, 7.0119476), (2.501981, 2.5, 4.985549), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 96: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.4778237, -2.5, 7.0028257), (2.5076873, -2.5, 5.002216), (-2.4778237, 2.5, 7.0028257), (2.5076873, 2.5, 5.002216), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 97: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.4516387, -2.5, 6.9883156), (2.5167642, -2.5, 5.0287275), (-2.4516387, 2.5, 6.9883156), (2.5167642, 2.5, 5.0287275), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 98: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.4167538, -2.5, 6.9689846), (2.528857, -2.5, 5.0640473), (-2.4167538, 2.5, 6.9689846), (2.528857, 2.5, 5.0640473), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 99: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.3741925, -2.5, 6.9454), (2.5436106, -2.5, 5.107139), (-2.3741925, 2.5, 6.9454), (2.5436106, 2.5, 5.107139), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 100: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.3249784, -2.5, 6.918129), (2.5606706, -2.5, 5.156967), (-2.3249784, 2.5, 6.918129), (2.5606706, 2.5, 5.156967), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 101: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.270135, -2.5, 6.887738), (2.5796819, -2.5, 5.212495), (-2.270135, 2.5, 6.887738), (2.5796819, 2.5, 5.212495), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 102: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.2106855, -2.5, 6.8547955), (2.6002898, -2.5, 5.2726855), (-2.2106855, 2.5, 6.8547955), (2.6002898, 2.5, 5.2726855), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 103: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.1476538, -2.5, 6.8198676), (2.6221395, -2.5, 5.336503), (-2.1476538, 2.5, 6.8198676), (2.6221395, 2.5, 5.336503), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 104: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.0820634, -2.5, 6.7835217), (2.6448762, -2.5, 5.4029117), (-2.0820634, 2.5, 6.7835217), (2.6448762, 2.5, 5.4029117), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 105: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-2.0149376, -2.5, 6.746325), (2.668145, -2.5, 5.470875), (-2.0149376, 2.5, 6.746325), (2.668145, 2.5, 5.470875), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 106: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-1.9473002, -2.5, 6.7088447), (2.6005075, -2.5, 5.566051), (-1.9473002, 2.5, 6.7088447), (2.6005075, 2.5, 5.566051), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 107: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-1.8801744, -2.5, 6.671648), (2.4429872, -2.5, 5.6870008), (-1.8801744, 2.5, 6.671648), (2.4429872, 2.5, 5.6870008), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 108: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-1.8145839, -2.5, 6.635302), (2.2890697, -2.5, 5.8051844), (-1.8145839, 2.5, 6.635302), (2.2890697, 2.5, 5.8051844), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 109: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-1.7515522, -2.5, 6.600374), (2.1411567, -2.5, 5.918757), (-1.7515522, 2.5, 6.600374), (2.1411567, 2.5, 5.918757), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 110: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-1.6921029, -2.5, 6.5674314), (2.0016499, -2.5, 6.0258756), (-1.6921029, 2.5, 6.5674314), (2.0016499, 2.5, 6.0258756), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 111: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-1.6372592, -2.5, 6.5370407), (1.8729515, -2.5, 6.1246943), (-1.6372592, 2.5, 6.5370407), (1.8729515, 2.5, 6.1246943), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 112: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-1.5880451, -2.5, 6.5097694), (1.7574632, -2.5, 6.2133703), (-1.5880451, 2.5, 6.5097694), (1.7574632, 2.5, 6.2133703), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 113: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-1.5454838, -2.5, 6.486185), (1.657587, -2.5, 6.2900596), (-1.5454838, 2.5, 6.486185), (1.657587, 2.5, 6.2900596), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 114: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-1.5105989, -2.5, 6.466854), (1.5757244, -2.5, 6.3529162), (-1.5105989, 2.5, 6.466854), (1.5757244, 2.5, 6.3529162), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 115: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-1.484414, -2.5, 6.452344), (1.5142776, -2.5, 6.4000974), (-1.484414, 2.5, 6.452344), (1.5142776, 2.5, 6.4000974), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 116: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-1.4679524, -2.5, 6.443222), (1.475648, -2.5, 6.429758), (-1.4679524, 2.5, 6.443222), (1.475648, 2.5, 6.429758), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], 117: [(-2.5, -2.5, -0.020237144), (2.5, -2.5, -0.020237144), (-1.4622377, -2.5, 6.4400554), (1.4622377, -2.5, 6.4400554), (-1.4622377, 2.5, 6.4400554), (1.4622377, 2.5, 6.4400554), (-2.5, 2.5, -0.020237144), (2.5, 2.5, -0.020237144)], } color3f[] primvars:displayColor ( customData = { dictionary Maya = { bool generated = 1 } } ) color3f[] primvars:displayColor.timeSamples = { 0: [(0.4, 0.4, 0.4)], } float2[] primvars:st ( customData = { dictionary Maya = { int UVSetIndex = 0 } } interpolation = "faceVarying" ) float2[] primvars:st.timeSamples = { 0: [(0.375, 0), (0.625, 0), (0.625, 0.25), (0.375, 0.25), (0.625, 0.5), (0.375, 0.5), (0.625, 0.75), (0.375, 0.75), (0.625, 1), (0.375, 1), (0.875, 0), (0.875, 0.25), (0.125, 0), (0.125, 0.25)], } int[] primvars:st:indices.timeSamples = { 0: [0, 1, 2, 3, 3, 2, 4, 5, 5, 4, 6, 7, 7, 6, 8, 9, 1, 10, 11, 2, 12, 0, 3, 13], } bool shadow:enable = 1 uniform token subdivisionScheme = "none" matrix4d xformOp:transform = ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (0, 0, 0, 1) ) float3 xformOp:translate:pivot = (0, 2.4797628, 0) uniform token[] xformOpOrder = ["xformOp:transform"] } def Scope "Looks" { def Material "initialShadingGroup" { token outputs:mdl:surface.connect = </Root/Looks/initialShadingGroup/lambert1.outputs:out> def Shader "lambert1" ( kind = "Material" ) { uniform token info:id = "mdlMaterial" custom asset module = @lambert1.mdl@ custom string name = "lambert1" token outputs:out } } } }
omniverse-code/kit/exts/omni.graph/omni/graph/core/data/anim_deformer/skinning/skelTwoCylinders.usda
#usda 1.0 ( defaultPrim = "Root" endTimeCode = 120 startTimeCode = 1 timeCodesPerSecond = 24 upAxis = "Z" ) def "Root" ( kind = "component" ) { def SkelRoot "group1" { matrix4d xformOp:transform = ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (0, 0, 0, 1) ) uniform token[] xformOpOrder = ["xformOp:transform"] def Mesh "pCylinder1" ( prepend apiSchemas = ["SkelBindingAPI", "ShadowAPI"] ) { uniform bool doubleSided = 1 float3[] extent = [(-2.0000005, -2.0000002, 0), (2, 2.000001, 10)] int[] faceVertexCounts = [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 1, 21, 20, 1, 2, 22, 21, 2, 3, 23, 22, 3, 4, 24, 23, 4, 5, 25, 24, 5, 6, 26, 25, 6, 7, 27, 26, 7, 8, 28, 27, 8, 9, 29, 28, 9, 10, 30, 29, 10, 11, 31, 30, 11, 12, 32, 31, 12, 13, 33, 32, 13, 14, 34, 33, 14, 15, 35, 34, 15, 16, 36, 35, 16, 17, 37, 36, 17, 18, 38, 37, 18, 19, 39, 38, 19, 0, 20, 39, 20, 21, 41, 40, 21, 22, 42, 41, 22, 23, 43, 42, 23, 24, 44, 43, 24, 25, 45, 44, 25, 26, 46, 45, 26, 27, 47, 46, 27, 28, 48, 47, 28, 29, 49, 48, 29, 30, 50, 49, 30, 31, 51, 50, 31, 32, 52, 51, 32, 33, 53, 52, 33, 34, 54, 53, 34, 35, 55, 54, 35, 36, 56, 55, 36, 37, 57, 56, 37, 38, 58, 57, 38, 39, 59, 58, 39, 20, 40, 59, 40, 41, 61, 60, 41, 42, 62, 61, 42, 43, 63, 62, 43, 44, 64, 63, 44, 45, 65, 64, 45, 46, 66, 65, 46, 47, 67, 66, 47, 48, 68, 67, 48, 49, 69, 68, 49, 50, 70, 69, 50, 51, 71, 70, 51, 52, 72, 71, 52, 53, 73, 72, 53, 54, 74, 73, 54, 55, 75, 74, 55, 56, 76, 75, 56, 57, 77, 76, 57, 58, 78, 77, 58, 59, 79, 78, 59, 40, 60, 79, 60, 61, 81, 80, 61, 62, 82, 81, 62, 63, 83, 82, 63, 64, 84, 83, 64, 65, 85, 84, 65, 66, 86, 85, 66, 67, 87, 86, 67, 68, 88, 87, 68, 69, 89, 88, 69, 70, 90, 89, 70, 71, 91, 90, 71, 72, 92, 91, 72, 73, 93, 92, 73, 74, 94, 93, 74, 75, 95, 94, 75, 76, 96, 95, 76, 77, 97, 96, 77, 78, 98, 97, 78, 79, 99, 98, 79, 60, 80, 99, 80, 81, 101, 100, 81, 82, 102, 101, 82, 83, 103, 102, 83, 84, 104, 103, 84, 85, 105, 104, 85, 86, 106, 105, 86, 87, 107, 106, 87, 88, 108, 107, 88, 89, 109, 108, 89, 90, 110, 109, 90, 91, 111, 110, 91, 92, 112, 111, 92, 93, 113, 112, 93, 94, 114, 113, 94, 95, 115, 114, 95, 96, 116, 115, 96, 97, 117, 116, 97, 98, 118, 117, 98, 99, 119, 118, 99, 80, 100, 119, 100, 101, 121, 120, 101, 102, 122, 121, 102, 103, 123, 122, 103, 104, 124, 123, 104, 105, 125, 124, 105, 106, 126, 125, 106, 107, 127, 126, 107, 108, 128, 127, 108, 109, 129, 128, 109, 110, 130, 129, 110, 111, 131, 130, 111, 112, 132, 131, 112, 113, 133, 132, 113, 114, 134, 133, 114, 115, 135, 134, 115, 116, 136, 135, 116, 117, 137, 136, 117, 118, 138, 137, 118, 119, 139, 138, 119, 100, 120, 139, 120, 121, 141, 140, 121, 122, 142, 141, 122, 123, 143, 142, 123, 124, 144, 143, 124, 125, 145, 144, 125, 126, 146, 145, 126, 127, 147, 146, 127, 128, 148, 147, 128, 129, 149, 148, 129, 130, 150, 149, 130, 131, 151, 150, 131, 132, 152, 151, 132, 133, 153, 152, 133, 134, 154, 153, 134, 135, 155, 154, 135, 136, 156, 155, 136, 137, 157, 156, 137, 138, 158, 157, 138, 139, 159, 158, 139, 120, 140, 159, 140, 141, 161, 160, 141, 142, 162, 161, 142, 143, 163, 162, 143, 144, 164, 163, 144, 145, 165, 164, 145, 146, 166, 165, 146, 147, 167, 166, 147, 148, 168, 167, 148, 149, 169, 168, 149, 150, 170, 169, 150, 151, 171, 170, 151, 152, 172, 171, 152, 153, 173, 172, 153, 154, 174, 173, 154, 155, 175, 174, 155, 156, 176, 175, 156, 157, 177, 176, 157, 158, 178, 177, 158, 159, 179, 178, 159, 140, 160, 179, 160, 161, 181, 180, 161, 162, 182, 181, 162, 163, 183, 182, 163, 164, 184, 183, 164, 165, 185, 184, 165, 166, 186, 185, 166, 167, 187, 186, 167, 168, 188, 187, 168, 169, 189, 188, 169, 170, 190, 189, 170, 171, 191, 190, 171, 172, 192, 191, 172, 173, 193, 192, 173, 174, 194, 193, 174, 175, 195, 194, 175, 176, 196, 195, 176, 177, 197, 196, 177, 178, 198, 197, 178, 179, 199, 198, 179, 160, 180, 199, 180, 181, 201, 200, 181, 182, 202, 201, 182, 183, 203, 202, 183, 184, 204, 203, 184, 185, 205, 204, 185, 186, 206, 205, 186, 187, 207, 206, 187, 188, 208, 207, 188, 189, 209, 208, 189, 190, 210, 209, 190, 191, 211, 210, 191, 192, 212, 211, 192, 193, 213, 212, 193, 194, 214, 213, 194, 195, 215, 214, 195, 196, 216, 215, 196, 197, 217, 216, 197, 198, 218, 217, 198, 199, 219, 218, 199, 180, 200, 219, 200, 201, 221, 220, 201, 202, 222, 221, 202, 203, 223, 222, 203, 204, 224, 223, 204, 205, 225, 224, 205, 206, 226, 225, 206, 207, 227, 226, 207, 208, 228, 227, 208, 209, 229, 228, 209, 210, 230, 229, 210, 211, 231, 230, 211, 212, 232, 231, 212, 213, 233, 232, 213, 214, 234, 233, 214, 215, 235, 234, 215, 216, 236, 235, 216, 217, 237, 236, 217, 218, 238, 237, 218, 219, 239, 238, 219, 200, 220, 239, 220, 221, 241, 240, 221, 222, 242, 241, 222, 223, 243, 242, 223, 224, 244, 243, 224, 225, 245, 244, 225, 226, 246, 245, 226, 227, 247, 246, 227, 228, 248, 247, 228, 229, 249, 248, 229, 230, 250, 249, 230, 231, 251, 250, 231, 232, 252, 251, 232, 233, 253, 252, 233, 234, 254, 253, 234, 235, 255, 254, 235, 236, 256, 255, 236, 237, 257, 256, 237, 238, 258, 257, 238, 239, 259, 258, 239, 220, 240, 259, 1, 0, 260, 2, 1, 260, 3, 2, 260, 4, 3, 260, 5, 4, 260, 6, 5, 260, 7, 6, 260, 8, 7, 260, 9, 8, 260, 10, 9, 260, 11, 10, 260, 12, 11, 260, 13, 12, 260, 14, 13, 260, 15, 14, 260, 16, 15, 260, 17, 16, 260, 18, 17, 260, 19, 18, 260, 0, 19, 260, 240, 241, 261, 241, 242, 261, 242, 243, 261, 243, 244, 261, 244, 245, 261, 245, 246, 261, 246, 247, 261, 247, 248, 261, 248, 249, 261, 249, 250, 261, 250, 251, 261, 251, 252, 261, 252, 253, 261, 253, 254, 261, 254, 255, 261, 255, 256, 261, 256, 257, 261, 257, 258, 261, 258, 259, 261, 259, 240, 261] rel material:binding = </Root/Looks/initialShadingGroup> normal3f[] normals = [(0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (0.30901688, 0.95105666, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-9.209561e-8, 1, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.9510565, 0), (-0.30901712, 0.9510565, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.9510565, 0), (-0.5877854, 0.8090168, 0), (-0.5877854, 0.8090168, 0), (-0.30901712, 0.9510565, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.8090172, 0.5877851, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877854, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877854, 0), (-0.5877852, -0.809017, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.809017, 0), (-0.30901694, -0.9510566, 0), (-0.30901694, -0.9510566, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (9.209565e-8, -1, 0), (9.209565e-8, -1, 0), (-0.30901694, -0.9510566, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.809017, -0.5877853, 0), (0.80901706, -0.5877853, 0), (0.5877853, -0.809017, 0), (0.809017, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (0.30901688, 0.95105666, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-9.209561e-8, 1, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.9510565, 0), (-0.30901712, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.9510565, 0), (-0.5877854, 0.8090168, 0), (-0.5877854, 0.8090169, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.8090172, 0.5877851, 0), (-0.5877854, 0.8090169, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (-0.30901694, -0.9510566, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (9.209565e-8, -1, 0), (9.2095654e-8, -1, 0), (-0.30901694, -0.9510566, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (9.2095654e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.80901706, -0.5877853, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (0.30901688, 0.95105666, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-9.209561e-8, 1, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901715, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.8090169, 0), (-0.5877854, 0.8090168, 0), (-0.30901715, 0.95105654, 0), (-0.5877854, 0.8090169, 0), (-0.8090172, 0.5877851, 0), (-0.8090172, 0.5877851, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (-0.30901694, -0.9510566, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (9.2095654e-8, -1, 0), (9.209565e-8, -1, 0), (-0.30901694, -0.9510566, 0), (9.2095654e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.80901706, -0.5877853, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.5877851, 0.809017, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (0.3090168, 0.95105654, 0), (0.5877851, 0.809017, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-9.209559e-8, 1, 0), (0.3090168, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901715, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901715, 0.95105654, 0), (-0.5877854, 0.8090168, 0), (-0.5877855, 0.8090168, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.8090172, 0.58778507, 0), (-0.5877855, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.58778507, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (-0.3090169, -0.95105654, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (9.209565e-8, -1, 0), (9.209565e-8, -1, 0), (-0.3090169, -0.95105654, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.80901706, -0.58778524, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.5877851, 0.809017, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.5877853, 0), (0.5877851, 0.809017, 0), (0.3090168, 0.95105654, 0), (0.3090168, 0.95105654, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.95105654, 0), (-9.209559e-8, 1, 0), (-9.209561e-8, 1, 0), (0.3090168, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877855, 0.8090168, 0), (-0.5877854, 0.8090168, 0), (-0.30901712, 0.95105654, 0), (-0.5877855, 0.8090168, 0), (-0.8090172, 0.58778507, 0), (-0.8090172, 0.5877851, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.58778507, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.3090169, -0.95105654, 0), (-0.30901694, -0.95105654, 0), (-0.5877852, -0.80901706, 0), (-0.3090169, -0.95105654, 0), (9.209565e-8, -1, 0), (9.209565e-8, -1, 0), (-0.30901694, -0.95105654, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.58778524, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.80901706, -0.5877853, 0), (0.58778524, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.95105654, 0), (0.3090168, 0.95105654, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.95105654, 0), (-9.209561e-8, 1, 0), (-9.209561e-8, 1, 0), (0.3090168, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.8090168, 0), (-0.5877854, 0.80901694, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.80901706, 0.5877851, 0), (-0.5877854, 0.80901694, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.80901706, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.95105654, 0), (-0.3090169, -0.95105654, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.95105654, 0), (9.209565e-8, -1, 0), (8.8258304e-8, -1, 0), (-0.3090169, -0.95105654, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.309017, -0.9510565, 0), (8.8258304e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.58778524, -0.809017, 0), (0.5877851, -0.809017, 0), (0.309017, -0.9510565, 0), (0.58778524, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.80901694, -0.5877853, 0), (0.5877851, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901694, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.5877851, 0.809017, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.95105654, 0), (0.3090168, 0.95105654, 0), (0.5877851, 0.809017, 0), (0.3090168, 0.95105654, 0), (-9.209561e-8, 1, 0), (-9.209559e-8, 1, 0), (0.3090168, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.80901694, 0), (-0.5877855, 0.8090169, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.80901694, 0), (-0.80901706, 0.5877851, 0), (-0.8090172, 0.5877851, 0), (-0.5877855, 0.8090169, 0), (-0.80901706, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.3090169, -0.95105654, 0), (-0.30901694, -0.95105654, 0), (-0.5877852, -0.80901706, 0), (-0.3090169, -0.95105654, 0), (8.8258304e-8, -1, 0), (8.825832e-8, -1, 0), (-0.30901694, -0.95105654, 0), (8.8258304e-8, -1, 0), (0.309017, -0.9510565, 0), (0.30901703, -0.95105654, 0), (8.825832e-8, -1, 0), (0.309017, -0.9510565, 0), (0.5877851, -0.809017, 0), (0.5877853, -0.80901706, 0), (0.30901703, -0.95105654, 0), (0.5877851, -0.809017, 0), (0.80901694, -0.5877853, 0), (0.80901706, -0.5877853, 0), (0.5877853, -0.80901706, 0), (0.80901694, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.58778524, 0), (0.9510569, 0.309016, 0), (0.80901694, 0.5877853, 0), (0.5877851, 0.809017, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.58778524, 0), (0.5877851, 0.809017, 0), (0.3090168, 0.95105654, 0), (0.3090168, 0.9510566, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.95105654, 0), (-9.209559e-8, 1, 0), (-9.209559e-8, 1, 0), (0.3090168, 0.9510566, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877855, 0.8090169, 0), (-0.5877856, 0.8090168, 0), (-0.30901712, 0.95105654, 0), (-0.5877855, 0.8090169, 0), (-0.8090172, 0.5877851, 0), (-0.8090172, 0.587785, 0), (-0.5877856, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.587785, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.30901694, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.8090169, -0.5877854, 0), (-0.9510565, -0.30901694, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.8090169, -0.5877854, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.95105654, 0), (-0.30901694, -0.9510565, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.95105654, 0), (8.825832e-8, -1, 0), (9.209566e-8, -1, 0), (-0.30901694, -0.9510565, 0), (8.825832e-8, -1, 0), (0.30901703, -0.95105654, 0), (0.30901703, -0.9510565, 0), (9.209566e-8, -1, 0), (0.30901703, -0.95105654, 0), (0.5877853, -0.80901706, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.80901706, 0), (0.80901706, -0.5877853, 0), (0.80901706, -0.58778524, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.309016, 0), (1, -9.593294e-7, 0), (0.9510569, 0.309016, 0), (0.80901694, 0.58778524, 0), (0.8090169, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.58778524, 0), (0.58778507, 0.80901706, 0), (0.5877851, 0.80901706, 0), (0.8090169, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.9510566, 0), (0.30901685, 0.9510566, 0), (0.5877851, 0.80901706, 0), (0.3090168, 0.9510566, 0), (-9.209559e-8, 1, 0), (-9.209559e-8, 1, 0), (0.30901685, 0.9510566, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877856, 0.8090168, 0), (-0.5877856, 0.8090168, 0), (-0.30901712, 0.95105654, 0), (-0.5877856, 0.8090168, 0), (-0.8090172, 0.587785, 0), (-0.8090172, 0.587785, 0), (-0.5877856, 0.8090168, 0), (-0.8090172, 0.587785, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.587785, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.30901694, 0), (-0.95105654, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.30901694, 0), (-0.8090169, -0.5877854, 0), (-0.8090169, -0.5877854, 0), (-0.95105654, -0.309017, 0), (-0.8090169, -0.5877854, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.8090169, -0.5877854, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510565, 0), (-0.3090169, -0.95105654, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510565, 0), (9.209566e-8, -1, 0), (8.8258325e-8, -1, 0), (-0.3090169, -0.95105654, 0), (9.209566e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (8.8258325e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.80901706, -0.58778524, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.309016, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.8090169, 0.5877853, 0), (0.8090169, 0.58778536, 0), (0.9510569, 0.3090161, 0), (0.8090169, 0.5877853, 0), (0.5877851, 0.80901706, 0), (0.58778524, 0.80901706, 0), (0.8090169, 0.58778536, 0), (0.5877851, 0.80901706, 0), (0.30901685, 0.9510566, 0), (0.3090169, 0.9510566, 0), (0.58778524, 0.80901706, 0), (0.30901685, 0.9510566, 0), (-9.209559e-8, 1, 0), (-9.209559e-8, 1, 0), (0.3090169, 0.9510566, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877856, 0.8090168, 0), (-0.5877856, 0.8090168, 0), (-0.30901712, 0.95105654, 0), (-0.5877856, 0.8090168, 0), (-0.8090172, 0.587785, 0), (-0.8090172, 0.587785, 0), (-0.5877856, 0.8090168, 0), (-0.8090172, 0.587785, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.587785, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.95105654, -0.309017, 0), (-0.95105654, -0.3090171, 0), (-1, -0, 0), (-0.95105654, -0.309017, 0), (-0.8090169, -0.5877854, 0), (-0.8090169, -0.58778554, 0), (-0.95105654, -0.3090171, 0), (-0.8090169, -0.5877854, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.809017, 0), (-0.8090169, -0.58778554, 0), (-0.5877852, -0.80901706, 0), (-0.3090169, -0.95105654, 0), (-0.3090169, -0.9510566, 0), (-0.5877852, -0.809017, 0), (-0.3090169, -0.95105654, 0), (8.8258325e-8, -1, 0), (8.4420996e-8, -1, 0), (-0.3090169, -0.9510566, 0), (8.8258325e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (8.4420996e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.809017, -0.58778524, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.809017, -0.58778524, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.3090161, 0), (1, -9.593294e-7, 0), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, 5.1435853e-7, 1), (0, 7.347982e-7, 1), (0, -0, 1), (0, 5.1435853e-7, 1), (0, -5.143587e-7, 1), (0, -7.347983e-7, 1), (0, 7.347982e-7, 1), (0, -5.143587e-7, 1), (0, -0.0000020574357, 1), (0, -0.0000022778752, 1), (0, -7.347983e-7, 1), (0, -0.0000020574357, 1), (0, -0, 1), (0, -0, 1), (0, -0.0000022778752, 1), (0, -0, 1), (0, 0.000001028718, 1), (0, 8.082783e-7, 1), (0, -0, 1), (0, 0.000001028718, 1), (0, -0, 1), (0, -0, 1), (0, 8.082783e-7, 1), (0, -0, 1), (0, 5.1435893e-7, 1), (0, 4.0413923e-7, 1), (0, -0, 1), (0, 5.1435893e-7, 1), (0, 7.715385e-7, 0.99999994), (0, 6.062089e-7, 1), (0, 4.0413923e-7, 1), (0, 7.715385e-7, 0.99999994), (0, 1.9288467e-7, 1), (0, 1.1021976e-7, 1), (0, 6.062089e-7, 1), (0, 1.9288467e-7, 1), (0, -6.429489e-8, 1), (0, -9.1849834e-8, 1), (0, 1.1021976e-7, 1), (0, -6.429489e-8, 1), (0, -0, 1), (0, -0, 1), (0, -9.1849834e-8, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, 0.0000010287182, 1), (0, 8.082787e-7, 1), (0, -0, 1), (0, 0.0000010287182, 1), (0, 0.0000010287172, 1), (0, 8.0827857e-7, 1), (0, 8.082787e-7, 1), (0, 0.0000010287172, 1), (0, -0, 1), (0, -0, 1), (0, 8.0827857e-7, 1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, 7.347982e-7, 1), (0, -1.7359638e-7, 1), (0, 7.347982e-7, 1), (0, -7.347983e-7, 1), (0, -1.7359638e-7, 1), (0, -7.347983e-7, 1), (0, -0.0000022778752, 1), (0, -1.7359638e-7, 1), (0, -0.0000022778752, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, 8.082783e-7, 1), (0, -1.7359638e-7, 1), (0, 8.082783e-7, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, 4.0413923e-7, 1), (0, -1.7359638e-7, 1), (0, 4.0413923e-7, 1), (0, 6.062089e-7, 1), (0, -1.7359638e-7, 1), (0, 6.062089e-7, 1), (0, 1.1021976e-7, 1), (0, -1.7359638e-7, 1), (0, 1.1021976e-7, 1), (0, -9.1849834e-8, 1), (0, -1.7359638e-7, 1), (0, -9.1849834e-8, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, 8.082787e-7, 1), (0, -1.7359638e-7, 1), (0, 8.082787e-7, 1), (0, 8.0827857e-7, 1), (0, -1.7359638e-7, 1), (0, 8.0827857e-7, 1), (0, -0, 1), (0, -1.7359638e-7, 1)] ( interpolation = "faceVarying" ) point3f[] points point3f[] restPoints = [(0.95105714, 0.30901718, 0), (0.80901754, 0.5877856, 0), (0.5877856, 0.8090175, 0), (0.30901715, 0.951057, 0), (0, 1.0000005, 0), (-0.30901715, 0.95105696, 0), (-0.5877855, 0.8090173, 0), (-0.80901724, 0.5877854, 0), (-0.9510568, 0.30901706, 0), (-1.0000002, -0, 0), (-0.9510568, -0.30901706, 0), (-0.8090172, -0.58778536, 0), (-0.58778536, -0.8090171, 0), (-0.30901706, -0.95105666, 0), (-2.9802322e-8, -1.0000001, 0), (0.30901697, -0.9510566, 0), (0.58778524, -0.80901706, 0), (0.809017, -0.5877853, 0), (0.95105654, -0.309017, 0), (1, -0, 0), (1.9021143, 0.61803436, 0), (1.6180351, 1.1755712, 0), (1.1755712, 1.618035, 0), (0.6180343, 1.902114, 0), (0, 2.000001, 0), (-0.6180343, 1.9021139, 0), (-1.175571, 1.6180346, 0), (-1.6180345, 1.1755708, 0), (-1.9021136, 0.6180341, 0), (-2.0000005, -0, 0), (-1.9021136, -0.6180341, 0), (-1.6180344, -1.1755707, 0), (-1.1755707, -1.6180342, 0), (-0.6180341, -1.9021133, 0), (-5.9604645e-8, -2.0000002, 0), (0.61803395, -1.9021132, 0), (1.1755705, -1.6180341, 0), (1.618034, -1.1755706, 0), (1.9021131, -0.618034, 0), (2, -0, 0), (1.9021143, 0.61803436, 1), (1.6180351, 1.1755712, 1), (1.1755712, 1.618035, 1), (0.6180343, 1.902114, 1), (0, 2.000001, 1), (-0.6180343, 1.9021139, 1), (-1.175571, 1.6180346, 1), (-1.6180345, 1.1755708, 1), (-1.9021136, 0.6180341, 1), (-2.0000005, -0, 1), (-1.9021136, -0.6180341, 1), (-1.6180344, -1.1755707, 1), (-1.1755707, -1.6180342, 1), (-0.6180341, -1.9021133, 1), (-5.9604645e-8, -2.0000002, 1), (0.61803395, -1.9021132, 1), (1.1755705, -1.6180341, 1), (1.618034, -1.1755706, 1), (1.9021131, -0.618034, 1), (2, -0, 1), (1.9021143, 0.61803436, 2), (1.6180351, 1.1755712, 2), (1.1755712, 1.618035, 2), (0.6180343, 1.902114, 2), (0, 2.000001, 2), (-0.6180343, 1.9021139, 2), (-1.175571, 1.6180346, 2), (-1.6180345, 1.1755708, 2), (-1.9021136, 0.6180341, 2), (-2.0000005, -0, 2), (-1.9021136, -0.6180341, 2), (-1.6180344, -1.1755707, 2), (-1.1755707, -1.6180342, 2), (-0.6180341, -1.9021133, 2), (-5.9604645e-8, -2.0000002, 2), (0.61803395, -1.9021132, 2), (1.1755705, -1.6180341, 2), (1.618034, -1.1755706, 2), (1.9021131, -0.618034, 2), (2, -0, 2), (1.9021143, 0.61803436, 3), (1.6180351, 1.1755712, 3), (1.1755712, 1.618035, 3), (0.6180343, 1.902114, 3), (0, 2.000001, 3), (-0.6180343, 1.9021139, 3), (-1.175571, 1.6180346, 3), (-1.6180345, 1.1755708, 3), (-1.9021136, 0.6180341, 3), (-2.0000005, -0, 3), (-1.9021136, -0.6180341, 3), (-1.6180344, -1.1755707, 3), (-1.1755707, -1.6180342, 3), (-0.6180341, -1.9021133, 3), (-5.9604645e-8, -2.0000002, 3), (0.61803395, -1.9021132, 3), (1.1755705, -1.6180341, 3), (1.618034, -1.1755706, 3), (1.9021131, -0.618034, 3), (2, -0, 3), (1.9021143, 0.61803436, 4), (1.6180351, 1.1755712, 4), (1.1755712, 1.618035, 4), (0.6180343, 1.902114, 4), (0, 2.000001, 4), (-0.6180343, 1.9021139, 4), (-1.175571, 1.6180346, 4), (-1.6180345, 1.1755708, 4), (-1.9021136, 0.6180341, 4), (-2.0000005, -0, 4), (-1.9021136, -0.6180341, 4), (-1.6180344, -1.1755707, 4), (-1.1755707, -1.6180342, 4), (-0.6180341, -1.9021133, 4), (-5.9604645e-8, -2.0000002, 4), (0.61803395, -1.9021132, 4), (1.1755705, -1.6180341, 4), (1.618034, -1.1755706, 4), (1.9021131, -0.618034, 4), (2, -0, 4), (1.9021143, 0.61803436, 5), (1.6180351, 1.1755712, 5), (1.1755712, 1.618035, 5), (0.6180343, 1.902114, 5), (0, 2.000001, 5), (-0.6180343, 1.9021139, 5), (-1.175571, 1.6180346, 5), (-1.6180345, 1.1755708, 5), (-1.9021136, 0.6180341, 5), (-2.0000005, -0, 5), (-1.9021136, -0.6180341, 5), (-1.6180344, -1.1755707, 5), (-1.1755707, -1.6180342, 5), (-0.6180341, -1.9021133, 5), (-5.9604645e-8, -2.0000002, 5), (0.61803395, -1.9021132, 5), (1.1755705, -1.6180341, 5), (1.618034, -1.1755706, 5), (1.9021131, -0.618034, 5), (2, -0, 5), (1.9021143, 0.61803436, 6), (1.6180351, 1.1755712, 6), (1.1755712, 1.618035, 6), (0.6180343, 1.902114, 6), (0, 2.000001, 6), (-0.6180343, 1.9021139, 6), (-1.175571, 1.6180346, 6), (-1.6180345, 1.1755708, 6), (-1.9021136, 0.6180341, 6), (-2.0000005, -0, 6), (-1.9021136, -0.6180341, 6), (-1.6180344, -1.1755707, 6), (-1.1755707, -1.6180342, 6), (-0.6180341, -1.9021133, 6), (-5.9604645e-8, -2.0000002, 6), (0.61803395, -1.9021132, 6), (1.1755705, -1.6180341, 6), (1.618034, -1.1755706, 6), (1.9021131, -0.618034, 6), (2, -0, 6), (1.9021143, 0.61803436, 7), (1.6180351, 1.1755712, 7), (1.1755712, 1.618035, 7), (0.6180343, 1.902114, 7), (0, 2.000001, 7), (-0.6180343, 1.9021139, 7), (-1.175571, 1.6180346, 7), (-1.6180345, 1.1755708, 7), (-1.9021136, 0.6180341, 7), (-2.0000005, -0, 7), (-1.9021136, -0.6180341, 7), (-1.6180344, -1.1755707, 7), (-1.1755707, -1.6180342, 7), (-0.6180341, -1.9021133, 7), (-5.9604645e-8, -2.0000002, 7), (0.61803395, -1.9021132, 7), (1.1755705, -1.6180341, 7), (1.618034, -1.1755706, 7), (1.9021131, -0.618034, 7), (2, -0, 7), (1.9021143, 0.61803436, 8), (1.6180351, 1.1755712, 8), (1.1755712, 1.618035, 8), (0.6180343, 1.902114, 8), (0, 2.000001, 8), (-0.6180343, 1.9021139, 8), (-1.175571, 1.6180346, 8), (-1.6180345, 1.1755708, 8), (-1.9021136, 0.6180341, 8), (-2.0000005, -0, 8), (-1.9021136, -0.6180341, 8), (-1.6180344, -1.1755707, 8), (-1.1755707, -1.6180342, 8), (-0.6180341, -1.9021133, 8), (-5.9604645e-8, -2.0000002, 8), (0.61803395, -1.9021132, 8), (1.1755705, -1.6180341, 8), (1.618034, -1.1755706, 8), (1.9021131, -0.618034, 8), (2, -0, 8), (1.9021143, 0.61803436, 9), (1.6180351, 1.1755712, 9), (1.1755712, 1.618035, 9), (0.6180343, 1.902114, 9), (0, 2.000001, 9), (-0.6180343, 1.9021139, 9), (-1.175571, 1.6180346, 9), (-1.6180345, 1.1755708, 9), (-1.9021136, 0.6180341, 9), (-2.0000005, -0, 9), (-1.9021136, -0.6180341, 9), (-1.6180344, -1.1755707, 9), (-1.1755707, -1.6180342, 9), (-0.6180341, -1.9021133, 9), (-5.9604645e-8, -2.0000002, 9), (0.61803395, -1.9021132, 9), (1.1755705, -1.6180341, 9), (1.618034, -1.1755706, 9), (1.9021131, -0.618034, 9), (2, -0, 9), (1.9021143, 0.61803436, 10), (1.6180351, 1.1755712, 10), (1.1755712, 1.618035, 10), (0.6180343, 1.902114, 10), (0, 2.000001, 10), (-0.6180343, 1.9021139, 10), (-1.175571, 1.6180346, 10), (-1.6180345, 1.1755708, 10), (-1.9021136, 0.6180341, 10), (-2.0000005, -0, 10), (-1.9021136, -0.6180341, 10), (-1.6180344, -1.1755707, 10), (-1.1755707, -1.6180342, 10), (-0.6180341, -1.9021133, 10), (-5.9604645e-8, -2.0000002, 10), (0.61803395, -1.9021132, 10), (1.1755705, -1.6180341, 10), (1.618034, -1.1755706, 10), (1.9021131, -0.618034, 10), (2, -0, 10), (0.95105714, 0.30901718, 10), (0.80901754, 0.5877856, 10), (0.5877856, 0.8090175, 10), (0.30901715, 0.951057, 10), (0, 1.0000005, 10), (-0.30901715, 0.95105696, 10), (-0.5877855, 0.8090173, 10), (-0.80901724, 0.5877854, 10), (-0.9510568, 0.30901706, 10), (-1.0000002, -0, 10), (-0.9510568, -0.30901706, 10), (-0.8090172, -0.58778536, 10), (-0.58778536, -0.8090171, 10), (-0.30901706, -0.95105666, 10), (-2.9802322e-8, -1.0000001, 10), (0.30901697, -0.9510566, 10), (0.58778524, -0.80901706, 10), (0.809017, -0.5877853, 10), (0.95105654, -0.309017, 10), (1, -0, 10), (0, -0, 0), (0, -0, 10)] color3f[] primvars:displayColor = [(0.4, 0.4, 0.4)] ( customData = { dictionary Maya = { bool generated = 1 } } ) matrix4d primvars:skel:geomBindTransform = ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (0, 0, 0, 1) ) int[] primvars:skel:jointIndices = [0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 0, 1, 2, 0, 0, 4, 3, 0, 0, 0] ( elementSize = 5 interpolation = "vertex" ) float[] primvars:skel:jointWeights = [0.9914398, 0.007798158, 0.00056962454, 0.00011597502, 0.00007644505, 0.9911016, 0.008106242, 0.00059212884, 0.00012055687, 0.000079465186, 0.99056286, 0.008597037, 0.0006279794, 0.00012785601, 0.00008427643, 0.98986334, 0.009234303, 0.0006745291, 0.0001373335, 0.00009052352, 0.9890613, 0.009965006, 0.00072790415, 0.00014820059, 0.000097686585, 0.98823136, 0.010720953, 0.0007831231, 0.00015944311, 0.0001050971, 0.9874593, 0.011424304, 0.0008345, 0.00016990342, 0.00011199202, 0.9868309, 0.011996779, 0.00087631703, 0.00017841732, 0.000117603966, 0.98642015, 0.012370941, 0.0009036481, 0.00018398189, 0.000121271856, 0.98627734, 0.012501058, 0.0009131526, 0.000185917, 0.00012254738, 0.98642015, 0.012370941, 0.0009036481, 0.00018398189, 0.000121271856, 0.986831, 0.011996778, 0.00087631686, 0.00017841728, 0.000117603944, 0.9874593, 0.011424296, 0.00083449937, 0.00016990327, 0.000111991925, 0.9882313, 0.01072094, 0.000783122, 0.0001594429, 0.00010509696, 0.98906124, 0.009964993, 0.0007279031, 0.00014820037, 0.00009768643, 0.98986334, 0.009234288, 0.00067452795, 0.00013733325, 0.000090523354, 0.99056286, 0.008597019, 0.000627978, 0.00012785573, 0.00008427624, 0.9911016, 0.008106223, 0.0005921274, 0.000120556564, 0.00007946499, 0.9914398, 0.00779814, 0.0005696231, 0.00011597471, 0.000076444856, 0.991555, 0.00769326, 0.000561962, 0.000114414936, 0.00007541673, 0.9122156, 0.07669155, 0.00810055, 0.0017938935, 0.0011983063, 0.9107189, 0.077999204, 0.00823867, 0.0018244808, 0.0012187384, 0.90837055, 0.0800508, 0.008455371, 0.0018724698, 0.0012507946, 0.90539, 0.0826547, 0.008730407, 0.0019333775, 0.0012914804, 0.9020614, 0.085562706, 0.0090375645, 0.0020013985, 0.001336918, 0.8987084, 0.08849201, 0.009346972, 0.002069918, 0.0013826884, 0.89566416, 0.09115167, 0.009627898, 0.00213213, 0.0014242454, 0.8932356, 0.09327323, 0.0098519875, 0.0021817551, 0.0014573947, 0.89167106, 0.09464019, 0.009996371, 0.0022137295, 0.0014787534, 0.891131, 0.09511205, 0.010046211, 0.0022247666, 0.0014861261, 0.89167106, 0.09464019, 0.009996371, 0.0022137295, 0.0014787534, 0.8932356, 0.093273215, 0.009851985, 0.0021817544, 0.0014573943, 0.8956642, 0.091151625, 0.009627892, 0.0021321285, 0.0014242444, 0.8987086, 0.088491954, 0.009346964, 0.0020699159, 0.001382687, 0.9020615, 0.08556263, 0.009037553, 0.002001396, 0.0013369162, 0.90539014, 0.0826546, 0.008730393, 0.0019333743, 0.0012914783, 0.9083707, 0.08005069, 0.008455355, 0.0018724661, 0.0012507922, 0.91071904, 0.07799908, 0.008238653, 0.0018244769, 0.0012187357, 0.91221595, 0.07669144, 0.008100534, 0.0017938899, 0.0011983039, 0.9127295, 0.07624267, 0.008053132, 0.0017833925, 0.0011912917, 0.79757524, 0.18422364, 0.01401941, 0.002549811, 0.0016318791, 0.79559076, 0.18602969, 0.01415685, 0.0025748082, 0.0016478773, 0.7925068, 0.18883635, 0.014370436, 0.0026136546, 0.0016727389, 0.78863347, 0.19236143, 0.014638692, 0.0026624443, 0.0017039644, 0.7843574, 0.19625312, 0.014934849, 0.0027163082, 0.0017384373, 0.7801007, 0.20012699, 0.015229651, 0.002769926, 0.0017727527, 0.77627844, 0.20360558, 0.015494369, 0.0028180722, 0.0018035662, 0.77325755, 0.20635484, 0.015703585, 0.002856124, 0.0018279193, 0.7713241, 0.20811455, 0.015837498, 0.0028804794, 0.0018435069, 0.77065885, 0.20871985, 0.015883561, 0.0028888572, 0.0018488687, 0.7713241, 0.20811455, 0.015837498, 0.0028804794, 0.0018435069, 0.7732577, 0.20635484, 0.015703583, 0.0028561235, 0.001827919, 0.7762785, 0.20360552, 0.015494359, 0.0028180701, 0.001803565, 0.7801008, 0.2001269, 0.015229637, 0.0027699233, 0.0017727509, 0.7843574, 0.19625297, 0.014934831, 0.0027163047, 0.001738435, 0.78863364, 0.19236128, 0.014638673, 0.0026624403, 0.0017039618, 0.79250705, 0.18883617, 0.014370412, 0.0026136497, 0.0016727359, 0.795591, 0.18602951, 0.014156824, 0.0025748028, 0.0016478739, 0.7975755, 0.18422346, 0.014019383, 0.0025498057, 0.0016318756, 0.7982601, 0.18360043, 0.01397197, 0.0025411823, 0.0016263566, 0.6015815, 0.37000003, 0.023125038, 0.0032929934, 0.0020004367, 0.60011387, 0.371363, 0.023210224, 0.0033051237, 0.0020078055, 0.59784955, 0.37346572, 0.02334164, 0.0033238372, 0.0020191737, 0.5950339, 0.37608063, 0.02350507, 0.0033471093, 0.002033311, 0.5919611, 0.37893423, 0.023683418, 0.003372506, 0.002048739, 0.58893895, 0.38174084, 0.02385883, 0.0033974845, 0.0020639133, 0.5862557, 0.38423267, 0.024014562, 0.0034196607, 0.0020773849, 0.58415526, 0.3861833, 0.024136472, 0.0034370206, 0.0020879305, 0.5828201, 0.38742322, 0.024213966, 0.0034480554, 0.002094634, 0.58236253, 0.3878482, 0.024240525, 0.0034518375, 0.0020969317, 0.5828201, 0.38742322, 0.024213966, 0.0034480554, 0.002094634, 0.5841553, 0.3861833, 0.024136467, 0.0034370197, 0.00208793, 0.5862558, 0.38423264, 0.02401455, 0.0034196584, 0.0020773832, 0.588939, 0.3817408, 0.02385881, 0.003397481, 0.002063911, 0.5919612, 0.37893417, 0.023683393, 0.003372502, 0.0020487367, 0.595034, 0.37608057, 0.02350504, 0.0033471042, 0.002033308, 0.5978497, 0.37346566, 0.023341607, 0.0033238316, 0.0020191702, 0.600114, 0.3713629, 0.023210185, 0.0033051171, 0.0020078013, 0.60158163, 0.36999995, 0.023124997, 0.0032929864, 0.0020004322, 0.6020899, 0.36952794, 0.023095496, 0.0032887855, 0.0019978804, 0.47403845, 0.4736809, 0.044845615, 0.0047368202, 0.0026980822, 0.4739865, 0.47372782, 0.04485005, 0.004737289, 0.0026983493, 0.47392228, 0.47378576, 0.044855528, 0.0047378675, 0.0026986788, 0.47387025, 0.47383252, 0.04485995, 0.004738334, 0.0026989444, 0.47385046, 0.47385046, 0.04486164, 0.0047385124, 0.0026990462, 0.47385046, 0.47385046, 0.044861637, 0.0047385124, 0.002699046, 0.47385046, 0.47385046, 0.04486163, 0.004738511, 0.0026990452, 0.47385043, 0.47385043, 0.044861615, 0.004738509, 0.002699044, 0.47385043, 0.47385043, 0.04486161, 0.0047385087, 0.0026990438, 0.47385043, 0.47385043, 0.044861607, 0.0047385083, 0.0026990436, 0.47385043, 0.47385043, 0.04486161, 0.0047385087, 0.0026990438, 0.47385043, 0.47385043, 0.044861604, 0.004738508, 0.0026990434, 0.47385043, 0.47385043, 0.0448616, 0.0047385073, 0.002699043, 0.47385043, 0.47385043, 0.0448616, 0.004738507, 0.002699043, 0.47385043, 0.47385043, 0.044861592, 0.0047385064, 0.0026990424, 0.47387028, 0.47383255, 0.044859894, 0.0047383267, 0.0026989402, 0.47392228, 0.47378573, 0.04485546, 0.004737858, 0.0026986732, 0.47398654, 0.47372785, 0.04484998, 0.0047372794, 0.0026983435, 0.4740386, 0.4736811, 0.044845548, 0.004736811, 0.002698077, 0.47405848, 0.4736632, 0.044843853, 0.0047366316, 0.0026979747, 0.5210978, 0.33350274, 0.13027461, 0.009913892, 0.0052109896, 0.5210978, 0.33350274, 0.13027461, 0.009913892, 0.0052109896, 0.5210978, 0.33350274, 0.1302746, 0.009913891, 0.005210989, 0.5210978, 0.33350274, 0.1302746, 0.009913888, 0.0052109878, 0.52109784, 0.33350274, 0.13027458, 0.009913887, 0.0052109873, 0.52109784, 0.33350274, 0.13027458, 0.009913887, 0.005210987, 0.5210979, 0.33350274, 0.13027458, 0.009913885, 0.005210986, 0.5210979, 0.3335027, 0.13027455, 0.009913881, 0.0052109845, 0.5210979, 0.3335027, 0.13027453, 0.009913881, 0.005210984, 0.5210979, 0.3335027, 0.13027453, 0.00991388, 0.0052109836, 0.5210979, 0.3335027, 0.13027453, 0.009913881, 0.005210984, 0.5210979, 0.3335027, 0.13027453, 0.009913879, 0.005210983, 0.5210979, 0.3335027, 0.13027452, 0.009913878, 0.005210982, 0.5210979, 0.3335027, 0.13027452, 0.009913878, 0.005210982, 0.5210979, 0.3335027, 0.13027452, 0.009913877, 0.0052109817, 0.52109796, 0.3335027, 0.1302745, 0.009913876, 0.005210981, 0.52109796, 0.3335027, 0.1302745, 0.009913875, 0.0052109803, 0.52109796, 0.3335027, 0.1302745, 0.009913874, 0.0052109803, 0.52109796, 0.3335027, 0.13027449, 0.009913874, 0.00521098, 0.52109796, 0.3335027, 0.13027449, 0.009913873, 0.00521098, 0.51307684, 0.32836935, 0.12826937, 0.020523116, 0.009761293, 0.51307684, 0.32836935, 0.12826937, 0.020523116, 0.009761293, 0.51307684, 0.32836935, 0.12826937, 0.020523114, 0.0097612925, 0.5130769, 0.32836935, 0.12826936, 0.02052311, 0.009761291, 0.5130769, 0.32836935, 0.12826934, 0.020523109, 0.009761289, 0.5130769, 0.32836935, 0.12826934, 0.020523107, 0.009761289, 0.51307696, 0.32836935, 0.12826933, 0.020523103, 0.009761286, 0.513077, 0.32836938, 0.12826933, 0.0205231, 0.009761285, 0.513077, 0.32836935, 0.12826933, 0.0205231, 0.009761284, 0.513077, 0.32836935, 0.12826931, 0.020523097, 0.009761283, 0.513077, 0.32836935, 0.12826933, 0.0205231, 0.009761284, 0.513077, 0.32836935, 0.12826931, 0.020523096, 0.009761283, 0.513077, 0.32836932, 0.1282693, 0.020523092, 0.00976128, 0.513077, 0.32836932, 0.1282693, 0.02052309, 0.00976128, 0.513077, 0.32836932, 0.12826928, 0.020523088, 0.009761279, 0.513077, 0.32836932, 0.12826928, 0.020523086, 0.009761278, 0.513077, 0.32836932, 0.12826927, 0.020523084, 0.009761278, 0.513077, 0.32836932, 0.12826927, 0.020523084, 0.009761277, 0.5130771, 0.32836932, 0.12826927, 0.020523084, 0.009761277, 0.5130771, 0.32836932, 0.12826927, 0.020523082, 0.009761276, 0.44856134, 0.44856134, 0.042467423, 0.042467423, 0.01794249, 0.44856134, 0.44856134, 0.042467423, 0.042467423, 0.01794249, 0.44856134, 0.44856134, 0.042467415, 0.042467415, 0.017942488, 0.44856134, 0.44856134, 0.042467408, 0.042467408, 0.017942484, 0.44856137, 0.44856137, 0.042467404, 0.042467404, 0.01794248, 0.44856137, 0.44856137, 0.042467404, 0.042467404, 0.01794248, 0.44856137, 0.44856137, 0.042467393, 0.042467393, 0.017942477, 0.44856137, 0.44856137, 0.042467386, 0.042467386, 0.017942473, 0.44856137, 0.44856137, 0.04246738, 0.04246738, 0.017942471, 0.4485614, 0.4485614, 0.042467378, 0.042467378, 0.01794247, 0.44856137, 0.44856137, 0.04246738, 0.04246738, 0.017942471, 0.4485614, 0.4485614, 0.042467374, 0.042467374, 0.017942468, 0.4485614, 0.4485614, 0.04246737, 0.04246737, 0.017942466, 0.4485614, 0.4485614, 0.04246737, 0.04246737, 0.017942466, 0.4485614, 0.4485614, 0.042467367, 0.042467367, 0.017942462, 0.4485614, 0.4485614, 0.04246736, 0.04246736, 0.01794246, 0.4485614, 0.4485614, 0.04246736, 0.04246736, 0.01794246, 0.4485614, 0.4485614, 0.042467356, 0.042467356, 0.017942458, 0.44856143, 0.44856143, 0.042467356, 0.042467356, 0.017942458, 0.4485615, 0.4485615, 0.042467356, 0.042467356, 0.017942458, 0.49390632, 0.3161002, 0.123476736, 0.046760444, 0.019756293, 0.49390632, 0.3161002, 0.123476736, 0.046760444, 0.019756293, 0.49390632, 0.3161002, 0.12347673, 0.04676044, 0.019756291, 0.49390635, 0.3161002, 0.12347672, 0.046760432, 0.019756287, 0.49390638, 0.3161002, 0.123476714, 0.04676043, 0.019756285, 0.49390638, 0.3161002, 0.12347671, 0.04676043, 0.019756285, 0.4939064, 0.3161002, 0.1234767, 0.04676042, 0.01975628, 0.49390644, 0.31610018, 0.123476684, 0.04676041, 0.019756276, 0.49390644, 0.31610018, 0.12347668, 0.04676041, 0.019756274, 0.49390647, 0.31610018, 0.12347667, 0.046760406, 0.019756272, 0.49390644, 0.31610018, 0.12347668, 0.04676041, 0.019756274, 0.49390647, 0.31610018, 0.12347667, 0.046760403, 0.019756272, 0.49390647, 0.31610018, 0.12347666, 0.0467604, 0.01975627, 0.4939065, 0.31610018, 0.12347666, 0.0467604, 0.019756269, 0.49390656, 0.3161002, 0.12347667, 0.0467604, 0.019756269, 0.4939066, 0.3161002, 0.12347666, 0.04676039, 0.019756267, 0.4939066, 0.3161002, 0.123476654, 0.04676039, 0.019756265, 0.4939066, 0.3161002, 0.123476654, 0.046760388, 0.019756265, 0.49390653, 0.31610018, 0.12347664, 0.046760384, 0.019756263, 0.49390653, 0.31610018, 0.12347663, 0.046760384, 0.019756261, 0.4631718, 0.2964301, 0.1157931, 0.1157931, 0.00881185, 0.4631718, 0.2964301, 0.1157931, 0.1157931, 0.00881185, 0.46317184, 0.2964301, 0.1157931, 0.1157931, 0.008811848, 0.46317187, 0.2964301, 0.11579309, 0.11579309, 0.008811847, 0.46317187, 0.2964301, 0.11579308, 0.11579308, 0.008811845, 0.46317193, 0.29643014, 0.115793094, 0.115793094, 0.008811846, 0.4631719, 0.2964301, 0.115793064, 0.115793064, 0.008811844, 0.46317193, 0.2964301, 0.11579306, 0.11579306, 0.008811842, 0.46317196, 0.2964301, 0.11579305, 0.11579305, 0.008811841, 0.46317196, 0.2964301, 0.11579304, 0.11579304, 0.00881184, 0.46317196, 0.2964301, 0.11579305, 0.11579305, 0.008811841, 0.46317196, 0.2964301, 0.11579304, 0.11579304, 0.00881184, 0.463172, 0.2964301, 0.115793034, 0.115793034, 0.008811838, 0.463172, 0.2964301, 0.115793034, 0.115793034, 0.008811838, 0.463172, 0.2964301, 0.11579303, 0.11579303, 0.008811837, 0.46317202, 0.2964301, 0.11579302, 0.11579302, 0.008811836, 0.46317202, 0.2964301, 0.11579302, 0.11579302, 0.008811835, 0.46317202, 0.2964301, 0.11579301, 0.11579301, 0.008811835, 0.46317202, 0.2964301, 0.11579301, 0.11579301, 0.008811835, 0.46317205, 0.2964301, 0.11579301, 0.11579301, 0.008811834, 0.36434186, 0.36434186, 0.2331789, 0.034493964, 0.003643427, 0.36434186, 0.36434186, 0.2331789, 0.034493964, 0.003643427, 0.36434186, 0.36434186, 0.2331789, 0.03449396, 0.0036434263, 0.36434186, 0.36434186, 0.23317888, 0.034493953, 0.0036434254, 0.36434186, 0.36434186, 0.23317888, 0.03449395, 0.003643425, 0.36434188, 0.36434188, 0.23317888, 0.03449395, 0.003643425, 0.3643419, 0.3643419, 0.2331789, 0.034493946, 0.0036434243, 0.36434188, 0.36434188, 0.23317887, 0.034493934, 0.0036434229, 0.36434188, 0.36434188, 0.23317885, 0.034493934, 0.0036434224, 0.36434188, 0.36434188, 0.23317885, 0.03449393, 0.0036434222, 0.36434188, 0.36434188, 0.23317885, 0.034493934, 0.0036434224, 0.36434188, 0.36434188, 0.23317885, 0.034493927, 0.003643422, 0.3643419, 0.3643419, 0.23317885, 0.034493923, 0.0036434212, 0.3643419, 0.3643419, 0.23317885, 0.034493923, 0.003643421, 0.3643419, 0.3643419, 0.23317884, 0.03449392, 0.0036434208, 0.3643419, 0.3643419, 0.23317884, 0.034493916, 0.00364342, 0.3643419, 0.3643419, 0.23317884, 0.034493916, 0.0036434198, 0.3643419, 0.3643419, 0.23317884, 0.034493912, 0.0036434196, 0.3643419, 0.3643419, 0.23317884, 0.034493912, 0.0036434196, 0.3643419, 0.3643419, 0.23317882, 0.03449391, 0.0036434191, 0.3723429, 0.3723429, 0.23829958, 0.014893747, 0.0021208618, 0.3723429, 0.3723429, 0.23829958, 0.014893747, 0.0021208618, 0.37234294, 0.37234294, 0.23829961, 0.014893747, 0.0021208616, 0.3723429, 0.3723429, 0.23829956, 0.014893741, 0.0021208609, 0.3723429, 0.3723429, 0.23829956, 0.0148937395, 0.0021208606, 0.3723429, 0.3723429, 0.23829956, 0.0148937395, 0.0021208604, 0.3723429, 0.3723429, 0.23829955, 0.014893736, 0.00212086, 0.37234294, 0.37234294, 0.23829953, 0.014893732, 0.0021208592, 0.37234294, 0.37234294, 0.23829953, 0.01489373, 0.002120859, 0.37234294, 0.37234294, 0.23829953, 0.014893729, 0.0021208588, 0.37234294, 0.37234294, 0.23829953, 0.01489373, 0.002120859, 0.37234294, 0.37234294, 0.23829952, 0.014893728, 0.0021208585, 0.37234294, 0.37234294, 0.23829952, 0.0148937255, 0.0021208583, 0.37234294, 0.37234294, 0.23829952, 0.0148937255, 0.0021208583, 0.37234294, 0.37234294, 0.23829952, 0.014893724, 0.0021208578, 0.37234294, 0.37234294, 0.2382995, 0.014893722, 0.0021208576, 0.37234297, 0.37234297, 0.2382995, 0.014893721, 0.0021208574, 0.37234297, 0.37234297, 0.2382995, 0.01489372, 0.0021208574, 0.37234297, 0.37234297, 0.2382995, 0.01489372, 0.0021208571, 0.37234297, 0.37234297, 0.2382995, 0.014893719, 0.0021208571, 0.44368318, 0.44368318, 0.110920936, 0.0015352396, 0.00017747372, 0.44368318, 0.44368318, 0.110920936, 0.0015352396, 0.00017747372, 0.44368318, 0.44368318, 0.11092093, 0.0015352394, 0.00017747369, 0.44368318, 0.44368318, 0.11092091, 0.0015352389, 0.00017747364, 0.44368318, 0.44368318, 0.110920906, 0.0015352387, 0.00017747362, 0.4436832, 0.4436832, 0.1109209, 0.0015352387, 0.0001774736, 0.4436832, 0.4436832, 0.11092088, 0.0015352382, 0.00017747354, 0.4436832, 0.4436832, 0.11092087, 0.0015352378, 0.0001774735, 0.4436832, 0.4436832, 0.11092086, 0.0015352377, 0.00017747347, 0.4436832, 0.4436832, 0.110920854, 0.0015352374, 0.00017747346, 0.4436832, 0.4436832, 0.11092086, 0.0015352377, 0.00017747347, 0.4436832, 0.4436832, 0.110920854, 0.0015352373, 0.00017747344, 0.44368324, 0.44368324, 0.11092085, 0.0015352371, 0.00017747341, 0.44368324, 0.44368324, 0.11092084, 0.001535237, 0.0001774734, 0.44368324, 0.44368324, 0.11092083, 0.0015352367, 0.00017747337, 0.44368324, 0.44368324, 0.110920824, 0.0015352365, 0.00017747334, 0.4436833, 0.4436833, 0.11092083, 0.0015352366, 0.00017747334, 0.4436833, 0.4436833, 0.11092083, 0.0015352366, 0.00017747334, 0.44368324, 0.44368324, 0.11092082, 0.0015352363, 0.00017747331, 0.44368324, 0.44368324, 0.11092081, 0.0015352361, 0.0001774733, 0.9999998, 1.7388004e-7, 1.08675025e-8, 0, 0, 0.5, 0.5, 0, 0, 0] ( elementSize = 5 interpolation = "vertex" ) float2[] primvars:st = [(0.57430136, 0.13210803), (0.5632045, 0.11032924), (0.626409, 0.064408496), (0.64860266, 0.10796607), (0.5459207, 0.0930455), (0.5918415, 0.02984102), (0.52414197, 0.08194867), (0.54828393, 0.0076473355), (0.5, 0.07812497), (0.5, -7.4505806e-8), (0.47585803, 0.08194867), (0.45171607, 0.0076473504), (0.45407927, 0.09304553), (0.4081585, 0.02984105), (0.43679553, 0.11032927), (0.37359107, 0.064408526), (0.4256987, 0.13210803), (0.3513974, 0.1079661), (0.421875, 0.15625), (0.34374997, 0.15625), (0.4256987, 0.18039197), (0.3513974, 0.2045339), (0.43679553, 0.20217073), (0.37359107, 0.24809146), (0.45407927, 0.21945447), (0.40815854, 0.28265893), (0.47585803, 0.2305513), (0.4517161, 0.3048526), (0.5, 0.234375), (0.5, 0.3125), (0.52414197, 0.2305513), (0.5482839, 0.3048526), (0.5459207, 0.21945447), (0.59184146, 0.28265893), (0.56320447, 0.20217073), (0.62640893, 0.24809146), (0.5743013, 0.18039197), (0.6486026, 0.2045339), (0.578125, 0.15625), (0.65625, 0.15625), (0.375, 0.3125), (0.3875, 0.3125), (0.3875, 0.350094), (0.375, 0.350094), (0.39999998, 0.3125), (0.39999998, 0.350094), (0.41249996, 0.3125), (0.41249996, 0.350094), (0.42499995, 0.3125), (0.42499995, 0.350094), (0.43749994, 0.3125), (0.43749994, 0.350094), (0.44999993, 0.3125), (0.44999993, 0.350094), (0.46249992, 0.3125), (0.46249992, 0.350094), (0.4749999, 0.3125), (0.4749999, 0.350094), (0.4874999, 0.3125), (0.4874999, 0.350094), (0.49999988, 0.3125), (0.49999988, 0.350094), (0.51249987, 0.3125), (0.51249987, 0.350094), (0.52499986, 0.3125), (0.52499986, 0.350094), (0.53749985, 0.3125), (0.53749985, 0.350094), (0.54999983, 0.3125), (0.54999983, 0.350094), (0.5624998, 0.3125), (0.5624998, 0.350094), (0.5749998, 0.3125), (0.5749998, 0.350094), (0.5874998, 0.3125), (0.5874998, 0.350094), (0.5999998, 0.3125), (0.5999998, 0.350094), (0.6124998, 0.3125), (0.6124998, 0.350094), (0.62499976, 0.3125), (0.62499976, 0.350094), (0.3875, 0.38768798), (0.375, 0.38768798), (0.39999998, 0.38768798), (0.41249996, 0.38768798), (0.42499995, 0.38768798), (0.43749994, 0.38768798), (0.44999993, 0.38768798), (0.46249992, 0.38768798), (0.4749999, 0.38768798), (0.4874999, 0.38768798), (0.49999988, 0.38768798), (0.51249987, 0.38768798), (0.52499986, 0.38768798), (0.53749985, 0.38768798), (0.54999983, 0.38768798), (0.5624998, 0.38768798), (0.5749998, 0.38768798), (0.5874998, 0.38768798), (0.5999998, 0.38768798), (0.6124998, 0.38768798), (0.62499976, 0.38768798), (0.3875, 0.42528197), (0.375, 0.42528197), (0.39999998, 0.42528197), (0.41249996, 0.42528197), (0.42499995, 0.42528197), (0.43749994, 0.42528197), (0.44999993, 0.42528197), (0.46249992, 0.42528197), (0.4749999, 0.42528197), (0.4874999, 0.42528197), (0.49999988, 0.42528197), (0.51249987, 0.42528197), (0.52499986, 0.42528197), (0.53749985, 0.42528197), (0.54999983, 0.42528197), (0.5624998, 0.42528197), (0.5749998, 0.42528197), (0.5874998, 0.42528197), (0.5999998, 0.42528197), (0.6124998, 0.42528197), (0.62499976, 0.42528197), (0.3875, 0.46287596), (0.375, 0.46287596), (0.39999998, 0.46287596), (0.41249996, 0.46287596), (0.42499995, 0.46287596), (0.43749994, 0.46287596), (0.44999993, 0.46287596), (0.46249992, 0.46287596), (0.4749999, 0.46287596), (0.4874999, 0.46287596), (0.49999988, 0.46287596), (0.51249987, 0.46287596), (0.52499986, 0.46287596), (0.53749985, 0.46287596), (0.54999983, 0.46287596), (0.5624998, 0.46287596), (0.5749998, 0.46287596), (0.5874998, 0.46287596), (0.5999998, 0.46287596), (0.6124998, 0.46287596), (0.62499976, 0.46287596), (0.3875, 0.5004699), (0.375, 0.5004699), (0.39999998, 0.5004699), (0.41249996, 0.5004699), (0.42499995, 0.5004699), (0.43749994, 0.5004699), (0.44999993, 0.5004699), (0.46249992, 0.5004699), (0.4749999, 0.5004699), (0.4874999, 0.5004699), (0.49999988, 0.5004699), (0.51249987, 0.5004699), (0.52499986, 0.5004699), (0.53749985, 0.5004699), (0.54999983, 0.5004699), (0.5624998, 0.5004699), (0.5749998, 0.5004699), (0.5874998, 0.5004699), (0.5999998, 0.5004699), (0.6124998, 0.5004699), (0.62499976, 0.5004699), (0.3875, 0.5380639), (0.375, 0.5380639), (0.39999998, 0.5380639), (0.41249996, 0.5380639), (0.42499995, 0.5380639), (0.43749994, 0.5380639), (0.44999993, 0.5380639), (0.46249992, 0.5380639), (0.4749999, 0.5380639), (0.4874999, 0.5380639), (0.49999988, 0.5380639), (0.51249987, 0.5380639), (0.52499986, 0.5380639), (0.53749985, 0.5380639), (0.54999983, 0.5380639), (0.5624998, 0.5380639), (0.5749998, 0.5380639), (0.5874998, 0.5380639), (0.5999998, 0.5380639), (0.6124998, 0.5380639), (0.62499976, 0.5380639), (0.3875, 0.57565784), (0.375, 0.57565784), (0.39999998, 0.57565784), (0.41249996, 0.57565784), (0.42499995, 0.57565784), (0.43749994, 0.57565784), (0.44999993, 0.57565784), (0.46249992, 0.57565784), (0.4749999, 0.57565784), (0.4874999, 0.57565784), (0.49999988, 0.57565784), (0.51249987, 0.57565784), (0.52499986, 0.57565784), (0.53749985, 0.57565784), (0.54999983, 0.57565784), (0.5624998, 0.57565784), (0.5749998, 0.57565784), (0.5874998, 0.57565784), (0.5999998, 0.57565784), (0.6124998, 0.57565784), (0.62499976, 0.57565784), (0.3875, 0.6132518), (0.375, 0.6132518), (0.39999998, 0.6132518), (0.41249996, 0.6132518), (0.42499995, 0.6132518), (0.43749994, 0.6132518), (0.44999993, 0.6132518), (0.46249992, 0.6132518), (0.4749999, 0.6132518), (0.4874999, 0.6132518), (0.49999988, 0.6132518), (0.51249987, 0.6132518), (0.52499986, 0.6132518), (0.53749985, 0.6132518), (0.54999983, 0.6132518), (0.5624998, 0.6132518), (0.5749998, 0.6132518), (0.5874998, 0.6132518), (0.5999998, 0.6132518), (0.6124998, 0.6132518), (0.62499976, 0.6132518), (0.3875, 0.65084577), (0.375, 0.65084577), (0.39999998, 0.65084577), (0.41249996, 0.65084577), (0.42499995, 0.65084577), (0.43749994, 0.65084577), (0.44999993, 0.65084577), (0.46249992, 0.65084577), (0.4749999, 0.65084577), (0.4874999, 0.65084577), (0.49999988, 0.65084577), (0.51249987, 0.65084577), (0.52499986, 0.65084577), (0.53749985, 0.65084577), (0.54999983, 0.65084577), (0.5624998, 0.65084577), (0.5749998, 0.65084577), (0.5874998, 0.65084577), (0.5999998, 0.65084577), (0.6124998, 0.65084577), (0.62499976, 0.65084577), (0.3875, 0.6884397), (0.375, 0.6884397), (0.39999998, 0.6884397), (0.41249996, 0.6884397), (0.42499995, 0.6884397), (0.43749994, 0.6884397), (0.44999993, 0.6884397), (0.46249992, 0.6884397), (0.4749999, 0.6884397), (0.4874999, 0.6884397), (0.49999988, 0.6884397), (0.51249987, 0.6884397), (0.52499986, 0.6884397), (0.53749985, 0.6884397), (0.54999983, 0.6884397), (0.5624998, 0.6884397), (0.5749998, 0.6884397), (0.5874998, 0.6884397), (0.5999998, 0.6884397), (0.6124998, 0.6884397), (0.62499976, 0.6884397), (0.6486026, 0.89203393), (0.62640893, 0.93559146), (0.56320447, 0.8896707), (0.5743013, 0.86789197), (0.59184146, 0.97015893), (0.5459207, 0.90695447), (0.5482839, 0.9923526), (0.52414197, 0.9180513), (0.5, 1), (0.5, 0.921875), (0.4517161, 0.9923526), (0.47585803, 0.9180513), (0.40815854, 0.97015893), (0.45407927, 0.90695447), (0.37359107, 0.93559146), (0.43679553, 0.8896707), (0.3513974, 0.89203393), (0.4256987, 0.86789197), (0.34374997, 0.84375), (0.421875, 0.84375), (0.3513974, 0.79546607), (0.4256987, 0.81960803), (0.37359107, 0.75190854), (0.43679553, 0.7978293), (0.4081585, 0.71734107), (0.45407927, 0.78054553), (0.45171607, 0.69514734), (0.47585803, 0.76944864), (0.5, 0.68749994), (0.5, 0.765625), (0.54828393, 0.69514734), (0.52414197, 0.76944864), (0.5918415, 0.717341), (0.5459207, 0.7805455), (0.626409, 0.7519085), (0.5632045, 0.7978293), (0.64860266, 0.79546607), (0.57430136, 0.81960803), (0.65625, 0.84375), (0.578125, 0.84375), (0.5, 0.15), (0.5, 0.8375)] ( customData = { dictionary Maya = { int UVSetIndex = 0 } } interpolation = "faceVarying" ) int[] primvars:st:indices = [0, 1, 2, 3, 1, 4, 5, 2, 4, 6, 7, 5, 6, 8, 9, 7, 8, 10, 11, 9, 10, 12, 13, 11, 12, 14, 15, 13, 14, 16, 17, 15, 16, 18, 19, 17, 18, 20, 21, 19, 20, 22, 23, 21, 22, 24, 25, 23, 24, 26, 27, 25, 26, 28, 29, 27, 28, 30, 31, 29, 30, 32, 33, 31, 32, 34, 35, 33, 34, 36, 37, 35, 36, 38, 39, 37, 38, 0, 3, 39, 40, 41, 42, 43, 41, 44, 45, 42, 44, 46, 47, 45, 46, 48, 49, 47, 48, 50, 51, 49, 50, 52, 53, 51, 52, 54, 55, 53, 54, 56, 57, 55, 56, 58, 59, 57, 58, 60, 61, 59, 60, 62, 63, 61, 62, 64, 65, 63, 64, 66, 67, 65, 66, 68, 69, 67, 68, 70, 71, 69, 70, 72, 73, 71, 72, 74, 75, 73, 74, 76, 77, 75, 76, 78, 79, 77, 78, 80, 81, 79, 43, 42, 82, 83, 42, 45, 84, 82, 45, 47, 85, 84, 47, 49, 86, 85, 49, 51, 87, 86, 51, 53, 88, 87, 53, 55, 89, 88, 55, 57, 90, 89, 57, 59, 91, 90, 59, 61, 92, 91, 61, 63, 93, 92, 63, 65, 94, 93, 65, 67, 95, 94, 67, 69, 96, 95, 69, 71, 97, 96, 71, 73, 98, 97, 73, 75, 99, 98, 75, 77, 100, 99, 77, 79, 101, 100, 79, 81, 102, 101, 83, 82, 103, 104, 82, 84, 105, 103, 84, 85, 106, 105, 85, 86, 107, 106, 86, 87, 108, 107, 87, 88, 109, 108, 88, 89, 110, 109, 89, 90, 111, 110, 90, 91, 112, 111, 91, 92, 113, 112, 92, 93, 114, 113, 93, 94, 115, 114, 94, 95, 116, 115, 95, 96, 117, 116, 96, 97, 118, 117, 97, 98, 119, 118, 98, 99, 120, 119, 99, 100, 121, 120, 100, 101, 122, 121, 101, 102, 123, 122, 104, 103, 124, 125, 103, 105, 126, 124, 105, 106, 127, 126, 106, 107, 128, 127, 107, 108, 129, 128, 108, 109, 130, 129, 109, 110, 131, 130, 110, 111, 132, 131, 111, 112, 133, 132, 112, 113, 134, 133, 113, 114, 135, 134, 114, 115, 136, 135, 115, 116, 137, 136, 116, 117, 138, 137, 117, 118, 139, 138, 118, 119, 140, 139, 119, 120, 141, 140, 120, 121, 142, 141, 121, 122, 143, 142, 122, 123, 144, 143, 125, 124, 145, 146, 124, 126, 147, 145, 126, 127, 148, 147, 127, 128, 149, 148, 128, 129, 150, 149, 129, 130, 151, 150, 130, 131, 152, 151, 131, 132, 153, 152, 132, 133, 154, 153, 133, 134, 155, 154, 134, 135, 156, 155, 135, 136, 157, 156, 136, 137, 158, 157, 137, 138, 159, 158, 138, 139, 160, 159, 139, 140, 161, 160, 140, 141, 162, 161, 141, 142, 163, 162, 142, 143, 164, 163, 143, 144, 165, 164, 146, 145, 166, 167, 145, 147, 168, 166, 147, 148, 169, 168, 148, 149, 170, 169, 149, 150, 171, 170, 150, 151, 172, 171, 151, 152, 173, 172, 152, 153, 174, 173, 153, 154, 175, 174, 154, 155, 176, 175, 155, 156, 177, 176, 156, 157, 178, 177, 157, 158, 179, 178, 158, 159, 180, 179, 159, 160, 181, 180, 160, 161, 182, 181, 161, 162, 183, 182, 162, 163, 184, 183, 163, 164, 185, 184, 164, 165, 186, 185, 167, 166, 187, 188, 166, 168, 189, 187, 168, 169, 190, 189, 169, 170, 191, 190, 170, 171, 192, 191, 171, 172, 193, 192, 172, 173, 194, 193, 173, 174, 195, 194, 174, 175, 196, 195, 175, 176, 197, 196, 176, 177, 198, 197, 177, 178, 199, 198, 178, 179, 200, 199, 179, 180, 201, 200, 180, 181, 202, 201, 181, 182, 203, 202, 182, 183, 204, 203, 183, 184, 205, 204, 184, 185, 206, 205, 185, 186, 207, 206, 188, 187, 208, 209, 187, 189, 210, 208, 189, 190, 211, 210, 190, 191, 212, 211, 191, 192, 213, 212, 192, 193, 214, 213, 193, 194, 215, 214, 194, 195, 216, 215, 195, 196, 217, 216, 196, 197, 218, 217, 197, 198, 219, 218, 198, 199, 220, 219, 199, 200, 221, 220, 200, 201, 222, 221, 201, 202, 223, 222, 202, 203, 224, 223, 203, 204, 225, 224, 204, 205, 226, 225, 205, 206, 227, 226, 206, 207, 228, 227, 209, 208, 229, 230, 208, 210, 231, 229, 210, 211, 232, 231, 211, 212, 233, 232, 212, 213, 234, 233, 213, 214, 235, 234, 214, 215, 236, 235, 215, 216, 237, 236, 216, 217, 238, 237, 217, 218, 239, 238, 218, 219, 240, 239, 219, 220, 241, 240, 220, 221, 242, 241, 221, 222, 243, 242, 222, 223, 244, 243, 223, 224, 245, 244, 224, 225, 246, 245, 225, 226, 247, 246, 226, 227, 248, 247, 227, 228, 249, 248, 230, 229, 250, 251, 229, 231, 252, 250, 231, 232, 253, 252, 232, 233, 254, 253, 233, 234, 255, 254, 234, 235, 256, 255, 235, 236, 257, 256, 236, 237, 258, 257, 237, 238, 259, 258, 238, 239, 260, 259, 239, 240, 261, 260, 240, 241, 262, 261, 241, 242, 263, 262, 242, 243, 264, 263, 243, 244, 265, 264, 244, 245, 266, 265, 245, 246, 267, 266, 246, 247, 268, 267, 247, 248, 269, 268, 248, 249, 270, 269, 271, 272, 273, 274, 272, 275, 276, 273, 275, 277, 278, 276, 277, 279, 280, 278, 279, 281, 282, 280, 281, 283, 284, 282, 283, 285, 286, 284, 285, 287, 288, 286, 287, 289, 290, 288, 289, 291, 292, 290, 291, 293, 294, 292, 293, 295, 296, 294, 295, 297, 298, 296, 297, 299, 300, 298, 299, 301, 302, 300, 301, 303, 304, 302, 303, 305, 306, 304, 305, 307, 308, 306, 307, 309, 310, 308, 309, 271, 274, 310, 1, 0, 311, 4, 1, 311, 6, 4, 311, 8, 6, 311, 10, 8, 311, 12, 10, 311, 14, 12, 311, 16, 14, 311, 18, 16, 311, 20, 18, 311, 22, 20, 311, 24, 22, 311, 26, 24, 311, 28, 26, 311, 30, 28, 311, 32, 30, 311, 34, 32, 311, 36, 34, 311, 38, 36, 311, 0, 38, 311, 274, 273, 312, 273, 276, 312, 276, 278, 312, 278, 280, 312, 280, 282, 312, 282, 284, 312, 284, 286, 312, 286, 288, 312, 288, 290, 312, 290, 292, 312, 292, 294, 312, 294, 296, 312, 296, 298, 312, 298, 300, 312, 300, 302, 312, 302, 304, 312, 304, 306, 312, 306, 308, 312, 308, 310, 312, 310, 274, 312] bool shadow:enable = 1 uniform token[] skel:joints = ["joint1", "joint1/joint2", "joint1/joint2/joint3", "joint1/joint2/joint3/joint4", "joint1/joint2/joint3/joint4/joint5"] rel skel:skeleton = </Root/group1/joint1> uniform token skel:skinningMethod = "DualQuaternion" uniform token subdivisionScheme = "none" matrix4d xformOp:transform = ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (10, 0, 0, 1) ) uniform token[] xformOpOrder = ["xformOp:transform"] } def Mesh "pCylinder2" ( prepend apiSchemas = ["SkelBindingAPI", "ShadowAPI"] ) { uniform bool doubleSided = 1 float3[] extent = [(-2.0000005, -2.0000002, 0), (2, 2.000001, 10)] int[] faceVertexCounts = [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 1, 21, 20, 1, 2, 22, 21, 2, 3, 23, 22, 3, 4, 24, 23, 4, 5, 25, 24, 5, 6, 26, 25, 6, 7, 27, 26, 7, 8, 28, 27, 8, 9, 29, 28, 9, 10, 30, 29, 10, 11, 31, 30, 11, 12, 32, 31, 12, 13, 33, 32, 13, 14, 34, 33, 14, 15, 35, 34, 15, 16, 36, 35, 16, 17, 37, 36, 17, 18, 38, 37, 18, 19, 39, 38, 19, 0, 20, 39, 20, 21, 41, 40, 21, 22, 42, 41, 22, 23, 43, 42, 23, 24, 44, 43, 24, 25, 45, 44, 25, 26, 46, 45, 26, 27, 47, 46, 27, 28, 48, 47, 28, 29, 49, 48, 29, 30, 50, 49, 30, 31, 51, 50, 31, 32, 52, 51, 32, 33, 53, 52, 33, 34, 54, 53, 34, 35, 55, 54, 35, 36, 56, 55, 36, 37, 57, 56, 37, 38, 58, 57, 38, 39, 59, 58, 39, 20, 40, 59, 40, 41, 61, 60, 41, 42, 62, 61, 42, 43, 63, 62, 43, 44, 64, 63, 44, 45, 65, 64, 45, 46, 66, 65, 46, 47, 67, 66, 47, 48, 68, 67, 48, 49, 69, 68, 49, 50, 70, 69, 50, 51, 71, 70, 51, 52, 72, 71, 52, 53, 73, 72, 53, 54, 74, 73, 54, 55, 75, 74, 55, 56, 76, 75, 56, 57, 77, 76, 57, 58, 78, 77, 58, 59, 79, 78, 59, 40, 60, 79, 60, 61, 81, 80, 61, 62, 82, 81, 62, 63, 83, 82, 63, 64, 84, 83, 64, 65, 85, 84, 65, 66, 86, 85, 66, 67, 87, 86, 67, 68, 88, 87, 68, 69, 89, 88, 69, 70, 90, 89, 70, 71, 91, 90, 71, 72, 92, 91, 72, 73, 93, 92, 73, 74, 94, 93, 74, 75, 95, 94, 75, 76, 96, 95, 76, 77, 97, 96, 77, 78, 98, 97, 78, 79, 99, 98, 79, 60, 80, 99, 80, 81, 101, 100, 81, 82, 102, 101, 82, 83, 103, 102, 83, 84, 104, 103, 84, 85, 105, 104, 85, 86, 106, 105, 86, 87, 107, 106, 87, 88, 108, 107, 88, 89, 109, 108, 89, 90, 110, 109, 90, 91, 111, 110, 91, 92, 112, 111, 92, 93, 113, 112, 93, 94, 114, 113, 94, 95, 115, 114, 95, 96, 116, 115, 96, 97, 117, 116, 97, 98, 118, 117, 98, 99, 119, 118, 99, 80, 100, 119, 100, 101, 121, 120, 101, 102, 122, 121, 102, 103, 123, 122, 103, 104, 124, 123, 104, 105, 125, 124, 105, 106, 126, 125, 106, 107, 127, 126, 107, 108, 128, 127, 108, 109, 129, 128, 109, 110, 130, 129, 110, 111, 131, 130, 111, 112, 132, 131, 112, 113, 133, 132, 113, 114, 134, 133, 114, 115, 135, 134, 115, 116, 136, 135, 116, 117, 137, 136, 117, 118, 138, 137, 118, 119, 139, 138, 119, 100, 120, 139, 120, 121, 141, 140, 121, 122, 142, 141, 122, 123, 143, 142, 123, 124, 144, 143, 124, 125, 145, 144, 125, 126, 146, 145, 126, 127, 147, 146, 127, 128, 148, 147, 128, 129, 149, 148, 129, 130, 150, 149, 130, 131, 151, 150, 131, 132, 152, 151, 132, 133, 153, 152, 133, 134, 154, 153, 134, 135, 155, 154, 135, 136, 156, 155, 136, 137, 157, 156, 137, 138, 158, 157, 138, 139, 159, 158, 139, 120, 140, 159, 140, 141, 161, 160, 141, 142, 162, 161, 142, 143, 163, 162, 143, 144, 164, 163, 144, 145, 165, 164, 145, 146, 166, 165, 146, 147, 167, 166, 147, 148, 168, 167, 148, 149, 169, 168, 149, 150, 170, 169, 150, 151, 171, 170, 151, 152, 172, 171, 152, 153, 173, 172, 153, 154, 174, 173, 154, 155, 175, 174, 155, 156, 176, 175, 156, 157, 177, 176, 157, 158, 178, 177, 158, 159, 179, 178, 159, 140, 160, 179, 160, 161, 181, 180, 161, 162, 182, 181, 162, 163, 183, 182, 163, 164, 184, 183, 164, 165, 185, 184, 165, 166, 186, 185, 166, 167, 187, 186, 167, 168, 188, 187, 168, 169, 189, 188, 169, 170, 190, 189, 170, 171, 191, 190, 171, 172, 192, 191, 172, 173, 193, 192, 173, 174, 194, 193, 174, 175, 195, 194, 175, 176, 196, 195, 176, 177, 197, 196, 177, 178, 198, 197, 178, 179, 199, 198, 179, 160, 180, 199, 180, 181, 201, 200, 181, 182, 202, 201, 182, 183, 203, 202, 183, 184, 204, 203, 184, 185, 205, 204, 185, 186, 206, 205, 186, 187, 207, 206, 187, 188, 208, 207, 188, 189, 209, 208, 189, 190, 210, 209, 190, 191, 211, 210, 191, 192, 212, 211, 192, 193, 213, 212, 193, 194, 214, 213, 194, 195, 215, 214, 195, 196, 216, 215, 196, 197, 217, 216, 197, 198, 218, 217, 198, 199, 219, 218, 199, 180, 200, 219, 200, 201, 221, 220, 201, 202, 222, 221, 202, 203, 223, 222, 203, 204, 224, 223, 204, 205, 225, 224, 205, 206, 226, 225, 206, 207, 227, 226, 207, 208, 228, 227, 208, 209, 229, 228, 209, 210, 230, 229, 210, 211, 231, 230, 211, 212, 232, 231, 212, 213, 233, 232, 213, 214, 234, 233, 214, 215, 235, 234, 215, 216, 236, 235, 216, 217, 237, 236, 217, 218, 238, 237, 218, 219, 239, 238, 219, 200, 220, 239, 220, 221, 241, 240, 221, 222, 242, 241, 222, 223, 243, 242, 223, 224, 244, 243, 224, 225, 245, 244, 225, 226, 246, 245, 226, 227, 247, 246, 227, 228, 248, 247, 228, 229, 249, 248, 229, 230, 250, 249, 230, 231, 251, 250, 231, 232, 252, 251, 232, 233, 253, 252, 233, 234, 254, 253, 234, 235, 255, 254, 235, 236, 256, 255, 236, 237, 257, 256, 237, 238, 258, 257, 238, 239, 259, 258, 239, 220, 240, 259, 1, 0, 260, 2, 1, 260, 3, 2, 260, 4, 3, 260, 5, 4, 260, 6, 5, 260, 7, 6, 260, 8, 7, 260, 9, 8, 260, 10, 9, 260, 11, 10, 260, 12, 11, 260, 13, 12, 260, 14, 13, 260, 15, 14, 260, 16, 15, 260, 17, 16, 260, 18, 17, 260, 19, 18, 260, 0, 19, 260, 240, 241, 261, 241, 242, 261, 242, 243, 261, 243, 244, 261, 244, 245, 261, 245, 246, 261, 246, 247, 261, 247, 248, 261, 248, 249, 261, 249, 250, 261, 250, 251, 261, 251, 252, 261, 252, 253, 261, 253, 254, 261, 254, 255, 261, 255, 256, 261, 256, 257, 261, 257, 258, 261, 258, 259, 261, 259, 240, 261] rel material:binding = </Root/Looks/initialShadingGroup> normal3f[] normals = [(0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (0.30901688, 0.95105666, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-9.209561e-8, 1, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.9510565, 0), (-0.30901712, 0.9510565, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.9510565, 0), (-0.5877854, 0.8090168, 0), (-0.5877854, 0.8090168, 0), (-0.30901712, 0.9510565, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.8090172, 0.5877851, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877854, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877854, 0), (-0.5877852, -0.809017, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.809017, 0), (-0.30901694, -0.9510566, 0), (-0.30901694, -0.9510566, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (9.209565e-8, -1, 0), (9.209565e-8, -1, 0), (-0.30901694, -0.9510566, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.809017, -0.5877853, 0), (0.80901706, -0.5877853, 0), (0.5877853, -0.809017, 0), (0.809017, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (0.30901688, 0.95105666, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-9.209561e-8, 1, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.9510565, 0), (-0.30901712, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.9510565, 0), (-0.5877854, 0.8090168, 0), (-0.5877854, 0.8090169, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.8090172, 0.5877851, 0), (-0.5877854, 0.8090169, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (-0.30901694, -0.9510566, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (9.209565e-8, -1, 0), (9.2095654e-8, -1, 0), (-0.30901694, -0.9510566, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (9.2095654e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.80901706, -0.5877853, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (0.30901688, 0.95105666, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-9.209561e-8, 1, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901715, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.8090169, 0), (-0.5877854, 0.8090168, 0), (-0.30901715, 0.95105654, 0), (-0.5877854, 0.8090169, 0), (-0.8090172, 0.5877851, 0), (-0.8090172, 0.5877851, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (-0.30901694, -0.9510566, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (9.2095654e-8, -1, 0), (9.209565e-8, -1, 0), (-0.30901694, -0.9510566, 0), (9.2095654e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.80901706, -0.5877853, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.5877851, 0.809017, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (0.3090168, 0.95105654, 0), (0.5877851, 0.809017, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-9.209559e-8, 1, 0), (0.3090168, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901715, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901715, 0.95105654, 0), (-0.5877854, 0.8090168, 0), (-0.5877855, 0.8090168, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.8090172, 0.58778507, 0), (-0.5877855, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.58778507, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (-0.3090169, -0.95105654, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (9.209565e-8, -1, 0), (9.209565e-8, -1, 0), (-0.3090169, -0.95105654, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.80901706, -0.58778524, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.5877851, 0.809017, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.5877853, 0), (0.5877851, 0.809017, 0), (0.3090168, 0.95105654, 0), (0.3090168, 0.95105654, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.95105654, 0), (-9.209559e-8, 1, 0), (-9.209561e-8, 1, 0), (0.3090168, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877855, 0.8090168, 0), (-0.5877854, 0.8090168, 0), (-0.30901712, 0.95105654, 0), (-0.5877855, 0.8090168, 0), (-0.8090172, 0.58778507, 0), (-0.8090172, 0.5877851, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.58778507, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.3090169, -0.95105654, 0), (-0.30901694, -0.95105654, 0), (-0.5877852, -0.80901706, 0), (-0.3090169, -0.95105654, 0), (9.209565e-8, -1, 0), (9.209565e-8, -1, 0), (-0.30901694, -0.95105654, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.58778524, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.80901706, -0.5877853, 0), (0.58778524, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.95105654, 0), (0.3090168, 0.95105654, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.95105654, 0), (-9.209561e-8, 1, 0), (-9.209561e-8, 1, 0), (0.3090168, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.8090168, 0), (-0.5877854, 0.80901694, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.80901706, 0.5877851, 0), (-0.5877854, 0.80901694, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.80901706, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.95105654, 0), (-0.3090169, -0.95105654, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.95105654, 0), (9.209565e-8, -1, 0), (8.8258304e-8, -1, 0), (-0.3090169, -0.95105654, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.309017, -0.9510565, 0), (8.8258304e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.58778524, -0.809017, 0), (0.5877851, -0.809017, 0), (0.309017, -0.9510565, 0), (0.58778524, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.80901694, -0.5877853, 0), (0.5877851, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901694, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.5877851, 0.809017, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.95105654, 0), (0.3090168, 0.95105654, 0), (0.5877851, 0.809017, 0), (0.3090168, 0.95105654, 0), (-9.209561e-8, 1, 0), (-9.209559e-8, 1, 0), (0.3090168, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.80901694, 0), (-0.5877855, 0.8090169, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.80901694, 0), (-0.80901706, 0.5877851, 0), (-0.8090172, 0.5877851, 0), (-0.5877855, 0.8090169, 0), (-0.80901706, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.3090169, -0.95105654, 0), (-0.30901694, -0.95105654, 0), (-0.5877852, -0.80901706, 0), (-0.3090169, -0.95105654, 0), (8.8258304e-8, -1, 0), (8.825832e-8, -1, 0), (-0.30901694, -0.95105654, 0), (8.8258304e-8, -1, 0), (0.309017, -0.9510565, 0), (0.30901703, -0.95105654, 0), (8.825832e-8, -1, 0), (0.309017, -0.9510565, 0), (0.5877851, -0.809017, 0), (0.5877853, -0.80901706, 0), (0.30901703, -0.95105654, 0), (0.5877851, -0.809017, 0), (0.80901694, -0.5877853, 0), (0.80901706, -0.5877853, 0), (0.5877853, -0.80901706, 0), (0.80901694, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.58778524, 0), (0.9510569, 0.309016, 0), (0.80901694, 0.5877853, 0), (0.5877851, 0.809017, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.58778524, 0), (0.5877851, 0.809017, 0), (0.3090168, 0.95105654, 0), (0.3090168, 0.9510566, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.95105654, 0), (-9.209559e-8, 1, 0), (-9.209559e-8, 1, 0), (0.3090168, 0.9510566, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877855, 0.8090169, 0), (-0.5877856, 0.8090168, 0), (-0.30901712, 0.95105654, 0), (-0.5877855, 0.8090169, 0), (-0.8090172, 0.5877851, 0), (-0.8090172, 0.587785, 0), (-0.5877856, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.587785, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.30901694, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.8090169, -0.5877854, 0), (-0.9510565, -0.30901694, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.8090169, -0.5877854, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.95105654, 0), (-0.30901694, -0.9510565, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.95105654, 0), (8.825832e-8, -1, 0), (9.209566e-8, -1, 0), (-0.30901694, -0.9510565, 0), (8.825832e-8, -1, 0), (0.30901703, -0.95105654, 0), (0.30901703, -0.9510565, 0), (9.209566e-8, -1, 0), (0.30901703, -0.95105654, 0), (0.5877853, -0.80901706, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.80901706, 0), (0.80901706, -0.5877853, 0), (0.80901706, -0.58778524, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.309016, 0), (1, -9.593294e-7, 0), (0.9510569, 0.309016, 0), (0.80901694, 0.58778524, 0), (0.8090169, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.58778524, 0), (0.58778507, 0.80901706, 0), (0.5877851, 0.80901706, 0), (0.8090169, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.9510566, 0), (0.30901685, 0.9510566, 0), (0.5877851, 0.80901706, 0), (0.3090168, 0.9510566, 0), (-9.209559e-8, 1, 0), (-9.209559e-8, 1, 0), (0.30901685, 0.9510566, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877856, 0.8090168, 0), (-0.5877856, 0.8090168, 0), (-0.30901712, 0.95105654, 0), (-0.5877856, 0.8090168, 0), (-0.8090172, 0.587785, 0), (-0.8090172, 0.587785, 0), (-0.5877856, 0.8090168, 0), (-0.8090172, 0.587785, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.587785, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.30901694, 0), (-0.95105654, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.30901694, 0), (-0.8090169, -0.5877854, 0), (-0.8090169, -0.5877854, 0), (-0.95105654, -0.309017, 0), (-0.8090169, -0.5877854, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.8090169, -0.5877854, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510565, 0), (-0.3090169, -0.95105654, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510565, 0), (9.209566e-8, -1, 0), (8.8258325e-8, -1, 0), (-0.3090169, -0.95105654, 0), (9.209566e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (8.8258325e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.80901706, -0.58778524, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.309016, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.8090169, 0.5877853, 0), (0.8090169, 0.58778536, 0), (0.9510569, 0.3090161, 0), (0.8090169, 0.5877853, 0), (0.5877851, 0.80901706, 0), (0.58778524, 0.80901706, 0), (0.8090169, 0.58778536, 0), (0.5877851, 0.80901706, 0), (0.30901685, 0.9510566, 0), (0.3090169, 0.9510566, 0), (0.58778524, 0.80901706, 0), (0.30901685, 0.9510566, 0), (-9.209559e-8, 1, 0), (-9.209559e-8, 1, 0), (0.3090169, 0.9510566, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877856, 0.8090168, 0), (-0.5877856, 0.8090168, 0), (-0.30901712, 0.95105654, 0), (-0.5877856, 0.8090168, 0), (-0.8090172, 0.587785, 0), (-0.8090172, 0.587785, 0), (-0.5877856, 0.8090168, 0), (-0.8090172, 0.587785, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.587785, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.95105654, -0.309017, 0), (-0.95105654, -0.3090171, 0), (-1, -0, 0), (-0.95105654, -0.309017, 0), (-0.8090169, -0.5877854, 0), (-0.8090169, -0.58778554, 0), (-0.95105654, -0.3090171, 0), (-0.8090169, -0.5877854, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.809017, 0), (-0.8090169, -0.58778554, 0), (-0.5877852, -0.80901706, 0), (-0.3090169, -0.95105654, 0), (-0.3090169, -0.9510566, 0), (-0.5877852, -0.809017, 0), (-0.3090169, -0.95105654, 0), (8.8258325e-8, -1, 0), (8.4420996e-8, -1, 0), (-0.3090169, -0.9510566, 0), (8.8258325e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (8.4420996e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.809017, -0.58778524, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.809017, -0.58778524, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.3090161, 0), (1, -9.593294e-7, 0), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, 5.1435853e-7, 1), (0, 7.347982e-7, 1), (0, -0, 1), (0, 5.1435853e-7, 1), (0, -5.143587e-7, 1), (0, -7.347983e-7, 1), (0, 7.347982e-7, 1), (0, -5.143587e-7, 1), (0, -0.0000020574357, 1), (0, -0.0000022778752, 1), (0, -7.347983e-7, 1), (0, -0.0000020574357, 1), (0, -0, 1), (0, -0, 1), (0, -0.0000022778752, 1), (0, -0, 1), (0, 0.000001028718, 1), (0, 8.082783e-7, 1), (0, -0, 1), (0, 0.000001028718, 1), (0, -0, 1), (0, -0, 1), (0, 8.082783e-7, 1), (0, -0, 1), (0, 5.1435893e-7, 1), (0, 4.0413923e-7, 1), (0, -0, 1), (0, 5.1435893e-7, 1), (0, 7.715385e-7, 0.99999994), (0, 6.062089e-7, 1), (0, 4.0413923e-7, 1), (0, 7.715385e-7, 0.99999994), (0, 1.9288467e-7, 1), (0, 1.1021976e-7, 1), (0, 6.062089e-7, 1), (0, 1.9288467e-7, 1), (0, -6.429489e-8, 1), (0, -9.1849834e-8, 1), (0, 1.1021976e-7, 1), (0, -6.429489e-8, 1), (0, -0, 1), (0, -0, 1), (0, -9.1849834e-8, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, 0.0000010287182, 1), (0, 8.082787e-7, 1), (0, -0, 1), (0, 0.0000010287182, 1), (0, 0.0000010287172, 1), (0, 8.0827857e-7, 1), (0, 8.082787e-7, 1), (0, 0.0000010287172, 1), (0, -0, 1), (0, -0, 1), (0, 8.0827857e-7, 1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, 7.347982e-7, 1), (0, -1.7359638e-7, 1), (0, 7.347982e-7, 1), (0, -7.347983e-7, 1), (0, -1.7359638e-7, 1), (0, -7.347983e-7, 1), (0, -0.0000022778752, 1), (0, -1.7359638e-7, 1), (0, -0.0000022778752, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, 8.082783e-7, 1), (0, -1.7359638e-7, 1), (0, 8.082783e-7, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, 4.0413923e-7, 1), (0, -1.7359638e-7, 1), (0, 4.0413923e-7, 1), (0, 6.062089e-7, 1), (0, -1.7359638e-7, 1), (0, 6.062089e-7, 1), (0, 1.1021976e-7, 1), (0, -1.7359638e-7, 1), (0, 1.1021976e-7, 1), (0, -9.1849834e-8, 1), (0, -1.7359638e-7, 1), (0, -9.1849834e-8, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, 8.082787e-7, 1), (0, -1.7359638e-7, 1), (0, 8.082787e-7, 1), (0, 8.0827857e-7, 1), (0, -1.7359638e-7, 1), (0, 8.0827857e-7, 1), (0, -0, 1), (0, -1.7359638e-7, 1)] ( interpolation = "faceVarying" ) point3f[] points point3f[] restPoints = [(0.95105714, 0.30901718, 0), (0.80901754, 0.5877856, 0), (0.5877856, 0.8090175, 0), (0.30901715, 0.951057, 0), (0, 1.0000005, 0), (-0.30901715, 0.95105696, 0), (-0.5877855, 0.8090173, 0), (-0.80901724, 0.5877854, 0), (-0.9510568, 0.30901706, 0), (-1.0000002, -0, 0), (-0.9510568, -0.30901706, 0), (-0.8090172, -0.58778536, 0), (-0.58778536, -0.8090171, 0), (-0.30901706, -0.95105666, 0), (-2.9802322e-8, -1.0000001, 0), (0.30901697, -0.9510566, 0), (0.58778524, -0.80901706, 0), (0.809017, -0.5877853, 0), (0.95105654, -0.309017, 0), (1, -0, 0), (1.9021143, 0.61803436, 0), (1.6180351, 1.1755712, 0), (1.1755712, 1.618035, 0), (0.6180343, 1.902114, 0), (0, 2.000001, 0), (-0.6180343, 1.9021139, 0), (-1.175571, 1.6180346, 0), (-1.6180345, 1.1755708, 0), (-1.9021136, 0.6180341, 0), (-2.0000005, -0, 0), (-1.9021136, -0.6180341, 0), (-1.6180344, -1.1755707, 0), (-1.1755707, -1.6180342, 0), (-0.6180341, -1.9021133, 0), (-5.9604645e-8, -2.0000002, 0), (0.61803395, -1.9021132, 0), (1.1755705, -1.6180341, 0), (1.618034, -1.1755706, 0), (1.9021131, -0.618034, 0), (2, -0, 0), (1.9021143, 0.61803436, 1), (1.6180351, 1.1755712, 1), (1.1755712, 1.618035, 1), (0.6180343, 1.902114, 1), (0, 2.000001, 1), (-0.6180343, 1.9021139, 1), (-1.175571, 1.6180346, 1), (-1.6180345, 1.1755708, 1), (-1.9021136, 0.6180341, 1), (-2.0000005, -0, 1), (-1.9021136, -0.6180341, 1), (-1.6180344, -1.1755707, 1), (-1.1755707, -1.6180342, 1), (-0.6180341, -1.9021133, 1), (-5.9604645e-8, -2.0000002, 1), (0.61803395, -1.9021132, 1), (1.1755705, -1.6180341, 1), (1.618034, -1.1755706, 1), (1.9021131, -0.618034, 1), (2, -0, 1), (1.9021143, 0.61803436, 2), (1.6180351, 1.1755712, 2), (1.1755712, 1.618035, 2), (0.6180343, 1.902114, 2), (0, 2.000001, 2), (-0.6180343, 1.9021139, 2), (-1.175571, 1.6180346, 2), (-1.6180345, 1.1755708, 2), (-1.9021136, 0.6180341, 2), (-2.0000005, -0, 2), (-1.9021136, -0.6180341, 2), (-1.6180344, -1.1755707, 2), (-1.1755707, -1.6180342, 2), (-0.6180341, -1.9021133, 2), (-5.9604645e-8, -2.0000002, 2), (0.61803395, -1.9021132, 2), (1.1755705, -1.6180341, 2), (1.618034, -1.1755706, 2), (1.9021131, -0.618034, 2), (2, -0, 2), (1.9021143, 0.61803436, 3), (1.6180351, 1.1755712, 3), (1.1755712, 1.618035, 3), (0.6180343, 1.902114, 3), (0, 2.000001, 3), (-0.6180343, 1.9021139, 3), (-1.175571, 1.6180346, 3), (-1.6180345, 1.1755708, 3), (-1.9021136, 0.6180341, 3), (-2.0000005, -0, 3), (-1.9021136, -0.6180341, 3), (-1.6180344, -1.1755707, 3), (-1.1755707, -1.6180342, 3), (-0.6180341, -1.9021133, 3), (-5.9604645e-8, -2.0000002, 3), (0.61803395, -1.9021132, 3), (1.1755705, -1.6180341, 3), (1.618034, -1.1755706, 3), (1.9021131, -0.618034, 3), (2, -0, 3), (1.9021143, 0.61803436, 4), (1.6180351, 1.1755712, 4), (1.1755712, 1.618035, 4), (0.6180343, 1.902114, 4), (0, 2.000001, 4), (-0.6180343, 1.9021139, 4), (-1.175571, 1.6180346, 4), (-1.6180345, 1.1755708, 4), (-1.9021136, 0.6180341, 4), (-2.0000005, -0, 4), (-1.9021136, -0.6180341, 4), (-1.6180344, -1.1755707, 4), (-1.1755707, -1.6180342, 4), (-0.6180341, -1.9021133, 4), (-5.9604645e-8, -2.0000002, 4), (0.61803395, -1.9021132, 4), (1.1755705, -1.6180341, 4), (1.618034, -1.1755706, 4), (1.9021131, -0.618034, 4), (2, -0, 4), (1.9021143, 0.61803436, 5), (1.6180351, 1.1755712, 5), (1.1755712, 1.618035, 5), (0.6180343, 1.902114, 5), (0, 2.000001, 5), (-0.6180343, 1.9021139, 5), (-1.175571, 1.6180346, 5), (-1.6180345, 1.1755708, 5), (-1.9021136, 0.6180341, 5), (-2.0000005, -0, 5), (-1.9021136, -0.6180341, 5), (-1.6180344, -1.1755707, 5), (-1.1755707, -1.6180342, 5), (-0.6180341, -1.9021133, 5), (-5.9604645e-8, -2.0000002, 5), (0.61803395, -1.9021132, 5), (1.1755705, -1.6180341, 5), (1.618034, -1.1755706, 5), (1.9021131, -0.618034, 5), (2, -0, 5), (1.9021143, 0.61803436, 6), (1.6180351, 1.1755712, 6), (1.1755712, 1.618035, 6), (0.6180343, 1.902114, 6), (0, 2.000001, 6), (-0.6180343, 1.9021139, 6), (-1.175571, 1.6180346, 6), (-1.6180345, 1.1755708, 6), (-1.9021136, 0.6180341, 6), (-2.0000005, -0, 6), (-1.9021136, -0.6180341, 6), (-1.6180344, -1.1755707, 6), (-1.1755707, -1.6180342, 6), (-0.6180341, -1.9021133, 6), (-5.9604645e-8, -2.0000002, 6), (0.61803395, -1.9021132, 6), (1.1755705, -1.6180341, 6), (1.618034, -1.1755706, 6), (1.9021131, -0.618034, 6), (2, -0, 6), (1.9021143, 0.61803436, 7), (1.6180351, 1.1755712, 7), (1.1755712, 1.618035, 7), (0.6180343, 1.902114, 7), (0, 2.000001, 7), (-0.6180343, 1.9021139, 7), (-1.175571, 1.6180346, 7), (-1.6180345, 1.1755708, 7), (-1.9021136, 0.6180341, 7), (-2.0000005, -0, 7), (-1.9021136, -0.6180341, 7), (-1.6180344, -1.1755707, 7), (-1.1755707, -1.6180342, 7), (-0.6180341, -1.9021133, 7), (-5.9604645e-8, -2.0000002, 7), (0.61803395, -1.9021132, 7), (1.1755705, -1.6180341, 7), (1.618034, -1.1755706, 7), (1.9021131, -0.618034, 7), (2, -0, 7), (1.9021143, 0.61803436, 8), (1.6180351, 1.1755712, 8), (1.1755712, 1.618035, 8), (0.6180343, 1.902114, 8), (0, 2.000001, 8), (-0.6180343, 1.9021139, 8), (-1.175571, 1.6180346, 8), (-1.6180345, 1.1755708, 8), (-1.9021136, 0.6180341, 8), (-2.0000005, -0, 8), (-1.9021136, -0.6180341, 8), (-1.6180344, -1.1755707, 8), (-1.1755707, -1.6180342, 8), (-0.6180341, -1.9021133, 8), (-5.9604645e-8, -2.0000002, 8), (0.61803395, -1.9021132, 8), (1.1755705, -1.6180341, 8), (1.618034, -1.1755706, 8), (1.9021131, -0.618034, 8), (2, -0, 8), (1.9021143, 0.61803436, 9), (1.6180351, 1.1755712, 9), (1.1755712, 1.618035, 9), (0.6180343, 1.902114, 9), (0, 2.000001, 9), (-0.6180343, 1.9021139, 9), (-1.175571, 1.6180346, 9), (-1.6180345, 1.1755708, 9), (-1.9021136, 0.6180341, 9), (-2.0000005, -0, 9), (-1.9021136, -0.6180341, 9), (-1.6180344, -1.1755707, 9), (-1.1755707, -1.6180342, 9), (-0.6180341, -1.9021133, 9), (-5.9604645e-8, -2.0000002, 9), (0.61803395, -1.9021132, 9), (1.1755705, -1.6180341, 9), (1.618034, -1.1755706, 9), (1.9021131, -0.618034, 9), (2, -0, 9), (1.9021143, 0.61803436, 10), (1.6180351, 1.1755712, 10), (1.1755712, 1.618035, 10), (0.6180343, 1.902114, 10), (0, 2.000001, 10), (-0.6180343, 1.9021139, 10), (-1.175571, 1.6180346, 10), (-1.6180345, 1.1755708, 10), (-1.9021136, 0.6180341, 10), (-2.0000005, -0, 10), (-1.9021136, -0.6180341, 10), (-1.6180344, -1.1755707, 10), (-1.1755707, -1.6180342, 10), (-0.6180341, -1.9021133, 10), (-5.9604645e-8, -2.0000002, 10), (0.61803395, -1.9021132, 10), (1.1755705, -1.6180341, 10), (1.618034, -1.1755706, 10), (1.9021131, -0.618034, 10), (2, -0, 10), (0.95105714, 0.30901718, 10), (0.80901754, 0.5877856, 10), (0.5877856, 0.8090175, 10), (0.30901715, 0.951057, 10), (0, 1.0000005, 10), (-0.30901715, 0.95105696, 10), (-0.5877855, 0.8090173, 10), (-0.80901724, 0.5877854, 10), (-0.9510568, 0.30901706, 10), (-1.0000002, -0, 10), (-0.9510568, -0.30901706, 10), (-0.8090172, -0.58778536, 10), (-0.58778536, -0.8090171, 10), (-0.30901706, -0.95105666, 10), (-2.9802322e-8, -1.0000001, 10), (0.30901697, -0.9510566, 10), (0.58778524, -0.80901706, 10), (0.809017, -0.5877853, 10), (0.95105654, -0.309017, 10), (1, -0, 10), (0, -0, 0), (0, -0, 10)] color3f[] primvars:displayColor = [(0.4, 0.4, 0.4)] ( customData = { dictionary Maya = { bool generated = 1 } } ) matrix4d primvars:skel:geomBindTransform = ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (0, 0, 0, 1) ) int[] primvars:skel:jointIndices = [0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 0, 1, 2, 0, 0, 4, 3, 0, 0, 0] ( elementSize = 5 interpolation = "vertex" ) float[] primvars:skel:jointWeights = [0.9914398, 0.007798158, 0.00056962454, 0.00011597502, 0.00007644505, 0.9911016, 0.008106242, 0.00059212884, 0.00012055687, 0.000079465186, 0.99056286, 0.008597037, 0.0006279794, 0.00012785601, 0.00008427643, 0.98986334, 0.009234303, 0.0006745291, 0.0001373335, 0.00009052352, 0.9890613, 0.009965006, 0.00072790415, 0.00014820059, 0.000097686585, 0.98823136, 0.010720953, 0.0007831231, 0.00015944311, 0.0001050971, 0.9874593, 0.011424304, 0.0008345, 0.00016990342, 0.00011199202, 0.9868309, 0.011996779, 0.00087631703, 0.00017841732, 0.000117603966, 0.98642015, 0.012370941, 0.0009036481, 0.00018398189, 0.000121271856, 0.98627734, 0.012501058, 0.0009131526, 0.000185917, 0.00012254738, 0.98642015, 0.012370941, 0.0009036481, 0.00018398189, 0.000121271856, 0.986831, 0.011996778, 0.00087631686, 0.00017841728, 0.000117603944, 0.9874593, 0.011424296, 0.00083449937, 0.00016990327, 0.000111991925, 0.9882313, 0.01072094, 0.000783122, 0.0001594429, 0.00010509696, 0.98906124, 0.009964993, 0.0007279031, 0.00014820037, 0.00009768643, 0.98986334, 0.009234288, 0.00067452795, 0.00013733325, 0.000090523354, 0.99056286, 0.008597019, 0.000627978, 0.00012785573, 0.00008427624, 0.9911016, 0.008106223, 0.0005921274, 0.000120556564, 0.00007946499, 0.9914398, 0.00779814, 0.0005696231, 0.00011597471, 0.000076444856, 0.991555, 0.00769326, 0.000561962, 0.000114414936, 0.00007541673, 0.9122156, 0.07669155, 0.00810055, 0.0017938935, 0.0011983063, 0.9107189, 0.077999204, 0.00823867, 0.0018244808, 0.0012187384, 0.90837055, 0.0800508, 0.008455371, 0.0018724698, 0.0012507946, 0.90539, 0.0826547, 0.008730407, 0.0019333775, 0.0012914804, 0.9020614, 0.085562706, 0.0090375645, 0.0020013985, 0.001336918, 0.8987084, 0.08849201, 0.009346972, 0.002069918, 0.0013826884, 0.89566416, 0.09115167, 0.009627898, 0.00213213, 0.0014242454, 0.8932356, 0.09327323, 0.0098519875, 0.0021817551, 0.0014573947, 0.89167106, 0.09464019, 0.009996371, 0.0022137295, 0.0014787534, 0.891131, 0.09511205, 0.010046211, 0.0022247666, 0.0014861261, 0.89167106, 0.09464019, 0.009996371, 0.0022137295, 0.0014787534, 0.8932356, 0.093273215, 0.009851985, 0.0021817544, 0.0014573943, 0.8956642, 0.091151625, 0.009627892, 0.0021321285, 0.0014242444, 0.8987086, 0.088491954, 0.009346964, 0.0020699159, 0.001382687, 0.9020615, 0.08556263, 0.009037553, 0.002001396, 0.0013369162, 0.90539014, 0.0826546, 0.008730393, 0.0019333743, 0.0012914783, 0.9083707, 0.08005069, 0.008455355, 0.0018724661, 0.0012507922, 0.91071904, 0.07799908, 0.008238653, 0.0018244769, 0.0012187357, 0.91221595, 0.07669144, 0.008100534, 0.0017938899, 0.0011983039, 0.9127295, 0.07624267, 0.008053132, 0.0017833925, 0.0011912917, 0.79757524, 0.18422364, 0.01401941, 0.002549811, 0.0016318791, 0.79559076, 0.18602969, 0.01415685, 0.0025748082, 0.0016478773, 0.7925068, 0.18883635, 0.014370436, 0.0026136546, 0.0016727389, 0.78863347, 0.19236143, 0.014638692, 0.0026624443, 0.0017039644, 0.7843574, 0.19625312, 0.014934849, 0.0027163082, 0.0017384373, 0.7801007, 0.20012699, 0.015229651, 0.002769926, 0.0017727527, 0.77627844, 0.20360558, 0.015494369, 0.0028180722, 0.0018035662, 0.77325755, 0.20635484, 0.015703585, 0.002856124, 0.0018279193, 0.7713241, 0.20811455, 0.015837498, 0.0028804794, 0.0018435069, 0.77065885, 0.20871985, 0.015883561, 0.0028888572, 0.0018488687, 0.7713241, 0.20811455, 0.015837498, 0.0028804794, 0.0018435069, 0.7732577, 0.20635484, 0.015703583, 0.0028561235, 0.001827919, 0.7762785, 0.20360552, 0.015494359, 0.0028180701, 0.001803565, 0.7801008, 0.2001269, 0.015229637, 0.0027699233, 0.0017727509, 0.7843574, 0.19625297, 0.014934831, 0.0027163047, 0.001738435, 0.78863364, 0.19236128, 0.014638673, 0.0026624403, 0.0017039618, 0.79250705, 0.18883617, 0.014370412, 0.0026136497, 0.0016727359, 0.795591, 0.18602951, 0.014156824, 0.0025748028, 0.0016478739, 0.7975755, 0.18422346, 0.014019383, 0.0025498057, 0.0016318756, 0.7982601, 0.18360043, 0.01397197, 0.0025411823, 0.0016263566, 0.6015815, 0.37000003, 0.023125038, 0.0032929934, 0.0020004367, 0.60011387, 0.371363, 0.023210224, 0.0033051237, 0.0020078055, 0.59784955, 0.37346572, 0.02334164, 0.0033238372, 0.0020191737, 0.5950339, 0.37608063, 0.02350507, 0.0033471093, 0.002033311, 0.5919611, 0.37893423, 0.023683418, 0.003372506, 0.002048739, 0.58893895, 0.38174084, 0.02385883, 0.0033974845, 0.0020639133, 0.5862557, 0.38423267, 0.024014562, 0.0034196607, 0.0020773849, 0.58415526, 0.3861833, 0.024136472, 0.0034370206, 0.0020879305, 0.5828201, 0.38742322, 0.024213966, 0.0034480554, 0.002094634, 0.58236253, 0.3878482, 0.024240525, 0.0034518375, 0.0020969317, 0.5828201, 0.38742322, 0.024213966, 0.0034480554, 0.002094634, 0.5841553, 0.3861833, 0.024136467, 0.0034370197, 0.00208793, 0.5862558, 0.38423264, 0.02401455, 0.0034196584, 0.0020773832, 0.588939, 0.3817408, 0.02385881, 0.003397481, 0.002063911, 0.5919612, 0.37893417, 0.023683393, 0.003372502, 0.0020487367, 0.595034, 0.37608057, 0.02350504, 0.0033471042, 0.002033308, 0.5978497, 0.37346566, 0.023341607, 0.0033238316, 0.0020191702, 0.600114, 0.3713629, 0.023210185, 0.0033051171, 0.0020078013, 0.60158163, 0.36999995, 0.023124997, 0.0032929864, 0.0020004322, 0.6020899, 0.36952794, 0.023095496, 0.0032887855, 0.0019978804, 0.47403845, 0.4736809, 0.044845615, 0.0047368202, 0.0026980822, 0.4739865, 0.47372782, 0.04485005, 0.004737289, 0.0026983493, 0.47392228, 0.47378576, 0.044855528, 0.0047378675, 0.0026986788, 0.47387025, 0.47383252, 0.04485995, 0.004738334, 0.0026989444, 0.47385046, 0.47385046, 0.04486164, 0.0047385124, 0.0026990462, 0.47385046, 0.47385046, 0.044861637, 0.0047385124, 0.002699046, 0.47385046, 0.47385046, 0.04486163, 0.004738511, 0.0026990452, 0.47385043, 0.47385043, 0.044861615, 0.004738509, 0.002699044, 0.47385043, 0.47385043, 0.04486161, 0.0047385087, 0.0026990438, 0.47385043, 0.47385043, 0.044861607, 0.0047385083, 0.0026990436, 0.47385043, 0.47385043, 0.04486161, 0.0047385087, 0.0026990438, 0.47385043, 0.47385043, 0.044861604, 0.004738508, 0.0026990434, 0.47385043, 0.47385043, 0.0448616, 0.0047385073, 0.002699043, 0.47385043, 0.47385043, 0.0448616, 0.004738507, 0.002699043, 0.47385043, 0.47385043, 0.044861592, 0.0047385064, 0.0026990424, 0.47387028, 0.47383255, 0.044859894, 0.0047383267, 0.0026989402, 0.47392228, 0.47378573, 0.04485546, 0.004737858, 0.0026986732, 0.47398654, 0.47372785, 0.04484998, 0.0047372794, 0.0026983435, 0.4740386, 0.4736811, 0.044845548, 0.004736811, 0.002698077, 0.47405848, 0.4736632, 0.044843853, 0.0047366316, 0.0026979747, 0.5210978, 0.33350274, 0.13027461, 0.009913892, 0.0052109896, 0.5210978, 0.33350274, 0.13027461, 0.009913892, 0.0052109896, 0.5210978, 0.33350274, 0.1302746, 0.009913891, 0.005210989, 0.5210978, 0.33350274, 0.1302746, 0.009913888, 0.0052109878, 0.52109784, 0.33350274, 0.13027458, 0.009913887, 0.0052109873, 0.52109784, 0.33350274, 0.13027458, 0.009913887, 0.005210987, 0.5210979, 0.33350274, 0.13027458, 0.009913885, 0.005210986, 0.5210979, 0.3335027, 0.13027455, 0.009913881, 0.0052109845, 0.5210979, 0.3335027, 0.13027453, 0.009913881, 0.005210984, 0.5210979, 0.3335027, 0.13027453, 0.00991388, 0.0052109836, 0.5210979, 0.3335027, 0.13027453, 0.009913881, 0.005210984, 0.5210979, 0.3335027, 0.13027453, 0.009913879, 0.005210983, 0.5210979, 0.3335027, 0.13027452, 0.009913878, 0.005210982, 0.5210979, 0.3335027, 0.13027452, 0.009913878, 0.005210982, 0.5210979, 0.3335027, 0.13027452, 0.009913877, 0.0052109817, 0.52109796, 0.3335027, 0.1302745, 0.009913876, 0.005210981, 0.52109796, 0.3335027, 0.1302745, 0.009913875, 0.0052109803, 0.52109796, 0.3335027, 0.1302745, 0.009913874, 0.0052109803, 0.52109796, 0.3335027, 0.13027449, 0.009913874, 0.00521098, 0.52109796, 0.3335027, 0.13027449, 0.009913873, 0.00521098, 0.51307684, 0.32836935, 0.12826937, 0.020523116, 0.009761293, 0.51307684, 0.32836935, 0.12826937, 0.020523116, 0.009761293, 0.51307684, 0.32836935, 0.12826937, 0.020523114, 0.0097612925, 0.5130769, 0.32836935, 0.12826936, 0.02052311, 0.009761291, 0.5130769, 0.32836935, 0.12826934, 0.020523109, 0.009761289, 0.5130769, 0.32836935, 0.12826934, 0.020523107, 0.009761289, 0.51307696, 0.32836935, 0.12826933, 0.020523103, 0.009761286, 0.513077, 0.32836938, 0.12826933, 0.0205231, 0.009761285, 0.513077, 0.32836935, 0.12826933, 0.0205231, 0.009761284, 0.513077, 0.32836935, 0.12826931, 0.020523097, 0.009761283, 0.513077, 0.32836935, 0.12826933, 0.0205231, 0.009761284, 0.513077, 0.32836935, 0.12826931, 0.020523096, 0.009761283, 0.513077, 0.32836932, 0.1282693, 0.020523092, 0.00976128, 0.513077, 0.32836932, 0.1282693, 0.02052309, 0.00976128, 0.513077, 0.32836932, 0.12826928, 0.020523088, 0.009761279, 0.513077, 0.32836932, 0.12826928, 0.020523086, 0.009761278, 0.513077, 0.32836932, 0.12826927, 0.020523084, 0.009761278, 0.513077, 0.32836932, 0.12826927, 0.020523084, 0.009761277, 0.5130771, 0.32836932, 0.12826927, 0.020523084, 0.009761277, 0.5130771, 0.32836932, 0.12826927, 0.020523082, 0.009761276, 0.44856134, 0.44856134, 0.042467423, 0.042467423, 0.01794249, 0.44856134, 0.44856134, 0.042467423, 0.042467423, 0.01794249, 0.44856134, 0.44856134, 0.042467415, 0.042467415, 0.017942488, 0.44856134, 0.44856134, 0.042467408, 0.042467408, 0.017942484, 0.44856137, 0.44856137, 0.042467404, 0.042467404, 0.01794248, 0.44856137, 0.44856137, 0.042467404, 0.042467404, 0.01794248, 0.44856137, 0.44856137, 0.042467393, 0.042467393, 0.017942477, 0.44856137, 0.44856137, 0.042467386, 0.042467386, 0.017942473, 0.44856137, 0.44856137, 0.04246738, 0.04246738, 0.017942471, 0.4485614, 0.4485614, 0.042467378, 0.042467378, 0.01794247, 0.44856137, 0.44856137, 0.04246738, 0.04246738, 0.017942471, 0.4485614, 0.4485614, 0.042467374, 0.042467374, 0.017942468, 0.4485614, 0.4485614, 0.04246737, 0.04246737, 0.017942466, 0.4485614, 0.4485614, 0.04246737, 0.04246737, 0.017942466, 0.4485614, 0.4485614, 0.042467367, 0.042467367, 0.017942462, 0.4485614, 0.4485614, 0.04246736, 0.04246736, 0.01794246, 0.4485614, 0.4485614, 0.04246736, 0.04246736, 0.01794246, 0.4485614, 0.4485614, 0.042467356, 0.042467356, 0.017942458, 0.44856143, 0.44856143, 0.042467356, 0.042467356, 0.017942458, 0.4485615, 0.4485615, 0.042467356, 0.042467356, 0.017942458, 0.49390632, 0.3161002, 0.123476736, 0.046760444, 0.019756293, 0.49390632, 0.3161002, 0.123476736, 0.046760444, 0.019756293, 0.49390632, 0.3161002, 0.12347673, 0.04676044, 0.019756291, 0.49390635, 0.3161002, 0.12347672, 0.046760432, 0.019756287, 0.49390638, 0.3161002, 0.123476714, 0.04676043, 0.019756285, 0.49390638, 0.3161002, 0.12347671, 0.04676043, 0.019756285, 0.4939064, 0.3161002, 0.1234767, 0.04676042, 0.01975628, 0.49390644, 0.31610018, 0.123476684, 0.04676041, 0.019756276, 0.49390644, 0.31610018, 0.12347668, 0.04676041, 0.019756274, 0.49390647, 0.31610018, 0.12347667, 0.046760406, 0.019756272, 0.49390644, 0.31610018, 0.12347668, 0.04676041, 0.019756274, 0.49390647, 0.31610018, 0.12347667, 0.046760403, 0.019756272, 0.49390647, 0.31610018, 0.12347666, 0.0467604, 0.01975627, 0.4939065, 0.31610018, 0.12347666, 0.0467604, 0.019756269, 0.49390656, 0.3161002, 0.12347667, 0.0467604, 0.019756269, 0.4939066, 0.3161002, 0.12347666, 0.04676039, 0.019756267, 0.4939066, 0.3161002, 0.123476654, 0.04676039, 0.019756265, 0.4939066, 0.3161002, 0.123476654, 0.046760388, 0.019756265, 0.49390653, 0.31610018, 0.12347664, 0.046760384, 0.019756263, 0.49390653, 0.31610018, 0.12347663, 0.046760384, 0.019756261, 0.4631718, 0.2964301, 0.1157931, 0.1157931, 0.00881185, 0.4631718, 0.2964301, 0.1157931, 0.1157931, 0.00881185, 0.46317184, 0.2964301, 0.1157931, 0.1157931, 0.008811848, 0.46317187, 0.2964301, 0.11579309, 0.11579309, 0.008811847, 0.46317187, 0.2964301, 0.11579308, 0.11579308, 0.008811845, 0.46317193, 0.29643014, 0.115793094, 0.115793094, 0.008811846, 0.4631719, 0.2964301, 0.115793064, 0.115793064, 0.008811844, 0.46317193, 0.2964301, 0.11579306, 0.11579306, 0.008811842, 0.46317196, 0.2964301, 0.11579305, 0.11579305, 0.008811841, 0.46317196, 0.2964301, 0.11579304, 0.11579304, 0.00881184, 0.46317196, 0.2964301, 0.11579305, 0.11579305, 0.008811841, 0.46317196, 0.2964301, 0.11579304, 0.11579304, 0.00881184, 0.463172, 0.2964301, 0.115793034, 0.115793034, 0.008811838, 0.463172, 0.2964301, 0.115793034, 0.115793034, 0.008811838, 0.463172, 0.2964301, 0.11579303, 0.11579303, 0.008811837, 0.46317202, 0.2964301, 0.11579302, 0.11579302, 0.008811836, 0.46317202, 0.2964301, 0.11579302, 0.11579302, 0.008811835, 0.46317202, 0.2964301, 0.11579301, 0.11579301, 0.008811835, 0.46317202, 0.2964301, 0.11579301, 0.11579301, 0.008811835, 0.46317205, 0.2964301, 0.11579301, 0.11579301, 0.008811834, 0.36434186, 0.36434186, 0.2331789, 0.034493964, 0.003643427, 0.36434186, 0.36434186, 0.2331789, 0.034493964, 0.003643427, 0.36434186, 0.36434186, 0.2331789, 0.03449396, 0.0036434263, 0.36434186, 0.36434186, 0.23317888, 0.034493953, 0.0036434254, 0.36434186, 0.36434186, 0.23317888, 0.03449395, 0.003643425, 0.36434188, 0.36434188, 0.23317888, 0.03449395, 0.003643425, 0.3643419, 0.3643419, 0.2331789, 0.034493946, 0.0036434243, 0.36434188, 0.36434188, 0.23317887, 0.034493934, 0.0036434229, 0.36434188, 0.36434188, 0.23317885, 0.034493934, 0.0036434224, 0.36434188, 0.36434188, 0.23317885, 0.03449393, 0.0036434222, 0.36434188, 0.36434188, 0.23317885, 0.034493934, 0.0036434224, 0.36434188, 0.36434188, 0.23317885, 0.034493927, 0.003643422, 0.3643419, 0.3643419, 0.23317885, 0.034493923, 0.0036434212, 0.3643419, 0.3643419, 0.23317885, 0.034493923, 0.003643421, 0.3643419, 0.3643419, 0.23317884, 0.03449392, 0.0036434208, 0.3643419, 0.3643419, 0.23317884, 0.034493916, 0.00364342, 0.3643419, 0.3643419, 0.23317884, 0.034493916, 0.0036434198, 0.3643419, 0.3643419, 0.23317884, 0.034493912, 0.0036434196, 0.3643419, 0.3643419, 0.23317884, 0.034493912, 0.0036434196, 0.3643419, 0.3643419, 0.23317882, 0.03449391, 0.0036434191, 0.3723429, 0.3723429, 0.23829958, 0.014893747, 0.0021208618, 0.3723429, 0.3723429, 0.23829958, 0.014893747, 0.0021208618, 0.37234294, 0.37234294, 0.23829961, 0.014893747, 0.0021208616, 0.3723429, 0.3723429, 0.23829956, 0.014893741, 0.0021208609, 0.3723429, 0.3723429, 0.23829956, 0.0148937395, 0.0021208606, 0.3723429, 0.3723429, 0.23829956, 0.0148937395, 0.0021208604, 0.3723429, 0.3723429, 0.23829955, 0.014893736, 0.00212086, 0.37234294, 0.37234294, 0.23829953, 0.014893732, 0.0021208592, 0.37234294, 0.37234294, 0.23829953, 0.01489373, 0.002120859, 0.37234294, 0.37234294, 0.23829953, 0.014893729, 0.0021208588, 0.37234294, 0.37234294, 0.23829953, 0.01489373, 0.002120859, 0.37234294, 0.37234294, 0.23829952, 0.014893728, 0.0021208585, 0.37234294, 0.37234294, 0.23829952, 0.0148937255, 0.0021208583, 0.37234294, 0.37234294, 0.23829952, 0.0148937255, 0.0021208583, 0.37234294, 0.37234294, 0.23829952, 0.014893724, 0.0021208578, 0.37234294, 0.37234294, 0.2382995, 0.014893722, 0.0021208576, 0.37234297, 0.37234297, 0.2382995, 0.014893721, 0.0021208574, 0.37234297, 0.37234297, 0.2382995, 0.01489372, 0.0021208574, 0.37234297, 0.37234297, 0.2382995, 0.01489372, 0.0021208571, 0.37234297, 0.37234297, 0.2382995, 0.014893719, 0.0021208571, 0.44368318, 0.44368318, 0.110920936, 0.0015352396, 0.00017747372, 0.44368318, 0.44368318, 0.110920936, 0.0015352396, 0.00017747372, 0.44368318, 0.44368318, 0.11092093, 0.0015352394, 0.00017747369, 0.44368318, 0.44368318, 0.11092091, 0.0015352389, 0.00017747364, 0.44368318, 0.44368318, 0.110920906, 0.0015352387, 0.00017747362, 0.4436832, 0.4436832, 0.1109209, 0.0015352387, 0.0001774736, 0.4436832, 0.4436832, 0.11092088, 0.0015352382, 0.00017747354, 0.4436832, 0.4436832, 0.11092087, 0.0015352378, 0.0001774735, 0.4436832, 0.4436832, 0.11092086, 0.0015352377, 0.00017747347, 0.4436832, 0.4436832, 0.110920854, 0.0015352374, 0.00017747346, 0.4436832, 0.4436832, 0.11092086, 0.0015352377, 0.00017747347, 0.4436832, 0.4436832, 0.110920854, 0.0015352373, 0.00017747344, 0.44368324, 0.44368324, 0.11092085, 0.0015352371, 0.00017747341, 0.44368324, 0.44368324, 0.11092084, 0.001535237, 0.0001774734, 0.44368324, 0.44368324, 0.11092083, 0.0015352367, 0.00017747337, 0.44368324, 0.44368324, 0.110920824, 0.0015352365, 0.00017747334, 0.4436833, 0.4436833, 0.11092083, 0.0015352366, 0.00017747334, 0.4436833, 0.4436833, 0.11092083, 0.0015352366, 0.00017747334, 0.44368324, 0.44368324, 0.11092082, 0.0015352363, 0.00017747331, 0.44368324, 0.44368324, 0.11092081, 0.0015352361, 0.0001774733, 0.9999998, 1.7388004e-7, 1.08675025e-8, 0, 0, 0.5, 0.5, 0, 0, 0] ( elementSize = 5 interpolation = "vertex" ) float2[] primvars:st = [(0.57430136, 0.13210803), (0.5632045, 0.11032924), (0.626409, 0.064408496), (0.64860266, 0.10796607), (0.5459207, 0.0930455), (0.5918415, 0.02984102), (0.52414197, 0.08194867), (0.54828393, 0.0076473355), (0.5, 0.07812497), (0.5, -7.4505806e-8), (0.47585803, 0.08194867), (0.45171607, 0.0076473504), (0.45407927, 0.09304553), (0.4081585, 0.02984105), (0.43679553, 0.11032927), (0.37359107, 0.064408526), (0.4256987, 0.13210803), (0.3513974, 0.1079661), (0.421875, 0.15625), (0.34374997, 0.15625), (0.4256987, 0.18039197), (0.3513974, 0.2045339), (0.43679553, 0.20217073), (0.37359107, 0.24809146), (0.45407927, 0.21945447), (0.40815854, 0.28265893), (0.47585803, 0.2305513), (0.4517161, 0.3048526), (0.5, 0.234375), (0.5, 0.3125), (0.52414197, 0.2305513), (0.5482839, 0.3048526), (0.5459207, 0.21945447), (0.59184146, 0.28265893), (0.56320447, 0.20217073), (0.62640893, 0.24809146), (0.5743013, 0.18039197), (0.6486026, 0.2045339), (0.578125, 0.15625), (0.65625, 0.15625), (0.375, 0.3125), (0.3875, 0.3125), (0.3875, 0.350094), (0.375, 0.350094), (0.39999998, 0.3125), (0.39999998, 0.350094), (0.41249996, 0.3125), (0.41249996, 0.350094), (0.42499995, 0.3125), (0.42499995, 0.350094), (0.43749994, 0.3125), (0.43749994, 0.350094), (0.44999993, 0.3125), (0.44999993, 0.350094), (0.46249992, 0.3125), (0.46249992, 0.350094), (0.4749999, 0.3125), (0.4749999, 0.350094), (0.4874999, 0.3125), (0.4874999, 0.350094), (0.49999988, 0.3125), (0.49999988, 0.350094), (0.51249987, 0.3125), (0.51249987, 0.350094), (0.52499986, 0.3125), (0.52499986, 0.350094), (0.53749985, 0.3125), (0.53749985, 0.350094), (0.54999983, 0.3125), (0.54999983, 0.350094), (0.5624998, 0.3125), (0.5624998, 0.350094), (0.5749998, 0.3125), (0.5749998, 0.350094), (0.5874998, 0.3125), (0.5874998, 0.350094), (0.5999998, 0.3125), (0.5999998, 0.350094), (0.6124998, 0.3125), (0.6124998, 0.350094), (0.62499976, 0.3125), (0.62499976, 0.350094), (0.3875, 0.38768798), (0.375, 0.38768798), (0.39999998, 0.38768798), (0.41249996, 0.38768798), (0.42499995, 0.38768798), (0.43749994, 0.38768798), (0.44999993, 0.38768798), (0.46249992, 0.38768798), (0.4749999, 0.38768798), (0.4874999, 0.38768798), (0.49999988, 0.38768798), (0.51249987, 0.38768798), (0.52499986, 0.38768798), (0.53749985, 0.38768798), (0.54999983, 0.38768798), (0.5624998, 0.38768798), (0.5749998, 0.38768798), (0.5874998, 0.38768798), (0.5999998, 0.38768798), (0.6124998, 0.38768798), (0.62499976, 0.38768798), (0.3875, 0.42528197), (0.375, 0.42528197), (0.39999998, 0.42528197), (0.41249996, 0.42528197), (0.42499995, 0.42528197), (0.43749994, 0.42528197), (0.44999993, 0.42528197), (0.46249992, 0.42528197), (0.4749999, 0.42528197), (0.4874999, 0.42528197), (0.49999988, 0.42528197), (0.51249987, 0.42528197), (0.52499986, 0.42528197), (0.53749985, 0.42528197), (0.54999983, 0.42528197), (0.5624998, 0.42528197), (0.5749998, 0.42528197), (0.5874998, 0.42528197), (0.5999998, 0.42528197), (0.6124998, 0.42528197), (0.62499976, 0.42528197), (0.3875, 0.46287596), (0.375, 0.46287596), (0.39999998, 0.46287596), (0.41249996, 0.46287596), (0.42499995, 0.46287596), (0.43749994, 0.46287596), (0.44999993, 0.46287596), (0.46249992, 0.46287596), (0.4749999, 0.46287596), (0.4874999, 0.46287596), (0.49999988, 0.46287596), (0.51249987, 0.46287596), (0.52499986, 0.46287596), (0.53749985, 0.46287596), (0.54999983, 0.46287596), (0.5624998, 0.46287596), (0.5749998, 0.46287596), (0.5874998, 0.46287596), (0.5999998, 0.46287596), (0.6124998, 0.46287596), (0.62499976, 0.46287596), (0.3875, 0.5004699), (0.375, 0.5004699), (0.39999998, 0.5004699), (0.41249996, 0.5004699), (0.42499995, 0.5004699), (0.43749994, 0.5004699), (0.44999993, 0.5004699), (0.46249992, 0.5004699), (0.4749999, 0.5004699), (0.4874999, 0.5004699), (0.49999988, 0.5004699), (0.51249987, 0.5004699), (0.52499986, 0.5004699), (0.53749985, 0.5004699), (0.54999983, 0.5004699), (0.5624998, 0.5004699), (0.5749998, 0.5004699), (0.5874998, 0.5004699), (0.5999998, 0.5004699), (0.6124998, 0.5004699), (0.62499976, 0.5004699), (0.3875, 0.5380639), (0.375, 0.5380639), (0.39999998, 0.5380639), (0.41249996, 0.5380639), (0.42499995, 0.5380639), (0.43749994, 0.5380639), (0.44999993, 0.5380639), (0.46249992, 0.5380639), (0.4749999, 0.5380639), (0.4874999, 0.5380639), (0.49999988, 0.5380639), (0.51249987, 0.5380639), (0.52499986, 0.5380639), (0.53749985, 0.5380639), (0.54999983, 0.5380639), (0.5624998, 0.5380639), (0.5749998, 0.5380639), (0.5874998, 0.5380639), (0.5999998, 0.5380639), (0.6124998, 0.5380639), (0.62499976, 0.5380639), (0.3875, 0.57565784), (0.375, 0.57565784), (0.39999998, 0.57565784), (0.41249996, 0.57565784), (0.42499995, 0.57565784), (0.43749994, 0.57565784), (0.44999993, 0.57565784), (0.46249992, 0.57565784), (0.4749999, 0.57565784), (0.4874999, 0.57565784), (0.49999988, 0.57565784), (0.51249987, 0.57565784), (0.52499986, 0.57565784), (0.53749985, 0.57565784), (0.54999983, 0.57565784), (0.5624998, 0.57565784), (0.5749998, 0.57565784), (0.5874998, 0.57565784), (0.5999998, 0.57565784), (0.6124998, 0.57565784), (0.62499976, 0.57565784), (0.3875, 0.6132518), (0.375, 0.6132518), (0.39999998, 0.6132518), (0.41249996, 0.6132518), (0.42499995, 0.6132518), (0.43749994, 0.6132518), (0.44999993, 0.6132518), (0.46249992, 0.6132518), (0.4749999, 0.6132518), (0.4874999, 0.6132518), (0.49999988, 0.6132518), (0.51249987, 0.6132518), (0.52499986, 0.6132518), (0.53749985, 0.6132518), (0.54999983, 0.6132518), (0.5624998, 0.6132518), (0.5749998, 0.6132518), (0.5874998, 0.6132518), (0.5999998, 0.6132518), (0.6124998, 0.6132518), (0.62499976, 0.6132518), (0.3875, 0.65084577), (0.375, 0.65084577), (0.39999998, 0.65084577), (0.41249996, 0.65084577), (0.42499995, 0.65084577), (0.43749994, 0.65084577), (0.44999993, 0.65084577), (0.46249992, 0.65084577), (0.4749999, 0.65084577), (0.4874999, 0.65084577), (0.49999988, 0.65084577), (0.51249987, 0.65084577), (0.52499986, 0.65084577), (0.53749985, 0.65084577), (0.54999983, 0.65084577), (0.5624998, 0.65084577), (0.5749998, 0.65084577), (0.5874998, 0.65084577), (0.5999998, 0.65084577), (0.6124998, 0.65084577), (0.62499976, 0.65084577), (0.3875, 0.6884397), (0.375, 0.6884397), (0.39999998, 0.6884397), (0.41249996, 0.6884397), (0.42499995, 0.6884397), (0.43749994, 0.6884397), (0.44999993, 0.6884397), (0.46249992, 0.6884397), (0.4749999, 0.6884397), (0.4874999, 0.6884397), (0.49999988, 0.6884397), (0.51249987, 0.6884397), (0.52499986, 0.6884397), (0.53749985, 0.6884397), (0.54999983, 0.6884397), (0.5624998, 0.6884397), (0.5749998, 0.6884397), (0.5874998, 0.6884397), (0.5999998, 0.6884397), (0.6124998, 0.6884397), (0.62499976, 0.6884397), (0.6486026, 0.89203393), (0.62640893, 0.93559146), (0.56320447, 0.8896707), (0.5743013, 0.86789197), (0.59184146, 0.97015893), (0.5459207, 0.90695447), (0.5482839, 0.9923526), (0.52414197, 0.9180513), (0.5, 1), (0.5, 0.921875), (0.4517161, 0.9923526), (0.47585803, 0.9180513), (0.40815854, 0.97015893), (0.45407927, 0.90695447), (0.37359107, 0.93559146), (0.43679553, 0.8896707), (0.3513974, 0.89203393), (0.4256987, 0.86789197), (0.34374997, 0.84375), (0.421875, 0.84375), (0.3513974, 0.79546607), (0.4256987, 0.81960803), (0.37359107, 0.75190854), (0.43679553, 0.7978293), (0.4081585, 0.71734107), (0.45407927, 0.78054553), (0.45171607, 0.69514734), (0.47585803, 0.76944864), (0.5, 0.68749994), (0.5, 0.765625), (0.54828393, 0.69514734), (0.52414197, 0.76944864), (0.5918415, 0.717341), (0.5459207, 0.7805455), (0.626409, 0.7519085), (0.5632045, 0.7978293), (0.64860266, 0.79546607), (0.57430136, 0.81960803), (0.65625, 0.84375), (0.578125, 0.84375), (0.5, 0.15), (0.5, 0.8375)] ( customData = { dictionary Maya = { int UVSetIndex = 0 } } interpolation = "faceVarying" ) int[] primvars:st:indices = [0, 1, 2, 3, 1, 4, 5, 2, 4, 6, 7, 5, 6, 8, 9, 7, 8, 10, 11, 9, 10, 12, 13, 11, 12, 14, 15, 13, 14, 16, 17, 15, 16, 18, 19, 17, 18, 20, 21, 19, 20, 22, 23, 21, 22, 24, 25, 23, 24, 26, 27, 25, 26, 28, 29, 27, 28, 30, 31, 29, 30, 32, 33, 31, 32, 34, 35, 33, 34, 36, 37, 35, 36, 38, 39, 37, 38, 0, 3, 39, 40, 41, 42, 43, 41, 44, 45, 42, 44, 46, 47, 45, 46, 48, 49, 47, 48, 50, 51, 49, 50, 52, 53, 51, 52, 54, 55, 53, 54, 56, 57, 55, 56, 58, 59, 57, 58, 60, 61, 59, 60, 62, 63, 61, 62, 64, 65, 63, 64, 66, 67, 65, 66, 68, 69, 67, 68, 70, 71, 69, 70, 72, 73, 71, 72, 74, 75, 73, 74, 76, 77, 75, 76, 78, 79, 77, 78, 80, 81, 79, 43, 42, 82, 83, 42, 45, 84, 82, 45, 47, 85, 84, 47, 49, 86, 85, 49, 51, 87, 86, 51, 53, 88, 87, 53, 55, 89, 88, 55, 57, 90, 89, 57, 59, 91, 90, 59, 61, 92, 91, 61, 63, 93, 92, 63, 65, 94, 93, 65, 67, 95, 94, 67, 69, 96, 95, 69, 71, 97, 96, 71, 73, 98, 97, 73, 75, 99, 98, 75, 77, 100, 99, 77, 79, 101, 100, 79, 81, 102, 101, 83, 82, 103, 104, 82, 84, 105, 103, 84, 85, 106, 105, 85, 86, 107, 106, 86, 87, 108, 107, 87, 88, 109, 108, 88, 89, 110, 109, 89, 90, 111, 110, 90, 91, 112, 111, 91, 92, 113, 112, 92, 93, 114, 113, 93, 94, 115, 114, 94, 95, 116, 115, 95, 96, 117, 116, 96, 97, 118, 117, 97, 98, 119, 118, 98, 99, 120, 119, 99, 100, 121, 120, 100, 101, 122, 121, 101, 102, 123, 122, 104, 103, 124, 125, 103, 105, 126, 124, 105, 106, 127, 126, 106, 107, 128, 127, 107, 108, 129, 128, 108, 109, 130, 129, 109, 110, 131, 130, 110, 111, 132, 131, 111, 112, 133, 132, 112, 113, 134, 133, 113, 114, 135, 134, 114, 115, 136, 135, 115, 116, 137, 136, 116, 117, 138, 137, 117, 118, 139, 138, 118, 119, 140, 139, 119, 120, 141, 140, 120, 121, 142, 141, 121, 122, 143, 142, 122, 123, 144, 143, 125, 124, 145, 146, 124, 126, 147, 145, 126, 127, 148, 147, 127, 128, 149, 148, 128, 129, 150, 149, 129, 130, 151, 150, 130, 131, 152, 151, 131, 132, 153, 152, 132, 133, 154, 153, 133, 134, 155, 154, 134, 135, 156, 155, 135, 136, 157, 156, 136, 137, 158, 157, 137, 138, 159, 158, 138, 139, 160, 159, 139, 140, 161, 160, 140, 141, 162, 161, 141, 142, 163, 162, 142, 143, 164, 163, 143, 144, 165, 164, 146, 145, 166, 167, 145, 147, 168, 166, 147, 148, 169, 168, 148, 149, 170, 169, 149, 150, 171, 170, 150, 151, 172, 171, 151, 152, 173, 172, 152, 153, 174, 173, 153, 154, 175, 174, 154, 155, 176, 175, 155, 156, 177, 176, 156, 157, 178, 177, 157, 158, 179, 178, 158, 159, 180, 179, 159, 160, 181, 180, 160, 161, 182, 181, 161, 162, 183, 182, 162, 163, 184, 183, 163, 164, 185, 184, 164, 165, 186, 185, 167, 166, 187, 188, 166, 168, 189, 187, 168, 169, 190, 189, 169, 170, 191, 190, 170, 171, 192, 191, 171, 172, 193, 192, 172, 173, 194, 193, 173, 174, 195, 194, 174, 175, 196, 195, 175, 176, 197, 196, 176, 177, 198, 197, 177, 178, 199, 198, 178, 179, 200, 199, 179, 180, 201, 200, 180, 181, 202, 201, 181, 182, 203, 202, 182, 183, 204, 203, 183, 184, 205, 204, 184, 185, 206, 205, 185, 186, 207, 206, 188, 187, 208, 209, 187, 189, 210, 208, 189, 190, 211, 210, 190, 191, 212, 211, 191, 192, 213, 212, 192, 193, 214, 213, 193, 194, 215, 214, 194, 195, 216, 215, 195, 196, 217, 216, 196, 197, 218, 217, 197, 198, 219, 218, 198, 199, 220, 219, 199, 200, 221, 220, 200, 201, 222, 221, 201, 202, 223, 222, 202, 203, 224, 223, 203, 204, 225, 224, 204, 205, 226, 225, 205, 206, 227, 226, 206, 207, 228, 227, 209, 208, 229, 230, 208, 210, 231, 229, 210, 211, 232, 231, 211, 212, 233, 232, 212, 213, 234, 233, 213, 214, 235, 234, 214, 215, 236, 235, 215, 216, 237, 236, 216, 217, 238, 237, 217, 218, 239, 238, 218, 219, 240, 239, 219, 220, 241, 240, 220, 221, 242, 241, 221, 222, 243, 242, 222, 223, 244, 243, 223, 224, 245, 244, 224, 225, 246, 245, 225, 226, 247, 246, 226, 227, 248, 247, 227, 228, 249, 248, 230, 229, 250, 251, 229, 231, 252, 250, 231, 232, 253, 252, 232, 233, 254, 253, 233, 234, 255, 254, 234, 235, 256, 255, 235, 236, 257, 256, 236, 237, 258, 257, 237, 238, 259, 258, 238, 239, 260, 259, 239, 240, 261, 260, 240, 241, 262, 261, 241, 242, 263, 262, 242, 243, 264, 263, 243, 244, 265, 264, 244, 245, 266, 265, 245, 246, 267, 266, 246, 247, 268, 267, 247, 248, 269, 268, 248, 249, 270, 269, 271, 272, 273, 274, 272, 275, 276, 273, 275, 277, 278, 276, 277, 279, 280, 278, 279, 281, 282, 280, 281, 283, 284, 282, 283, 285, 286, 284, 285, 287, 288, 286, 287, 289, 290, 288, 289, 291, 292, 290, 291, 293, 294, 292, 293, 295, 296, 294, 295, 297, 298, 296, 297, 299, 300, 298, 299, 301, 302, 300, 301, 303, 304, 302, 303, 305, 306, 304, 305, 307, 308, 306, 307, 309, 310, 308, 309, 271, 274, 310, 1, 0, 311, 4, 1, 311, 6, 4, 311, 8, 6, 311, 10, 8, 311, 12, 10, 311, 14, 12, 311, 16, 14, 311, 18, 16, 311, 20, 18, 311, 22, 20, 311, 24, 22, 311, 26, 24, 311, 28, 26, 311, 30, 28, 311, 32, 30, 311, 34, 32, 311, 36, 34, 311, 38, 36, 311, 0, 38, 311, 274, 273, 312, 273, 276, 312, 276, 278, 312, 278, 280, 312, 280, 282, 312, 282, 284, 312, 284, 286, 312, 286, 288, 312, 288, 290, 312, 290, 292, 312, 292, 294, 312, 294, 296, 312, 296, 298, 312, 298, 300, 312, 300, 302, 312, 302, 304, 312, 304, 306, 312, 306, 308, 312, 308, 310, 312, 310, 274, 312] bool shadow:enable = 1 uniform token[] skel:joints = ["joint1", "joint1/joint2", "joint1/joint2/joint3", "joint1/joint2/joint3/joint4", "joint1/joint2/joint3/joint4/joint5"] rel skel:skeleton = </Root/group1/joint1> uniform token skel:skinningMethod = "DualQuaternion" uniform token subdivisionScheme = "none" matrix4d xformOp:transform = ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (0, 0, 0, 1) ) uniform token[] xformOpOrder = ["xformOp:transform"] } def Skeleton "joint1" ( prepend apiSchemas = ["SkelBindingAPI"] customData = { dictionary Maya = { bool generated = 1 } } ) { uniform matrix4d[] bindTransforms = [( (-0.020420315587156734, 0, 0.9997914836161192, 0), (-1.2243914402252638e-16, -1, -2.50076741213904e-18, 0), (0.9997914836161192, -1.2246467991473532e-16, 0.020420315587156734, 0), (0.06181698728549858, 0, -0.02659854433002078, 1) ), ( (-3.434752482434078e-15, -2.5007674121386094e-18, 1, 0), (-1.2243914402252638e-16, -1, -2.50076741213904e-18, 0), (1, -1.224391440225264e-16, 3.434752482434078e-15, 0), (-1.3877787807814457e-17, 8.841297486311764e-34, 3.0000000000000004, 1) ), ( (-3.434752482434078e-15, -2.5007674121386094e-18, 1, 0), (-1.2243914402252638e-16, -1, -2.50076741213904e-18, 0), (1, -1.224391440225264e-16, 3.434752482434078e-15, 0), (0, 1.2722513410043386e-31, 6, 1) ), ( (-3.434752482434078e-15, -2.5007674121386094e-18, 1, 0), (-1.2243914402252638e-16, -1, -2.50076741213904e-18, 0), (1, -1.224391440225264e-16, 3.434752482434078e-15, 0), (9.185754640251975e-34, 1.5649926925511984e-31, 9, 1) ), ( (1, -1.224391440225264e-16, -1.1796119636642288e-16, 0), (1.2243914402252635e-16, 1, -1.1996391250259628e-16, 0), (2.2898349882893854e-16, 1.1996391250259626e-16, 1, 0), (1.2247672853669268e-33, 1.4186220167777685e-31, 10, 1) )] uniform token[] joints = ["joint1", "joint1/joint2", "joint1/joint2/joint3", "joint1/joint2/joint3/joint4", "joint1/joint2/joint3/joint4/joint5"] uniform matrix4d[] restTransforms = [( (-0.020420315587156734, 0, 0.9997914836161192, 0), (-1.2243914402252638e-16, -1, -2.50076741213904e-18, 0), (0.9997914836161192, -1.2246467991473532e-16, 0.020420315587156734, 0), (0.06181698728549858, 0, -0.02659854433002078, 1) ), ( (0.9997914836161194, 0, 0.0204203155871533, 0), (0, 1, 0, 0), (-0.0204203155871533, 0, 0.9997914836161194, 0), (3.0272297713351164, -9.860761315262648e-32, 7.979727989493313e-16, 1) ), ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (3, -7.502302236417219e-18, 1.0318135235110049e-14, 1) ), ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (3, -7.50230223641712e-18, 1.0304257447302234e-14, 1) ), ( (-3.552713678800501e-15, 0, 1, 0), (-1.2246467991473532e-16, -1, -4.437342591868191e-31, 0), (1, -1.2246467991473532e-16, 3.6637359812630166e-15, 0), (1, -2.5007674121390154e-18, 3.434752482434078e-15, 1) )] rel skel:animationSource = </Root/group1/joint1/Animation> def SkelAnimation "Animation" { uniform token[] joints = ["joint1", "joint1/joint2", "joint1/joint2/joint3", "joint1/joint2/joint3/joint4", "joint1/joint2/joint3/joint4/joint5"] quatf[] rotations = [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9999479, 1.9756056e-36, -0.010210691, -8.708908e-37), (1, 0, 0, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)] quatf[] rotations.timeSamples = { 1: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9999479, 1.9756056e-36, -0.010210691, -8.708908e-37), (1, 0, 0, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 2: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9997641, 6.236958e-33, -0.021720996, 3.2909726e-35), (0.99999624, 0, 0.0027424013, -3.8518746e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 3: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9986183, 5.8084842e-33, -0.05255021, -3.3373637e-34), (0.99994415, 1.2349047e-32, 0.010570527, -1.7324539e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.958437e-17, 0.7071068)], 4: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9952759, 8.419972e-36, -0.09708719, 1.0719098e-34), (0.99973816, 6.126507e-33, 0.022884618, -2.4343037e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 5: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.988742, -1.2090756e-35, -0.14963076, -1.38100015e-33), (0.99923605, 6.168866e-33, 0.039081782, -7.4085352e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -9.607839e-17, 0.7071068)], 6: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9788749, 5.472309e-33, -0.20446007, -6.8019916e-34), (0.9982843, -6.460354e-33, 0.05855423, -2.5918643e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 7: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.96668077, -2.5870152e-18, -0.25598502, 9.769391e-18), (0.9967394, -2.8562294e-33, 0.08068847, 1.3613418e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, 3.8818763e-18, 0.7071068)], 8: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.95428663, 5.9712946e-33, -0.29889306, 1.958205e-33), (0.9944864, 0, 0.10486588, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 9: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.94461256, 8.614725e-36, -0.32818753, 7.714734e-35), (0.991453, 6.0044964e-33, 0.13046467, -1.6081013e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, 5.904622e-18, 0.7071068)], 10: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.94077206, 3.717885e-35, -0.33903977, 1.0155367e-34), (0.98762035, 0, 0.15686323, 3.120114e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, 3.8818763e-18, 0.7071068)], 11: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9475057, 2.7740445e-33, -0.3197388, 1.0104582e-33), (0.98303014, 6.32211e-33, 0.18344428, -1.2847009e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 12: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.96377945, 2.030969e-35, -0.26670045, 3.223818e-33), (0.9777874, 0, 0.20959933, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 13: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9823428, 2.5188462e-35, -0.18709004, 1.1281289e-34), (0.9720599, -6.564091e-33, 0.23473288, 3.8275936e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -9.041538e-17, 0.7071068)], 14: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99605024, -5.8366924e-37, -0.088791266, 1.0322589e-34), (0.96607393, 8.521877e-33, 0.25826564, -1.5549254e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.2742998e-17, 0.7071068)], 15: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9998168, 6.591292e-39, 0.019142117, 2.892867e-34), (0.9601061, -2.4566083e-33, 0.27963609, 5.7946145e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 16: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99192166, 2.9470727e-34, 0.12685224, 1.6248996e-33), (0.9544722, -3.8604024e-33, 0.2983, -5.2504598e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 17: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9744616, 3.76873e-34, 0.2245543, 1.7342746e-33), (0.9495131, -3.956008e-18, 0.3137275, -1.197307e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 18: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.95286465, 2.7759677e-33, 0.3033958, 5.5855252e-33), (0.9455773, -4.273506e-18, 0.3253975, -1.2418443e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.7019346e-17, 0.7071068)], 19: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.93457264, -4.4242698e-33, 0.35577238, -6.938029e-34), (0.9430011, 1.6338732e-33, 0.33278978, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -8.54472e-17, 0.7071068)], 20: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9271051, -3.814175e-35, 0.37480146, 1.1338883e-34), (0.94208485, 2.8210937e-33, 0.33537456, -5.508395e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 21: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.93118745, -5.4463813e-18, 0.36454076, -1.3912303e-17), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.4996595e-17, 0.7071068)], 22: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.94169426, -3.3711516e-35, 0.3364699, 1.1016753e-34), (0.94208485, 0, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.46769e-17, 0.7071068)], 23: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.95563346, -3.2409287e-33, 0.29455864, 1.6095242e-33), (0.94208485, 1.635462e-33, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 24: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.97005093, -6.9114435e-37, 0.24290179, 9.65094e-35), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 25: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.98256904, -2.9500564e-34, 0.18589815, -1.4612545e-33), (0.94208485, 0, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.958982e-17, 0.7071068)], 26: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9917404, -1.2776737e-35, 0.12826133, 9.540489e-35), (0.94208485, -1.8695705e-33, 0.33537456, -2.605372e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 27: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9971905, -7.216408e-36, 0.07490789, 9.706919e-35), (0.94208485, 0, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 28: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99952555, 1.0151991e-18, 0.03080118, -3.1284174e-20), (0.94208485, 1.6482417e-34, 0.33537456, -3.5473118e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 29: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99999964, 2.7427435e-20, 0.00083214947, -2.2823734e-23), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.677449e-17, 0.7071068)], 30: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9999479, 1.9756056e-36, -0.010210691, -8.708908e-37), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -6.772901e-17, 0.7071068)], } half3[] scales = [(1, 1, 1), (1, 1, 1), (1, 1, 1), (1, 1, 1), (1, 1, 1)] float3[] translations = [(0.061816987, 0, -0.026598545), (3.0272298, -9.8607613e-32, 7.910339e-16), (3, -2.929001e-18, 1.0318135e-14), (3, -7.502302e-18, 1.03042574e-14), (1, -2.5007674e-18, 3.4347525e-15)] } } } def Xform "locator1" { } def Xform "locator2" { } def Scope "Looks" { def Material "initialShadingGroup" { token outputs:mdl:surface.connect = </Root/Looks/initialShadingGroup/lambert1.outputs:out> def Shader "lambert1" ( kind = "Material" ) { uniform token info:id = "mdlMaterial" custom asset module = @lambert1.mdl@ custom string name = "lambert1" token outputs:out } } } }
omniverse-code/kit/exts/omni.graph/omni/graph/core/data/anim_deformer/skinning/skelcylinder_computegraph_GPU.usda
#usda 1.0 ( defaultPrim = "Root" endTimeCode = 120 startTimeCode = 1 timeCodesPerSecond = 24 upAxis = "Z" ) def "Root" ( references = @./skelcylinder.usda@</Root> ) { over "group1" { over "pCylinder1" { token visibility = "invisible" uniform token skel:skinningMethod = "DualQuaternion" rel deformedPrim = </Root/group1/pCylinder1> } def Mesh "pCylinder1_deformed" ( references = </Root/group1/pCylinder1> ) { point3f[] points.connect = </Root/group1/Skinning.output:points> token visibility = "inherited" } def ComputeNode "SkeletonTransforms" { rel input:skeleton = </Root/group1/joint1> rel input:skelAnim = </Root/group1/joint1/Animation> int[] output:jointParentIndices matrix4d[] output:jointLocalBindTransforms matrix4d[] output:jointLocalTransforms matrix4d[] output:jointSkelBindTransforms matrix4d[] output:jointSkelTransforms matrix4d output:skelLocalToWorld custom token node:type = "SkeletonTransforms" } def ComputeNode "Skinning" { rel input:mesh = </Root/group1/pCylinder1> point3f[] input:restPoints.connect = </Root/group1/pCylinder1.points> token[] input:skinningJoints.connect = </Root/group1/pCylinder1.skel:joints> int[] input:jointIndices.connect = </Root/group1/pCylinder1.primvars:skel:jointIndices> float[] input:jointWeights.connect = </Root/group1/pCylinder1.primvars:skel:jointWeights> float[] input:blendWeights token input:skinningMethod.connect = </Root/group1/pCylinder1.skel:skinningMethod> matrix4d input:geomBindTransform.connect = </Root/group1/pCylinder1.primvars:skel:geomBindTransform> matrix4d input:meshWorldToLocal token[] input:skelFullJoints.connect = </Root/group1/joint1.joints> matrix4d[] input:skelTransforms.connect = </Root/group1/SkeletonTransforms.output:jointSkelTransforms> matrix4d[] input:skelBindTransforms.connect = </Root/group1/joint1.bindTransforms> matrix4d input:skelLocalToWorld.connect = </Root/group1/SkeletonTransforms.output:skelLocalToWorld> int[] output:skinningJointsMap int output:skinningMethod matrix4d[] output:skinningTransforms float[] output:skinningDualQuats point3f[] output:points custom token node:type = "SkinningGPU" } } }
omniverse-code/kit/exts/omni.graph/omni/graph/core/data/anim_deformer/skinning/skelcylinder.usda
#usda 1.0 ( defaultPrim = "Root" endTimeCode = 120 startTimeCode = 1 timeCodesPerSecond = 24 upAxis = "Z" ) def "Root" ( kind = "component" ) { def SkelRoot "group1" { matrix4d xformOp:transform = ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (0, 0, 0, 1) ) uniform token[] xformOpOrder = ["xformOp:transform"] def Mesh "pCylinder1" ( prepend apiSchemas = ["SkelBindingAPI", "ShadowAPI"] ) { uniform bool doubleSided = 1 float3[] extent = [(-2.0000005, -2.0000002, 0), (2, 2.000001, 10)] int[] faceVertexCounts = [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 1, 21, 20, 1, 2, 22, 21, 2, 3, 23, 22, 3, 4, 24, 23, 4, 5, 25, 24, 5, 6, 26, 25, 6, 7, 27, 26, 7, 8, 28, 27, 8, 9, 29, 28, 9, 10, 30, 29, 10, 11, 31, 30, 11, 12, 32, 31, 12, 13, 33, 32, 13, 14, 34, 33, 14, 15, 35, 34, 15, 16, 36, 35, 16, 17, 37, 36, 17, 18, 38, 37, 18, 19, 39, 38, 19, 0, 20, 39, 20, 21, 41, 40, 21, 22, 42, 41, 22, 23, 43, 42, 23, 24, 44, 43, 24, 25, 45, 44, 25, 26, 46, 45, 26, 27, 47, 46, 27, 28, 48, 47, 28, 29, 49, 48, 29, 30, 50, 49, 30, 31, 51, 50, 31, 32, 52, 51, 32, 33, 53, 52, 33, 34, 54, 53, 34, 35, 55, 54, 35, 36, 56, 55, 36, 37, 57, 56, 37, 38, 58, 57, 38, 39, 59, 58, 39, 20, 40, 59, 40, 41, 61, 60, 41, 42, 62, 61, 42, 43, 63, 62, 43, 44, 64, 63, 44, 45, 65, 64, 45, 46, 66, 65, 46, 47, 67, 66, 47, 48, 68, 67, 48, 49, 69, 68, 49, 50, 70, 69, 50, 51, 71, 70, 51, 52, 72, 71, 52, 53, 73, 72, 53, 54, 74, 73, 54, 55, 75, 74, 55, 56, 76, 75, 56, 57, 77, 76, 57, 58, 78, 77, 58, 59, 79, 78, 59, 40, 60, 79, 60, 61, 81, 80, 61, 62, 82, 81, 62, 63, 83, 82, 63, 64, 84, 83, 64, 65, 85, 84, 65, 66, 86, 85, 66, 67, 87, 86, 67, 68, 88, 87, 68, 69, 89, 88, 69, 70, 90, 89, 70, 71, 91, 90, 71, 72, 92, 91, 72, 73, 93, 92, 73, 74, 94, 93, 74, 75, 95, 94, 75, 76, 96, 95, 76, 77, 97, 96, 77, 78, 98, 97, 78, 79, 99, 98, 79, 60, 80, 99, 80, 81, 101, 100, 81, 82, 102, 101, 82, 83, 103, 102, 83, 84, 104, 103, 84, 85, 105, 104, 85, 86, 106, 105, 86, 87, 107, 106, 87, 88, 108, 107, 88, 89, 109, 108, 89, 90, 110, 109, 90, 91, 111, 110, 91, 92, 112, 111, 92, 93, 113, 112, 93, 94, 114, 113, 94, 95, 115, 114, 95, 96, 116, 115, 96, 97, 117, 116, 97, 98, 118, 117, 98, 99, 119, 118, 99, 80, 100, 119, 100, 101, 121, 120, 101, 102, 122, 121, 102, 103, 123, 122, 103, 104, 124, 123, 104, 105, 125, 124, 105, 106, 126, 125, 106, 107, 127, 126, 107, 108, 128, 127, 108, 109, 129, 128, 109, 110, 130, 129, 110, 111, 131, 130, 111, 112, 132, 131, 112, 113, 133, 132, 113, 114, 134, 133, 114, 115, 135, 134, 115, 116, 136, 135, 116, 117, 137, 136, 117, 118, 138, 137, 118, 119, 139, 138, 119, 100, 120, 139, 120, 121, 141, 140, 121, 122, 142, 141, 122, 123, 143, 142, 123, 124, 144, 143, 124, 125, 145, 144, 125, 126, 146, 145, 126, 127, 147, 146, 127, 128, 148, 147, 128, 129, 149, 148, 129, 130, 150, 149, 130, 131, 151, 150, 131, 132, 152, 151, 132, 133, 153, 152, 133, 134, 154, 153, 134, 135, 155, 154, 135, 136, 156, 155, 136, 137, 157, 156, 137, 138, 158, 157, 138, 139, 159, 158, 139, 120, 140, 159, 140, 141, 161, 160, 141, 142, 162, 161, 142, 143, 163, 162, 143, 144, 164, 163, 144, 145, 165, 164, 145, 146, 166, 165, 146, 147, 167, 166, 147, 148, 168, 167, 148, 149, 169, 168, 149, 150, 170, 169, 150, 151, 171, 170, 151, 152, 172, 171, 152, 153, 173, 172, 153, 154, 174, 173, 154, 155, 175, 174, 155, 156, 176, 175, 156, 157, 177, 176, 157, 158, 178, 177, 158, 159, 179, 178, 159, 140, 160, 179, 160, 161, 181, 180, 161, 162, 182, 181, 162, 163, 183, 182, 163, 164, 184, 183, 164, 165, 185, 184, 165, 166, 186, 185, 166, 167, 187, 186, 167, 168, 188, 187, 168, 169, 189, 188, 169, 170, 190, 189, 170, 171, 191, 190, 171, 172, 192, 191, 172, 173, 193, 192, 173, 174, 194, 193, 174, 175, 195, 194, 175, 176, 196, 195, 176, 177, 197, 196, 177, 178, 198, 197, 178, 179, 199, 198, 179, 160, 180, 199, 180, 181, 201, 200, 181, 182, 202, 201, 182, 183, 203, 202, 183, 184, 204, 203, 184, 185, 205, 204, 185, 186, 206, 205, 186, 187, 207, 206, 187, 188, 208, 207, 188, 189, 209, 208, 189, 190, 210, 209, 190, 191, 211, 210, 191, 192, 212, 211, 192, 193, 213, 212, 193, 194, 214, 213, 194, 195, 215, 214, 195, 196, 216, 215, 196, 197, 217, 216, 197, 198, 218, 217, 198, 199, 219, 218, 199, 180, 200, 219, 200, 201, 221, 220, 201, 202, 222, 221, 202, 203, 223, 222, 203, 204, 224, 223, 204, 205, 225, 224, 205, 206, 226, 225, 206, 207, 227, 226, 207, 208, 228, 227, 208, 209, 229, 228, 209, 210, 230, 229, 210, 211, 231, 230, 211, 212, 232, 231, 212, 213, 233, 232, 213, 214, 234, 233, 214, 215, 235, 234, 215, 216, 236, 235, 216, 217, 237, 236, 217, 218, 238, 237, 218, 219, 239, 238, 219, 200, 220, 239, 220, 221, 241, 240, 221, 222, 242, 241, 222, 223, 243, 242, 223, 224, 244, 243, 224, 225, 245, 244, 225, 226, 246, 245, 226, 227, 247, 246, 227, 228, 248, 247, 228, 229, 249, 248, 229, 230, 250, 249, 230, 231, 251, 250, 231, 232, 252, 251, 232, 233, 253, 252, 233, 234, 254, 253, 234, 235, 255, 254, 235, 236, 256, 255, 236, 237, 257, 256, 237, 238, 258, 257, 238, 239, 259, 258, 239, 220, 240, 259, 1, 0, 260, 2, 1, 260, 3, 2, 260, 4, 3, 260, 5, 4, 260, 6, 5, 260, 7, 6, 260, 8, 7, 260, 9, 8, 260, 10, 9, 260, 11, 10, 260, 12, 11, 260, 13, 12, 260, 14, 13, 260, 15, 14, 260, 16, 15, 260, 17, 16, 260, 18, 17, 260, 19, 18, 260, 0, 19, 260, 240, 241, 261, 241, 242, 261, 242, 243, 261, 243, 244, 261, 244, 245, 261, 245, 246, 261, 246, 247, 261, 247, 248, 261, 248, 249, 261, 249, 250, 261, 250, 251, 261, 251, 252, 261, 252, 253, 261, 253, 254, 261, 254, 255, 261, 255, 256, 261, 256, 257, 261, 257, 258, 261, 258, 259, 261, 259, 240, 261] rel material:binding = </Root/Looks/initialShadingGroup> normal3f[] normals = [(0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (0.30901688, 0.95105666, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-9.209561e-8, 1, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.9510565, 0), (-0.30901712, 0.9510565, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.9510565, 0), (-0.5877854, 0.8090168, 0), (-0.5877854, 0.8090168, 0), (-0.30901712, 0.9510565, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.8090172, 0.5877851, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877854, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877854, 0), (-0.5877852, -0.809017, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.809017, 0), (-0.30901694, -0.9510566, 0), (-0.30901694, -0.9510566, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (9.209565e-8, -1, 0), (9.209565e-8, -1, 0), (-0.30901694, -0.9510566, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.809017, -0.5877853, 0), (0.80901706, -0.5877853, 0), (0.5877853, -0.809017, 0), (0.809017, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (0.30901688, 0.95105666, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-9.209561e-8, 1, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.9510565, 0), (-0.30901712, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.9510565, 0), (-0.5877854, 0.8090168, 0), (-0.5877854, 0.8090169, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.8090172, 0.5877851, 0), (-0.5877854, 0.8090169, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (-0.30901694, -0.9510566, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (9.209565e-8, -1, 0), (9.2095654e-8, -1, 0), (-0.30901694, -0.9510566, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (9.2095654e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.80901706, -0.5877853, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (0.30901688, 0.95105666, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-9.209561e-8, 1, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901715, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.8090169, 0), (-0.5877854, 0.8090168, 0), (-0.30901715, 0.95105654, 0), (-0.5877854, 0.8090169, 0), (-0.8090172, 0.5877851, 0), (-0.8090172, 0.5877851, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (-0.30901694, -0.9510566, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (9.2095654e-8, -1, 0), (9.209565e-8, -1, 0), (-0.30901694, -0.9510566, 0), (9.2095654e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.80901706, -0.5877853, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.5877851, 0.809017, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (0.3090168, 0.95105654, 0), (0.5877851, 0.809017, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-9.209559e-8, 1, 0), (0.3090168, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901715, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901715, 0.95105654, 0), (-0.5877854, 0.8090168, 0), (-0.5877855, 0.8090168, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.8090172, 0.58778507, 0), (-0.5877855, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.58778507, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (-0.3090169, -0.95105654, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (9.209565e-8, -1, 0), (9.209565e-8, -1, 0), (-0.3090169, -0.95105654, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.80901706, -0.58778524, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.5877851, 0.809017, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.5877853, 0), (0.5877851, 0.809017, 0), (0.3090168, 0.95105654, 0), (0.3090168, 0.95105654, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.95105654, 0), (-9.209559e-8, 1, 0), (-9.209561e-8, 1, 0), (0.3090168, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877855, 0.8090168, 0), (-0.5877854, 0.8090168, 0), (-0.30901712, 0.95105654, 0), (-0.5877855, 0.8090168, 0), (-0.8090172, 0.58778507, 0), (-0.8090172, 0.5877851, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.58778507, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.3090169, -0.95105654, 0), (-0.30901694, -0.95105654, 0), (-0.5877852, -0.80901706, 0), (-0.3090169, -0.95105654, 0), (9.209565e-8, -1, 0), (9.209565e-8, -1, 0), (-0.30901694, -0.95105654, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.58778524, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.80901706, -0.5877853, 0), (0.58778524, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.95105654, 0), (0.3090168, 0.95105654, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.95105654, 0), (-9.209561e-8, 1, 0), (-9.209561e-8, 1, 0), (0.3090168, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.8090168, 0), (-0.5877854, 0.80901694, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.80901706, 0.5877851, 0), (-0.5877854, 0.80901694, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.80901706, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.95105654, 0), (-0.3090169, -0.95105654, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.95105654, 0), (9.209565e-8, -1, 0), (8.8258304e-8, -1, 0), (-0.3090169, -0.95105654, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.309017, -0.9510565, 0), (8.8258304e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.58778524, -0.809017, 0), (0.5877851, -0.809017, 0), (0.309017, -0.9510565, 0), (0.58778524, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.80901694, -0.5877853, 0), (0.5877851, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901694, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.5877851, 0.809017, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.95105654, 0), (0.3090168, 0.95105654, 0), (0.5877851, 0.809017, 0), (0.3090168, 0.95105654, 0), (-9.209561e-8, 1, 0), (-9.209559e-8, 1, 0), (0.3090168, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.80901694, 0), (-0.5877855, 0.8090169, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.80901694, 0), (-0.80901706, 0.5877851, 0), (-0.8090172, 0.5877851, 0), (-0.5877855, 0.8090169, 0), (-0.80901706, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.3090169, -0.95105654, 0), (-0.30901694, -0.95105654, 0), (-0.5877852, -0.80901706, 0), (-0.3090169, -0.95105654, 0), (8.8258304e-8, -1, 0), (8.825832e-8, -1, 0), (-0.30901694, -0.95105654, 0), (8.8258304e-8, -1, 0), (0.309017, -0.9510565, 0), (0.30901703, -0.95105654, 0), (8.825832e-8, -1, 0), (0.309017, -0.9510565, 0), (0.5877851, -0.809017, 0), (0.5877853, -0.80901706, 0), (0.30901703, -0.95105654, 0), (0.5877851, -0.809017, 0), (0.80901694, -0.5877853, 0), (0.80901706, -0.5877853, 0), (0.5877853, -0.80901706, 0), (0.80901694, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.58778524, 0), (0.9510569, 0.309016, 0), (0.80901694, 0.5877853, 0), (0.5877851, 0.809017, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.58778524, 0), (0.5877851, 0.809017, 0), (0.3090168, 0.95105654, 0), (0.3090168, 0.9510566, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.95105654, 0), (-9.209559e-8, 1, 0), (-9.209559e-8, 1, 0), (0.3090168, 0.9510566, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877855, 0.8090169, 0), (-0.5877856, 0.8090168, 0), (-0.30901712, 0.95105654, 0), (-0.5877855, 0.8090169, 0), (-0.8090172, 0.5877851, 0), (-0.8090172, 0.587785, 0), (-0.5877856, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.587785, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.30901694, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.8090169, -0.5877854, 0), (-0.9510565, -0.30901694, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.8090169, -0.5877854, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.95105654, 0), (-0.30901694, -0.9510565, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.95105654, 0), (8.825832e-8, -1, 0), (9.209566e-8, -1, 0), (-0.30901694, -0.9510565, 0), (8.825832e-8, -1, 0), (0.30901703, -0.95105654, 0), (0.30901703, -0.9510565, 0), (9.209566e-8, -1, 0), (0.30901703, -0.95105654, 0), (0.5877853, -0.80901706, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.80901706, 0), (0.80901706, -0.5877853, 0), (0.80901706, -0.58778524, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.309016, 0), (1, -9.593294e-7, 0), (0.9510569, 0.309016, 0), (0.80901694, 0.58778524, 0), (0.8090169, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.58778524, 0), (0.58778507, 0.80901706, 0), (0.5877851, 0.80901706, 0), (0.8090169, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.9510566, 0), (0.30901685, 0.9510566, 0), (0.5877851, 0.80901706, 0), (0.3090168, 0.9510566, 0), (-9.209559e-8, 1, 0), (-9.209559e-8, 1, 0), (0.30901685, 0.9510566, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877856, 0.8090168, 0), (-0.5877856, 0.8090168, 0), (-0.30901712, 0.95105654, 0), (-0.5877856, 0.8090168, 0), (-0.8090172, 0.587785, 0), (-0.8090172, 0.587785, 0), (-0.5877856, 0.8090168, 0), (-0.8090172, 0.587785, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.587785, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.30901694, 0), (-0.95105654, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.30901694, 0), (-0.8090169, -0.5877854, 0), (-0.8090169, -0.5877854, 0), (-0.95105654, -0.309017, 0), (-0.8090169, -0.5877854, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.8090169, -0.5877854, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510565, 0), (-0.3090169, -0.95105654, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510565, 0), (9.209566e-8, -1, 0), (8.8258325e-8, -1, 0), (-0.3090169, -0.95105654, 0), (9.209566e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (8.8258325e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.80901706, -0.58778524, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.309016, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.8090169, 0.5877853, 0), (0.8090169, 0.58778536, 0), (0.9510569, 0.3090161, 0), (0.8090169, 0.5877853, 0), (0.5877851, 0.80901706, 0), (0.58778524, 0.80901706, 0), (0.8090169, 0.58778536, 0), (0.5877851, 0.80901706, 0), (0.30901685, 0.9510566, 0), (0.3090169, 0.9510566, 0), (0.58778524, 0.80901706, 0), (0.30901685, 0.9510566, 0), (-9.209559e-8, 1, 0), (-9.209559e-8, 1, 0), (0.3090169, 0.9510566, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877856, 0.8090168, 0), (-0.5877856, 0.8090168, 0), (-0.30901712, 0.95105654, 0), (-0.5877856, 0.8090168, 0), (-0.8090172, 0.587785, 0), (-0.8090172, 0.587785, 0), (-0.5877856, 0.8090168, 0), (-0.8090172, 0.587785, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.587785, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.95105654, -0.309017, 0), (-0.95105654, -0.3090171, 0), (-1, -0, 0), (-0.95105654, -0.309017, 0), (-0.8090169, -0.5877854, 0), (-0.8090169, -0.58778554, 0), (-0.95105654, -0.3090171, 0), (-0.8090169, -0.5877854, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.809017, 0), (-0.8090169, -0.58778554, 0), (-0.5877852, -0.80901706, 0), (-0.3090169, -0.95105654, 0), (-0.3090169, -0.9510566, 0), (-0.5877852, -0.809017, 0), (-0.3090169, -0.95105654, 0), (8.8258325e-8, -1, 0), (8.4420996e-8, -1, 0), (-0.3090169, -0.9510566, 0), (8.8258325e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (8.4420996e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.809017, -0.58778524, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.809017, -0.58778524, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.3090161, 0), (1, -9.593294e-7, 0), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, 5.1435853e-7, 1), (0, 7.347982e-7, 1), (0, -0, 1), (0, 5.1435853e-7, 1), (0, -5.143587e-7, 1), (0, -7.347983e-7, 1), (0, 7.347982e-7, 1), (0, -5.143587e-7, 1), (0, -0.0000020574357, 1), (0, -0.0000022778752, 1), (0, -7.347983e-7, 1), (0, -0.0000020574357, 1), (0, -0, 1), (0, -0, 1), (0, -0.0000022778752, 1), (0, -0, 1), (0, 0.000001028718, 1), (0, 8.082783e-7, 1), (0, -0, 1), (0, 0.000001028718, 1), (0, -0, 1), (0, -0, 1), (0, 8.082783e-7, 1), (0, -0, 1), (0, 5.1435893e-7, 1), (0, 4.0413923e-7, 1), (0, -0, 1), (0, 5.1435893e-7, 1), (0, 7.715385e-7, 0.99999994), (0, 6.062089e-7, 1), (0, 4.0413923e-7, 1), (0, 7.715385e-7, 0.99999994), (0, 1.9288467e-7, 1), (0, 1.1021976e-7, 1), (0, 6.062089e-7, 1), (0, 1.9288467e-7, 1), (0, -6.429489e-8, 1), (0, -9.1849834e-8, 1), (0, 1.1021976e-7, 1), (0, -6.429489e-8, 1), (0, -0, 1), (0, -0, 1), (0, -9.1849834e-8, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, 0.0000010287182, 1), (0, 8.082787e-7, 1), (0, -0, 1), (0, 0.0000010287182, 1), (0, 0.0000010287172, 1), (0, 8.0827857e-7, 1), (0, 8.082787e-7, 1), (0, 0.0000010287172, 1), (0, -0, 1), (0, -0, 1), (0, 8.0827857e-7, 1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, 7.347982e-7, 1), (0, -1.7359638e-7, 1), (0, 7.347982e-7, 1), (0, -7.347983e-7, 1), (0, -1.7359638e-7, 1), (0, -7.347983e-7, 1), (0, -0.0000022778752, 1), (0, -1.7359638e-7, 1), (0, -0.0000022778752, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, 8.082783e-7, 1), (0, -1.7359638e-7, 1), (0, 8.082783e-7, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, 4.0413923e-7, 1), (0, -1.7359638e-7, 1), (0, 4.0413923e-7, 1), (0, 6.062089e-7, 1), (0, -1.7359638e-7, 1), (0, 6.062089e-7, 1), (0, 1.1021976e-7, 1), (0, -1.7359638e-7, 1), (0, 1.1021976e-7, 1), (0, -9.1849834e-8, 1), (0, -1.7359638e-7, 1), (0, -9.1849834e-8, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, 8.082787e-7, 1), (0, -1.7359638e-7, 1), (0, 8.082787e-7, 1), (0, 8.0827857e-7, 1), (0, -1.7359638e-7, 1), (0, 8.0827857e-7, 1), (0, -0, 1), (0, -1.7359638e-7, 1)] ( interpolation = "faceVarying" ) point3f[] points = [(0.95105714, 0.30901718, 0), (0.80901754, 0.5877856, 0), (0.5877856, 0.8090175, 0), (0.30901715, 0.951057, 0), (0, 1.0000005, 0), (-0.30901715, 0.95105696, 0), (-0.5877855, 0.8090173, 0), (-0.80901724, 0.5877854, 0), (-0.9510568, 0.30901706, 0), (-1.0000002, -0, 0), (-0.9510568, -0.30901706, 0), (-0.8090172, -0.58778536, 0), (-0.58778536, -0.8090171, 0), (-0.30901706, -0.95105666, 0), (-2.9802322e-8, -1.0000001, 0), (0.30901697, -0.9510566, 0), (0.58778524, -0.80901706, 0), (0.809017, -0.5877853, 0), (0.95105654, -0.309017, 0), (1, -0, 0), (1.9021143, 0.61803436, 0), (1.6180351, 1.1755712, 0), (1.1755712, 1.618035, 0), (0.6180343, 1.902114, 0), (0, 2.000001, 0), (-0.6180343, 1.9021139, 0), (-1.175571, 1.6180346, 0), (-1.6180345, 1.1755708, 0), (-1.9021136, 0.6180341, 0), (-2.0000005, -0, 0), (-1.9021136, -0.6180341, 0), (-1.6180344, -1.1755707, 0), (-1.1755707, -1.6180342, 0), (-0.6180341, -1.9021133, 0), (-5.9604645e-8, -2.0000002, 0), (0.61803395, -1.9021132, 0), (1.1755705, -1.6180341, 0), (1.618034, -1.1755706, 0), (1.9021131, -0.618034, 0), (2, -0, 0), (1.9021143, 0.61803436, 1), (1.6180351, 1.1755712, 1), (1.1755712, 1.618035, 1), (0.6180343, 1.902114, 1), (0, 2.000001, 1), (-0.6180343, 1.9021139, 1), (-1.175571, 1.6180346, 1), (-1.6180345, 1.1755708, 1), (-1.9021136, 0.6180341, 1), (-2.0000005, -0, 1), (-1.9021136, -0.6180341, 1), (-1.6180344, -1.1755707, 1), (-1.1755707, -1.6180342, 1), (-0.6180341, -1.9021133, 1), (-5.9604645e-8, -2.0000002, 1), (0.61803395, -1.9021132, 1), (1.1755705, -1.6180341, 1), (1.618034, -1.1755706, 1), (1.9021131, -0.618034, 1), (2, -0, 1), (1.9021143, 0.61803436, 2), (1.6180351, 1.1755712, 2), (1.1755712, 1.618035, 2), (0.6180343, 1.902114, 2), (0, 2.000001, 2), (-0.6180343, 1.9021139, 2), (-1.175571, 1.6180346, 2), (-1.6180345, 1.1755708, 2), (-1.9021136, 0.6180341, 2), (-2.0000005, -0, 2), (-1.9021136, -0.6180341, 2), (-1.6180344, -1.1755707, 2), (-1.1755707, -1.6180342, 2), (-0.6180341, -1.9021133, 2), (-5.9604645e-8, -2.0000002, 2), (0.61803395, -1.9021132, 2), (1.1755705, -1.6180341, 2), (1.618034, -1.1755706, 2), (1.9021131, -0.618034, 2), (2, -0, 2), (1.9021143, 0.61803436, 3), (1.6180351, 1.1755712, 3), (1.1755712, 1.618035, 3), (0.6180343, 1.902114, 3), (0, 2.000001, 3), (-0.6180343, 1.9021139, 3), (-1.175571, 1.6180346, 3), (-1.6180345, 1.1755708, 3), (-1.9021136, 0.6180341, 3), (-2.0000005, -0, 3), (-1.9021136, -0.6180341, 3), (-1.6180344, -1.1755707, 3), (-1.1755707, -1.6180342, 3), (-0.6180341, -1.9021133, 3), (-5.9604645e-8, -2.0000002, 3), (0.61803395, -1.9021132, 3), (1.1755705, -1.6180341, 3), (1.618034, -1.1755706, 3), (1.9021131, -0.618034, 3), (2, -0, 3), (1.9021143, 0.61803436, 4), (1.6180351, 1.1755712, 4), (1.1755712, 1.618035, 4), (0.6180343, 1.902114, 4), (0, 2.000001, 4), (-0.6180343, 1.9021139, 4), (-1.175571, 1.6180346, 4), (-1.6180345, 1.1755708, 4), (-1.9021136, 0.6180341, 4), (-2.0000005, -0, 4), (-1.9021136, -0.6180341, 4), (-1.6180344, -1.1755707, 4), (-1.1755707, -1.6180342, 4), (-0.6180341, -1.9021133, 4), (-5.9604645e-8, -2.0000002, 4), (0.61803395, -1.9021132, 4), (1.1755705, -1.6180341, 4), (1.618034, -1.1755706, 4), (1.9021131, -0.618034, 4), (2, -0, 4), (1.9021143, 0.61803436, 5), (1.6180351, 1.1755712, 5), (1.1755712, 1.618035, 5), (0.6180343, 1.902114, 5), (0, 2.000001, 5), (-0.6180343, 1.9021139, 5), (-1.175571, 1.6180346, 5), (-1.6180345, 1.1755708, 5), (-1.9021136, 0.6180341, 5), (-2.0000005, -0, 5), (-1.9021136, -0.6180341, 5), (-1.6180344, -1.1755707, 5), (-1.1755707, -1.6180342, 5), (-0.6180341, -1.9021133, 5), (-5.9604645e-8, -2.0000002, 5), (0.61803395, -1.9021132, 5), (1.1755705, -1.6180341, 5), (1.618034, -1.1755706, 5), (1.9021131, -0.618034, 5), (2, -0, 5), (1.9021143, 0.61803436, 6), (1.6180351, 1.1755712, 6), (1.1755712, 1.618035, 6), (0.6180343, 1.902114, 6), (0, 2.000001, 6), (-0.6180343, 1.9021139, 6), (-1.175571, 1.6180346, 6), (-1.6180345, 1.1755708, 6), (-1.9021136, 0.6180341, 6), (-2.0000005, -0, 6), (-1.9021136, -0.6180341, 6), (-1.6180344, -1.1755707, 6), (-1.1755707, -1.6180342, 6), (-0.6180341, -1.9021133, 6), (-5.9604645e-8, -2.0000002, 6), (0.61803395, -1.9021132, 6), (1.1755705, -1.6180341, 6), (1.618034, -1.1755706, 6), (1.9021131, -0.618034, 6), (2, -0, 6), (1.9021143, 0.61803436, 7), (1.6180351, 1.1755712, 7), (1.1755712, 1.618035, 7), (0.6180343, 1.902114, 7), (0, 2.000001, 7), (-0.6180343, 1.9021139, 7), (-1.175571, 1.6180346, 7), (-1.6180345, 1.1755708, 7), (-1.9021136, 0.6180341, 7), (-2.0000005, -0, 7), (-1.9021136, -0.6180341, 7), (-1.6180344, -1.1755707, 7), (-1.1755707, -1.6180342, 7), (-0.6180341, -1.9021133, 7), (-5.9604645e-8, -2.0000002, 7), (0.61803395, -1.9021132, 7), (1.1755705, -1.6180341, 7), (1.618034, -1.1755706, 7), (1.9021131, -0.618034, 7), (2, -0, 7), (1.9021143, 0.61803436, 8), (1.6180351, 1.1755712, 8), (1.1755712, 1.618035, 8), (0.6180343, 1.902114, 8), (0, 2.000001, 8), (-0.6180343, 1.9021139, 8), (-1.175571, 1.6180346, 8), (-1.6180345, 1.1755708, 8), (-1.9021136, 0.6180341, 8), (-2.0000005, -0, 8), (-1.9021136, -0.6180341, 8), (-1.6180344, -1.1755707, 8), (-1.1755707, -1.6180342, 8), (-0.6180341, -1.9021133, 8), (-5.9604645e-8, -2.0000002, 8), (0.61803395, -1.9021132, 8), (1.1755705, -1.6180341, 8), (1.618034, -1.1755706, 8), (1.9021131, -0.618034, 8), (2, -0, 8), (1.9021143, 0.61803436, 9), (1.6180351, 1.1755712, 9), (1.1755712, 1.618035, 9), (0.6180343, 1.902114, 9), (0, 2.000001, 9), (-0.6180343, 1.9021139, 9), (-1.175571, 1.6180346, 9), (-1.6180345, 1.1755708, 9), (-1.9021136, 0.6180341, 9), (-2.0000005, -0, 9), (-1.9021136, -0.6180341, 9), (-1.6180344, -1.1755707, 9), (-1.1755707, -1.6180342, 9), (-0.6180341, -1.9021133, 9), (-5.9604645e-8, -2.0000002, 9), (0.61803395, -1.9021132, 9), (1.1755705, -1.6180341, 9), (1.618034, -1.1755706, 9), (1.9021131, -0.618034, 9), (2, -0, 9), (1.9021143, 0.61803436, 10), (1.6180351, 1.1755712, 10), (1.1755712, 1.618035, 10), (0.6180343, 1.902114, 10), (0, 2.000001, 10), (-0.6180343, 1.9021139, 10), (-1.175571, 1.6180346, 10), (-1.6180345, 1.1755708, 10), (-1.9021136, 0.6180341, 10), (-2.0000005, -0, 10), (-1.9021136, -0.6180341, 10), (-1.6180344, -1.1755707, 10), (-1.1755707, -1.6180342, 10), (-0.6180341, -1.9021133, 10), (-5.9604645e-8, -2.0000002, 10), (0.61803395, -1.9021132, 10), (1.1755705, -1.6180341, 10), (1.618034, -1.1755706, 10), (1.9021131, -0.618034, 10), (2, -0, 10), (0.95105714, 0.30901718, 10), (0.80901754, 0.5877856, 10), (0.5877856, 0.8090175, 10), (0.30901715, 0.951057, 10), (0, 1.0000005, 10), (-0.30901715, 0.95105696, 10), (-0.5877855, 0.8090173, 10), (-0.80901724, 0.5877854, 10), (-0.9510568, 0.30901706, 10), (-1.0000002, -0, 10), (-0.9510568, -0.30901706, 10), (-0.8090172, -0.58778536, 10), (-0.58778536, -0.8090171, 10), (-0.30901706, -0.95105666, 10), (-2.9802322e-8, -1.0000001, 10), (0.30901697, -0.9510566, 10), (0.58778524, -0.80901706, 10), (0.809017, -0.5877853, 10), (0.95105654, -0.309017, 10), (1, -0, 10), (0, -0, 0), (0, -0, 10)] color3f[] primvars:displayColor = [(0.4, 0.4, 0.4)] ( customData = { dictionary Maya = { bool generated = 1 } } ) matrix4d primvars:skel:geomBindTransform = ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (0, 0, 0, 1) ) int[] primvars:skel:jointIndices = [0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 0, 1, 2, 0, 0, 4, 3, 0, 0, 0] ( elementSize = 5 interpolation = "vertex" ) float[] primvars:skel:jointWeights = [0.9914398, 0.007798158, 0.00056962454, 0.00011597502, 0.00007644505, 0.9911016, 0.008106242, 0.00059212884, 0.00012055687, 0.000079465186, 0.99056286, 0.008597037, 0.0006279794, 0.00012785601, 0.00008427643, 0.98986334, 0.009234303, 0.0006745291, 0.0001373335, 0.00009052352, 0.9890613, 0.009965006, 0.00072790415, 0.00014820059, 0.000097686585, 0.98823136, 0.010720953, 0.0007831231, 0.00015944311, 0.0001050971, 0.9874593, 0.011424304, 0.0008345, 0.00016990342, 0.00011199202, 0.9868309, 0.011996779, 0.00087631703, 0.00017841732, 0.000117603966, 0.98642015, 0.012370941, 0.0009036481, 0.00018398189, 0.000121271856, 0.98627734, 0.012501058, 0.0009131526, 0.000185917, 0.00012254738, 0.98642015, 0.012370941, 0.0009036481, 0.00018398189, 0.000121271856, 0.986831, 0.011996778, 0.00087631686, 0.00017841728, 0.000117603944, 0.9874593, 0.011424296, 0.00083449937, 0.00016990327, 0.000111991925, 0.9882313, 0.01072094, 0.000783122, 0.0001594429, 0.00010509696, 0.98906124, 0.009964993, 0.0007279031, 0.00014820037, 0.00009768643, 0.98986334, 0.009234288, 0.00067452795, 0.00013733325, 0.000090523354, 0.99056286, 0.008597019, 0.000627978, 0.00012785573, 0.00008427624, 0.9911016, 0.008106223, 0.0005921274, 0.000120556564, 0.00007946499, 0.9914398, 0.00779814, 0.0005696231, 0.00011597471, 0.000076444856, 0.991555, 0.00769326, 0.000561962, 0.000114414936, 0.00007541673, 0.9122156, 0.07669155, 0.00810055, 0.0017938935, 0.0011983063, 0.9107189, 0.077999204, 0.00823867, 0.0018244808, 0.0012187384, 0.90837055, 0.0800508, 0.008455371, 0.0018724698, 0.0012507946, 0.90539, 0.0826547, 0.008730407, 0.0019333775, 0.0012914804, 0.9020614, 0.085562706, 0.0090375645, 0.0020013985, 0.001336918, 0.8987084, 0.08849201, 0.009346972, 0.002069918, 0.0013826884, 0.89566416, 0.09115167, 0.009627898, 0.00213213, 0.0014242454, 0.8932356, 0.09327323, 0.0098519875, 0.0021817551, 0.0014573947, 0.89167106, 0.09464019, 0.009996371, 0.0022137295, 0.0014787534, 0.891131, 0.09511205, 0.010046211, 0.0022247666, 0.0014861261, 0.89167106, 0.09464019, 0.009996371, 0.0022137295, 0.0014787534, 0.8932356, 0.093273215, 0.009851985, 0.0021817544, 0.0014573943, 0.8956642, 0.091151625, 0.009627892, 0.0021321285, 0.0014242444, 0.8987086, 0.088491954, 0.009346964, 0.0020699159, 0.001382687, 0.9020615, 0.08556263, 0.009037553, 0.002001396, 0.0013369162, 0.90539014, 0.0826546, 0.008730393, 0.0019333743, 0.0012914783, 0.9083707, 0.08005069, 0.008455355, 0.0018724661, 0.0012507922, 0.91071904, 0.07799908, 0.008238653, 0.0018244769, 0.0012187357, 0.91221595, 0.07669144, 0.008100534, 0.0017938899, 0.0011983039, 0.9127295, 0.07624267, 0.008053132, 0.0017833925, 0.0011912917, 0.79757524, 0.18422364, 0.01401941, 0.002549811, 0.0016318791, 0.79559076, 0.18602969, 0.01415685, 0.0025748082, 0.0016478773, 0.7925068, 0.18883635, 0.014370436, 0.0026136546, 0.0016727389, 0.78863347, 0.19236143, 0.014638692, 0.0026624443, 0.0017039644, 0.7843574, 0.19625312, 0.014934849, 0.0027163082, 0.0017384373, 0.7801007, 0.20012699, 0.015229651, 0.002769926, 0.0017727527, 0.77627844, 0.20360558, 0.015494369, 0.0028180722, 0.0018035662, 0.77325755, 0.20635484, 0.015703585, 0.002856124, 0.0018279193, 0.7713241, 0.20811455, 0.015837498, 0.0028804794, 0.0018435069, 0.77065885, 0.20871985, 0.015883561, 0.0028888572, 0.0018488687, 0.7713241, 0.20811455, 0.015837498, 0.0028804794, 0.0018435069, 0.7732577, 0.20635484, 0.015703583, 0.0028561235, 0.001827919, 0.7762785, 0.20360552, 0.015494359, 0.0028180701, 0.001803565, 0.7801008, 0.2001269, 0.015229637, 0.0027699233, 0.0017727509, 0.7843574, 0.19625297, 0.014934831, 0.0027163047, 0.001738435, 0.78863364, 0.19236128, 0.014638673, 0.0026624403, 0.0017039618, 0.79250705, 0.18883617, 0.014370412, 0.0026136497, 0.0016727359, 0.795591, 0.18602951, 0.014156824, 0.0025748028, 0.0016478739, 0.7975755, 0.18422346, 0.014019383, 0.0025498057, 0.0016318756, 0.7982601, 0.18360043, 0.01397197, 0.0025411823, 0.0016263566, 0.6015815, 0.37000003, 0.023125038, 0.0032929934, 0.0020004367, 0.60011387, 0.371363, 0.023210224, 0.0033051237, 0.0020078055, 0.59784955, 0.37346572, 0.02334164, 0.0033238372, 0.0020191737, 0.5950339, 0.37608063, 0.02350507, 0.0033471093, 0.002033311, 0.5919611, 0.37893423, 0.023683418, 0.003372506, 0.002048739, 0.58893895, 0.38174084, 0.02385883, 0.0033974845, 0.0020639133, 0.5862557, 0.38423267, 0.024014562, 0.0034196607, 0.0020773849, 0.58415526, 0.3861833, 0.024136472, 0.0034370206, 0.0020879305, 0.5828201, 0.38742322, 0.024213966, 0.0034480554, 0.002094634, 0.58236253, 0.3878482, 0.024240525, 0.0034518375, 0.0020969317, 0.5828201, 0.38742322, 0.024213966, 0.0034480554, 0.002094634, 0.5841553, 0.3861833, 0.024136467, 0.0034370197, 0.00208793, 0.5862558, 0.38423264, 0.02401455, 0.0034196584, 0.0020773832, 0.588939, 0.3817408, 0.02385881, 0.003397481, 0.002063911, 0.5919612, 0.37893417, 0.023683393, 0.003372502, 0.0020487367, 0.595034, 0.37608057, 0.02350504, 0.0033471042, 0.002033308, 0.5978497, 0.37346566, 0.023341607, 0.0033238316, 0.0020191702, 0.600114, 0.3713629, 0.023210185, 0.0033051171, 0.0020078013, 0.60158163, 0.36999995, 0.023124997, 0.0032929864, 0.0020004322, 0.6020899, 0.36952794, 0.023095496, 0.0032887855, 0.0019978804, 0.47403845, 0.4736809, 0.044845615, 0.0047368202, 0.0026980822, 0.4739865, 0.47372782, 0.04485005, 0.004737289, 0.0026983493, 0.47392228, 0.47378576, 0.044855528, 0.0047378675, 0.0026986788, 0.47387025, 0.47383252, 0.04485995, 0.004738334, 0.0026989444, 0.47385046, 0.47385046, 0.04486164, 0.0047385124, 0.0026990462, 0.47385046, 0.47385046, 0.044861637, 0.0047385124, 0.002699046, 0.47385046, 0.47385046, 0.04486163, 0.004738511, 0.0026990452, 0.47385043, 0.47385043, 0.044861615, 0.004738509, 0.002699044, 0.47385043, 0.47385043, 0.04486161, 0.0047385087, 0.0026990438, 0.47385043, 0.47385043, 0.044861607, 0.0047385083, 0.0026990436, 0.47385043, 0.47385043, 0.04486161, 0.0047385087, 0.0026990438, 0.47385043, 0.47385043, 0.044861604, 0.004738508, 0.0026990434, 0.47385043, 0.47385043, 0.0448616, 0.0047385073, 0.002699043, 0.47385043, 0.47385043, 0.0448616, 0.004738507, 0.002699043, 0.47385043, 0.47385043, 0.044861592, 0.0047385064, 0.0026990424, 0.47387028, 0.47383255, 0.044859894, 0.0047383267, 0.0026989402, 0.47392228, 0.47378573, 0.04485546, 0.004737858, 0.0026986732, 0.47398654, 0.47372785, 0.04484998, 0.0047372794, 0.0026983435, 0.4740386, 0.4736811, 0.044845548, 0.004736811, 0.002698077, 0.47405848, 0.4736632, 0.044843853, 0.0047366316, 0.0026979747, 0.5210978, 0.33350274, 0.13027461, 0.009913892, 0.0052109896, 0.5210978, 0.33350274, 0.13027461, 0.009913892, 0.0052109896, 0.5210978, 0.33350274, 0.1302746, 0.009913891, 0.005210989, 0.5210978, 0.33350274, 0.1302746, 0.009913888, 0.0052109878, 0.52109784, 0.33350274, 0.13027458, 0.009913887, 0.0052109873, 0.52109784, 0.33350274, 0.13027458, 0.009913887, 0.005210987, 0.5210979, 0.33350274, 0.13027458, 0.009913885, 0.005210986, 0.5210979, 0.3335027, 0.13027455, 0.009913881, 0.0052109845, 0.5210979, 0.3335027, 0.13027453, 0.009913881, 0.005210984, 0.5210979, 0.3335027, 0.13027453, 0.00991388, 0.0052109836, 0.5210979, 0.3335027, 0.13027453, 0.009913881, 0.005210984, 0.5210979, 0.3335027, 0.13027453, 0.009913879, 0.005210983, 0.5210979, 0.3335027, 0.13027452, 0.009913878, 0.005210982, 0.5210979, 0.3335027, 0.13027452, 0.009913878, 0.005210982, 0.5210979, 0.3335027, 0.13027452, 0.009913877, 0.0052109817, 0.52109796, 0.3335027, 0.1302745, 0.009913876, 0.005210981, 0.52109796, 0.3335027, 0.1302745, 0.009913875, 0.0052109803, 0.52109796, 0.3335027, 0.1302745, 0.009913874, 0.0052109803, 0.52109796, 0.3335027, 0.13027449, 0.009913874, 0.00521098, 0.52109796, 0.3335027, 0.13027449, 0.009913873, 0.00521098, 0.51307684, 0.32836935, 0.12826937, 0.020523116, 0.009761293, 0.51307684, 0.32836935, 0.12826937, 0.020523116, 0.009761293, 0.51307684, 0.32836935, 0.12826937, 0.020523114, 0.0097612925, 0.5130769, 0.32836935, 0.12826936, 0.02052311, 0.009761291, 0.5130769, 0.32836935, 0.12826934, 0.020523109, 0.009761289, 0.5130769, 0.32836935, 0.12826934, 0.020523107, 0.009761289, 0.51307696, 0.32836935, 0.12826933, 0.020523103, 0.009761286, 0.513077, 0.32836938, 0.12826933, 0.0205231, 0.009761285, 0.513077, 0.32836935, 0.12826933, 0.0205231, 0.009761284, 0.513077, 0.32836935, 0.12826931, 0.020523097, 0.009761283, 0.513077, 0.32836935, 0.12826933, 0.0205231, 0.009761284, 0.513077, 0.32836935, 0.12826931, 0.020523096, 0.009761283, 0.513077, 0.32836932, 0.1282693, 0.020523092, 0.00976128, 0.513077, 0.32836932, 0.1282693, 0.02052309, 0.00976128, 0.513077, 0.32836932, 0.12826928, 0.020523088, 0.009761279, 0.513077, 0.32836932, 0.12826928, 0.020523086, 0.009761278, 0.513077, 0.32836932, 0.12826927, 0.020523084, 0.009761278, 0.513077, 0.32836932, 0.12826927, 0.020523084, 0.009761277, 0.5130771, 0.32836932, 0.12826927, 0.020523084, 0.009761277, 0.5130771, 0.32836932, 0.12826927, 0.020523082, 0.009761276, 0.44856134, 0.44856134, 0.042467423, 0.042467423, 0.01794249, 0.44856134, 0.44856134, 0.042467423, 0.042467423, 0.01794249, 0.44856134, 0.44856134, 0.042467415, 0.042467415, 0.017942488, 0.44856134, 0.44856134, 0.042467408, 0.042467408, 0.017942484, 0.44856137, 0.44856137, 0.042467404, 0.042467404, 0.01794248, 0.44856137, 0.44856137, 0.042467404, 0.042467404, 0.01794248, 0.44856137, 0.44856137, 0.042467393, 0.042467393, 0.017942477, 0.44856137, 0.44856137, 0.042467386, 0.042467386, 0.017942473, 0.44856137, 0.44856137, 0.04246738, 0.04246738, 0.017942471, 0.4485614, 0.4485614, 0.042467378, 0.042467378, 0.01794247, 0.44856137, 0.44856137, 0.04246738, 0.04246738, 0.017942471, 0.4485614, 0.4485614, 0.042467374, 0.042467374, 0.017942468, 0.4485614, 0.4485614, 0.04246737, 0.04246737, 0.017942466, 0.4485614, 0.4485614, 0.04246737, 0.04246737, 0.017942466, 0.4485614, 0.4485614, 0.042467367, 0.042467367, 0.017942462, 0.4485614, 0.4485614, 0.04246736, 0.04246736, 0.01794246, 0.4485614, 0.4485614, 0.04246736, 0.04246736, 0.01794246, 0.4485614, 0.4485614, 0.042467356, 0.042467356, 0.017942458, 0.44856143, 0.44856143, 0.042467356, 0.042467356, 0.017942458, 0.4485615, 0.4485615, 0.042467356, 0.042467356, 0.017942458, 0.49390632, 0.3161002, 0.123476736, 0.046760444, 0.019756293, 0.49390632, 0.3161002, 0.123476736, 0.046760444, 0.019756293, 0.49390632, 0.3161002, 0.12347673, 0.04676044, 0.019756291, 0.49390635, 0.3161002, 0.12347672, 0.046760432, 0.019756287, 0.49390638, 0.3161002, 0.123476714, 0.04676043, 0.019756285, 0.49390638, 0.3161002, 0.12347671, 0.04676043, 0.019756285, 0.4939064, 0.3161002, 0.1234767, 0.04676042, 0.01975628, 0.49390644, 0.31610018, 0.123476684, 0.04676041, 0.019756276, 0.49390644, 0.31610018, 0.12347668, 0.04676041, 0.019756274, 0.49390647, 0.31610018, 0.12347667, 0.046760406, 0.019756272, 0.49390644, 0.31610018, 0.12347668, 0.04676041, 0.019756274, 0.49390647, 0.31610018, 0.12347667, 0.046760403, 0.019756272, 0.49390647, 0.31610018, 0.12347666, 0.0467604, 0.01975627, 0.4939065, 0.31610018, 0.12347666, 0.0467604, 0.019756269, 0.49390656, 0.3161002, 0.12347667, 0.0467604, 0.019756269, 0.4939066, 0.3161002, 0.12347666, 0.04676039, 0.019756267, 0.4939066, 0.3161002, 0.123476654, 0.04676039, 0.019756265, 0.4939066, 0.3161002, 0.123476654, 0.046760388, 0.019756265, 0.49390653, 0.31610018, 0.12347664, 0.046760384, 0.019756263, 0.49390653, 0.31610018, 0.12347663, 0.046760384, 0.019756261, 0.4631718, 0.2964301, 0.1157931, 0.1157931, 0.00881185, 0.4631718, 0.2964301, 0.1157931, 0.1157931, 0.00881185, 0.46317184, 0.2964301, 0.1157931, 0.1157931, 0.008811848, 0.46317187, 0.2964301, 0.11579309, 0.11579309, 0.008811847, 0.46317187, 0.2964301, 0.11579308, 0.11579308, 0.008811845, 0.46317193, 0.29643014, 0.115793094, 0.115793094, 0.008811846, 0.4631719, 0.2964301, 0.115793064, 0.115793064, 0.008811844, 0.46317193, 0.2964301, 0.11579306, 0.11579306, 0.008811842, 0.46317196, 0.2964301, 0.11579305, 0.11579305, 0.008811841, 0.46317196, 0.2964301, 0.11579304, 0.11579304, 0.00881184, 0.46317196, 0.2964301, 0.11579305, 0.11579305, 0.008811841, 0.46317196, 0.2964301, 0.11579304, 0.11579304, 0.00881184, 0.463172, 0.2964301, 0.115793034, 0.115793034, 0.008811838, 0.463172, 0.2964301, 0.115793034, 0.115793034, 0.008811838, 0.463172, 0.2964301, 0.11579303, 0.11579303, 0.008811837, 0.46317202, 0.2964301, 0.11579302, 0.11579302, 0.008811836, 0.46317202, 0.2964301, 0.11579302, 0.11579302, 0.008811835, 0.46317202, 0.2964301, 0.11579301, 0.11579301, 0.008811835, 0.46317202, 0.2964301, 0.11579301, 0.11579301, 0.008811835, 0.46317205, 0.2964301, 0.11579301, 0.11579301, 0.008811834, 0.36434186, 0.36434186, 0.2331789, 0.034493964, 0.003643427, 0.36434186, 0.36434186, 0.2331789, 0.034493964, 0.003643427, 0.36434186, 0.36434186, 0.2331789, 0.03449396, 0.0036434263, 0.36434186, 0.36434186, 0.23317888, 0.034493953, 0.0036434254, 0.36434186, 0.36434186, 0.23317888, 0.03449395, 0.003643425, 0.36434188, 0.36434188, 0.23317888, 0.03449395, 0.003643425, 0.3643419, 0.3643419, 0.2331789, 0.034493946, 0.0036434243, 0.36434188, 0.36434188, 0.23317887, 0.034493934, 0.0036434229, 0.36434188, 0.36434188, 0.23317885, 0.034493934, 0.0036434224, 0.36434188, 0.36434188, 0.23317885, 0.03449393, 0.0036434222, 0.36434188, 0.36434188, 0.23317885, 0.034493934, 0.0036434224, 0.36434188, 0.36434188, 0.23317885, 0.034493927, 0.003643422, 0.3643419, 0.3643419, 0.23317885, 0.034493923, 0.0036434212, 0.3643419, 0.3643419, 0.23317885, 0.034493923, 0.003643421, 0.3643419, 0.3643419, 0.23317884, 0.03449392, 0.0036434208, 0.3643419, 0.3643419, 0.23317884, 0.034493916, 0.00364342, 0.3643419, 0.3643419, 0.23317884, 0.034493916, 0.0036434198, 0.3643419, 0.3643419, 0.23317884, 0.034493912, 0.0036434196, 0.3643419, 0.3643419, 0.23317884, 0.034493912, 0.0036434196, 0.3643419, 0.3643419, 0.23317882, 0.03449391, 0.0036434191, 0.3723429, 0.3723429, 0.23829958, 0.014893747, 0.0021208618, 0.3723429, 0.3723429, 0.23829958, 0.014893747, 0.0021208618, 0.37234294, 0.37234294, 0.23829961, 0.014893747, 0.0021208616, 0.3723429, 0.3723429, 0.23829956, 0.014893741, 0.0021208609, 0.3723429, 0.3723429, 0.23829956, 0.0148937395, 0.0021208606, 0.3723429, 0.3723429, 0.23829956, 0.0148937395, 0.0021208604, 0.3723429, 0.3723429, 0.23829955, 0.014893736, 0.00212086, 0.37234294, 0.37234294, 0.23829953, 0.014893732, 0.0021208592, 0.37234294, 0.37234294, 0.23829953, 0.01489373, 0.002120859, 0.37234294, 0.37234294, 0.23829953, 0.014893729, 0.0021208588, 0.37234294, 0.37234294, 0.23829953, 0.01489373, 0.002120859, 0.37234294, 0.37234294, 0.23829952, 0.014893728, 0.0021208585, 0.37234294, 0.37234294, 0.23829952, 0.0148937255, 0.0021208583, 0.37234294, 0.37234294, 0.23829952, 0.0148937255, 0.0021208583, 0.37234294, 0.37234294, 0.23829952, 0.014893724, 0.0021208578, 0.37234294, 0.37234294, 0.2382995, 0.014893722, 0.0021208576, 0.37234297, 0.37234297, 0.2382995, 0.014893721, 0.0021208574, 0.37234297, 0.37234297, 0.2382995, 0.01489372, 0.0021208574, 0.37234297, 0.37234297, 0.2382995, 0.01489372, 0.0021208571, 0.37234297, 0.37234297, 0.2382995, 0.014893719, 0.0021208571, 0.44368318, 0.44368318, 0.110920936, 0.0015352396, 0.00017747372, 0.44368318, 0.44368318, 0.110920936, 0.0015352396, 0.00017747372, 0.44368318, 0.44368318, 0.11092093, 0.0015352394, 0.00017747369, 0.44368318, 0.44368318, 0.11092091, 0.0015352389, 0.00017747364, 0.44368318, 0.44368318, 0.110920906, 0.0015352387, 0.00017747362, 0.4436832, 0.4436832, 0.1109209, 0.0015352387, 0.0001774736, 0.4436832, 0.4436832, 0.11092088, 0.0015352382, 0.00017747354, 0.4436832, 0.4436832, 0.11092087, 0.0015352378, 0.0001774735, 0.4436832, 0.4436832, 0.11092086, 0.0015352377, 0.00017747347, 0.4436832, 0.4436832, 0.110920854, 0.0015352374, 0.00017747346, 0.4436832, 0.4436832, 0.11092086, 0.0015352377, 0.00017747347, 0.4436832, 0.4436832, 0.110920854, 0.0015352373, 0.00017747344, 0.44368324, 0.44368324, 0.11092085, 0.0015352371, 0.00017747341, 0.44368324, 0.44368324, 0.11092084, 0.001535237, 0.0001774734, 0.44368324, 0.44368324, 0.11092083, 0.0015352367, 0.00017747337, 0.44368324, 0.44368324, 0.110920824, 0.0015352365, 0.00017747334, 0.4436833, 0.4436833, 0.11092083, 0.0015352366, 0.00017747334, 0.4436833, 0.4436833, 0.11092083, 0.0015352366, 0.00017747334, 0.44368324, 0.44368324, 0.11092082, 0.0015352363, 0.00017747331, 0.44368324, 0.44368324, 0.11092081, 0.0015352361, 0.0001774733, 0.9999998, 1.7388004e-7, 1.08675025e-8, 0, 0, 0.5, 0.5, 0, 0, 0] ( elementSize = 5 interpolation = "vertex" ) float2[] primvars:st = [(0.57430136, 0.13210803), (0.5632045, 0.11032924), (0.626409, 0.064408496), (0.64860266, 0.10796607), (0.5459207, 0.0930455), (0.5918415, 0.02984102), (0.52414197, 0.08194867), (0.54828393, 0.0076473355), (0.5, 0.07812497), (0.5, -7.4505806e-8), (0.47585803, 0.08194867), (0.45171607, 0.0076473504), (0.45407927, 0.09304553), (0.4081585, 0.02984105), (0.43679553, 0.11032927), (0.37359107, 0.064408526), (0.4256987, 0.13210803), (0.3513974, 0.1079661), (0.421875, 0.15625), (0.34374997, 0.15625), (0.4256987, 0.18039197), (0.3513974, 0.2045339), (0.43679553, 0.20217073), (0.37359107, 0.24809146), (0.45407927, 0.21945447), (0.40815854, 0.28265893), (0.47585803, 0.2305513), (0.4517161, 0.3048526), (0.5, 0.234375), (0.5, 0.3125), (0.52414197, 0.2305513), (0.5482839, 0.3048526), (0.5459207, 0.21945447), (0.59184146, 0.28265893), (0.56320447, 0.20217073), (0.62640893, 0.24809146), (0.5743013, 0.18039197), (0.6486026, 0.2045339), (0.578125, 0.15625), (0.65625, 0.15625), (0.375, 0.3125), (0.3875, 0.3125), (0.3875, 0.350094), (0.375, 0.350094), (0.39999998, 0.3125), (0.39999998, 0.350094), (0.41249996, 0.3125), (0.41249996, 0.350094), (0.42499995, 0.3125), (0.42499995, 0.350094), (0.43749994, 0.3125), (0.43749994, 0.350094), (0.44999993, 0.3125), (0.44999993, 0.350094), (0.46249992, 0.3125), (0.46249992, 0.350094), (0.4749999, 0.3125), (0.4749999, 0.350094), (0.4874999, 0.3125), (0.4874999, 0.350094), (0.49999988, 0.3125), (0.49999988, 0.350094), (0.51249987, 0.3125), (0.51249987, 0.350094), (0.52499986, 0.3125), (0.52499986, 0.350094), (0.53749985, 0.3125), (0.53749985, 0.350094), (0.54999983, 0.3125), (0.54999983, 0.350094), (0.5624998, 0.3125), (0.5624998, 0.350094), (0.5749998, 0.3125), (0.5749998, 0.350094), (0.5874998, 0.3125), (0.5874998, 0.350094), (0.5999998, 0.3125), (0.5999998, 0.350094), (0.6124998, 0.3125), (0.6124998, 0.350094), (0.62499976, 0.3125), (0.62499976, 0.350094), (0.3875, 0.38768798), (0.375, 0.38768798), (0.39999998, 0.38768798), (0.41249996, 0.38768798), (0.42499995, 0.38768798), (0.43749994, 0.38768798), (0.44999993, 0.38768798), (0.46249992, 0.38768798), (0.4749999, 0.38768798), (0.4874999, 0.38768798), (0.49999988, 0.38768798), (0.51249987, 0.38768798), (0.52499986, 0.38768798), (0.53749985, 0.38768798), (0.54999983, 0.38768798), (0.5624998, 0.38768798), (0.5749998, 0.38768798), (0.5874998, 0.38768798), (0.5999998, 0.38768798), (0.6124998, 0.38768798), (0.62499976, 0.38768798), (0.3875, 0.42528197), (0.375, 0.42528197), (0.39999998, 0.42528197), (0.41249996, 0.42528197), (0.42499995, 0.42528197), (0.43749994, 0.42528197), (0.44999993, 0.42528197), (0.46249992, 0.42528197), (0.4749999, 0.42528197), (0.4874999, 0.42528197), (0.49999988, 0.42528197), (0.51249987, 0.42528197), (0.52499986, 0.42528197), (0.53749985, 0.42528197), (0.54999983, 0.42528197), (0.5624998, 0.42528197), (0.5749998, 0.42528197), (0.5874998, 0.42528197), (0.5999998, 0.42528197), (0.6124998, 0.42528197), (0.62499976, 0.42528197), (0.3875, 0.46287596), (0.375, 0.46287596), (0.39999998, 0.46287596), (0.41249996, 0.46287596), (0.42499995, 0.46287596), (0.43749994, 0.46287596), (0.44999993, 0.46287596), (0.46249992, 0.46287596), (0.4749999, 0.46287596), (0.4874999, 0.46287596), (0.49999988, 0.46287596), (0.51249987, 0.46287596), (0.52499986, 0.46287596), (0.53749985, 0.46287596), (0.54999983, 0.46287596), (0.5624998, 0.46287596), (0.5749998, 0.46287596), (0.5874998, 0.46287596), (0.5999998, 0.46287596), (0.6124998, 0.46287596), (0.62499976, 0.46287596), (0.3875, 0.5004699), (0.375, 0.5004699), (0.39999998, 0.5004699), (0.41249996, 0.5004699), (0.42499995, 0.5004699), (0.43749994, 0.5004699), (0.44999993, 0.5004699), (0.46249992, 0.5004699), (0.4749999, 0.5004699), (0.4874999, 0.5004699), (0.49999988, 0.5004699), (0.51249987, 0.5004699), (0.52499986, 0.5004699), (0.53749985, 0.5004699), (0.54999983, 0.5004699), (0.5624998, 0.5004699), (0.5749998, 0.5004699), (0.5874998, 0.5004699), (0.5999998, 0.5004699), (0.6124998, 0.5004699), (0.62499976, 0.5004699), (0.3875, 0.5380639), (0.375, 0.5380639), (0.39999998, 0.5380639), (0.41249996, 0.5380639), (0.42499995, 0.5380639), (0.43749994, 0.5380639), (0.44999993, 0.5380639), (0.46249992, 0.5380639), (0.4749999, 0.5380639), (0.4874999, 0.5380639), (0.49999988, 0.5380639), (0.51249987, 0.5380639), (0.52499986, 0.5380639), (0.53749985, 0.5380639), (0.54999983, 0.5380639), (0.5624998, 0.5380639), (0.5749998, 0.5380639), (0.5874998, 0.5380639), (0.5999998, 0.5380639), (0.6124998, 0.5380639), (0.62499976, 0.5380639), (0.3875, 0.57565784), (0.375, 0.57565784), (0.39999998, 0.57565784), (0.41249996, 0.57565784), (0.42499995, 0.57565784), (0.43749994, 0.57565784), (0.44999993, 0.57565784), (0.46249992, 0.57565784), (0.4749999, 0.57565784), (0.4874999, 0.57565784), (0.49999988, 0.57565784), (0.51249987, 0.57565784), (0.52499986, 0.57565784), (0.53749985, 0.57565784), (0.54999983, 0.57565784), (0.5624998, 0.57565784), (0.5749998, 0.57565784), (0.5874998, 0.57565784), (0.5999998, 0.57565784), (0.6124998, 0.57565784), (0.62499976, 0.57565784), (0.3875, 0.6132518), (0.375, 0.6132518), (0.39999998, 0.6132518), (0.41249996, 0.6132518), (0.42499995, 0.6132518), (0.43749994, 0.6132518), (0.44999993, 0.6132518), (0.46249992, 0.6132518), (0.4749999, 0.6132518), (0.4874999, 0.6132518), (0.49999988, 0.6132518), (0.51249987, 0.6132518), (0.52499986, 0.6132518), (0.53749985, 0.6132518), (0.54999983, 0.6132518), (0.5624998, 0.6132518), (0.5749998, 0.6132518), (0.5874998, 0.6132518), (0.5999998, 0.6132518), (0.6124998, 0.6132518), (0.62499976, 0.6132518), (0.3875, 0.65084577), (0.375, 0.65084577), (0.39999998, 0.65084577), (0.41249996, 0.65084577), (0.42499995, 0.65084577), (0.43749994, 0.65084577), (0.44999993, 0.65084577), (0.46249992, 0.65084577), (0.4749999, 0.65084577), (0.4874999, 0.65084577), (0.49999988, 0.65084577), (0.51249987, 0.65084577), (0.52499986, 0.65084577), (0.53749985, 0.65084577), (0.54999983, 0.65084577), (0.5624998, 0.65084577), (0.5749998, 0.65084577), (0.5874998, 0.65084577), (0.5999998, 0.65084577), (0.6124998, 0.65084577), (0.62499976, 0.65084577), (0.3875, 0.6884397), (0.375, 0.6884397), (0.39999998, 0.6884397), (0.41249996, 0.6884397), (0.42499995, 0.6884397), (0.43749994, 0.6884397), (0.44999993, 0.6884397), (0.46249992, 0.6884397), (0.4749999, 0.6884397), (0.4874999, 0.6884397), (0.49999988, 0.6884397), (0.51249987, 0.6884397), (0.52499986, 0.6884397), (0.53749985, 0.6884397), (0.54999983, 0.6884397), (0.5624998, 0.6884397), (0.5749998, 0.6884397), (0.5874998, 0.6884397), (0.5999998, 0.6884397), (0.6124998, 0.6884397), (0.62499976, 0.6884397), (0.6486026, 0.89203393), (0.62640893, 0.93559146), (0.56320447, 0.8896707), (0.5743013, 0.86789197), (0.59184146, 0.97015893), (0.5459207, 0.90695447), (0.5482839, 0.9923526), (0.52414197, 0.9180513), (0.5, 1), (0.5, 0.921875), (0.4517161, 0.9923526), (0.47585803, 0.9180513), (0.40815854, 0.97015893), (0.45407927, 0.90695447), (0.37359107, 0.93559146), (0.43679553, 0.8896707), (0.3513974, 0.89203393), (0.4256987, 0.86789197), (0.34374997, 0.84375), (0.421875, 0.84375), (0.3513974, 0.79546607), (0.4256987, 0.81960803), (0.37359107, 0.75190854), (0.43679553, 0.7978293), (0.4081585, 0.71734107), (0.45407927, 0.78054553), (0.45171607, 0.69514734), (0.47585803, 0.76944864), (0.5, 0.68749994), (0.5, 0.765625), (0.54828393, 0.69514734), (0.52414197, 0.76944864), (0.5918415, 0.717341), (0.5459207, 0.7805455), (0.626409, 0.7519085), (0.5632045, 0.7978293), (0.64860266, 0.79546607), (0.57430136, 0.81960803), (0.65625, 0.84375), (0.578125, 0.84375), (0.5, 0.15), (0.5, 0.8375)] ( customData = { dictionary Maya = { int UVSetIndex = 0 } } interpolation = "faceVarying" ) int[] primvars:st:indices = [0, 1, 2, 3, 1, 4, 5, 2, 4, 6, 7, 5, 6, 8, 9, 7, 8, 10, 11, 9, 10, 12, 13, 11, 12, 14, 15, 13, 14, 16, 17, 15, 16, 18, 19, 17, 18, 20, 21, 19, 20, 22, 23, 21, 22, 24, 25, 23, 24, 26, 27, 25, 26, 28, 29, 27, 28, 30, 31, 29, 30, 32, 33, 31, 32, 34, 35, 33, 34, 36, 37, 35, 36, 38, 39, 37, 38, 0, 3, 39, 40, 41, 42, 43, 41, 44, 45, 42, 44, 46, 47, 45, 46, 48, 49, 47, 48, 50, 51, 49, 50, 52, 53, 51, 52, 54, 55, 53, 54, 56, 57, 55, 56, 58, 59, 57, 58, 60, 61, 59, 60, 62, 63, 61, 62, 64, 65, 63, 64, 66, 67, 65, 66, 68, 69, 67, 68, 70, 71, 69, 70, 72, 73, 71, 72, 74, 75, 73, 74, 76, 77, 75, 76, 78, 79, 77, 78, 80, 81, 79, 43, 42, 82, 83, 42, 45, 84, 82, 45, 47, 85, 84, 47, 49, 86, 85, 49, 51, 87, 86, 51, 53, 88, 87, 53, 55, 89, 88, 55, 57, 90, 89, 57, 59, 91, 90, 59, 61, 92, 91, 61, 63, 93, 92, 63, 65, 94, 93, 65, 67, 95, 94, 67, 69, 96, 95, 69, 71, 97, 96, 71, 73, 98, 97, 73, 75, 99, 98, 75, 77, 100, 99, 77, 79, 101, 100, 79, 81, 102, 101, 83, 82, 103, 104, 82, 84, 105, 103, 84, 85, 106, 105, 85, 86, 107, 106, 86, 87, 108, 107, 87, 88, 109, 108, 88, 89, 110, 109, 89, 90, 111, 110, 90, 91, 112, 111, 91, 92, 113, 112, 92, 93, 114, 113, 93, 94, 115, 114, 94, 95, 116, 115, 95, 96, 117, 116, 96, 97, 118, 117, 97, 98, 119, 118, 98, 99, 120, 119, 99, 100, 121, 120, 100, 101, 122, 121, 101, 102, 123, 122, 104, 103, 124, 125, 103, 105, 126, 124, 105, 106, 127, 126, 106, 107, 128, 127, 107, 108, 129, 128, 108, 109, 130, 129, 109, 110, 131, 130, 110, 111, 132, 131, 111, 112, 133, 132, 112, 113, 134, 133, 113, 114, 135, 134, 114, 115, 136, 135, 115, 116, 137, 136, 116, 117, 138, 137, 117, 118, 139, 138, 118, 119, 140, 139, 119, 120, 141, 140, 120, 121, 142, 141, 121, 122, 143, 142, 122, 123, 144, 143, 125, 124, 145, 146, 124, 126, 147, 145, 126, 127, 148, 147, 127, 128, 149, 148, 128, 129, 150, 149, 129, 130, 151, 150, 130, 131, 152, 151, 131, 132, 153, 152, 132, 133, 154, 153, 133, 134, 155, 154, 134, 135, 156, 155, 135, 136, 157, 156, 136, 137, 158, 157, 137, 138, 159, 158, 138, 139, 160, 159, 139, 140, 161, 160, 140, 141, 162, 161, 141, 142, 163, 162, 142, 143, 164, 163, 143, 144, 165, 164, 146, 145, 166, 167, 145, 147, 168, 166, 147, 148, 169, 168, 148, 149, 170, 169, 149, 150, 171, 170, 150, 151, 172, 171, 151, 152, 173, 172, 152, 153, 174, 173, 153, 154, 175, 174, 154, 155, 176, 175, 155, 156, 177, 176, 156, 157, 178, 177, 157, 158, 179, 178, 158, 159, 180, 179, 159, 160, 181, 180, 160, 161, 182, 181, 161, 162, 183, 182, 162, 163, 184, 183, 163, 164, 185, 184, 164, 165, 186, 185, 167, 166, 187, 188, 166, 168, 189, 187, 168, 169, 190, 189, 169, 170, 191, 190, 170, 171, 192, 191, 171, 172, 193, 192, 172, 173, 194, 193, 173, 174, 195, 194, 174, 175, 196, 195, 175, 176, 197, 196, 176, 177, 198, 197, 177, 178, 199, 198, 178, 179, 200, 199, 179, 180, 201, 200, 180, 181, 202, 201, 181, 182, 203, 202, 182, 183, 204, 203, 183, 184, 205, 204, 184, 185, 206, 205, 185, 186, 207, 206, 188, 187, 208, 209, 187, 189, 210, 208, 189, 190, 211, 210, 190, 191, 212, 211, 191, 192, 213, 212, 192, 193, 214, 213, 193, 194, 215, 214, 194, 195, 216, 215, 195, 196, 217, 216, 196, 197, 218, 217, 197, 198, 219, 218, 198, 199, 220, 219, 199, 200, 221, 220, 200, 201, 222, 221, 201, 202, 223, 222, 202, 203, 224, 223, 203, 204, 225, 224, 204, 205, 226, 225, 205, 206, 227, 226, 206, 207, 228, 227, 209, 208, 229, 230, 208, 210, 231, 229, 210, 211, 232, 231, 211, 212, 233, 232, 212, 213, 234, 233, 213, 214, 235, 234, 214, 215, 236, 235, 215, 216, 237, 236, 216, 217, 238, 237, 217, 218, 239, 238, 218, 219, 240, 239, 219, 220, 241, 240, 220, 221, 242, 241, 221, 222, 243, 242, 222, 223, 244, 243, 223, 224, 245, 244, 224, 225, 246, 245, 225, 226, 247, 246, 226, 227, 248, 247, 227, 228, 249, 248, 230, 229, 250, 251, 229, 231, 252, 250, 231, 232, 253, 252, 232, 233, 254, 253, 233, 234, 255, 254, 234, 235, 256, 255, 235, 236, 257, 256, 236, 237, 258, 257, 237, 238, 259, 258, 238, 239, 260, 259, 239, 240, 261, 260, 240, 241, 262, 261, 241, 242, 263, 262, 242, 243, 264, 263, 243, 244, 265, 264, 244, 245, 266, 265, 245, 246, 267, 266, 246, 247, 268, 267, 247, 248, 269, 268, 248, 249, 270, 269, 271, 272, 273, 274, 272, 275, 276, 273, 275, 277, 278, 276, 277, 279, 280, 278, 279, 281, 282, 280, 281, 283, 284, 282, 283, 285, 286, 284, 285, 287, 288, 286, 287, 289, 290, 288, 289, 291, 292, 290, 291, 293, 294, 292, 293, 295, 296, 294, 295, 297, 298, 296, 297, 299, 300, 298, 299, 301, 302, 300, 301, 303, 304, 302, 303, 305, 306, 304, 305, 307, 308, 306, 307, 309, 310, 308, 309, 271, 274, 310, 1, 0, 311, 4, 1, 311, 6, 4, 311, 8, 6, 311, 10, 8, 311, 12, 10, 311, 14, 12, 311, 16, 14, 311, 18, 16, 311, 20, 18, 311, 22, 20, 311, 24, 22, 311, 26, 24, 311, 28, 26, 311, 30, 28, 311, 32, 30, 311, 34, 32, 311, 36, 34, 311, 38, 36, 311, 0, 38, 311, 274, 273, 312, 273, 276, 312, 276, 278, 312, 278, 280, 312, 280, 282, 312, 282, 284, 312, 284, 286, 312, 286, 288, 312, 288, 290, 312, 290, 292, 312, 292, 294, 312, 294, 296, 312, 296, 298, 312, 298, 300, 312, 300, 302, 312, 302, 304, 312, 304, 306, 312, 306, 308, 312, 308, 310, 312, 310, 274, 312] bool shadow:enable = 1 uniform token[] skel:joints = ["joint1", "joint1/joint2", "joint1/joint2/joint3", "joint1/joint2/joint3/joint4", "joint1/joint2/joint3/joint4/joint5"] rel skel:skeleton = </Root/group1/joint1> uniform token skel:skinningMethod = "DualQuaternion" uniform token subdivisionScheme = "none" matrix4d xformOp:transform = ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (0, 0, 0, 1) ) uniform token[] xformOpOrder = ["xformOp:transform"] } def Skeleton "joint1" ( prepend apiSchemas = ["SkelBindingAPI"] customData = { dictionary Maya = { bool generated = 1 } } ) { uniform matrix4d[] bindTransforms = [( (-0.020420315587156734, 0, 0.9997914836161192, 0), (-1.2243914402252638e-16, -1, -2.50076741213904e-18, 0), (0.9997914836161192, -1.2246467991473532e-16, 0.020420315587156734, 0), (0.06181698728549858, 0, -0.02659854433002078, 1) ), ( (-3.434752482434078e-15, -2.5007674121386094e-18, 1, 0), (-1.2243914402252638e-16, -1, -2.50076741213904e-18, 0), (1, -1.224391440225264e-16, 3.434752482434078e-15, 0), (-1.3877787807814457e-17, 8.841297486311764e-34, 3.0000000000000004, 1) ), ( (-3.434752482434078e-15, -2.5007674121386094e-18, 1, 0), (-1.2243914402252638e-16, -1, -2.50076741213904e-18, 0), (1, -1.224391440225264e-16, 3.434752482434078e-15, 0), (0, 1.2722513410043386e-31, 6, 1) ), ( (-3.434752482434078e-15, -2.5007674121386094e-18, 1, 0), (-1.2243914402252638e-16, -1, -2.50076741213904e-18, 0), (1, -1.224391440225264e-16, 3.434752482434078e-15, 0), (9.185754640251975e-34, 1.5649926925511984e-31, 9, 1) ), ( (1, -1.224391440225264e-16, -1.1796119636642288e-16, 0), (1.2243914402252635e-16, 1, -1.1996391250259628e-16, 0), (2.2898349882893854e-16, 1.1996391250259626e-16, 1, 0), (1.2247672853669268e-33, 1.4186220167777685e-31, 10, 1) )] uniform token[] joints = ["joint1", "joint1/joint2", "joint1/joint2/joint3", "joint1/joint2/joint3/joint4", "joint1/joint2/joint3/joint4/joint5"] uniform matrix4d[] restTransforms = [( (-0.020420315587156734, 0, 0.9997914836161192, 0), (-1.2243914402252638e-16, -1, -2.50076741213904e-18, 0), (0.9997914836161192, -1.2246467991473532e-16, 0.020420315587156734, 0), (0.06181698728549858, 0, -0.02659854433002078, 1) ), ( (0.9997914836161194, 0, 0.0204203155871533, 0), (0, 1, 0, 0), (-0.0204203155871533, 0, 0.9997914836161194, 0), (3.0272297713351164, -9.860761315262648e-32, 7.979727989493313e-16, 1) ), ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (3, -7.502302236417219e-18, 1.0318135235110049e-14, 1) ), ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (3, -7.50230223641712e-18, 1.0304257447302234e-14, 1) ), ( (-3.552713678800501e-15, 0, 1, 0), (-1.2246467991473532e-16, -1, -4.437342591868191e-31, 0), (1, -1.2246467991473532e-16, 3.6637359812630166e-15, 0), (1, -2.5007674121390154e-18, 3.434752482434078e-15, 1) )] rel skel:animationSource = </Root/group1/joint1/Animation> def SkelAnimation "Animation" { uniform token[] joints = ["joint1", "joint1/joint2", "joint1/joint2/joint3", "joint1/joint2/joint3/joint4", "joint1/joint2/joint3/joint4/joint5"] quatf[] rotations = [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9999479, 1.9756056e-36, -0.010210691, -8.708908e-37), (1, 0, 0, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)] quatf[] rotations.timeSamples = { 1: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9999479, 1.9756056e-36, -0.010210691, -8.708908e-37), (1, 0, 0, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 2: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9997641, 6.236958e-33, -0.021720996, 3.2909726e-35), (0.99999624, 0, 0.0027424013, -3.8518746e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 3: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9986183, 5.8084842e-33, -0.05255021, -3.3373637e-34), (0.99994415, 1.2349047e-32, 0.010570527, -1.7324539e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.958437e-17, 0.7071068)], 4: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9952759, 8.419972e-36, -0.09708719, 1.0719098e-34), (0.99973816, 6.126507e-33, 0.022884618, -2.4343037e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 5: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.988742, -1.2090756e-35, -0.14963076, -1.38100015e-33), (0.99923605, 6.168866e-33, 0.039081782, -7.4085352e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -9.607839e-17, 0.7071068)], 6: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9788749, 5.472309e-33, -0.20446007, -6.8019916e-34), (0.9982843, -6.460354e-33, 0.05855423, -2.5918643e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 7: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.96668077, -2.5870152e-18, -0.25598502, 9.769391e-18), (0.9967394, -2.8562294e-33, 0.08068847, 1.3613418e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, 3.8818763e-18, 0.7071068)], 8: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.95428663, 5.9712946e-33, -0.29889306, 1.958205e-33), (0.9944864, 0, 0.10486588, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 9: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.94461256, 8.614725e-36, -0.32818753, 7.714734e-35), (0.991453, 6.0044964e-33, 0.13046467, -1.6081013e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, 5.904622e-18, 0.7071068)], 10: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.94077206, 3.717885e-35, -0.33903977, 1.0155367e-34), (0.98762035, 0, 0.15686323, 3.120114e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, 3.8818763e-18, 0.7071068)], 11: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9475057, 2.7740445e-33, -0.3197388, 1.0104582e-33), (0.98303014, 6.32211e-33, 0.18344428, -1.2847009e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 12: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.96377945, 2.030969e-35, -0.26670045, 3.223818e-33), (0.9777874, 0, 0.20959933, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 13: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9823428, 2.5188462e-35, -0.18709004, 1.1281289e-34), (0.9720599, -6.564091e-33, 0.23473288, 3.8275936e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -9.041538e-17, 0.7071068)], 14: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99605024, -5.8366924e-37, -0.088791266, 1.0322589e-34), (0.96607393, 8.521877e-33, 0.25826564, -1.5549254e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.2742998e-17, 0.7071068)], 15: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9998168, 6.591292e-39, 0.019142117, 2.892867e-34), (0.9601061, -2.4566083e-33, 0.27963609, 5.7946145e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 16: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99192166, 2.9470727e-34, 0.12685224, 1.6248996e-33), (0.9544722, -3.8604024e-33, 0.2983, -5.2504598e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 17: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9744616, 3.76873e-34, 0.2245543, 1.7342746e-33), (0.9495131, -3.956008e-18, 0.3137275, -1.197307e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 18: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.95286465, 2.7759677e-33, 0.3033958, 5.5855252e-33), (0.9455773, -4.273506e-18, 0.3253975, -1.2418443e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.7019346e-17, 0.7071068)], 19: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.93457264, -4.4242698e-33, 0.35577238, -6.938029e-34), (0.9430011, 1.6338732e-33, 0.33278978, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -8.54472e-17, 0.7071068)], 20: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9271051, -3.814175e-35, 0.37480146, 1.1338883e-34), (0.94208485, 2.8210937e-33, 0.33537456, -5.508395e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 21: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.93118745, -5.4463813e-18, 0.36454076, -1.3912303e-17), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.4996595e-17, 0.7071068)], 22: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.94169426, -3.3711516e-35, 0.3364699, 1.1016753e-34), (0.94208485, 0, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.46769e-17, 0.7071068)], 23: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.95563346, -3.2409287e-33, 0.29455864, 1.6095242e-33), (0.94208485, 1.635462e-33, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 24: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.97005093, -6.9114435e-37, 0.24290179, 9.65094e-35), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 25: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.98256904, -2.9500564e-34, 0.18589815, -1.4612545e-33), (0.94208485, 0, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.958982e-17, 0.7071068)], 26: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9917404, -1.2776737e-35, 0.12826133, 9.540489e-35), (0.94208485, -1.8695705e-33, 0.33537456, -2.605372e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 27: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9971905, -7.216408e-36, 0.07490789, 9.706919e-35), (0.94208485, 0, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 28: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99952555, 1.0151991e-18, 0.03080118, -3.1284174e-20), (0.94208485, 1.6482417e-34, 0.33537456, -3.5473118e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 29: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99999964, 2.7427435e-20, 0.00083214947, -2.2823734e-23), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.677449e-17, 0.7071068)], 30: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9999479, 1.9756056e-36, -0.010210691, -8.708908e-37), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -6.772901e-17, 0.7071068)], } half3[] scales = [(1, 1, 1), (1, 1, 1), (1, 1, 1), (1, 1, 1), (1, 1, 1)] float3[] translations = [(0.061816987, 0, -0.026598545), (3.0272298, -9.8607613e-32, 7.910339e-16), (3, -2.929001e-18, 1.0318135e-14), (3, -7.502302e-18, 1.03042574e-14), (1, -2.5007674e-18, 3.4347525e-15)] } } } def Xform "locator1" { } def Xform "locator2" { } def Scope "Looks" { def Material "initialShadingGroup" { token outputs:mdl:surface.connect = </Root/Looks/initialShadingGroup/lambert1.outputs:out> def Shader "lambert1" ( kind = "Material" ) { uniform token info:id = "mdlMaterial" custom asset module = @lambert1.mdl@ custom string name = "lambert1" token outputs:out } } } }
omniverse-code/kit/exts/omni.graph/omni/graph/core/data/anim_deformer/PostSkinMorph/simplepostskinmorph2.usda
#usda 1.0 ( defaultPrim = "Root" endTimeCode = 120 startTimeCode = 1 timeCodesPerSecond = 24 upAxis = "Y" ) def "Root" ( kind = "component" ) { def SkelRoot "group1" { def Mesh "base" ( prepend apiSchemas = ["SkelBindingAPI", "ShadowAPI"] ) { uniform bool doubleSided = 1 float3[] extent = [(-2.5, -0.020237144, -2.5), (2.5, 4.979763, 2.5)] int[] faceVertexCounts = [4, 4, 4, 4, 4, 4] int[] faceVertexIndices = [0, 1, 3, 2, 2, 3, 5, 4, 4, 5, 7, 6, 6, 7, 1, 0, 1, 7, 5, 3, 6, 0, 2, 4] rel material:binding = </Root/Looks/initialShadingGroup> custom uniform bool morph:ConsiderTransformSpaces = 1 custom uniform bool morph:IsPostSpaceMorph = 1 custom uniform token[] morph:MorphTargetNames = ["a", "b"] custom rel morph:MorphTargets = [ </Root/group1/base/a>, </Root/group1/base/b>, ] custom rel morph:MorphWeights = [ </Root/group1/base.morph:weight_a>, </Root/group1/base.morph:weight_b>, ] custom double morph:weight_a = 1 double morph:weight_a.timeSamples = { 1: 0.005063657183200121, 2: 0.019675925374031067, 3: 0.04296875, 4: 0.07407407462596893, 5: 0.11212383955717087, 6: 0.15625, 7: 0.20558449625968933, 8: 0.25925925374031067, 9: 0.31640625, 10: 0.37615740299224854, 11: 0.43764469027519226, 12: 0.5, 13: 0.5623553395271301, 14: 0.6238425970077515, 15: 0.68359375, 16: 0.7407407164573669, 17: 0.7944155335426331, 18: 0.84375, 19: 0.8878761529922485, 20: 0.9259259104728699, 21: 0.95703125, 22: 0.9803240895271301, 23: 0.9949363470077515, 24: 1, 25: 1, 26: 1, 27: 1, 28: 1, 29: 1, 30: 1, 31: 1, 32: 1, 33: 1, 34: 1, 35: 1, 36: 1, 37: 1, 38: 1, 39: 1, 40: 1, 41: 1, 42: 1, 43: 1, 44: 1, 45: 1, 46: 1, 47: 1, 48: 1, 49: 1, 50: 1, 51: 1, 52: 1, 53: 1, 54: 1, 55: 1, 56: 1, 57: 1, 58: 1, 59: 1, 60: 1, 61: 1, 62: 1, 63: 1, 64: 1, 65: 1, 66: 1, 67: 1, 68: 1, 69: 1, 70: 1, 71: 1, 72: 1, 73: 1, 74: 1, 75: 1, 76: 1, 77: 1, 78: 1, 79: 1, 80: 1, 81: 1, 82: 1, 83: 1, 84: 1, 85: 1, 86: 1, 87: 1, 88: 1, 89: 1, 90: 1, 91: 1, 92: 1, 93: 1, 94: 1, 95: 1, 96: 1, 97: 0.9949363470077515, 98: 0.9803240895271301, 99: 0.95703125, 100: 0.9259259104728699, 101: 0.8878761529922485, 102: 0.84375, 103: 0.7944155335426331, 104: 0.7407407164573669, 105: 0.68359375, 106: 0.6238425970077515, 107: 0.5623553395271301, 108: 0.5, 109: 0.43764469027519226, 110: 0.37615740299224854, 111: 0.31640625, 112: 0.25925925374031067, 113: 0.20558449625968933, 114: 0.15625, 115: 0.11212383955717087, 116: 0.07407407462596893, 117: 0.04296875, 118: 0.019675925374031067, 119: 0.005063657183200121, 120: 0, } custom double morph:weight_b = 1 double morph:weight_b.timeSamples = { 1: 0.005063657183200121, 2: 0.019675925374031067, 3: 0.04296875, 4: 0.07407407462596893, 5: 0.11212383955717087, 6: 0.15625, 7: 0.20558449625968933, 8: 0.25925925374031067, 9: 0.31640625, 10: 0.37615740299224854, 11: 0.43764469027519226, 12: 0.5, 13: 0.5623553395271301, 14: 0.6238425970077515, 15: 0.68359375, 16: 0.7407407164573669, 17: 0.7944155335426331, 18: 0.84375, 19: 0.8878761529922485, 20: 0.9259259104728699, 21: 0.95703125, 22: 0.9803240895271301, 23: 0.9949363470077515, 24: 1, 25: 1, 26: 1, 27: 1, 28: 1, 29: 1, 30: 1, 31: 1, 32: 1, 33: 1, 34: 1, 35: 1, 36: 1, 37: 1, 38: 1, 39: 1, 40: 1, 41: 1, 42: 1, 43: 1, 44: 1, 45: 1, 46: 1, 47: 1, 48: 1, 49: 1, 50: 1, 51: 1, 52: 1, 53: 1, 54: 1, 55: 1, 56: 1, 57: 1, 58: 1, 59: 1, 60: 1, 61: 1, 62: 1, 63: 1, 64: 1, 65: 1, 66: 1, 67: 1, 68: 1, 69: 1, 70: 1, 71: 1, 72: 1, 73: 1, 74: 1, 75: 1, 76: 1, 77: 1, 78: 1, 79: 1, 80: 1, 81: 1, 82: 1, 83: 1, 84: 1, 85: 1, 86: 1, 87: 1, 88: 1, 89: 1, 90: 1, 91: 1, 92: 1, 93: 1, 94: 1, 95: 1, 96: 1, 97: 0.9949363470077515, 98: 0.9803240895271301, 99: 0.95703125, 100: 0.9259259104728699, 101: 0.8878761529922485, 102: 0.84375, 103: 0.7944155335426331, 104: 0.7407407164573669, 105: 0.68359375, 106: 0.6238425970077515, 107: 0.5623553395271301, 108: 0.5, 109: 0.43764469027519226, 110: 0.37615740299224854, 111: 0.31640625, 112: 0.25925925374031067, 113: 0.20558449625968933, 114: 0.15625, 115: 0.11212383955717087, 116: 0.07407407462596893, 117: 0.04296875, 118: 0.019675925374031067, 119: 0.005063657183200121, 120: 0, } normal3f[] normals = [(0, 0, 1), (0, 0, 1), (0, 0, 1), (0, 0, 1), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 0, -1), (0, 0, -1), (0, 0, -1), (0, 0, -1), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (1, 0, 0), (1, 0, 0), (1, 0, 0), (1, 0, 0), (-1, 0, 0), (-1, 0, 0), (-1, 0, 0), (-1, 0, 0)] ( interpolation = "faceVarying" ) point3f[] points = [(-2.5, -0.020237144, 2.5), (2.5, -0.020237144, 2.5), (-2.5, 4.979763, 2.5), (2.5, 4.979763, 2.5), (-2.5, 4.979763, -2.5), (2.5, 4.979763, -2.5), (-2.5, -0.020237144, -2.5), (2.5, -0.020237144, -2.5)] color3f[] primvars:displayColor = [(0.4, 0.4, 0.4)] ( customData = { dictionary Maya = { bool generated = 1 } } ) matrix4d primvars:skel:geomBindTransform = ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (0, 0, 0, 1) ) int[] primvars:skel:jointIndices = [1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0] ( elementSize = 2 interpolation = "vertex" ) float[] primvars:skel:jointWeights = [1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0] ( elementSize = 2 interpolation = "vertex" ) float2[] primvars:st = [(0.375, 0), (0.625, 0), (0.625, 0.25), (0.375, 0.25), (0.375, 0.25), (0.625, 0.25), (0.625, 0.5), (0.375, 0.5), (0.375, 0.5), (0.625, 0.5), (0.625, 0.75), (0.375, 0.75), (0.375, 0.75), (0.625, 0.75), (0.625, 1), (0.375, 1), (0.625, 0), (0.875, 0), (0.875, 0.25), (0.625, 0.25), (0.125, 0), (0.375, 0), (0.375, 0.25), (0.125, 0.25)] ( customData = { dictionary Maya = { int UVSetIndex = 0 } } interpolation = "faceVarying" ) int[] primvars:st:indices = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23] bool shadow:enable = 1 uniform token[] skel:joints = ["joint1", "joint1/joint2"] rel skel:skeleton = </Root/group1/joint1> uniform token skel:skinningMethod = "ClassicLinear" uniform token subdivisionScheme = "none" float3 xformOp:translate:pivot = (0, 2.4797628, 0) uniform token[] xformOpOrder = ["xformOp:translate:pivot", "!invert!xformOp:translate:pivot"] def MorphTarget "a" ( customData = { int rampInput = -1 } ) { custom uniform vector3f[] offsets = [(0, 2.108045, 0), (0, 2.108045, 0)] custom uniform uint[] pointIndices = [3, 5] custom uniform int Priority = 0 custom uniform token targetType = "primary" ( allowedTokens = ["primary", "inbetween", "combination"] ) custom uniform token transform = "joint1/joint2" custom uniform token transformType = "joint" ( allowedTokens = ["joint", "transform"] ) } def MorphTarget "b" ( customData = { int rampInput = -1 } ) { custom uniform vector3f[] offsets = [(0, 2.0353513, 0), (0, 2.0353513, 0)] custom uniform uint[] pointIndices = [2, 4] custom uniform int Priority = 0 custom uniform token targetType = "primary" ( allowedTokens = ["primary", "inbetween", "combination"] ) custom uniform token transform = "joint1/joint2" custom uniform token transformType = "joint" ( allowedTokens = ["joint", "transform"] ) } } def Skeleton "joint1" ( prepend apiSchemas = ["SkelBindingAPI"] customData = { dictionary Maya = { bool generated = 1 } } ) { uniform matrix4d[] bindTransforms = [( (-0.1262437857194616, 0, -0.9919992472614174, 0), (0, 1, 0, 0), (0.9919992472614174, 0, -0.1262437857194616, 0), (0, 0, 0, 1) ), ( (-0.04036000725007299, 0, -0.9991852029602791, 0), (0, 1, 0, 0), (0.9991852029602791, 0, -0.04036000725007299, 0), (0, 4, 0, 1) )] uniform token[] joints = ["joint1", "joint1/joint2"] uniform matrix4d[] restTransforms = [( (-0.1262437857194616, 0, -0.9919992472614174, 0), (0, 1, 0, 0), (0.9919992472614174, 0, -0.1262437857194616, 0), (0, 0, 0, 1) ), ( (0.9962861693182575, 0, 0.08610382584503647, 0), (-0, 1, 0, 0), (-0.08610382584503647, -0, 0.9962861693182575, 0), (0, 4, 0, 1) )] rel skel:animationSource = </Root/group1/joint1/Animation> def SkelAnimation "Animation" { uniform token[] joints = ["joint1", "joint1/joint2"] quatf[] rotations = [(0.6609675, 0, 0.7504145, 0), (0.70645, 0.70645, -0.030470604, 0.030470604)] quatf[] rotations.timeSamples = { 1: [(0.6609675, 0, 0.7504145, 0), (0.9990711, 0, -0.04309194, 0)], 30: [(0.6609675, 0, 0.7504145, 0), (0.9990711, 0, -0.04309194, 0)], 31: [(0.6609675, 0, 0.7504145, 0), (0.99906784, 0.0025574358, -0.0430918, 0.00011030733)], 32: [(0.6609675, 0, 0.7504145, 0), (0.9990211, 0.009997092, -0.043089785, 0.00043119464)], 33: [(0.6609675, 0, 0.7504145, 0), (0.99882954, 0.02196895, -0.043081522, 0.0009475649)], 34: [(0.6609675, 0, 0.7504145, 0), (0.99834365, 0.03811983, -0.043060567, 0.0016441847)], 35: [(0.6609675, 0, 0.7504145, 0), (0.99738085, 0.058090817, -0.043019034, 0.0025055734)], 36: [(0.6609675, 0, 0.7504145, 0), (0.9957402, 0.08151483, -0.042948272, 0.003515898)], 37: [(0.6609675, 0, 0.7504145, 0), (0.99321496, 0.108014606, -0.042839352, 0.004658886)], 38: [(0.6609675, 0, 0.7504145, 0), (0.98960537, 0.13720173, -0.042683665, 0.0059177857)], 39: [(0.6609675, 0, 0.7504145, 0), (0.98472905, 0.16867661, -0.04247334, 0.0072753606)], 40: [(0.6609675, 0, 0.7504145, 0), (0.9784309, 0.20202973, -0.042201687, 0.008713948)], 41: [(0.6609675, 0, 0.7504145, 0), (0.9705916, 0.23684403, -0.041863564, 0.010215559)], 42: [(0.6609675, 0, 0.7504145, 0), (0.9611341, 0.2726984, -0.041455638, 0.011762029)], 43: [(0.6609675, 0, 0.7504145, 0), (0.9500293, 0.30917215, -0.04097667, 0.013335215)], 44: [(0.6609675, 0, 0.7504145, 0), (0.9372997, 0.34585008, -0.040427618, 0.014917208)], 45: [(0.6609675, 0, 0.7504145, 0), (0.9230214, 0.38232797, -0.03981176, 0.016490571)], 46: [(0.6609675, 0, 0.7504145, 0), (0.90732396, 0.41821808, -0.0391347, 0.018038584)], 47: [(0.6609675, 0, 0.7504145, 0), (0.89038986, 0.45315444, -0.0384043, 0.01954546)], 48: [(0.6609675, 0, 0.7504145, 0), (0.8724513, 0.4867975, -0.037630573, 0.020996554)], 49: [(0.6609675, 0, 0.7504145, 0), (0.8537859, 0.51883787, -0.036825497, 0.022378517)], 50: [(0.6609675, 0, 0.7504145, 0), (0.8347118, 0.5489986, -0.036002796, 0.02367941)], 51: [(0.6609675, 0, 0.7504145, 0), (0.81558096, 0.5770362, -0.03517764, 0.024888728)], 52: [(0.6609675, 0, 0.7504145, 0), (0.79677296, 0.6027404, -0.034366414, 0.025997402)], 53: [(0.6609675, 0, 0.7504145, 0), (0.7786869, 0.62593114, -0.033586327, 0.026997667)], 54: [(0.6609675, 0, 0.7504145, 0), (0.7617343, 0.64645493, -0.032855127, 0.027882896)], 55: [(0.6609675, 0, 0.7504145, 0), (0.74633116, 0.6641784, -0.03219076, 0.028647345)], 56: [(0.6609675, 0, 0.7504145, 0), (0.7328903, 0.67898077, -0.03161103, 0.029285802)], 57: [(0.6609675, 0, 0.7504145, 0), (0.72181356, 0.69074476, -0.031133266, 0.029793207)], 58: [(0.6609675, 0, 0.7504145, 0), (0.7134836, 0.6993456, -0.030773979, 0.030164177)], 59: [(0.6609675, 0, 0.7504145, 0), (0.70825607, 0.7046393, -0.030548504, 0.030392507)], 60: [(0.6609675, 0, 0.7504145, 0), (0.70645, 0.70645, -0.030470604, 0.030470604)], } half3[] scales = [(1, 1, 1), (1, 1, 1)] float3[] translations = [(0, 0, 0), (0, 4, 0)] } } } def Scope "Looks" { def Material "initialShadingGroup" { } } }
omniverse-code/kit/exts/omni.graph/omni/graph/core/data/anim_deformer/PostSkinMorph/simplepostskinmorph_computegraph_GPU.usda
#usda 1.0 ( defaultPrim = "Root" endTimeCode = 120 metersPerUnit = 0.009999999776482582 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Y" ) def "Root" ( references = @./simplepostskinmorph.usda@</Root> ) { over "group1" { over "base" { rel deformedPrim = </Root/group1/pCylinder1_deformed> uniform token skel:skinningMethod = "ClassicLinear" token visibility = "invisible" } def Mesh "base_deformed" ( references = </Root/group1/base> ) { point3f[] points.connect = </Root/group1/Morph.output:points> token visibility = "inherited" } def ComputeNode "SkeletonTransforms" { rel input:skelAnim = </Root/group1/joint1/Animation> rel input:skeleton = </Root/group1/joint1> custom token node:type = "SkeletonTransforms" matrix4d[] output:jointLocalBindTransforms matrix4d[] output:jointLocalTransforms int[] output:jointParentIndices matrix4d[] output:jointSkelBindTransforms matrix4d[] output:jointSkelTransforms matrix4d output:skelLocalToWorld } def ComputeNode "Skinning" { rel input:mesh = </Root/group1/base> point3f[] input:restPoints.connect = </Root/group1/base.points> token[] input:skinningJoints.connect = </Root/group1/base.skel:joints> int[] input:jointIndices.connect = </Root/group1/base.primvars:skel:jointIndices> float[] input:jointWeights.connect = </Root/group1/base.primvars:skel:jointWeights> float[] input:blendWeights token input:skinningMethod.connect = </Root/group1/base.skel:skinningMethod> matrix4d input:geomBindTransform.connect = </Root/group1/base.primvars:skel:geomBindTransform> matrix4d input:meshWorldToLocal token[] input:skelFullJoints.connect = </Root/group1/joint1.joints> matrix4d[] input:skelTransforms.connect = </Root/group1/SkeletonTransforms.output:jointSkelTransforms> matrix4d[] input:skelBindTransforms.connect = </Root/group1/joint1.bindTransforms> matrix4d input:skelLocalToWorld.connect = </Root/group1/SkeletonTransforms.output:skelLocalToWorld> int[] output:skinningJointsMap int output:skinningMethod matrix4d[] output:skinningTransforms float[] output:skinningDualQuats point3f[] output:points custom token node:type = "SkinningGPU" } def ComputeNode "Morph" { token[] input:joints.connect = </Root/group1/joint1.joints> matrix4d[] input:jointSkelTransforms.connect = </Root/group1/SkeletonTransforms.output:jointSkelTransforms> point3f[] input:points.connect = </Root/group1/Skinning.output:points> rel input:restMesh = </Root/group1/base> custom token node:type = "MorphGPU" point3f[] output:points point3f[] output:offsets int[] output:jointIndicesMap } } }
omniverse-code/kit/exts/omni.graph/omni/graph/core/data/anim_deformer/PostSkinMorph/simplepostskinmorph_computegraph.usda
#usda 1.0 ( defaultPrim = "Root" endTimeCode = 120 metersPerUnit = 0.009999999776482582 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Y" ) def "Root" ( references = @./simplepostskinmorph.usda@</Root> ) { over "group1" { over "base" { rel deformedPrim = </Root/group1/pCylinder1_deformed> uniform token skel:skinningMethod = "ClassicLinear" token visibility = "invisible" } def Mesh "base_deformed" ( references = </Root/group1/base> ) { point3f[] points.connect = </Root/group1/Morph.output:points> token visibility = "inherited" } def ComputeNode "SkeletonTransforms" { rel input:skelAnim = </Root/group1/joint1/Animation> rel input:skeleton = </Root/group1/joint1> custom token node:type = "SkeletonTransforms" matrix4d[] output:jointLocalBindTransforms matrix4d[] output:jointLocalTransforms int[] output:jointParentIndices matrix4d[] output:jointSkelBindTransforms matrix4d[] output:jointSkelTransforms matrix4d output:skelLocalToWorld } def ComputeNode "Skinning" { rel input:mesh = </Root/group1/base> point3f[] input:restPoints.connect = </Root/group1/base.points> token[] input:skinningJoints.connect = </Root/group1/base.skel:joints> int[] input:jointIndices.connect = </Root/group1/base.primvars:skel:jointIndices> float[] input:jointWeights.connect = </Root/group1/base.primvars:skel:jointWeights> float[] input:blendWeights token input:skinningMethod.connect = </Root/group1/base.skel:skinningMethod> matrix4d input:geomBindTransform.connect = </Root/group1/base.primvars:skel:geomBindTransform> matrix4d input:meshWorldToLocal token[] input:skelFullJoints.connect = </Root/group1/joint1.joints> matrix4d[] input:skelTransforms.connect = </Root/group1/SkeletonTransforms.output:jointSkelTransforms> matrix4d[] input:skelBindTransforms.connect = </Root/group1/joint1.bindTransforms> matrix4d input:skelLocalToWorld.connect = </Root/group1/SkeletonTransforms.output:skelLocalToWorld> int[] output:skinningJointsMap int output:skinningMethod matrix4d[] output:skinningTransforms float[] output:skinningDualQuats point3f[] output:points custom token node:type = "Skinning" } def ComputeNode "Morph" { token[] input:joints.connect = </Root/group1/joint1.joints> matrix4d[] input:jointSkelTransforms.connect = </Root/group1/SkeletonTransforms.output:jointSkelTransforms> point3f[] input:points.connect = </Root/group1/Skinning.output:points> rel input:restMesh = </Root/group1/base> custom token node:type = "Morph" point3f[] output:offsets point3f[] output:points } } }
omniverse-code/kit/exts/omni.graph/omni/graph/core/data/anim_deformer/PostSkinMorph/simplepostskinmorph.usda
#usda 1.0 ( defaultPrim = "Root" endTimeCode = 120 startTimeCode = 1 timeCodesPerSecond = 24 upAxis = "Y" ) def "Root" ( kind = "component" ) { def SkelRoot "group1" { def Mesh "base" ( prepend apiSchemas = ["SkelBindingAPI", "ShadowAPI"] ) { uniform bool doubleSided = 1 float3[] extent = [(-2.5, -0.020237144, -2.5), (2.5, 4.979763, 2.5)] int[] faceVertexCounts = [4, 4, 4, 4, 4, 4] int[] faceVertexIndices = [0, 1, 3, 2, 2, 3, 5, 4, 4, 5, 7, 6, 6, 7, 1, 0, 1, 7, 5, 3, 6, 0, 2, 4] rel material:binding = </Root/Looks/initialShadingGroup> custom uniform bool morph:ConsiderTransformSpaces = 1 custom uniform bool morph:IsPostSpaceMorph = 1 custom uniform token[] morph:MorphTargetNames = ["a", "b"] custom rel morph:MorphTargets = [ </Root/group1/base/a>, </Root/group1/base/b>, ] custom rel morph:MorphWeights = [ </Root/group1/base.morph:weight_a>, </Root/group1/base.morph:weight_b>, ] custom double morph:weight_a = 1 double morph:weight_a.timeSamples = { 1: 1, 2: 1, 3: 1, 4: 1, 5: 1, 6: 1, 7: 1, 8: 1, 9: 1, 10: 1, 11: 1, 12: 1, 13: 1, 14: 1, 15: 1, 16: 1, 17: 1, 18: 1, 19: 1, 20: 1, 21: 1, 22: 1, 23: 1, 24: 1, 25: 1, 26: 1, 27: 1, 28: 1, 29: 1, 30: 1, 31: 1, 32: 1, 33: 1, 34: 1, 35: 1, 36: 1, 37: 1, 38: 1, 39: 1, 40: 1, 41: 1, 42: 1, 43: 1, 44: 1, 45: 1, 46: 1, 47: 1, 48: 1, 49: 1, 50: 1, 51: 1, 52: 1, 53: 1, 54: 1, 55: 1, 56: 1, 57: 1, 58: 1, 59: 1, 60: 1, 61: 1, 62: 1, 63: 1, 64: 1, 65: 1, 66: 1, 67: 1, 68: 1, 69: 1, 70: 1, 71: 1, 72: 1, 73: 1, 74: 1, 75: 1, 76: 1, 77: 1, 78: 1, 79: 1, 80: 1, 81: 1, 82: 1, 83: 1, 84: 1, 85: 1, 86: 1, 87: 1, 88: 1, 89: 1, 90: 1, 91: 0.9967407584190369, 92: 0.9872592687606812, 93: 0.972000002861023, 94: 0.9514074325561523, 95: 0.9259259104728699, 96: 0.8960000276565552, 97: 0.862074077129364, 98: 0.8245925903320312, 99: 0.7839999794960022, 100: 0.7407407164573669, 101: 0.6952592730522156, 102: 0.6480000019073486, 103: 0.599407434463501, 104: 0.5499259233474731, 105: 0.5, 106: 0.45007407665252686, 107: 0.4005925953388214, 108: 0.35199999809265137, 109: 0.3047407269477844, 110: 0.25925925374031067, 111: 0.2160000056028366, 112: 0.17540740966796875, 113: 0.137925922870636, 114: 0.10400000214576721, 115: 0.07407407462596893, 116: 0.048592593520879745, 117: 0.02800000086426735, 118: 0.012740740552544594, 119: 0.0032592592760920525, 120: 0, } custom double morph:weight_b = 0 double morph:weight_b.timeSamples = { 1: 0.00020717592269647866, 2: 0.0008240740862675011, 3: 0.001843750011175871, 4: 0.0032592592760920525, 5: 0.005063657183200121, 6: 0.007249999791383743, 7: 0.0098113426938653, 8: 0.012740740552544594, 9: 0.01603125035762787, 10: 0.019675925374031067, 11: 0.023667823523283005, 12: 0.02800000086426735, 13: 0.03266550973057747, 14: 0.03765740618109703, 15: 0.04296875, 16: 0.048592593520879745, 17: 0.054521989077329636, 18: 0.060750000178813934, 19: 0.06726967543363571, 20: 0.07407407462596893, 21: 0.08115624636411667, 22: 0.08850926160812378, 23: 0.09612615406513214, 24: 0.10400000214576721, 25: 0.11212383955717087, 26: 0.12049073725938797, 27: 0.12909375131130219, 28: 0.137925922870636, 29: 0.14698033034801483, 30: 0.15625, 31: 0.16572800278663635, 32: 0.17540740966796875, 33: 0.18528124690055847, 34: 0.19534258544445038, 35: 0.20558449625968933, 36: 0.2160000056028366, 37: 0.22658216953277588, 38: 0.2373240739107132, 39: 0.24821874499320984, 40: 0.25925925374031067, 41: 0.27043867111206055, 42: 0.28174999356269836, 43: 0.29318633675575256, 44: 0.3047407269477844, 45: 0.31640625, 46: 0.32817593216896057, 47: 0.3400428295135498, 48: 0.35199999809265137, 49: 0.3640405237674713, 50: 0.37615740299224854, 51: 0.3883437514305115, 52: 0.4005925953388214, 53: 0.412896990776062, 54: 0.42524999380111694, 55: 0.43764469027519226, 56: 0.45007407665252686, 57: 0.4625312387943268, 58: 0.4750092625617981, 59: 0.4875011444091797, 60: 0.5, 61: 0.5124988555908203, 62: 0.5249907374382019, 63: 0.5374687314033508, 64: 0.5499259233474731, 65: 0.5623553395271301, 66: 0.5747500061988831, 67: 0.587103009223938, 68: 0.599407434463501, 69: 0.6116562485694885, 70: 0.6238425970077515, 71: 0.6359595060348511, 72: 0.6480000019073486, 73: 0.6599571704864502, 74: 0.6718240976333618, 75: 0.68359375, 76: 0.6952592730522156, 77: 0.706813633441925, 78: 0.7182499766349792, 79: 0.7295613288879395, 80: 0.7407407164573669, 81: 0.7517812252044678, 82: 0.762675940990448, 83: 0.7734178304672241, 84: 0.7839999794960022, 85: 0.7944155335426331, 86: 0.8046573996543884, 87: 0.8147187232971191, 88: 0.8245925903320312, 89: 0.8342719674110413, 90: 0.84375, 91: 0.853019654750824, 92: 0.862074077129364, 93: 0.8709062337875366, 94: 0.8795092701911926, 95: 0.8878761529922485, 96: 0.8960000276565552, 97: 0.903873860836029, 98: 0.9114907383918762, 99: 0.9188437461853027, 100: 0.9259259104728699, 101: 0.9327303171157837, 102: 0.9392499923706055, 103: 0.9454780220985413, 104: 0.9514074325561523, 105: 0.95703125, 106: 0.9623426198959351, 107: 0.967334508895874, 108: 0.972000002861023, 109: 0.9763321876525879, 110: 0.9803240895271301, 111: 0.9839687347412109, 112: 0.9872592687606812, 113: 0.9901886582374573, 114: 0.9927499890327454, 115: 0.9949363470077515, 116: 0.9967407584190369, 117: 0.9981562495231628, 118: 0.9991759061813354, 119: 0.9997928142547607, 120: 1, } normal3f[] normals = [(0, 0, 1), (0, 0, 1), (0, 0, 1), (0, 0, 1), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 0, -1), (0, 0, -1), (0, 0, -1), (0, 0, -1), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (1, 0, 0), (1, 0, 0), (1, 0, 0), (1, 0, 0), (-1, 0, 0), (-1, 0, 0), (-1, 0, 0), (-1, 0, 0)] ( interpolation = "faceVarying" ) point3f[] points = [(-2.5, -0.020237144, 2.5), (2.5, -0.020237144, 2.5), (-2.5, 4.979763, 2.5), (2.5, 4.979763, 2.5), (-2.5, 4.979763, -2.5), (2.5, 4.979763, -2.5), (-2.5, -0.020237144, -2.5), (2.5, -0.020237144, -2.5)] color3f[] primvars:displayColor = [(0.4, 0.4, 0.4)] ( customData = { dictionary Maya = { bool generated = 1 } } ) matrix4d primvars:skel:geomBindTransform = ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (0, 0, 0, 1) ) int[] primvars:skel:jointIndices = [1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0] ( elementSize = 2 interpolation = "vertex" ) float[] primvars:skel:jointWeights = [1, 0, 1, 0, 1, 0, 1, 0, 0.9999814, 0.00001859665, 0.99999946, 5.364418e-7, 0.9998881, 0.00011187792, 0.99998295, 0.000017046928] ( elementSize = 2 interpolation = "vertex" ) float2[] primvars:st = [(0.375, 0), (0.625, 0), (0.625, 0.25), (0.375, 0.25), (0.625, 0.5), (0.375, 0.5), (0.625, 0.75), (0.375, 0.75), (0.625, 1), (0.375, 1), (0.875, 0), (0.875, 0.25), (0.125, 0), (0.125, 0.25)] ( customData = { dictionary Maya = { int UVSetIndex = 0 } } interpolation = "faceVarying" ) int[] primvars:st:indices = [0, 1, 2, 3, 3, 2, 4, 5, 5, 4, 6, 7, 7, 6, 8, 9, 1, 10, 11, 2, 12, 0, 3, 13] bool shadow:enable = 1 uniform token[] skel:joints = ["joint1", "joint1/joint2"] rel skel:skeleton = </Root/group1/joint1> uniform token skel:skinningMethod = "ClassicLinear" uniform token subdivisionScheme = "none" float3 xformOp:translate:pivot = (0, 2.4797628, 0) uniform token[] xformOpOrder = ["xformOp:translate:pivot", "!invert!xformOp:translate:pivot"] def MorphTarget "a" ( customData = { int rampInput = -1 } ) { custom uniform token transform = "" custom uniform token transformType = "transform" ( allowedTokens = ["joint", "transform"] ) custom uniform vector3f[] offsets = [(0, 2.108045, 0), (0, 2.108045, 0)] custom uniform uint[] pointIndices = [3, 5] custom uniform int Priority = 0 custom uniform token targetType = "primary" ( allowedTokens = ["primary", "inbetween", "combination"] ) } def MorphTarget "b" ( customData = { int rampInput = -1 } ) { custom uniform token transform = "joint1/joint2" custom uniform token transformType = "joint" ( allowedTokens = ["joint", "transform"] ) custom uniform vector3f[] offsets = [(0, 2.0353513, 0), (0, 2.0353513, 0)] custom uniform uint[] pointIndices = [2, 4] custom uniform int Priority = 0 custom uniform token targetType = "primary" ( allowedTokens = ["primary", "inbetween", " "] ) } } def Skeleton "joint1" ( prepend apiSchemas = ["SkelBindingAPI"] customData = { dictionary Maya = { bool generated = 1 } } ) { uniform matrix4d[] bindTransforms = [( (-0.1262437857194616, 0, -0.9919992472614174, 0), (0, 1, 0, 0), (0.9919992472614174, 0, -0.1262437857194616, 0), (0, 0, 0, 1) ), ( (-0.04036000725007299, 0, -0.9991852029602791, 0), (0, 1, 0, 0), (0.9991852029602791, 0, -0.04036000725007299, 0), (0, 4, 0, 1) )] uniform token[] joints = ["joint1", "joint1/joint2"] uniform matrix4d[] restTransforms = [( (-0.1262437857194616, 0, -0.9919992472614174, 0), (0, 1, 0, 0), (0.9919992472614174, 0, -0.1262437857194616, 0), (0, 0, 0, 1) ), ( (0.9962861693182575, 0, 0.08610382584503647, 0), (-0, 1, 0, 0), (-0.08610382584503647, -0, 0.9962861693182575, 0), (0, 4, 0, 1) )] rel skel:animationSource = </Root/group1/joint1/Animation> def SkelAnimation "Animation" { uniform token[] joints = ["joint1", "joint1/joint2"] quatf[] rotations = [(0.6609675, 0, 0.7504145, 0), (0.9990711, 0, -0.04309194, 0)] quatf[] rotations.timeSamples = { 1: [(0.6609675, 0, 0.7504145, 0), (0.99907094, 0.00064662506, -0.043091934, 0.000027890235)], 2: [(0.6609675, 0, 0.7504145, 0), (0.99906784, 0.0025574358, -0.0430918, 0.00011030733)], 3: [(0.6609675, 0, 0.7504145, 0), (0.9990549, 0.005688817, -0.04309124, 0.0002453701)], 4: [(0.6609675, 0, 0.7504145, 0), (0.9990211, 0.009997092, -0.043089785, 0.00043119464)], 5: [(0.6609675, 0, 0.7504145, 0), (0.99895185, 0.015438468, -0.0430868, 0.0006658921)], 6: [(0.6609675, 0, 0.7504145, 0), (0.99882954, 0.02196895, -0.043081522, 0.0009475649)], 7: [(0.6609675, 0, 0.7504145, 0), (0.9986342, 0.029544279, -0.0430731, 0.0012743041)], 8: [(0.6609675, 0, 0.7504145, 0), (0.99834365, 0.03811983, -0.043060567, 0.0016441847)], 9: [(0.6609675, 0, 0.7504145, 0), (0.9979341, 0.047650535, -0.0430429, 0.0020552631)], 10: [(0.6609675, 0, 0.7504145, 0), (0.99738085, 0.058090817, -0.043019034, 0.0025055734)], 11: [(0.6609675, 0, 0.7504145, 0), (0.9966582, 0.06939452, -0.04298787, 0.002993125)], 12: [(0.6609675, 0, 0.7504145, 0), (0.9957402, 0.08151483, -0.042948272, 0.003515898)], 13: [(0.6609675, 0, 0.7504145, 0), (0.9946009, 0.09440425, -0.04289913, 0.0040718447)], 14: [(0.6609675, 0, 0.7504145, 0), (0.99321496, 0.108014606, -0.042839352, 0.004658886)], 15: [(0.6609675, 0, 0.7504145, 0), (0.99155766, 0.12229697, -0.042767867, 0.0052749137)], 16: [(0.6609675, 0, 0.7504145, 0), (0.98960537, 0.13720173, -0.042683665, 0.0059177857)], 17: [(0.6609675, 0, 0.7504145, 0), (0.987336, 0.1526786, -0.04258578, 0.0065853335)], 18: [(0.6609675, 0, 0.7504145, 0), (0.98472905, 0.16867661, -0.04247334, 0.0072753606)], 19: [(0.6609675, 0, 0.7504145, 0), (0.9817661, 0.18514432, -0.04234554, 0.007985646)], 20: [(0.6609675, 0, 0.7504145, 0), (0.9784309, 0.20202973, -0.042201687, 0.008713948)], 21: [(0.6609675, 0, 0.7504145, 0), (0.97470975, 0.21928051, -0.042041186, 0.009458008)], 22: [(0.6609675, 0, 0.7504145, 0), (0.9705916, 0.23684403, -0.041863564, 0.010215559)], 23: [(0.6609675, 0, 0.7504145, 0), (0.9660681, 0.25466755, -0.041668452, 0.010984322)], 24: [(0.6609675, 0, 0.7504145, 0), (0.9611341, 0.2726984, -0.041455638, 0.011762029)], 25: [(0.6609675, 0, 0.7504145, 0), (0.9557874, 0.290884, -0.041225027, 0.01254641)], 26: [(0.6609675, 0, 0.7504145, 0), (0.9500293, 0.30917215, -0.04097667, 0.013335215)], 27: [(0.6609675, 0, 0.7504145, 0), (0.94386417, 0.3275112, -0.040710755, 0.014126214)], 28: [(0.6609675, 0, 0.7504145, 0), (0.9372997, 0.34585008, -0.040427618, 0.014917208)], 29: [(0.6609675, 0, 0.7504145, 0), (0.93034726, 0.36413872, -0.040127743, 0.015706033)], 30: [(0.6609675, 0, 0.7504145, 0), (0.9230214, 0.38232797, -0.03981176, 0.016490571)], 31: [(0.6609675, 0, 0.7504145, 0), (0.9153398, 0.4003699, -0.039480444, 0.017268758)], 32: [(0.6609675, 0, 0.7504145, 0), (0.90732396, 0.41821808, -0.0391347, 0.018038584)], 33: [(0.6609675, 0, 0.7504145, 0), (0.89899814, 0.43582737, -0.038775597, 0.01879811)], 34: [(0.6609675, 0, 0.7504145, 0), (0.89038986, 0.45315444, -0.0384043, 0.01954546)], 35: [(0.6609675, 0, 0.7504145, 0), (0.8815298, 0.4701577, -0.03802215, 0.020278845)], 36: [(0.6609675, 0, 0.7504145, 0), (0.8724513, 0.4867975, -0.037630573, 0.020996554)], 37: [(0.6609675, 0, 0.7504145, 0), (0.8631904, 0.50303614, -0.037231136, 0.021696957)], 38: [(0.6609675, 0, 0.7504145, 0), (0.8537859, 0.51883787, -0.036825497, 0.022378517)], 39: [(0.6609675, 0, 0.7504145, 0), (0.84427863, 0.53416914, -0.03641543, 0.023039788)], 40: [(0.6609675, 0, 0.7504145, 0), (0.8347118, 0.5489986, -0.036002796, 0.02367941)], 41: [(0.6609675, 0, 0.7504145, 0), (0.8251303, 0.5632967, -0.035589524, 0.024296114)], 42: [(0.6609675, 0, 0.7504145, 0), (0.81558096, 0.5770362, -0.03517764, 0.024888728)], 43: [(0.6609675, 0, 0.7504145, 0), (0.80611205, 0.5901919, -0.03476923, 0.02545616)], 44: [(0.6609675, 0, 0.7504145, 0), (0.79677296, 0.6027404, -0.034366414, 0.025997402)], 45: [(0.6609675, 0, 0.7504145, 0), (0.78761417, 0.6146601, -0.033971377, 0.026511524)], 46: [(0.6609675, 0, 0.7504145, 0), (0.7786869, 0.62593114, -0.033586327, 0.026997667)], 47: [(0.6609675, 0, 0.7504145, 0), (0.7700429, 0.63653517, -0.033213496, 0.027455037)], 48: [(0.6609675, 0, 0.7504145, 0), (0.7617343, 0.64645493, -0.032855127, 0.027882896)], 49: [(0.6609675, 0, 0.7504145, 0), (0.75381315, 0.65567446, -0.032513473, 0.028280554)], 50: [(0.6609675, 0, 0.7504145, 0), (0.74633116, 0.6641784, -0.03219076, 0.028647345)], 51: [(0.6609675, 0, 0.7504145, 0), (0.73934, 0.67195195, -0.031889215, 0.028982636)], 52: [(0.6609675, 0, 0.7504145, 0), (0.7328903, 0.67898077, -0.03161103, 0.029285802)], 53: [(0.6609675, 0, 0.7504145, 0), (0.72703195, 0.68525004, -0.031358346, 0.02955621)], 54: [(0.6609675, 0, 0.7504145, 0), (0.72181356, 0.69074476, -0.031133266, 0.029793207)], 55: [(0.6609675, 0, 0.7504145, 0), (0.71728224, 0.69544894, -0.030937823, 0.029996108)], 56: [(0.6609675, 0, 0.7504145, 0), (0.7134836, 0.6993456, -0.030773979, 0.030164177)], 57: [(0.6609675, 0, 0.7504145, 0), (0.7104611, 0.7024159, -0.030643612, 0.030296607)], 58: [(0.6609675, 0, 0.7504145, 0), (0.70825607, 0.7046393, -0.030548504, 0.030392507)], 59: [(0.6609675, 0, 0.7504145, 0), (0.70690703, 0.7059926, -0.030490318, 0.030450875)], 60: [(0.6609675, 0, 0.7504145, 0), (0.70645, 0.70645, -0.030470604, 0.030470604)], } half3[] scales = [(1, 1, 1), (1, 1, 1)] float3[] translations = [(0, 0, 0), (0, 4, 0)] } } } def Scope "Looks" { def Material "initialShadingGroup" { } } }
omniverse-code/kit/exts/omni.graph/omni/graph/core/data/anim_deformer/PostSkinMorph/simplepostskinmorph2_computegraph_GPU.usda
#usda 1.0 ( defaultPrim = "Root" endTimeCode = 120 metersPerUnit = 0.009999999776482582 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Y" ) def "Root" ( references = @./simplepostskinmorph2.usda@</Root> ) { over "group1" { over "base" { rel deformedPrim = </Root/group1/pCylinder1_deformed> uniform token skel:skinningMethod = "ClassicLinear" token visibility = "invisible" } def Mesh "base_deformed" ( references = </Root/group1/base> ) { point3f[] points.connect = </Root/group1/Morph.output:points> token visibility = "inherited" } def ComputeNode "SkeletonTransforms" { rel input:skelAnim = </Root/group1/joint1/Animation> rel input:skeleton = </Root/group1/joint1> custom token node:type = "SkeletonTransforms" matrix4d[] output:jointLocalBindTransforms matrix4d[] output:jointLocalTransforms int[] output:jointParentIndices matrix4d[] output:jointSkelBindTransforms matrix4d[] output:jointSkelTransforms matrix4d output:skelLocalToWorld } def ComputeNode "Skinning" { rel input:mesh = </Root/group1/base> point3f[] input:restPoints.connect = </Root/group1/base.points> token[] input:skinningJoints.connect = </Root/group1/base.skel:joints> int[] input:jointIndices.connect = </Root/group1/base.primvars:skel:jointIndices> float[] input:jointWeights.connect = </Root/group1/base.primvars:skel:jointWeights> float[] input:blendWeights token input:skinningMethod.connect = </Root/group1/base.skel:skinningMethod> matrix4d input:geomBindTransform.connect = </Root/group1/base.primvars:skel:geomBindTransform> matrix4d input:meshWorldToLocal token[] input:skelFullJoints.connect = </Root/group1/joint1.joints> matrix4d[] input:skelTransforms.connect = </Root/group1/SkeletonTransforms.output:jointSkelTransforms> matrix4d[] input:skelBindTransforms.connect = </Root/group1/joint1.bindTransforms> matrix4d input:skelLocalToWorld.connect = </Root/group1/SkeletonTransforms.output:skelLocalToWorld> int[] output:skinningJointsMap int output:skinningMethod matrix4d[] output:skinningTransforms float[] output:skinningDualQuats point3f[] output:points custom token node:type = "SkinningGPU" } def ComputeNode "Morph" { token[] input:joints.connect = </Root/group1/joint1.joints> matrix4d[] input:jointSkelTransforms.connect = </Root/group1/SkeletonTransforms.output:jointSkelTransforms> point3f[] input:points.connect = </Root/group1/Skinning.output:points> rel input:restMesh = </Root/group1/base> custom token node:type = "MorphGPU" point3f[] output:points point3f[] output:offsets int[] output:jointIndicesMap } } }
omniverse-code/kit/exts/omni.graph/omni/graph/core/data/anim_deformer/PostSkinMorph/simplepostskinmorph2_computegraph.usda
#usda 1.0 ( defaultPrim = "Root" endTimeCode = 120 metersPerUnit = 0.009999999776482582 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Y" ) def "Root" ( references = @./simplepostskinmorph2.usda@</Root> ) { over "group1" { over "base" { rel deformedPrim = </Root/group1/pCylinder1_deformed> uniform token skel:skinningMethod = "ClassicLinear" token visibility = "invisible" } def Mesh "base_deformed" ( references = </Root/group1/base> ) { point3f[] points.connect = </Root/group1/Morph.output:points> token visibility = "inherited" } def ComputeNode "SkeletonTransforms" { rel input:skelAnim = </Root/group1/joint1/Animation> rel input:skeleton = </Root/group1/joint1> custom token node:type = "SkeletonTransforms" matrix4d[] output:jointLocalBindTransforms matrix4d[] output:jointLocalTransforms int[] output:jointParentIndices matrix4d[] output:jointSkelBindTransforms matrix4d[] output:jointSkelTransforms matrix4d output:skelLocalToWorld } def ComputeNode "Skinning" { rel input:mesh = </Root/group1/base> point3f[] input:restPoints.connect = </Root/group1/base.points> token[] input:skinningJoints.connect = </Root/group1/base.skel:joints> int[] input:jointIndices.connect = </Root/group1/base.primvars:skel:jointIndices> float[] input:jointWeights.connect = </Root/group1/base.primvars:skel:jointWeights> float[] input:blendWeights token input:skinningMethod.connect = </Root/group1/base.skel:skinningMethod> matrix4d input:geomBindTransform.connect = </Root/group1/base.primvars:skel:geomBindTransform> matrix4d input:meshWorldToLocal token[] input:skelFullJoints.connect = </Root/group1/joint1.joints> matrix4d[] input:skelTransforms.connect = </Root/group1/SkeletonTransforms.output:jointSkelTransforms> matrix4d[] input:skelBindTransforms.connect = </Root/group1/joint1.bindTransforms> matrix4d input:skelLocalToWorld.connect = </Root/group1/SkeletonTransforms.output:skelLocalToWorld> int[] output:skinningJointsMap int output:skinningMethod matrix4d[] output:skinningTransforms float[] output:skinningDualQuats point3f[] output:points custom token node:type = "Skinning" } def ComputeNode "Morph" { token[] input:joints.connect = </Root/group1/joint1.joints> matrix4d[] input:jointSkelTransforms.connect = </Root/group1/SkeletonTransforms.output:jointSkelTransforms> point3f[] input:points.connect = </Root/group1/Skinning.output:points> rel input:restMesh = </Root/group1/base> custom token node:type = "Morph" point3f[] output:points point3f[] output:offsets int[] output:jointIndicesMap } } }
omniverse-code/kit/exts/omni.graph/omni/graph/core/data/anim_deformer/JointManipulator/skelcylinder_jointManipulator_computegraph.usda
#usda 1.0 ( defaultPrim = "Root" endTimeCode = 120 startTimeCode = 1 timeCodesPerSecond = 24 upAxis = "Z" ) def "Root" ( references = @./skelcylinder.usda@</Root> ) { over "group1" { over "pCylinder1" { token visibility = "invisible" uniform token skel:skinningMethod = "DualQuaternion" rel deformedPrim = </Root/group1/pCylinder1> } def Mesh "pCylinder1_deformed" ( references = </Root/group1/pCylinder1> ) { point3f[] points.connect = </Root/group1/Skinning.output:points> token visibility = "inherited" } def ComputeNode "SkeletonTransforms" { rel input:skeleton = </Root/group1/joint1> rel input:skelAnim = </Root/group1/joint1/Animation> int[] output:jointParentIndices matrix4d[] output:jointLocalBindTransforms matrix4d[] output:jointLocalTransforms matrix4d[] output:jointSkelBindTransforms matrix4d[] output:jointSkelTransforms matrix4d output:skelLocalToWorld custom token node:type = "SkeletonTransforms" } def ComputeNode "Skinning" { rel input:mesh = </Root/group1/pCylinder1> point3f[] input:restPoints.connect = </Root/group1/pCylinder1.points> token[] input:skinningJoints.connect = </Root/group1/pCylinder1.skel:joints> int[] input:jointIndices.connect = </Root/group1/pCylinder1.primvars:skel:jointIndices> float[] input:jointWeights.connect = </Root/group1/pCylinder1.primvars:skel:jointWeights> float[] input:blendWeights token input:skinningMethod.connect = </Root/group1/pCylinder1.skel:skinningMethod> matrix4d input:geomBindTransform.connect = </Root/group1/pCylinder1.primvars:skel:geomBindTransform> matrix4d input:meshWorldToLocal token[] input:skelFullJoints.connect = </Root/group1/joint1.joints> matrix4d[] input:skelTransforms.connect = </Root/group1/JointsManipulator.output:jointSkelTransforms> matrix4d[] input:skelBindTransforms.connect = </Root/group1/joint1.bindTransforms> matrix4d input:skelLocalToWorld.connect = </Root/group1/SkeletonTransforms.output:skelLocalToWorld> int[] output:skinningJointsMap int output:skinningMethod matrix4d[] output:skinningTransforms float[] output:skinningDualQuats point3f[] output:points custom token node:type = "Skinning" } def ComputeNode "JointsManipulator" { uniform bool active = 0 rel input:skeleton = </Root/group1/joint1> rel input:mesh = <Root/group1/base> token[] input:joints.connect = </Root/group1/joint1.joints> int[] input:jointParentIndices.connect = </Root/group1/SkeletonTransforms.output:jointParentIndices> matrix4d[] input:jointLocalTransforms matrix4d[] input:jointSkelTransforms.connect = </Root/group1/SkeletonTransforms.output:jointSkelTransforms> matrix4d input:skelLocalToWorld.connect = </Root/group1/SkeletonTransforms.output:skelLocalToWorld> matrix4d[] output:jointSkelTransforms matrix4d[] output:jointLocalTransforms custom token node:type = "JointsManipulator" } def ComputeNode "JointsVisualizer" { uniform bool active = 0 token[] input:joints.connect = </Root/group1/joint1.joints> int[] input:jointParentIndices.connect = </Root/group1/SkeletonTransforms.output:jointParentIndices> matrix4d[] input:jointSkelTransforms.connect = </Root/group1/JointsManipulator.output:jointSkelTransforms> matrix4d input:skelLocalToWorld.connect = </Root/group1/SkeletonTransforms.output:skelLocalToWorld> custom token node:type = "JointsVisualizer" } } }
omniverse-code/kit/exts/omni.graph/omni/graph/core/data/anim_deformer/JointManipulator/skelcylinder.usda
#usda 1.0 ( defaultPrim = "Root" endTimeCode = 120 startTimeCode = 1 timeCodesPerSecond = 24 upAxis = "Z" ) def "Root" ( kind = "component" ) { def SkelRoot "group1" { matrix4d xformOp:transform = ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (0, 0, 0, 1) ) uniform token[] xformOpOrder = ["xformOp:transform"] def Mesh "pCylinder1" ( prepend apiSchemas = ["SkelBindingAPI", "ShadowAPI"] ) { uniform bool doubleSided = 1 float3[] extent = [(-2.0000005, -2.0000002, 0), (2, 2.000001, 10)] int[] faceVertexCounts = [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 1, 21, 20, 1, 2, 22, 21, 2, 3, 23, 22, 3, 4, 24, 23, 4, 5, 25, 24, 5, 6, 26, 25, 6, 7, 27, 26, 7, 8, 28, 27, 8, 9, 29, 28, 9, 10, 30, 29, 10, 11, 31, 30, 11, 12, 32, 31, 12, 13, 33, 32, 13, 14, 34, 33, 14, 15, 35, 34, 15, 16, 36, 35, 16, 17, 37, 36, 17, 18, 38, 37, 18, 19, 39, 38, 19, 0, 20, 39, 20, 21, 41, 40, 21, 22, 42, 41, 22, 23, 43, 42, 23, 24, 44, 43, 24, 25, 45, 44, 25, 26, 46, 45, 26, 27, 47, 46, 27, 28, 48, 47, 28, 29, 49, 48, 29, 30, 50, 49, 30, 31, 51, 50, 31, 32, 52, 51, 32, 33, 53, 52, 33, 34, 54, 53, 34, 35, 55, 54, 35, 36, 56, 55, 36, 37, 57, 56, 37, 38, 58, 57, 38, 39, 59, 58, 39, 20, 40, 59, 40, 41, 61, 60, 41, 42, 62, 61, 42, 43, 63, 62, 43, 44, 64, 63, 44, 45, 65, 64, 45, 46, 66, 65, 46, 47, 67, 66, 47, 48, 68, 67, 48, 49, 69, 68, 49, 50, 70, 69, 50, 51, 71, 70, 51, 52, 72, 71, 52, 53, 73, 72, 53, 54, 74, 73, 54, 55, 75, 74, 55, 56, 76, 75, 56, 57, 77, 76, 57, 58, 78, 77, 58, 59, 79, 78, 59, 40, 60, 79, 60, 61, 81, 80, 61, 62, 82, 81, 62, 63, 83, 82, 63, 64, 84, 83, 64, 65, 85, 84, 65, 66, 86, 85, 66, 67, 87, 86, 67, 68, 88, 87, 68, 69, 89, 88, 69, 70, 90, 89, 70, 71, 91, 90, 71, 72, 92, 91, 72, 73, 93, 92, 73, 74, 94, 93, 74, 75, 95, 94, 75, 76, 96, 95, 76, 77, 97, 96, 77, 78, 98, 97, 78, 79, 99, 98, 79, 60, 80, 99, 80, 81, 101, 100, 81, 82, 102, 101, 82, 83, 103, 102, 83, 84, 104, 103, 84, 85, 105, 104, 85, 86, 106, 105, 86, 87, 107, 106, 87, 88, 108, 107, 88, 89, 109, 108, 89, 90, 110, 109, 90, 91, 111, 110, 91, 92, 112, 111, 92, 93, 113, 112, 93, 94, 114, 113, 94, 95, 115, 114, 95, 96, 116, 115, 96, 97, 117, 116, 97, 98, 118, 117, 98, 99, 119, 118, 99, 80, 100, 119, 100, 101, 121, 120, 101, 102, 122, 121, 102, 103, 123, 122, 103, 104, 124, 123, 104, 105, 125, 124, 105, 106, 126, 125, 106, 107, 127, 126, 107, 108, 128, 127, 108, 109, 129, 128, 109, 110, 130, 129, 110, 111, 131, 130, 111, 112, 132, 131, 112, 113, 133, 132, 113, 114, 134, 133, 114, 115, 135, 134, 115, 116, 136, 135, 116, 117, 137, 136, 117, 118, 138, 137, 118, 119, 139, 138, 119, 100, 120, 139, 120, 121, 141, 140, 121, 122, 142, 141, 122, 123, 143, 142, 123, 124, 144, 143, 124, 125, 145, 144, 125, 126, 146, 145, 126, 127, 147, 146, 127, 128, 148, 147, 128, 129, 149, 148, 129, 130, 150, 149, 130, 131, 151, 150, 131, 132, 152, 151, 132, 133, 153, 152, 133, 134, 154, 153, 134, 135, 155, 154, 135, 136, 156, 155, 136, 137, 157, 156, 137, 138, 158, 157, 138, 139, 159, 158, 139, 120, 140, 159, 140, 141, 161, 160, 141, 142, 162, 161, 142, 143, 163, 162, 143, 144, 164, 163, 144, 145, 165, 164, 145, 146, 166, 165, 146, 147, 167, 166, 147, 148, 168, 167, 148, 149, 169, 168, 149, 150, 170, 169, 150, 151, 171, 170, 151, 152, 172, 171, 152, 153, 173, 172, 153, 154, 174, 173, 154, 155, 175, 174, 155, 156, 176, 175, 156, 157, 177, 176, 157, 158, 178, 177, 158, 159, 179, 178, 159, 140, 160, 179, 160, 161, 181, 180, 161, 162, 182, 181, 162, 163, 183, 182, 163, 164, 184, 183, 164, 165, 185, 184, 165, 166, 186, 185, 166, 167, 187, 186, 167, 168, 188, 187, 168, 169, 189, 188, 169, 170, 190, 189, 170, 171, 191, 190, 171, 172, 192, 191, 172, 173, 193, 192, 173, 174, 194, 193, 174, 175, 195, 194, 175, 176, 196, 195, 176, 177, 197, 196, 177, 178, 198, 197, 178, 179, 199, 198, 179, 160, 180, 199, 180, 181, 201, 200, 181, 182, 202, 201, 182, 183, 203, 202, 183, 184, 204, 203, 184, 185, 205, 204, 185, 186, 206, 205, 186, 187, 207, 206, 187, 188, 208, 207, 188, 189, 209, 208, 189, 190, 210, 209, 190, 191, 211, 210, 191, 192, 212, 211, 192, 193, 213, 212, 193, 194, 214, 213, 194, 195, 215, 214, 195, 196, 216, 215, 196, 197, 217, 216, 197, 198, 218, 217, 198, 199, 219, 218, 199, 180, 200, 219, 200, 201, 221, 220, 201, 202, 222, 221, 202, 203, 223, 222, 203, 204, 224, 223, 204, 205, 225, 224, 205, 206, 226, 225, 206, 207, 227, 226, 207, 208, 228, 227, 208, 209, 229, 228, 209, 210, 230, 229, 210, 211, 231, 230, 211, 212, 232, 231, 212, 213, 233, 232, 213, 214, 234, 233, 214, 215, 235, 234, 215, 216, 236, 235, 216, 217, 237, 236, 217, 218, 238, 237, 218, 219, 239, 238, 219, 200, 220, 239, 220, 221, 241, 240, 221, 222, 242, 241, 222, 223, 243, 242, 223, 224, 244, 243, 224, 225, 245, 244, 225, 226, 246, 245, 226, 227, 247, 246, 227, 228, 248, 247, 228, 229, 249, 248, 229, 230, 250, 249, 230, 231, 251, 250, 231, 232, 252, 251, 232, 233, 253, 252, 233, 234, 254, 253, 234, 235, 255, 254, 235, 236, 256, 255, 236, 237, 257, 256, 237, 238, 258, 257, 238, 239, 259, 258, 239, 220, 240, 259, 1, 0, 260, 2, 1, 260, 3, 2, 260, 4, 3, 260, 5, 4, 260, 6, 5, 260, 7, 6, 260, 8, 7, 260, 9, 8, 260, 10, 9, 260, 11, 10, 260, 12, 11, 260, 13, 12, 260, 14, 13, 260, 15, 14, 260, 16, 15, 260, 17, 16, 260, 18, 17, 260, 19, 18, 260, 0, 19, 260, 240, 241, 261, 241, 242, 261, 242, 243, 261, 243, 244, 261, 244, 245, 261, 245, 246, 261, 246, 247, 261, 247, 248, 261, 248, 249, 261, 249, 250, 261, 250, 251, 261, 251, 252, 261, 252, 253, 261, 253, 254, 261, 254, 255, 261, 255, 256, 261, 256, 257, 261, 257, 258, 261, 258, 259, 261, 259, 240, 261] rel material:binding = </Root/Looks/initialShadingGroup> normal3f[] normals = [(0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (0.30901688, 0.95105666, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-9.209561e-8, 1, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.9510565, 0), (-0.30901712, 0.9510565, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.9510565, 0), (-0.5877854, 0.8090168, 0), (-0.5877854, 0.8090168, 0), (-0.30901712, 0.9510565, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.8090172, 0.5877851, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877854, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877854, 0), (-0.5877852, -0.809017, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.809017, 0), (-0.30901694, -0.9510566, 0), (-0.30901694, -0.9510566, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (9.209565e-8, -1, 0), (9.209565e-8, -1, 0), (-0.30901694, -0.9510566, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.809017, -0.5877853, 0), (0.80901706, -0.5877853, 0), (0.5877853, -0.809017, 0), (0.809017, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (0.30901688, 0.95105666, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-9.209561e-8, 1, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.9510565, 0), (-0.30901712, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.9510565, 0), (-0.5877854, 0.8090168, 0), (-0.5877854, 0.8090169, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.8090172, 0.5877851, 0), (-0.5877854, 0.8090169, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (-0.30901694, -0.9510566, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (9.209565e-8, -1, 0), (9.2095654e-8, -1, 0), (-0.30901694, -0.9510566, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (9.2095654e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.80901706, -0.5877853, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (0.30901688, 0.95105666, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-9.209561e-8, 1, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901715, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.8090169, 0), (-0.5877854, 0.8090168, 0), (-0.30901715, 0.95105654, 0), (-0.5877854, 0.8090169, 0), (-0.8090172, 0.5877851, 0), (-0.8090172, 0.5877851, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (-0.30901694, -0.9510566, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (9.2095654e-8, -1, 0), (9.209565e-8, -1, 0), (-0.30901694, -0.9510566, 0), (9.2095654e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.80901706, -0.5877853, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.5877851, 0.809017, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (0.3090168, 0.95105654, 0), (0.5877851, 0.809017, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-9.209559e-8, 1, 0), (0.3090168, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901715, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901715, 0.95105654, 0), (-0.5877854, 0.8090168, 0), (-0.5877855, 0.8090168, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.8090172, 0.58778507, 0), (-0.5877855, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.58778507, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (-0.3090169, -0.95105654, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (9.209565e-8, -1, 0), (9.209565e-8, -1, 0), (-0.3090169, -0.95105654, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.80901706, -0.58778524, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.5877851, 0.809017, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.5877853, 0), (0.5877851, 0.809017, 0), (0.3090168, 0.95105654, 0), (0.3090168, 0.95105654, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.95105654, 0), (-9.209559e-8, 1, 0), (-9.209561e-8, 1, 0), (0.3090168, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877855, 0.8090168, 0), (-0.5877854, 0.8090168, 0), (-0.30901712, 0.95105654, 0), (-0.5877855, 0.8090168, 0), (-0.8090172, 0.58778507, 0), (-0.8090172, 0.5877851, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.58778507, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.3090169, -0.95105654, 0), (-0.30901694, -0.95105654, 0), (-0.5877852, -0.80901706, 0), (-0.3090169, -0.95105654, 0), (9.209565e-8, -1, 0), (9.209565e-8, -1, 0), (-0.30901694, -0.95105654, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.58778524, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.80901706, -0.5877853, 0), (0.58778524, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.95105654, 0), (0.3090168, 0.95105654, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.95105654, 0), (-9.209561e-8, 1, 0), (-9.209561e-8, 1, 0), (0.3090168, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.8090168, 0), (-0.5877854, 0.80901694, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.80901706, 0.5877851, 0), (-0.5877854, 0.80901694, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.80901706, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.95105654, 0), (-0.3090169, -0.95105654, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.95105654, 0), (9.209565e-8, -1, 0), (8.8258304e-8, -1, 0), (-0.3090169, -0.95105654, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.309017, -0.9510565, 0), (8.8258304e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.58778524, -0.809017, 0), (0.5877851, -0.809017, 0), (0.309017, -0.9510565, 0), (0.58778524, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.80901694, -0.5877853, 0), (0.5877851, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901694, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.5877851, 0.809017, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.95105654, 0), (0.3090168, 0.95105654, 0), (0.5877851, 0.809017, 0), (0.3090168, 0.95105654, 0), (-9.209561e-8, 1, 0), (-9.209559e-8, 1, 0), (0.3090168, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.80901694, 0), (-0.5877855, 0.8090169, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.80901694, 0), (-0.80901706, 0.5877851, 0), (-0.8090172, 0.5877851, 0), (-0.5877855, 0.8090169, 0), (-0.80901706, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.3090169, -0.95105654, 0), (-0.30901694, -0.95105654, 0), (-0.5877852, -0.80901706, 0), (-0.3090169, -0.95105654, 0), (8.8258304e-8, -1, 0), (8.825832e-8, -1, 0), (-0.30901694, -0.95105654, 0), (8.8258304e-8, -1, 0), (0.309017, -0.9510565, 0), (0.30901703, -0.95105654, 0), (8.825832e-8, -1, 0), (0.309017, -0.9510565, 0), (0.5877851, -0.809017, 0), (0.5877853, -0.80901706, 0), (0.30901703, -0.95105654, 0), (0.5877851, -0.809017, 0), (0.80901694, -0.5877853, 0), (0.80901706, -0.5877853, 0), (0.5877853, -0.80901706, 0), (0.80901694, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.58778524, 0), (0.9510569, 0.309016, 0), (0.80901694, 0.5877853, 0), (0.5877851, 0.809017, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.58778524, 0), (0.5877851, 0.809017, 0), (0.3090168, 0.95105654, 0), (0.3090168, 0.9510566, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.95105654, 0), (-9.209559e-8, 1, 0), (-9.209559e-8, 1, 0), (0.3090168, 0.9510566, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877855, 0.8090169, 0), (-0.5877856, 0.8090168, 0), (-0.30901712, 0.95105654, 0), (-0.5877855, 0.8090169, 0), (-0.8090172, 0.5877851, 0), (-0.8090172, 0.587785, 0), (-0.5877856, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.587785, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.30901694, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.8090169, -0.5877854, 0), (-0.9510565, -0.30901694, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.8090169, -0.5877854, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.95105654, 0), (-0.30901694, -0.9510565, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.95105654, 0), (8.825832e-8, -1, 0), (9.209566e-8, -1, 0), (-0.30901694, -0.9510565, 0), (8.825832e-8, -1, 0), (0.30901703, -0.95105654, 0), (0.30901703, -0.9510565, 0), (9.209566e-8, -1, 0), (0.30901703, -0.95105654, 0), (0.5877853, -0.80901706, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.80901706, 0), (0.80901706, -0.5877853, 0), (0.80901706, -0.58778524, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.309016, 0), (1, -9.593294e-7, 0), (0.9510569, 0.309016, 0), (0.80901694, 0.58778524, 0), (0.8090169, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.58778524, 0), (0.58778507, 0.80901706, 0), (0.5877851, 0.80901706, 0), (0.8090169, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.9510566, 0), (0.30901685, 0.9510566, 0), (0.5877851, 0.80901706, 0), (0.3090168, 0.9510566, 0), (-9.209559e-8, 1, 0), (-9.209559e-8, 1, 0), (0.30901685, 0.9510566, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877856, 0.8090168, 0), (-0.5877856, 0.8090168, 0), (-0.30901712, 0.95105654, 0), (-0.5877856, 0.8090168, 0), (-0.8090172, 0.587785, 0), (-0.8090172, 0.587785, 0), (-0.5877856, 0.8090168, 0), (-0.8090172, 0.587785, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.587785, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.30901694, 0), (-0.95105654, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.30901694, 0), (-0.8090169, -0.5877854, 0), (-0.8090169, -0.5877854, 0), (-0.95105654, -0.309017, 0), (-0.8090169, -0.5877854, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.8090169, -0.5877854, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510565, 0), (-0.3090169, -0.95105654, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510565, 0), (9.209566e-8, -1, 0), (8.8258325e-8, -1, 0), (-0.3090169, -0.95105654, 0), (9.209566e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (8.8258325e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.80901706, -0.58778524, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.309016, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.8090169, 0.5877853, 0), (0.8090169, 0.58778536, 0), (0.9510569, 0.3090161, 0), (0.8090169, 0.5877853, 0), (0.5877851, 0.80901706, 0), (0.58778524, 0.80901706, 0), (0.8090169, 0.58778536, 0), (0.5877851, 0.80901706, 0), (0.30901685, 0.9510566, 0), (0.3090169, 0.9510566, 0), (0.58778524, 0.80901706, 0), (0.30901685, 0.9510566, 0), (-9.209559e-8, 1, 0), (-9.209559e-8, 1, 0), (0.3090169, 0.9510566, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877856, 0.8090168, 0), (-0.5877856, 0.8090168, 0), (-0.30901712, 0.95105654, 0), (-0.5877856, 0.8090168, 0), (-0.8090172, 0.587785, 0), (-0.8090172, 0.587785, 0), (-0.5877856, 0.8090168, 0), (-0.8090172, 0.587785, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.587785, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.95105654, -0.309017, 0), (-0.95105654, -0.3090171, 0), (-1, -0, 0), (-0.95105654, -0.309017, 0), (-0.8090169, -0.5877854, 0), (-0.8090169, -0.58778554, 0), (-0.95105654, -0.3090171, 0), (-0.8090169, -0.5877854, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.809017, 0), (-0.8090169, -0.58778554, 0), (-0.5877852, -0.80901706, 0), (-0.3090169, -0.95105654, 0), (-0.3090169, -0.9510566, 0), (-0.5877852, -0.809017, 0), (-0.3090169, -0.95105654, 0), (8.8258325e-8, -1, 0), (8.4420996e-8, -1, 0), (-0.3090169, -0.9510566, 0), (8.8258325e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (8.4420996e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.809017, -0.58778524, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.809017, -0.58778524, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.3090161, 0), (1, -9.593294e-7, 0), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, 5.1435853e-7, 1), (0, 7.347982e-7, 1), (0, -0, 1), (0, 5.1435853e-7, 1), (0, -5.143587e-7, 1), (0, -7.347983e-7, 1), (0, 7.347982e-7, 1), (0, -5.143587e-7, 1), (0, -0.0000020574357, 1), (0, -0.0000022778752, 1), (0, -7.347983e-7, 1), (0, -0.0000020574357, 1), (0, -0, 1), (0, -0, 1), (0, -0.0000022778752, 1), (0, -0, 1), (0, 0.000001028718, 1), (0, 8.082783e-7, 1), (0, -0, 1), (0, 0.000001028718, 1), (0, -0, 1), (0, -0, 1), (0, 8.082783e-7, 1), (0, -0, 1), (0, 5.1435893e-7, 1), (0, 4.0413923e-7, 1), (0, -0, 1), (0, 5.1435893e-7, 1), (0, 7.715385e-7, 0.99999994), (0, 6.062089e-7, 1), (0, 4.0413923e-7, 1), (0, 7.715385e-7, 0.99999994), (0, 1.9288467e-7, 1), (0, 1.1021976e-7, 1), (0, 6.062089e-7, 1), (0, 1.9288467e-7, 1), (0, -6.429489e-8, 1), (0, -9.1849834e-8, 1), (0, 1.1021976e-7, 1), (0, -6.429489e-8, 1), (0, -0, 1), (0, -0, 1), (0, -9.1849834e-8, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, 0.0000010287182, 1), (0, 8.082787e-7, 1), (0, -0, 1), (0, 0.0000010287182, 1), (0, 0.0000010287172, 1), (0, 8.0827857e-7, 1), (0, 8.082787e-7, 1), (0, 0.0000010287172, 1), (0, -0, 1), (0, -0, 1), (0, 8.0827857e-7, 1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, 7.347982e-7, 1), (0, -1.7359638e-7, 1), (0, 7.347982e-7, 1), (0, -7.347983e-7, 1), (0, -1.7359638e-7, 1), (0, -7.347983e-7, 1), (0, -0.0000022778752, 1), (0, -1.7359638e-7, 1), (0, -0.0000022778752, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, 8.082783e-7, 1), (0, -1.7359638e-7, 1), (0, 8.082783e-7, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, 4.0413923e-7, 1), (0, -1.7359638e-7, 1), (0, 4.0413923e-7, 1), (0, 6.062089e-7, 1), (0, -1.7359638e-7, 1), (0, 6.062089e-7, 1), (0, 1.1021976e-7, 1), (0, -1.7359638e-7, 1), (0, 1.1021976e-7, 1), (0, -9.1849834e-8, 1), (0, -1.7359638e-7, 1), (0, -9.1849834e-8, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, 8.082787e-7, 1), (0, -1.7359638e-7, 1), (0, 8.082787e-7, 1), (0, 8.0827857e-7, 1), (0, -1.7359638e-7, 1), (0, 8.0827857e-7, 1), (0, -0, 1), (0, -1.7359638e-7, 1)] ( interpolation = "faceVarying" ) point3f[] points = [(0.95105714, 0.30901718, 0), (0.80901754, 0.5877856, 0), (0.5877856, 0.8090175, 0), (0.30901715, 0.951057, 0), (0, 1.0000005, 0), (-0.30901715, 0.95105696, 0), (-0.5877855, 0.8090173, 0), (-0.80901724, 0.5877854, 0), (-0.9510568, 0.30901706, 0), (-1.0000002, -0, 0), (-0.9510568, -0.30901706, 0), (-0.8090172, -0.58778536, 0), (-0.58778536, -0.8090171, 0), (-0.30901706, -0.95105666, 0), (-2.9802322e-8, -1.0000001, 0), (0.30901697, -0.9510566, 0), (0.58778524, -0.80901706, 0), (0.809017, -0.5877853, 0), (0.95105654, -0.309017, 0), (1, -0, 0), (1.9021143, 0.61803436, 0), (1.6180351, 1.1755712, 0), (1.1755712, 1.618035, 0), (0.6180343, 1.902114, 0), (0, 2.000001, 0), (-0.6180343, 1.9021139, 0), (-1.175571, 1.6180346, 0), (-1.6180345, 1.1755708, 0), (-1.9021136, 0.6180341, 0), (-2.0000005, -0, 0), (-1.9021136, -0.6180341, 0), (-1.6180344, -1.1755707, 0), (-1.1755707, -1.6180342, 0), (-0.6180341, -1.9021133, 0), (-5.9604645e-8, -2.0000002, 0), (0.61803395, -1.9021132, 0), (1.1755705, -1.6180341, 0), (1.618034, -1.1755706, 0), (1.9021131, -0.618034, 0), (2, -0, 0), (1.9021143, 0.61803436, 1), (1.6180351, 1.1755712, 1), (1.1755712, 1.618035, 1), (0.6180343, 1.902114, 1), (0, 2.000001, 1), (-0.6180343, 1.9021139, 1), (-1.175571, 1.6180346, 1), (-1.6180345, 1.1755708, 1), (-1.9021136, 0.6180341, 1), (-2.0000005, -0, 1), (-1.9021136, -0.6180341, 1), (-1.6180344, -1.1755707, 1), (-1.1755707, -1.6180342, 1), (-0.6180341, -1.9021133, 1), (-5.9604645e-8, -2.0000002, 1), (0.61803395, -1.9021132, 1), (1.1755705, -1.6180341, 1), (1.618034, -1.1755706, 1), (1.9021131, -0.618034, 1), (2, -0, 1), (1.9021143, 0.61803436, 2), (1.6180351, 1.1755712, 2), (1.1755712, 1.618035, 2), (0.6180343, 1.902114, 2), (0, 2.000001, 2), (-0.6180343, 1.9021139, 2), (-1.175571, 1.6180346, 2), (-1.6180345, 1.1755708, 2), (-1.9021136, 0.6180341, 2), (-2.0000005, -0, 2), (-1.9021136, -0.6180341, 2), (-1.6180344, -1.1755707, 2), (-1.1755707, -1.6180342, 2), (-0.6180341, -1.9021133, 2), (-5.9604645e-8, -2.0000002, 2), (0.61803395, -1.9021132, 2), (1.1755705, -1.6180341, 2), (1.618034, -1.1755706, 2), (1.9021131, -0.618034, 2), (2, -0, 2), (1.9021143, 0.61803436, 3), (1.6180351, 1.1755712, 3), (1.1755712, 1.618035, 3), (0.6180343, 1.902114, 3), (0, 2.000001, 3), (-0.6180343, 1.9021139, 3), (-1.175571, 1.6180346, 3), (-1.6180345, 1.1755708, 3), (-1.9021136, 0.6180341, 3), (-2.0000005, -0, 3), (-1.9021136, -0.6180341, 3), (-1.6180344, -1.1755707, 3), (-1.1755707, -1.6180342, 3), (-0.6180341, -1.9021133, 3), (-5.9604645e-8, -2.0000002, 3), (0.61803395, -1.9021132, 3), (1.1755705, -1.6180341, 3), (1.618034, -1.1755706, 3), (1.9021131, -0.618034, 3), (2, -0, 3), (1.9021143, 0.61803436, 4), (1.6180351, 1.1755712, 4), (1.1755712, 1.618035, 4), (0.6180343, 1.902114, 4), (0, 2.000001, 4), (-0.6180343, 1.9021139, 4), (-1.175571, 1.6180346, 4), (-1.6180345, 1.1755708, 4), (-1.9021136, 0.6180341, 4), (-2.0000005, -0, 4), (-1.9021136, -0.6180341, 4), (-1.6180344, -1.1755707, 4), (-1.1755707, -1.6180342, 4), (-0.6180341, -1.9021133, 4), (-5.9604645e-8, -2.0000002, 4), (0.61803395, -1.9021132, 4), (1.1755705, -1.6180341, 4), (1.618034, -1.1755706, 4), (1.9021131, -0.618034, 4), (2, -0, 4), (1.9021143, 0.61803436, 5), (1.6180351, 1.1755712, 5), (1.1755712, 1.618035, 5), (0.6180343, 1.902114, 5), (0, 2.000001, 5), (-0.6180343, 1.9021139, 5), (-1.175571, 1.6180346, 5), (-1.6180345, 1.1755708, 5), (-1.9021136, 0.6180341, 5), (-2.0000005, -0, 5), (-1.9021136, -0.6180341, 5), (-1.6180344, -1.1755707, 5), (-1.1755707, -1.6180342, 5), (-0.6180341, -1.9021133, 5), (-5.9604645e-8, -2.0000002, 5), (0.61803395, -1.9021132, 5), (1.1755705, -1.6180341, 5), (1.618034, -1.1755706, 5), (1.9021131, -0.618034, 5), (2, -0, 5), (1.9021143, 0.61803436, 6), (1.6180351, 1.1755712, 6), (1.1755712, 1.618035, 6), (0.6180343, 1.902114, 6), (0, 2.000001, 6), (-0.6180343, 1.9021139, 6), (-1.175571, 1.6180346, 6), (-1.6180345, 1.1755708, 6), (-1.9021136, 0.6180341, 6), (-2.0000005, -0, 6), (-1.9021136, -0.6180341, 6), (-1.6180344, -1.1755707, 6), (-1.1755707, -1.6180342, 6), (-0.6180341, -1.9021133, 6), (-5.9604645e-8, -2.0000002, 6), (0.61803395, -1.9021132, 6), (1.1755705, -1.6180341, 6), (1.618034, -1.1755706, 6), (1.9021131, -0.618034, 6), (2, -0, 6), (1.9021143, 0.61803436, 7), (1.6180351, 1.1755712, 7), (1.1755712, 1.618035, 7), (0.6180343, 1.902114, 7), (0, 2.000001, 7), (-0.6180343, 1.9021139, 7), (-1.175571, 1.6180346, 7), (-1.6180345, 1.1755708, 7), (-1.9021136, 0.6180341, 7), (-2.0000005, -0, 7), (-1.9021136, -0.6180341, 7), (-1.6180344, -1.1755707, 7), (-1.1755707, -1.6180342, 7), (-0.6180341, -1.9021133, 7), (-5.9604645e-8, -2.0000002, 7), (0.61803395, -1.9021132, 7), (1.1755705, -1.6180341, 7), (1.618034, -1.1755706, 7), (1.9021131, -0.618034, 7), (2, -0, 7), (1.9021143, 0.61803436, 8), (1.6180351, 1.1755712, 8), (1.1755712, 1.618035, 8), (0.6180343, 1.902114, 8), (0, 2.000001, 8), (-0.6180343, 1.9021139, 8), (-1.175571, 1.6180346, 8), (-1.6180345, 1.1755708, 8), (-1.9021136, 0.6180341, 8), (-2.0000005, -0, 8), (-1.9021136, -0.6180341, 8), (-1.6180344, -1.1755707, 8), (-1.1755707, -1.6180342, 8), (-0.6180341, -1.9021133, 8), (-5.9604645e-8, -2.0000002, 8), (0.61803395, -1.9021132, 8), (1.1755705, -1.6180341, 8), (1.618034, -1.1755706, 8), (1.9021131, -0.618034, 8), (2, -0, 8), (1.9021143, 0.61803436, 9), (1.6180351, 1.1755712, 9), (1.1755712, 1.618035, 9), (0.6180343, 1.902114, 9), (0, 2.000001, 9), (-0.6180343, 1.9021139, 9), (-1.175571, 1.6180346, 9), (-1.6180345, 1.1755708, 9), (-1.9021136, 0.6180341, 9), (-2.0000005, -0, 9), (-1.9021136, -0.6180341, 9), (-1.6180344, -1.1755707, 9), (-1.1755707, -1.6180342, 9), (-0.6180341, -1.9021133, 9), (-5.9604645e-8, -2.0000002, 9), (0.61803395, -1.9021132, 9), (1.1755705, -1.6180341, 9), (1.618034, -1.1755706, 9), (1.9021131, -0.618034, 9), (2, -0, 9), (1.9021143, 0.61803436, 10), (1.6180351, 1.1755712, 10), (1.1755712, 1.618035, 10), (0.6180343, 1.902114, 10), (0, 2.000001, 10), (-0.6180343, 1.9021139, 10), (-1.175571, 1.6180346, 10), (-1.6180345, 1.1755708, 10), (-1.9021136, 0.6180341, 10), (-2.0000005, -0, 10), (-1.9021136, -0.6180341, 10), (-1.6180344, -1.1755707, 10), (-1.1755707, -1.6180342, 10), (-0.6180341, -1.9021133, 10), (-5.9604645e-8, -2.0000002, 10), (0.61803395, -1.9021132, 10), (1.1755705, -1.6180341, 10), (1.618034, -1.1755706, 10), (1.9021131, -0.618034, 10), (2, -0, 10), (0.95105714, 0.30901718, 10), (0.80901754, 0.5877856, 10), (0.5877856, 0.8090175, 10), (0.30901715, 0.951057, 10), (0, 1.0000005, 10), (-0.30901715, 0.95105696, 10), (-0.5877855, 0.8090173, 10), (-0.80901724, 0.5877854, 10), (-0.9510568, 0.30901706, 10), (-1.0000002, -0, 10), (-0.9510568, -0.30901706, 10), (-0.8090172, -0.58778536, 10), (-0.58778536, -0.8090171, 10), (-0.30901706, -0.95105666, 10), (-2.9802322e-8, -1.0000001, 10), (0.30901697, -0.9510566, 10), (0.58778524, -0.80901706, 10), (0.809017, -0.5877853, 10), (0.95105654, -0.309017, 10), (1, -0, 10), (0, -0, 0), (0, -0, 10)] color3f[] primvars:displayColor = [(0.4, 0.4, 0.4)] ( customData = { dictionary Maya = { bool generated = 1 } } ) matrix4d primvars:skel:geomBindTransform = ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (0, 0, 0, 1) ) int[] primvars:skel:jointIndices = [0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 0, 1, 2, 0, 0, 4, 3, 0, 0, 0] ( elementSize = 5 interpolation = "vertex" ) float[] primvars:skel:jointWeights = [0.9914398, 0.007798158, 0.00056962454, 0.00011597502, 0.00007644505, 0.9911016, 0.008106242, 0.00059212884, 0.00012055687, 0.000079465186, 0.99056286, 0.008597037, 0.0006279794, 0.00012785601, 0.00008427643, 0.98986334, 0.009234303, 0.0006745291, 0.0001373335, 0.00009052352, 0.9890613, 0.009965006, 0.00072790415, 0.00014820059, 0.000097686585, 0.98823136, 0.010720953, 0.0007831231, 0.00015944311, 0.0001050971, 0.9874593, 0.011424304, 0.0008345, 0.00016990342, 0.00011199202, 0.9868309, 0.011996779, 0.00087631703, 0.00017841732, 0.000117603966, 0.98642015, 0.012370941, 0.0009036481, 0.00018398189, 0.000121271856, 0.98627734, 0.012501058, 0.0009131526, 0.000185917, 0.00012254738, 0.98642015, 0.012370941, 0.0009036481, 0.00018398189, 0.000121271856, 0.986831, 0.011996778, 0.00087631686, 0.00017841728, 0.000117603944, 0.9874593, 0.011424296, 0.00083449937, 0.00016990327, 0.000111991925, 0.9882313, 0.01072094, 0.000783122, 0.0001594429, 0.00010509696, 0.98906124, 0.009964993, 0.0007279031, 0.00014820037, 0.00009768643, 0.98986334, 0.009234288, 0.00067452795, 0.00013733325, 0.000090523354, 0.99056286, 0.008597019, 0.000627978, 0.00012785573, 0.00008427624, 0.9911016, 0.008106223, 0.0005921274, 0.000120556564, 0.00007946499, 0.9914398, 0.00779814, 0.0005696231, 0.00011597471, 0.000076444856, 0.991555, 0.00769326, 0.000561962, 0.000114414936, 0.00007541673, 0.9122156, 0.07669155, 0.00810055, 0.0017938935, 0.0011983063, 0.9107189, 0.077999204, 0.00823867, 0.0018244808, 0.0012187384, 0.90837055, 0.0800508, 0.008455371, 0.0018724698, 0.0012507946, 0.90539, 0.0826547, 0.008730407, 0.0019333775, 0.0012914804, 0.9020614, 0.085562706, 0.0090375645, 0.0020013985, 0.001336918, 0.8987084, 0.08849201, 0.009346972, 0.002069918, 0.0013826884, 0.89566416, 0.09115167, 0.009627898, 0.00213213, 0.0014242454, 0.8932356, 0.09327323, 0.0098519875, 0.0021817551, 0.0014573947, 0.89167106, 0.09464019, 0.009996371, 0.0022137295, 0.0014787534, 0.891131, 0.09511205, 0.010046211, 0.0022247666, 0.0014861261, 0.89167106, 0.09464019, 0.009996371, 0.0022137295, 0.0014787534, 0.8932356, 0.093273215, 0.009851985, 0.0021817544, 0.0014573943, 0.8956642, 0.091151625, 0.009627892, 0.0021321285, 0.0014242444, 0.8987086, 0.088491954, 0.009346964, 0.0020699159, 0.001382687, 0.9020615, 0.08556263, 0.009037553, 0.002001396, 0.0013369162, 0.90539014, 0.0826546, 0.008730393, 0.0019333743, 0.0012914783, 0.9083707, 0.08005069, 0.008455355, 0.0018724661, 0.0012507922, 0.91071904, 0.07799908, 0.008238653, 0.0018244769, 0.0012187357, 0.91221595, 0.07669144, 0.008100534, 0.0017938899, 0.0011983039, 0.9127295, 0.07624267, 0.008053132, 0.0017833925, 0.0011912917, 0.79757524, 0.18422364, 0.01401941, 0.002549811, 0.0016318791, 0.79559076, 0.18602969, 0.01415685, 0.0025748082, 0.0016478773, 0.7925068, 0.18883635, 0.014370436, 0.0026136546, 0.0016727389, 0.78863347, 0.19236143, 0.014638692, 0.0026624443, 0.0017039644, 0.7843574, 0.19625312, 0.014934849, 0.0027163082, 0.0017384373, 0.7801007, 0.20012699, 0.015229651, 0.002769926, 0.0017727527, 0.77627844, 0.20360558, 0.015494369, 0.0028180722, 0.0018035662, 0.77325755, 0.20635484, 0.015703585, 0.002856124, 0.0018279193, 0.7713241, 0.20811455, 0.015837498, 0.0028804794, 0.0018435069, 0.77065885, 0.20871985, 0.015883561, 0.0028888572, 0.0018488687, 0.7713241, 0.20811455, 0.015837498, 0.0028804794, 0.0018435069, 0.7732577, 0.20635484, 0.015703583, 0.0028561235, 0.001827919, 0.7762785, 0.20360552, 0.015494359, 0.0028180701, 0.001803565, 0.7801008, 0.2001269, 0.015229637, 0.0027699233, 0.0017727509, 0.7843574, 0.19625297, 0.014934831, 0.0027163047, 0.001738435, 0.78863364, 0.19236128, 0.014638673, 0.0026624403, 0.0017039618, 0.79250705, 0.18883617, 0.014370412, 0.0026136497, 0.0016727359, 0.795591, 0.18602951, 0.014156824, 0.0025748028, 0.0016478739, 0.7975755, 0.18422346, 0.014019383, 0.0025498057, 0.0016318756, 0.7982601, 0.18360043, 0.01397197, 0.0025411823, 0.0016263566, 0.6015815, 0.37000003, 0.023125038, 0.0032929934, 0.0020004367, 0.60011387, 0.371363, 0.023210224, 0.0033051237, 0.0020078055, 0.59784955, 0.37346572, 0.02334164, 0.0033238372, 0.0020191737, 0.5950339, 0.37608063, 0.02350507, 0.0033471093, 0.002033311, 0.5919611, 0.37893423, 0.023683418, 0.003372506, 0.002048739, 0.58893895, 0.38174084, 0.02385883, 0.0033974845, 0.0020639133, 0.5862557, 0.38423267, 0.024014562, 0.0034196607, 0.0020773849, 0.58415526, 0.3861833, 0.024136472, 0.0034370206, 0.0020879305, 0.5828201, 0.38742322, 0.024213966, 0.0034480554, 0.002094634, 0.58236253, 0.3878482, 0.024240525, 0.0034518375, 0.0020969317, 0.5828201, 0.38742322, 0.024213966, 0.0034480554, 0.002094634, 0.5841553, 0.3861833, 0.024136467, 0.0034370197, 0.00208793, 0.5862558, 0.38423264, 0.02401455, 0.0034196584, 0.0020773832, 0.588939, 0.3817408, 0.02385881, 0.003397481, 0.002063911, 0.5919612, 0.37893417, 0.023683393, 0.003372502, 0.0020487367, 0.595034, 0.37608057, 0.02350504, 0.0033471042, 0.002033308, 0.5978497, 0.37346566, 0.023341607, 0.0033238316, 0.0020191702, 0.600114, 0.3713629, 0.023210185, 0.0033051171, 0.0020078013, 0.60158163, 0.36999995, 0.023124997, 0.0032929864, 0.0020004322, 0.6020899, 0.36952794, 0.023095496, 0.0032887855, 0.0019978804, 0.47403845, 0.4736809, 0.044845615, 0.0047368202, 0.0026980822, 0.4739865, 0.47372782, 0.04485005, 0.004737289, 0.0026983493, 0.47392228, 0.47378576, 0.044855528, 0.0047378675, 0.0026986788, 0.47387025, 0.47383252, 0.04485995, 0.004738334, 0.0026989444, 0.47385046, 0.47385046, 0.04486164, 0.0047385124, 0.0026990462, 0.47385046, 0.47385046, 0.044861637, 0.0047385124, 0.002699046, 0.47385046, 0.47385046, 0.04486163, 0.004738511, 0.0026990452, 0.47385043, 0.47385043, 0.044861615, 0.004738509, 0.002699044, 0.47385043, 0.47385043, 0.04486161, 0.0047385087, 0.0026990438, 0.47385043, 0.47385043, 0.044861607, 0.0047385083, 0.0026990436, 0.47385043, 0.47385043, 0.04486161, 0.0047385087, 0.0026990438, 0.47385043, 0.47385043, 0.044861604, 0.004738508, 0.0026990434, 0.47385043, 0.47385043, 0.0448616, 0.0047385073, 0.002699043, 0.47385043, 0.47385043, 0.0448616, 0.004738507, 0.002699043, 0.47385043, 0.47385043, 0.044861592, 0.0047385064, 0.0026990424, 0.47387028, 0.47383255, 0.044859894, 0.0047383267, 0.0026989402, 0.47392228, 0.47378573, 0.04485546, 0.004737858, 0.0026986732, 0.47398654, 0.47372785, 0.04484998, 0.0047372794, 0.0026983435, 0.4740386, 0.4736811, 0.044845548, 0.004736811, 0.002698077, 0.47405848, 0.4736632, 0.044843853, 0.0047366316, 0.0026979747, 0.5210978, 0.33350274, 0.13027461, 0.009913892, 0.0052109896, 0.5210978, 0.33350274, 0.13027461, 0.009913892, 0.0052109896, 0.5210978, 0.33350274, 0.1302746, 0.009913891, 0.005210989, 0.5210978, 0.33350274, 0.1302746, 0.009913888, 0.0052109878, 0.52109784, 0.33350274, 0.13027458, 0.009913887, 0.0052109873, 0.52109784, 0.33350274, 0.13027458, 0.009913887, 0.005210987, 0.5210979, 0.33350274, 0.13027458, 0.009913885, 0.005210986, 0.5210979, 0.3335027, 0.13027455, 0.009913881, 0.0052109845, 0.5210979, 0.3335027, 0.13027453, 0.009913881, 0.005210984, 0.5210979, 0.3335027, 0.13027453, 0.00991388, 0.0052109836, 0.5210979, 0.3335027, 0.13027453, 0.009913881, 0.005210984, 0.5210979, 0.3335027, 0.13027453, 0.009913879, 0.005210983, 0.5210979, 0.3335027, 0.13027452, 0.009913878, 0.005210982, 0.5210979, 0.3335027, 0.13027452, 0.009913878, 0.005210982, 0.5210979, 0.3335027, 0.13027452, 0.009913877, 0.0052109817, 0.52109796, 0.3335027, 0.1302745, 0.009913876, 0.005210981, 0.52109796, 0.3335027, 0.1302745, 0.009913875, 0.0052109803, 0.52109796, 0.3335027, 0.1302745, 0.009913874, 0.0052109803, 0.52109796, 0.3335027, 0.13027449, 0.009913874, 0.00521098, 0.52109796, 0.3335027, 0.13027449, 0.009913873, 0.00521098, 0.51307684, 0.32836935, 0.12826937, 0.020523116, 0.009761293, 0.51307684, 0.32836935, 0.12826937, 0.020523116, 0.009761293, 0.51307684, 0.32836935, 0.12826937, 0.020523114, 0.0097612925, 0.5130769, 0.32836935, 0.12826936, 0.02052311, 0.009761291, 0.5130769, 0.32836935, 0.12826934, 0.020523109, 0.009761289, 0.5130769, 0.32836935, 0.12826934, 0.020523107, 0.009761289, 0.51307696, 0.32836935, 0.12826933, 0.020523103, 0.009761286, 0.513077, 0.32836938, 0.12826933, 0.0205231, 0.009761285, 0.513077, 0.32836935, 0.12826933, 0.0205231, 0.009761284, 0.513077, 0.32836935, 0.12826931, 0.020523097, 0.009761283, 0.513077, 0.32836935, 0.12826933, 0.0205231, 0.009761284, 0.513077, 0.32836935, 0.12826931, 0.020523096, 0.009761283, 0.513077, 0.32836932, 0.1282693, 0.020523092, 0.00976128, 0.513077, 0.32836932, 0.1282693, 0.02052309, 0.00976128, 0.513077, 0.32836932, 0.12826928, 0.020523088, 0.009761279, 0.513077, 0.32836932, 0.12826928, 0.020523086, 0.009761278, 0.513077, 0.32836932, 0.12826927, 0.020523084, 0.009761278, 0.513077, 0.32836932, 0.12826927, 0.020523084, 0.009761277, 0.5130771, 0.32836932, 0.12826927, 0.020523084, 0.009761277, 0.5130771, 0.32836932, 0.12826927, 0.020523082, 0.009761276, 0.44856134, 0.44856134, 0.042467423, 0.042467423, 0.01794249, 0.44856134, 0.44856134, 0.042467423, 0.042467423, 0.01794249, 0.44856134, 0.44856134, 0.042467415, 0.042467415, 0.017942488, 0.44856134, 0.44856134, 0.042467408, 0.042467408, 0.017942484, 0.44856137, 0.44856137, 0.042467404, 0.042467404, 0.01794248, 0.44856137, 0.44856137, 0.042467404, 0.042467404, 0.01794248, 0.44856137, 0.44856137, 0.042467393, 0.042467393, 0.017942477, 0.44856137, 0.44856137, 0.042467386, 0.042467386, 0.017942473, 0.44856137, 0.44856137, 0.04246738, 0.04246738, 0.017942471, 0.4485614, 0.4485614, 0.042467378, 0.042467378, 0.01794247, 0.44856137, 0.44856137, 0.04246738, 0.04246738, 0.017942471, 0.4485614, 0.4485614, 0.042467374, 0.042467374, 0.017942468, 0.4485614, 0.4485614, 0.04246737, 0.04246737, 0.017942466, 0.4485614, 0.4485614, 0.04246737, 0.04246737, 0.017942466, 0.4485614, 0.4485614, 0.042467367, 0.042467367, 0.017942462, 0.4485614, 0.4485614, 0.04246736, 0.04246736, 0.01794246, 0.4485614, 0.4485614, 0.04246736, 0.04246736, 0.01794246, 0.4485614, 0.4485614, 0.042467356, 0.042467356, 0.017942458, 0.44856143, 0.44856143, 0.042467356, 0.042467356, 0.017942458, 0.4485615, 0.4485615, 0.042467356, 0.042467356, 0.017942458, 0.49390632, 0.3161002, 0.123476736, 0.046760444, 0.019756293, 0.49390632, 0.3161002, 0.123476736, 0.046760444, 0.019756293, 0.49390632, 0.3161002, 0.12347673, 0.04676044, 0.019756291, 0.49390635, 0.3161002, 0.12347672, 0.046760432, 0.019756287, 0.49390638, 0.3161002, 0.123476714, 0.04676043, 0.019756285, 0.49390638, 0.3161002, 0.12347671, 0.04676043, 0.019756285, 0.4939064, 0.3161002, 0.1234767, 0.04676042, 0.01975628, 0.49390644, 0.31610018, 0.123476684, 0.04676041, 0.019756276, 0.49390644, 0.31610018, 0.12347668, 0.04676041, 0.019756274, 0.49390647, 0.31610018, 0.12347667, 0.046760406, 0.019756272, 0.49390644, 0.31610018, 0.12347668, 0.04676041, 0.019756274, 0.49390647, 0.31610018, 0.12347667, 0.046760403, 0.019756272, 0.49390647, 0.31610018, 0.12347666, 0.0467604, 0.01975627, 0.4939065, 0.31610018, 0.12347666, 0.0467604, 0.019756269, 0.49390656, 0.3161002, 0.12347667, 0.0467604, 0.019756269, 0.4939066, 0.3161002, 0.12347666, 0.04676039, 0.019756267, 0.4939066, 0.3161002, 0.123476654, 0.04676039, 0.019756265, 0.4939066, 0.3161002, 0.123476654, 0.046760388, 0.019756265, 0.49390653, 0.31610018, 0.12347664, 0.046760384, 0.019756263, 0.49390653, 0.31610018, 0.12347663, 0.046760384, 0.019756261, 0.4631718, 0.2964301, 0.1157931, 0.1157931, 0.00881185, 0.4631718, 0.2964301, 0.1157931, 0.1157931, 0.00881185, 0.46317184, 0.2964301, 0.1157931, 0.1157931, 0.008811848, 0.46317187, 0.2964301, 0.11579309, 0.11579309, 0.008811847, 0.46317187, 0.2964301, 0.11579308, 0.11579308, 0.008811845, 0.46317193, 0.29643014, 0.115793094, 0.115793094, 0.008811846, 0.4631719, 0.2964301, 0.115793064, 0.115793064, 0.008811844, 0.46317193, 0.2964301, 0.11579306, 0.11579306, 0.008811842, 0.46317196, 0.2964301, 0.11579305, 0.11579305, 0.008811841, 0.46317196, 0.2964301, 0.11579304, 0.11579304, 0.00881184, 0.46317196, 0.2964301, 0.11579305, 0.11579305, 0.008811841, 0.46317196, 0.2964301, 0.11579304, 0.11579304, 0.00881184, 0.463172, 0.2964301, 0.115793034, 0.115793034, 0.008811838, 0.463172, 0.2964301, 0.115793034, 0.115793034, 0.008811838, 0.463172, 0.2964301, 0.11579303, 0.11579303, 0.008811837, 0.46317202, 0.2964301, 0.11579302, 0.11579302, 0.008811836, 0.46317202, 0.2964301, 0.11579302, 0.11579302, 0.008811835, 0.46317202, 0.2964301, 0.11579301, 0.11579301, 0.008811835, 0.46317202, 0.2964301, 0.11579301, 0.11579301, 0.008811835, 0.46317205, 0.2964301, 0.11579301, 0.11579301, 0.008811834, 0.36434186, 0.36434186, 0.2331789, 0.034493964, 0.003643427, 0.36434186, 0.36434186, 0.2331789, 0.034493964, 0.003643427, 0.36434186, 0.36434186, 0.2331789, 0.03449396, 0.0036434263, 0.36434186, 0.36434186, 0.23317888, 0.034493953, 0.0036434254, 0.36434186, 0.36434186, 0.23317888, 0.03449395, 0.003643425, 0.36434188, 0.36434188, 0.23317888, 0.03449395, 0.003643425, 0.3643419, 0.3643419, 0.2331789, 0.034493946, 0.0036434243, 0.36434188, 0.36434188, 0.23317887, 0.034493934, 0.0036434229, 0.36434188, 0.36434188, 0.23317885, 0.034493934, 0.0036434224, 0.36434188, 0.36434188, 0.23317885, 0.03449393, 0.0036434222, 0.36434188, 0.36434188, 0.23317885, 0.034493934, 0.0036434224, 0.36434188, 0.36434188, 0.23317885, 0.034493927, 0.003643422, 0.3643419, 0.3643419, 0.23317885, 0.034493923, 0.0036434212, 0.3643419, 0.3643419, 0.23317885, 0.034493923, 0.003643421, 0.3643419, 0.3643419, 0.23317884, 0.03449392, 0.0036434208, 0.3643419, 0.3643419, 0.23317884, 0.034493916, 0.00364342, 0.3643419, 0.3643419, 0.23317884, 0.034493916, 0.0036434198, 0.3643419, 0.3643419, 0.23317884, 0.034493912, 0.0036434196, 0.3643419, 0.3643419, 0.23317884, 0.034493912, 0.0036434196, 0.3643419, 0.3643419, 0.23317882, 0.03449391, 0.0036434191, 0.3723429, 0.3723429, 0.23829958, 0.014893747, 0.0021208618, 0.3723429, 0.3723429, 0.23829958, 0.014893747, 0.0021208618, 0.37234294, 0.37234294, 0.23829961, 0.014893747, 0.0021208616, 0.3723429, 0.3723429, 0.23829956, 0.014893741, 0.0021208609, 0.3723429, 0.3723429, 0.23829956, 0.0148937395, 0.0021208606, 0.3723429, 0.3723429, 0.23829956, 0.0148937395, 0.0021208604, 0.3723429, 0.3723429, 0.23829955, 0.014893736, 0.00212086, 0.37234294, 0.37234294, 0.23829953, 0.014893732, 0.0021208592, 0.37234294, 0.37234294, 0.23829953, 0.01489373, 0.002120859, 0.37234294, 0.37234294, 0.23829953, 0.014893729, 0.0021208588, 0.37234294, 0.37234294, 0.23829953, 0.01489373, 0.002120859, 0.37234294, 0.37234294, 0.23829952, 0.014893728, 0.0021208585, 0.37234294, 0.37234294, 0.23829952, 0.0148937255, 0.0021208583, 0.37234294, 0.37234294, 0.23829952, 0.0148937255, 0.0021208583, 0.37234294, 0.37234294, 0.23829952, 0.014893724, 0.0021208578, 0.37234294, 0.37234294, 0.2382995, 0.014893722, 0.0021208576, 0.37234297, 0.37234297, 0.2382995, 0.014893721, 0.0021208574, 0.37234297, 0.37234297, 0.2382995, 0.01489372, 0.0021208574, 0.37234297, 0.37234297, 0.2382995, 0.01489372, 0.0021208571, 0.37234297, 0.37234297, 0.2382995, 0.014893719, 0.0021208571, 0.44368318, 0.44368318, 0.110920936, 0.0015352396, 0.00017747372, 0.44368318, 0.44368318, 0.110920936, 0.0015352396, 0.00017747372, 0.44368318, 0.44368318, 0.11092093, 0.0015352394, 0.00017747369, 0.44368318, 0.44368318, 0.11092091, 0.0015352389, 0.00017747364, 0.44368318, 0.44368318, 0.110920906, 0.0015352387, 0.00017747362, 0.4436832, 0.4436832, 0.1109209, 0.0015352387, 0.0001774736, 0.4436832, 0.4436832, 0.11092088, 0.0015352382, 0.00017747354, 0.4436832, 0.4436832, 0.11092087, 0.0015352378, 0.0001774735, 0.4436832, 0.4436832, 0.11092086, 0.0015352377, 0.00017747347, 0.4436832, 0.4436832, 0.110920854, 0.0015352374, 0.00017747346, 0.4436832, 0.4436832, 0.11092086, 0.0015352377, 0.00017747347, 0.4436832, 0.4436832, 0.110920854, 0.0015352373, 0.00017747344, 0.44368324, 0.44368324, 0.11092085, 0.0015352371, 0.00017747341, 0.44368324, 0.44368324, 0.11092084, 0.001535237, 0.0001774734, 0.44368324, 0.44368324, 0.11092083, 0.0015352367, 0.00017747337, 0.44368324, 0.44368324, 0.110920824, 0.0015352365, 0.00017747334, 0.4436833, 0.4436833, 0.11092083, 0.0015352366, 0.00017747334, 0.4436833, 0.4436833, 0.11092083, 0.0015352366, 0.00017747334, 0.44368324, 0.44368324, 0.11092082, 0.0015352363, 0.00017747331, 0.44368324, 0.44368324, 0.11092081, 0.0015352361, 0.0001774733, 0.9999998, 1.7388004e-7, 1.08675025e-8, 0, 0, 0.5, 0.5, 0, 0, 0] ( elementSize = 5 interpolation = "vertex" ) float2[] primvars:st = [(0.57430136, 0.13210803), (0.5632045, 0.11032924), (0.626409, 0.064408496), (0.64860266, 0.10796607), (0.5459207, 0.0930455), (0.5918415, 0.02984102), (0.52414197, 0.08194867), (0.54828393, 0.0076473355), (0.5, 0.07812497), (0.5, -7.4505806e-8), (0.47585803, 0.08194867), (0.45171607, 0.0076473504), (0.45407927, 0.09304553), (0.4081585, 0.02984105), (0.43679553, 0.11032927), (0.37359107, 0.064408526), (0.4256987, 0.13210803), (0.3513974, 0.1079661), (0.421875, 0.15625), (0.34374997, 0.15625), (0.4256987, 0.18039197), (0.3513974, 0.2045339), (0.43679553, 0.20217073), (0.37359107, 0.24809146), (0.45407927, 0.21945447), (0.40815854, 0.28265893), (0.47585803, 0.2305513), (0.4517161, 0.3048526), (0.5, 0.234375), (0.5, 0.3125), (0.52414197, 0.2305513), (0.5482839, 0.3048526), (0.5459207, 0.21945447), (0.59184146, 0.28265893), (0.56320447, 0.20217073), (0.62640893, 0.24809146), (0.5743013, 0.18039197), (0.6486026, 0.2045339), (0.578125, 0.15625), (0.65625, 0.15625), (0.375, 0.3125), (0.3875, 0.3125), (0.3875, 0.350094), (0.375, 0.350094), (0.39999998, 0.3125), (0.39999998, 0.350094), (0.41249996, 0.3125), (0.41249996, 0.350094), (0.42499995, 0.3125), (0.42499995, 0.350094), (0.43749994, 0.3125), (0.43749994, 0.350094), (0.44999993, 0.3125), (0.44999993, 0.350094), (0.46249992, 0.3125), (0.46249992, 0.350094), (0.4749999, 0.3125), (0.4749999, 0.350094), (0.4874999, 0.3125), (0.4874999, 0.350094), (0.49999988, 0.3125), (0.49999988, 0.350094), (0.51249987, 0.3125), (0.51249987, 0.350094), (0.52499986, 0.3125), (0.52499986, 0.350094), (0.53749985, 0.3125), (0.53749985, 0.350094), (0.54999983, 0.3125), (0.54999983, 0.350094), (0.5624998, 0.3125), (0.5624998, 0.350094), (0.5749998, 0.3125), (0.5749998, 0.350094), (0.5874998, 0.3125), (0.5874998, 0.350094), (0.5999998, 0.3125), (0.5999998, 0.350094), (0.6124998, 0.3125), (0.6124998, 0.350094), (0.62499976, 0.3125), (0.62499976, 0.350094), (0.3875, 0.38768798), (0.375, 0.38768798), (0.39999998, 0.38768798), (0.41249996, 0.38768798), (0.42499995, 0.38768798), (0.43749994, 0.38768798), (0.44999993, 0.38768798), (0.46249992, 0.38768798), (0.4749999, 0.38768798), (0.4874999, 0.38768798), (0.49999988, 0.38768798), (0.51249987, 0.38768798), (0.52499986, 0.38768798), (0.53749985, 0.38768798), (0.54999983, 0.38768798), (0.5624998, 0.38768798), (0.5749998, 0.38768798), (0.5874998, 0.38768798), (0.5999998, 0.38768798), (0.6124998, 0.38768798), (0.62499976, 0.38768798), (0.3875, 0.42528197), (0.375, 0.42528197), (0.39999998, 0.42528197), (0.41249996, 0.42528197), (0.42499995, 0.42528197), (0.43749994, 0.42528197), (0.44999993, 0.42528197), (0.46249992, 0.42528197), (0.4749999, 0.42528197), (0.4874999, 0.42528197), (0.49999988, 0.42528197), (0.51249987, 0.42528197), (0.52499986, 0.42528197), (0.53749985, 0.42528197), (0.54999983, 0.42528197), (0.5624998, 0.42528197), (0.5749998, 0.42528197), (0.5874998, 0.42528197), (0.5999998, 0.42528197), (0.6124998, 0.42528197), (0.62499976, 0.42528197), (0.3875, 0.46287596), (0.375, 0.46287596), (0.39999998, 0.46287596), (0.41249996, 0.46287596), (0.42499995, 0.46287596), (0.43749994, 0.46287596), (0.44999993, 0.46287596), (0.46249992, 0.46287596), (0.4749999, 0.46287596), (0.4874999, 0.46287596), (0.49999988, 0.46287596), (0.51249987, 0.46287596), (0.52499986, 0.46287596), (0.53749985, 0.46287596), (0.54999983, 0.46287596), (0.5624998, 0.46287596), (0.5749998, 0.46287596), (0.5874998, 0.46287596), (0.5999998, 0.46287596), (0.6124998, 0.46287596), (0.62499976, 0.46287596), (0.3875, 0.5004699), (0.375, 0.5004699), (0.39999998, 0.5004699), (0.41249996, 0.5004699), (0.42499995, 0.5004699), (0.43749994, 0.5004699), (0.44999993, 0.5004699), (0.46249992, 0.5004699), (0.4749999, 0.5004699), (0.4874999, 0.5004699), (0.49999988, 0.5004699), (0.51249987, 0.5004699), (0.52499986, 0.5004699), (0.53749985, 0.5004699), (0.54999983, 0.5004699), (0.5624998, 0.5004699), (0.5749998, 0.5004699), (0.5874998, 0.5004699), (0.5999998, 0.5004699), (0.6124998, 0.5004699), (0.62499976, 0.5004699), (0.3875, 0.5380639), (0.375, 0.5380639), (0.39999998, 0.5380639), (0.41249996, 0.5380639), (0.42499995, 0.5380639), (0.43749994, 0.5380639), (0.44999993, 0.5380639), (0.46249992, 0.5380639), (0.4749999, 0.5380639), (0.4874999, 0.5380639), (0.49999988, 0.5380639), (0.51249987, 0.5380639), (0.52499986, 0.5380639), (0.53749985, 0.5380639), (0.54999983, 0.5380639), (0.5624998, 0.5380639), (0.5749998, 0.5380639), (0.5874998, 0.5380639), (0.5999998, 0.5380639), (0.6124998, 0.5380639), (0.62499976, 0.5380639), (0.3875, 0.57565784), (0.375, 0.57565784), (0.39999998, 0.57565784), (0.41249996, 0.57565784), (0.42499995, 0.57565784), (0.43749994, 0.57565784), (0.44999993, 0.57565784), (0.46249992, 0.57565784), (0.4749999, 0.57565784), (0.4874999, 0.57565784), (0.49999988, 0.57565784), (0.51249987, 0.57565784), (0.52499986, 0.57565784), (0.53749985, 0.57565784), (0.54999983, 0.57565784), (0.5624998, 0.57565784), (0.5749998, 0.57565784), (0.5874998, 0.57565784), (0.5999998, 0.57565784), (0.6124998, 0.57565784), (0.62499976, 0.57565784), (0.3875, 0.6132518), (0.375, 0.6132518), (0.39999998, 0.6132518), (0.41249996, 0.6132518), (0.42499995, 0.6132518), (0.43749994, 0.6132518), (0.44999993, 0.6132518), (0.46249992, 0.6132518), (0.4749999, 0.6132518), (0.4874999, 0.6132518), (0.49999988, 0.6132518), (0.51249987, 0.6132518), (0.52499986, 0.6132518), (0.53749985, 0.6132518), (0.54999983, 0.6132518), (0.5624998, 0.6132518), (0.5749998, 0.6132518), (0.5874998, 0.6132518), (0.5999998, 0.6132518), (0.6124998, 0.6132518), (0.62499976, 0.6132518), (0.3875, 0.65084577), (0.375, 0.65084577), (0.39999998, 0.65084577), (0.41249996, 0.65084577), (0.42499995, 0.65084577), (0.43749994, 0.65084577), (0.44999993, 0.65084577), (0.46249992, 0.65084577), (0.4749999, 0.65084577), (0.4874999, 0.65084577), (0.49999988, 0.65084577), (0.51249987, 0.65084577), (0.52499986, 0.65084577), (0.53749985, 0.65084577), (0.54999983, 0.65084577), (0.5624998, 0.65084577), (0.5749998, 0.65084577), (0.5874998, 0.65084577), (0.5999998, 0.65084577), (0.6124998, 0.65084577), (0.62499976, 0.65084577), (0.3875, 0.6884397), (0.375, 0.6884397), (0.39999998, 0.6884397), (0.41249996, 0.6884397), (0.42499995, 0.6884397), (0.43749994, 0.6884397), (0.44999993, 0.6884397), (0.46249992, 0.6884397), (0.4749999, 0.6884397), (0.4874999, 0.6884397), (0.49999988, 0.6884397), (0.51249987, 0.6884397), (0.52499986, 0.6884397), (0.53749985, 0.6884397), (0.54999983, 0.6884397), (0.5624998, 0.6884397), (0.5749998, 0.6884397), (0.5874998, 0.6884397), (0.5999998, 0.6884397), (0.6124998, 0.6884397), (0.62499976, 0.6884397), (0.6486026, 0.89203393), (0.62640893, 0.93559146), (0.56320447, 0.8896707), (0.5743013, 0.86789197), (0.59184146, 0.97015893), (0.5459207, 0.90695447), (0.5482839, 0.9923526), (0.52414197, 0.9180513), (0.5, 1), (0.5, 0.921875), (0.4517161, 0.9923526), (0.47585803, 0.9180513), (0.40815854, 0.97015893), (0.45407927, 0.90695447), (0.37359107, 0.93559146), (0.43679553, 0.8896707), (0.3513974, 0.89203393), (0.4256987, 0.86789197), (0.34374997, 0.84375), (0.421875, 0.84375), (0.3513974, 0.79546607), (0.4256987, 0.81960803), (0.37359107, 0.75190854), (0.43679553, 0.7978293), (0.4081585, 0.71734107), (0.45407927, 0.78054553), (0.45171607, 0.69514734), (0.47585803, 0.76944864), (0.5, 0.68749994), (0.5, 0.765625), (0.54828393, 0.69514734), (0.52414197, 0.76944864), (0.5918415, 0.717341), (0.5459207, 0.7805455), (0.626409, 0.7519085), (0.5632045, 0.7978293), (0.64860266, 0.79546607), (0.57430136, 0.81960803), (0.65625, 0.84375), (0.578125, 0.84375), (0.5, 0.15), (0.5, 0.8375)] ( customData = { dictionary Maya = { int UVSetIndex = 0 } } interpolation = "faceVarying" ) int[] primvars:st:indices = [0, 1, 2, 3, 1, 4, 5, 2, 4, 6, 7, 5, 6, 8, 9, 7, 8, 10, 11, 9, 10, 12, 13, 11, 12, 14, 15, 13, 14, 16, 17, 15, 16, 18, 19, 17, 18, 20, 21, 19, 20, 22, 23, 21, 22, 24, 25, 23, 24, 26, 27, 25, 26, 28, 29, 27, 28, 30, 31, 29, 30, 32, 33, 31, 32, 34, 35, 33, 34, 36, 37, 35, 36, 38, 39, 37, 38, 0, 3, 39, 40, 41, 42, 43, 41, 44, 45, 42, 44, 46, 47, 45, 46, 48, 49, 47, 48, 50, 51, 49, 50, 52, 53, 51, 52, 54, 55, 53, 54, 56, 57, 55, 56, 58, 59, 57, 58, 60, 61, 59, 60, 62, 63, 61, 62, 64, 65, 63, 64, 66, 67, 65, 66, 68, 69, 67, 68, 70, 71, 69, 70, 72, 73, 71, 72, 74, 75, 73, 74, 76, 77, 75, 76, 78, 79, 77, 78, 80, 81, 79, 43, 42, 82, 83, 42, 45, 84, 82, 45, 47, 85, 84, 47, 49, 86, 85, 49, 51, 87, 86, 51, 53, 88, 87, 53, 55, 89, 88, 55, 57, 90, 89, 57, 59, 91, 90, 59, 61, 92, 91, 61, 63, 93, 92, 63, 65, 94, 93, 65, 67, 95, 94, 67, 69, 96, 95, 69, 71, 97, 96, 71, 73, 98, 97, 73, 75, 99, 98, 75, 77, 100, 99, 77, 79, 101, 100, 79, 81, 102, 101, 83, 82, 103, 104, 82, 84, 105, 103, 84, 85, 106, 105, 85, 86, 107, 106, 86, 87, 108, 107, 87, 88, 109, 108, 88, 89, 110, 109, 89, 90, 111, 110, 90, 91, 112, 111, 91, 92, 113, 112, 92, 93, 114, 113, 93, 94, 115, 114, 94, 95, 116, 115, 95, 96, 117, 116, 96, 97, 118, 117, 97, 98, 119, 118, 98, 99, 120, 119, 99, 100, 121, 120, 100, 101, 122, 121, 101, 102, 123, 122, 104, 103, 124, 125, 103, 105, 126, 124, 105, 106, 127, 126, 106, 107, 128, 127, 107, 108, 129, 128, 108, 109, 130, 129, 109, 110, 131, 130, 110, 111, 132, 131, 111, 112, 133, 132, 112, 113, 134, 133, 113, 114, 135, 134, 114, 115, 136, 135, 115, 116, 137, 136, 116, 117, 138, 137, 117, 118, 139, 138, 118, 119, 140, 139, 119, 120, 141, 140, 120, 121, 142, 141, 121, 122, 143, 142, 122, 123, 144, 143, 125, 124, 145, 146, 124, 126, 147, 145, 126, 127, 148, 147, 127, 128, 149, 148, 128, 129, 150, 149, 129, 130, 151, 150, 130, 131, 152, 151, 131, 132, 153, 152, 132, 133, 154, 153, 133, 134, 155, 154, 134, 135, 156, 155, 135, 136, 157, 156, 136, 137, 158, 157, 137, 138, 159, 158, 138, 139, 160, 159, 139, 140, 161, 160, 140, 141, 162, 161, 141, 142, 163, 162, 142, 143, 164, 163, 143, 144, 165, 164, 146, 145, 166, 167, 145, 147, 168, 166, 147, 148, 169, 168, 148, 149, 170, 169, 149, 150, 171, 170, 150, 151, 172, 171, 151, 152, 173, 172, 152, 153, 174, 173, 153, 154, 175, 174, 154, 155, 176, 175, 155, 156, 177, 176, 156, 157, 178, 177, 157, 158, 179, 178, 158, 159, 180, 179, 159, 160, 181, 180, 160, 161, 182, 181, 161, 162, 183, 182, 162, 163, 184, 183, 163, 164, 185, 184, 164, 165, 186, 185, 167, 166, 187, 188, 166, 168, 189, 187, 168, 169, 190, 189, 169, 170, 191, 190, 170, 171, 192, 191, 171, 172, 193, 192, 172, 173, 194, 193, 173, 174, 195, 194, 174, 175, 196, 195, 175, 176, 197, 196, 176, 177, 198, 197, 177, 178, 199, 198, 178, 179, 200, 199, 179, 180, 201, 200, 180, 181, 202, 201, 181, 182, 203, 202, 182, 183, 204, 203, 183, 184, 205, 204, 184, 185, 206, 205, 185, 186, 207, 206, 188, 187, 208, 209, 187, 189, 210, 208, 189, 190, 211, 210, 190, 191, 212, 211, 191, 192, 213, 212, 192, 193, 214, 213, 193, 194, 215, 214, 194, 195, 216, 215, 195, 196, 217, 216, 196, 197, 218, 217, 197, 198, 219, 218, 198, 199, 220, 219, 199, 200, 221, 220, 200, 201, 222, 221, 201, 202, 223, 222, 202, 203, 224, 223, 203, 204, 225, 224, 204, 205, 226, 225, 205, 206, 227, 226, 206, 207, 228, 227, 209, 208, 229, 230, 208, 210, 231, 229, 210, 211, 232, 231, 211, 212, 233, 232, 212, 213, 234, 233, 213, 214, 235, 234, 214, 215, 236, 235, 215, 216, 237, 236, 216, 217, 238, 237, 217, 218, 239, 238, 218, 219, 240, 239, 219, 220, 241, 240, 220, 221, 242, 241, 221, 222, 243, 242, 222, 223, 244, 243, 223, 224, 245, 244, 224, 225, 246, 245, 225, 226, 247, 246, 226, 227, 248, 247, 227, 228, 249, 248, 230, 229, 250, 251, 229, 231, 252, 250, 231, 232, 253, 252, 232, 233, 254, 253, 233, 234, 255, 254, 234, 235, 256, 255, 235, 236, 257, 256, 236, 237, 258, 257, 237, 238, 259, 258, 238, 239, 260, 259, 239, 240, 261, 260, 240, 241, 262, 261, 241, 242, 263, 262, 242, 243, 264, 263, 243, 244, 265, 264, 244, 245, 266, 265, 245, 246, 267, 266, 246, 247, 268, 267, 247, 248, 269, 268, 248, 249, 270, 269, 271, 272, 273, 274, 272, 275, 276, 273, 275, 277, 278, 276, 277, 279, 280, 278, 279, 281, 282, 280, 281, 283, 284, 282, 283, 285, 286, 284, 285, 287, 288, 286, 287, 289, 290, 288, 289, 291, 292, 290, 291, 293, 294, 292, 293, 295, 296, 294, 295, 297, 298, 296, 297, 299, 300, 298, 299, 301, 302, 300, 301, 303, 304, 302, 303, 305, 306, 304, 305, 307, 308, 306, 307, 309, 310, 308, 309, 271, 274, 310, 1, 0, 311, 4, 1, 311, 6, 4, 311, 8, 6, 311, 10, 8, 311, 12, 10, 311, 14, 12, 311, 16, 14, 311, 18, 16, 311, 20, 18, 311, 22, 20, 311, 24, 22, 311, 26, 24, 311, 28, 26, 311, 30, 28, 311, 32, 30, 311, 34, 32, 311, 36, 34, 311, 38, 36, 311, 0, 38, 311, 274, 273, 312, 273, 276, 312, 276, 278, 312, 278, 280, 312, 280, 282, 312, 282, 284, 312, 284, 286, 312, 286, 288, 312, 288, 290, 312, 290, 292, 312, 292, 294, 312, 294, 296, 312, 296, 298, 312, 298, 300, 312, 300, 302, 312, 302, 304, 312, 304, 306, 312, 306, 308, 312, 308, 310, 312, 310, 274, 312] bool shadow:enable = 1 uniform token[] skel:joints = ["joint1", "joint1/joint2", "joint1/joint2/joint3", "joint1/joint2/joint3/joint4", "joint1/joint2/joint3/joint4/joint5"] rel skel:skeleton = </Root/group1/joint1> uniform token skel:skinningMethod = "DualQuaternion" uniform token subdivisionScheme = "none" matrix4d xformOp:transform = ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (0, 0, 0, 1) ) uniform token[] xformOpOrder = ["xformOp:transform"] } def Skeleton "joint1" ( prepend apiSchemas = ["SkelBindingAPI"] customData = { dictionary Maya = { bool generated = 1 } } ) { uniform matrix4d[] bindTransforms = [( (-0.020420315587156734, 0, 0.9997914836161192, 0), (-1.2243914402252638e-16, -1, -2.50076741213904e-18, 0), (0.9997914836161192, -1.2246467991473532e-16, 0.020420315587156734, 0), (0.06181698728549858, 0, -0.02659854433002078, 1) ), ( (-3.434752482434078e-15, -2.5007674121386094e-18, 1, 0), (-1.2243914402252638e-16, -1, -2.50076741213904e-18, 0), (1, -1.224391440225264e-16, 3.434752482434078e-15, 0), (-1.3877787807814457e-17, 8.841297486311764e-34, 3.0000000000000004, 1) ), ( (-3.434752482434078e-15, -2.5007674121386094e-18, 1, 0), (-1.2243914402252638e-16, -1, -2.50076741213904e-18, 0), (1, -1.224391440225264e-16, 3.434752482434078e-15, 0), (0, 1.2722513410043386e-31, 6, 1) ), ( (-3.434752482434078e-15, -2.5007674121386094e-18, 1, 0), (-1.2243914402252638e-16, -1, -2.50076741213904e-18, 0), (1, -1.224391440225264e-16, 3.434752482434078e-15, 0), (9.185754640251975e-34, 1.5649926925511984e-31, 9, 1) ), ( (1, -1.224391440225264e-16, -1.1796119636642288e-16, 0), (1.2243914402252635e-16, 1, -1.1996391250259628e-16, 0), (2.2898349882893854e-16, 1.1996391250259626e-16, 1, 0), (1.2247672853669268e-33, 1.4186220167777685e-31, 10, 1) )] uniform token[] joints = ["joint1", "joint1/joint2", "joint1/joint2/joint3", "joint1/joint2/joint3/joint4", "joint1/joint2/joint3/joint4/joint5"] uniform matrix4d[] restTransforms = [( (-0.020420315587156734, 0, 0.9997914836161192, 0), (-1.2243914402252638e-16, -1, -2.50076741213904e-18, 0), (0.9997914836161192, -1.2246467991473532e-16, 0.020420315587156734, 0), (0.06181698728549858, 0, -0.02659854433002078, 1) ), ( (0.9997914836161194, 0, 0.0204203155871533, 0), (0, 1, 0, 0), (-0.0204203155871533, 0, 0.9997914836161194, 0), (3.0272297713351164, -9.860761315262648e-32, 7.979727989493313e-16, 1) ), ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (3, -7.502302236417219e-18, 1.0318135235110049e-14, 1) ), ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (3, -7.50230223641712e-18, 1.0304257447302234e-14, 1) ), ( (-3.552713678800501e-15, 0, 1, 0), (-1.2246467991473532e-16, -1, -4.437342591868191e-31, 0), (1, -1.2246467991473532e-16, 3.6637359812630166e-15, 0), (1, -2.5007674121390154e-18, 3.434752482434078e-15, 1) )] rel skel:animationSource = </Root/group1/joint1/Animation> def SkelAnimation "Animation" { uniform token[] joints = ["joint1", "joint1/joint2", "joint1/joint2/joint3", "joint1/joint2/joint3/joint4", "joint1/joint2/joint3/joint4/joint5"] quatf[] rotations = [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9999479, 1.9756056e-36, -0.010210691, -8.708908e-37), (1, 0, 0, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)] quatf[] rotations.timeSamples = { 1: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9999479, 1.9756056e-36, -0.010210691, -8.708908e-37), (1, 0, 0, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 2: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9997641, 6.236958e-33, -0.021720996, 3.2909726e-35), (0.99999624, 0, 0.0027424013, -3.8518746e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 3: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9986183, 5.8084842e-33, -0.05255021, -3.3373637e-34), (0.99994415, 1.2349047e-32, 0.010570527, -1.7324539e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.958437e-17, 0.7071068)], 4: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9952759, 8.419972e-36, -0.09708719, 1.0719098e-34), (0.99973816, 6.126507e-33, 0.022884618, -2.4343037e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 5: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.988742, -1.2090756e-35, -0.14963076, -1.38100015e-33), (0.99923605, 6.168866e-33, 0.039081782, -7.4085352e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -9.607839e-17, 0.7071068)], 6: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9788749, 5.472309e-33, -0.20446007, -6.8019916e-34), (0.9982843, -6.460354e-33, 0.05855423, -2.5918643e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 7: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.96668077, -2.5870152e-18, -0.25598502, 9.769391e-18), (0.9967394, -2.8562294e-33, 0.08068847, 1.3613418e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, 3.8818763e-18, 0.7071068)], 8: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.95428663, 5.9712946e-33, -0.29889306, 1.958205e-33), (0.9944864, 0, 0.10486588, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 9: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.94461256, 8.614725e-36, -0.32818753, 7.714734e-35), (0.991453, 6.0044964e-33, 0.13046467, -1.6081013e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, 5.904622e-18, 0.7071068)], 10: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.94077206, 3.717885e-35, -0.33903977, 1.0155367e-34), (0.98762035, 0, 0.15686323, 3.120114e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, 3.8818763e-18, 0.7071068)], 11: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9475057, 2.7740445e-33, -0.3197388, 1.0104582e-33), (0.98303014, 6.32211e-33, 0.18344428, -1.2847009e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 12: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.96377945, 2.030969e-35, -0.26670045, 3.223818e-33), (0.9777874, 0, 0.20959933, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 13: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9823428, 2.5188462e-35, -0.18709004, 1.1281289e-34), (0.9720599, -6.564091e-33, 0.23473288, 3.8275936e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -9.041538e-17, 0.7071068)], 14: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99605024, -5.8366924e-37, -0.088791266, 1.0322589e-34), (0.96607393, 8.521877e-33, 0.25826564, -1.5549254e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.2742998e-17, 0.7071068)], 15: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9998168, 6.591292e-39, 0.019142117, 2.892867e-34), (0.9601061, -2.4566083e-33, 0.27963609, 5.7946145e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 16: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99192166, 2.9470727e-34, 0.12685224, 1.6248996e-33), (0.9544722, -3.8604024e-33, 0.2983, -5.2504598e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 17: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9744616, 3.76873e-34, 0.2245543, 1.7342746e-33), (0.9495131, -3.956008e-18, 0.3137275, -1.197307e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 18: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.95286465, 2.7759677e-33, 0.3033958, 5.5855252e-33), (0.9455773, -4.273506e-18, 0.3253975, -1.2418443e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.7019346e-17, 0.7071068)], 19: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.93457264, -4.4242698e-33, 0.35577238, -6.938029e-34), (0.9430011, 1.6338732e-33, 0.33278978, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -8.54472e-17, 0.7071068)], 20: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9271051, -3.814175e-35, 0.37480146, 1.1338883e-34), (0.94208485, 2.8210937e-33, 0.33537456, -5.508395e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 21: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.93118745, -5.4463813e-18, 0.36454076, -1.3912303e-17), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.4996595e-17, 0.7071068)], 22: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.94169426, -3.3711516e-35, 0.3364699, 1.1016753e-34), (0.94208485, 0, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.46769e-17, 0.7071068)], 23: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.95563346, -3.2409287e-33, 0.29455864, 1.6095242e-33), (0.94208485, 1.635462e-33, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 24: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.97005093, -6.9114435e-37, 0.24290179, 9.65094e-35), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 25: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.98256904, -2.9500564e-34, 0.18589815, -1.4612545e-33), (0.94208485, 0, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.958982e-17, 0.7071068)], 26: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9917404, -1.2776737e-35, 0.12826133, 9.540489e-35), (0.94208485, -1.8695705e-33, 0.33537456, -2.605372e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 27: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9971905, -7.216408e-36, 0.07490789, 9.706919e-35), (0.94208485, 0, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 28: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99952555, 1.0151991e-18, 0.03080118, -3.1284174e-20), (0.94208485, 1.6482417e-34, 0.33537456, -3.5473118e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 29: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99999964, 2.7427435e-20, 0.00083214947, -2.2823734e-23), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.677449e-17, 0.7071068)], 30: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9999479, 1.9756056e-36, -0.010210691, -8.708908e-37), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -6.772901e-17, 0.7071068)], } half3[] scales = [(1, 1, 1), (1, 1, 1), (1, 1, 1), (1, 1, 1), (1, 1, 1)] float3[] translations = [(0.061816987, 0, -0.026598545), (3.0272298, -9.8607613e-32, 7.910339e-16), (3, -2.929001e-18, 1.0318135e-14), (3, -7.502302e-18, 1.03042574e-14), (1, -2.5007674e-18, 3.4347525e-15)] } } } def Xform "locator1" { } def Xform "locator2" { } def Scope "Looks" { def Material "initialShadingGroup" { token outputs:mdl:surface.connect = </Root/Looks/initialShadingGroup/lambert1.outputs:out> def Shader "lambert1" ( kind = "Material" ) { uniform token info:id = "mdlMaterial" custom asset module = @lambert1.mdl@ custom string name = "lambert1" token outputs:out } } } }
omniverse-code/kit/exts/omni.graph/docs/testing.rst
.. _set_up_omnigraph_tests: Set Up OmniGraph Tests ====================== Much of the testing for a node can be set up through the .ogn file's :ref:`test section<ogn_defining_automatic_tests>`, however there are a number of situations that require more detailed setup or more flexible checking than the automatically generated tests can provide. For such tests you will want to hook into Kit's testing system. Some examples of these situations are when you need to check for attributes that are one-of a set of allowed results rather than a fixed value, where you need to check node or attribute information that is more than just the current value, where you need to call utility scripts to set up desired configurations, or when your results depend on some external condition such as the graph state. Described here are some best practices for writing such tests. This is only meant to describe setting up Python regression tests that use the Kit extensions to the Python `unittest` modeule. It is not meant to describe setting up C++ unit tests. .. note:: For clarity a lot of recommended coding practices, like adding docstrings to all classes, functions, and modules, or checking for unexpected exceptions in order to provide better error messages, are not followed. Please do use them when you write your actual tests though. Locating The Tests ------------------ The Kit extension system uses an automatic module recognition algorithm to detect directories in which test cases may be found. In particular it looks for **.tests** submodules. So if your Python module is named `omni.graph.foo` it will check the contents of the module `omni.graph.foo.tests`, if it exists, and attempt to find files containing classes derived from `unittest.TestCase`, or the Kit version `omni.kit.test.AsyncTestCase`. The usual way of structuring extensions provides a directory structure that looks like this: .. code-block:: text omni.graph.foo/ python/ tests/ test_some_stuff.py The *tests/* subdirectory would be linked into the build using these lines in your *premake5.lua* file inside the python project definition: .. code-block:: lua add_files("python/tests", "python/tests/*.py") repo_build.prebuild_link { { "python/tests", ogn.python_tests_target_path }, } This creates a link that creates a **.tests** submodule for your extension. The files containing tests should all begin with the prefix *test_*. Creating A Test Class --------------------- OmniGraph tests have some shared setUp and tearDown operations so the easiest way to set up your test class is to have it derive from the derived test case class that implements them: .. code-block:: python import omni.graph.core.tests as ogts class TestsForMe(ogts.OmniGraphTestCase): pass This will ensure your tests are part of the Kit regression test system. The parent class will define some temporary settings as required by OmniGraph, and will clear the scene when the test is done so as not to influence the results of the test after it (barring any other side effects the test itself causes of course). .. tip:: Although the name of the class is not significant it's helpful to prefix it with *Tests* to make it easy to identify. Specialized SetUp And TearDown ++++++++++++++++++++++++++++++ If you have some other setUp or tearDown functions you wish to perform you do it in the usual Pythonic manner: .. code:: python import omni.graph.core.tests as ogts class TestsForMe(ogts.OmniGraphTestCase): async def setUp(self): await super().setUp() do_my_setup() async def tearDown(self): do_my_teardown() await super().tearDown() .. note:: The tests are async so both they and the setUp/tearDown will be "awaited" when running. This was done to facilitate easier access to some of the Kit async functions, though normally you want to ensure your test steps run sequentially. Adding Tests ++++++++++++ Tests are added in the usual way for the Python `unittest` framework, by creating a function with the prefix *test_*. As the tests are all awaited your functions should be async. .. code:: python import omni.graph.core.tests as ogts class TestsForMe(ogts.OmniGraphTestCase): async def setUp(self): await super().setUp() do_my_setup() async def tearDown(self): do_my_teardown() await super().tearDown() async def test1(self): self.assertTrue(run_first_test()) async def test2(self): self.assertTrue(run_second_test()) How you divide your test bodies is up to you. You'll want to balance the slower performance of repetitive setup against the isolation of specific test conditions. Your best friend in setting up test conditions is the :ref:`og.Controller<howto_omnigraph_controller>` class. It provides a lot of what you will need for setting up and inspecting your graph, nodes, and attributes. Here is a simple example that will create an add node with one constant input, and one input supplied from another node that will test to make sure that results are correct over a set of inputs. It uses several concepts from the controller to illustrate its use. .. code-block:: python import omni.graph.core as og import omni.graph.core.tests as ogts class TestsForMe(ogts.OmniGraphTestCase): async def test_add(self): keys = og.Controller.Keys (graph, nodes, _, _) = og.Controller.edit("/TestGraph", { keys.CREATE_NODES: [ ("Add", "omni.graph.nodes.Add"), ("ConstInt", "omni.graph.nodes.ConstantInt"), ], keys.CONNECT: ("ConstInt.inputs:value", "Add.inputs:a"), keys.SET_VALUES: [("ConstInt.inputs:value", 3), ("Add.inputs:b", {"type": "int", "value": 1})] }) # Get controllers attached to the attributes since they will be accessed in a loop b_view = og.Controller(attribute=og.Controller.attribute("inputs:b", nodes[0])) sum_view = og.Controller(attribute=og.Controller.attribute("outputs:sum", nodes[0])) # Test configurations are pairs of (input_b_value, output_sum_expected) test_configurations = [ ({"type": "int", "value": 1}, 4), ({"type": "int", "value": -3}, 0), ({"type": "int", "value": 1000000}, 1000003), ] for b_value, sum_expected in test_configurations: b_view.set(b_value) # Before checking computed values you must ensure the graph has evaluated await og.Controller.evaluate(graph) self.assertAlmostEqual(sum_expected, sum_view.get()) Expected Errors +++++++++++++++ When writing tests, it can be desirable to test error conditions. However, this may cause errors to be displayed to the console, which can cause tests to fail when running in batch mode. One way to have the testing system ignore these errors is to prepend a additional text to the error line. .. code-block:: python # write to the console, skipping the newline to prepend the expected error message print("[Ignore this error/warning] ", end ="") self.assertFalse(self.function_that_causes_error()) Then, in your packages extensions.toml file, tell the test system to ignore error output when the prepended output occurs. .. code-block:: rst [[test]] stdoutFailPatterns.exclude = [ # Exclude messages which say they should be ignored "*Ignore this error/warning*", ] This allows for the test to specify which errors should be ignored without ignoring all errors with the same output in the entire package, or by disabling all error checking from your test class. Executing Your Tests -------------------- Now that your tests are visible to Kit they will be automatically run by TeamCity. To run them yourself locally you have two options. Batch Running Tests +++++++++++++++++++ All tests registered in the manner described above will be added to a batch file that runs all tests in your extension. You can find this file at *$BUILD/tests-omni.graph.foo.{bat|sh}*. Executing this file will run your tests in a minimal Kit configuration. (It basically loads your extension and all dependent extensions, including the test manager.) Look up the documentation on ``omni.kit.test`` for more information on how the tests can be configured. Test Runner +++++++++++ Kit's *Test Runner* window is a handy way to interactively run one or more of your tests at a finer granularity through a UI. By default none of the tests are added to the window, however, so you must add a line like this to your user configuration file, usually in **~/Documents/Kit/shared/user.toml**, to specify which tests it should load: .. code-block:: toml exts."omni.kit.test".includeTests = ["omni.graph.foo.*"] Debugging Your Tests -------------------- Whether you're tracking down a bug or engaging in test-driven-development eventually you will end up in a situation where you need to debug your tests. One of the best tools is to use the script editor and the UI in Kit to inspect and manipulate your test scene. While the normal OmniGraph test case class deletes the scene at the end of the test you can make a temporary change to instead use a variation of the test case that does not do that, so that you can examine the failing scene. .. code-block:: python :emphasize-lines: 3 import omni.graph.core.tests as ogts class TestsForMe(ogts.OmniGraphTestCaseNoClear): pass Running Test Batch Files With Attached Debuggers ++++++++++++++++++++++++++++++++++++++++++++++++ You're probably familiar with the debugging extensions ``omni.kit.debug.python`` and ``omni.kit.debug.vscode``, with which you can attach debuggers to running versions of Kit. If you are running the test batch file, however, you have to ensure that these extensions are running as part of the test environment. To do so you just need to add these flags to your invocation of the test ``.bat`` file: .. code-block:: bash $BUILD/tests-omni.graph.foo.bat --enable omni.kit.debug.vscode --enable omni.kit.debug.python This will enable the extra extensions required to attach the debuggers while the test scripts are running. Of course you still have to manually attach them from your IDE in the same way you usually do. .. note:: As of this writing you might see two ``kit.exe`` processes when attaching a C++ debugger to a test script. The safest thing to do is attach to both of them. The .bat files also support the flag ``-d`` flag to wait for the debugger to attach before executing. If you're running a debug cut this probably won't be necessary as the startup time is ample for attaching a debugger.
omniverse-code/kit/exts/omni.graph/docs/runtimeInitialize.rst
.. _runtime_attribute_value_initialization_in_omnigraph_nodes: Runtime Attribute Value Initialization In OmniGraph Nodes ========================================================= Normally you will specify attribute default values in your .ogn files and the attributes will be given those values when the node is created. Occasionally, you may wish to provide different default values for your attributes based on some condition that can only be ascertained at runtime. This document describes the current best-practice for achieving that goal, in both C++ and Python nodes. As of this writing the database cannot be accessed during the node's *initialize()* method, so providing new values in there will not work. (If in the future that changes this document will be updated to explain how to use it instead.) In fact, the only time the data is guaranteed to be available to use or set is in the node's *compute()* method, so that will be used to set up a delayed initialization of attribute values. The general approach to this initialization will be to use a boolean state value in the node to determine whether the attribute or attributes have been given their initial values or not when the *compute()* method is called. It's also possible that the attribute would have been given a value directly so that also must be considered when managing the boolean state value. For these examples this node definition will be used: .. code-block:: json { "RandomInt": { "version": 1, "description": "Holds an integer with a random integer number.", "outputs": { "number": { "description": "The random integer", "type": "int" } }, "state": { "$comment": "This section exists solely to inform the scheduler that there is internal state information." } } } .. note:: For the Python node assume the addition of the line `"language": "python"`. Initializing Values In C++ Nodes -------------------------------- In the :ref:`internal state tutorial<ogn_tutorial_state>` you can see that the way to add state information to a C++ node is to make some class members. We'll add a boolean class member to tell us if the node is initialized or not, and check it in the **compute()** method. .. code-block:: cpp #include <OgnRandomIntDatabase.h> #include <cstdlib> class OgnRandomInt { bool m_initialized{ false }; // State information the tells if the attribute value has been initialized yet public: static bool compute(OgnRandomIntDatabase& db) { auto& state = db.internalState<OgnRandomInt>(); if (! state.m_initialized) { db.outputs.number() = std::rand(); state.m_initialized = true; } // Normally you would have other things to do as part of the compute as well... return true; } }; REGISTER_OGN_NODE() If you know your attribute will never be set from the outside then that is sufficient, however usually there is no guarantee that some script or UI has not set the attribute value. Fortunately the node can monitor that using the **registerValueChangedCallback()** ABI function on the attribute. It can be set up in the node's **initialize()** method. Putting this in with the above code you get this: .. code-block:: cpp #include <OgnRandomIntDatabase.h> #include <cstdlib> class OgnRandomInt { bool m_initialized{ false }; // State information the tells if the attribute value has been initialized yet static void attributeChanged(const AttributeObj& attr, const void*) { auto& state = OgnRandomIntDatabase::sInternalState<OgnRandomInt>(attr.iAttribute->getNode(attr)); state.m_initialized = true; } public: static bool compute(OgnRandomIntDatabase& db) { auto& state = db.internalState<OgnRandomInt>(); if (! state.m_initialized) { db.outputs.number() = std::rand(); state.m_initialized = true; } // Normally you would have other things to do as part of the compute as well... return true; } static void initialize(const GraphContextObj&, const NodeObj& nodeObj) { AttributeObj attrObj = nodeObj.iNode->getAttributeByToken(nodeObj, outputs::number.m_token); attrObj.iAttribute->registerValueChangedCallback(attrObj, attributeChanged, true); } }; REGISTER_OGN_NODE() Initializing Values In Python Nodes ----------------------------------- In the :ref:`internal state tutorial<ogn_tutorial_state_py>` you can see that the way to add state information to a Python node is to create a static **internal_state** method. We'll create a simple class with a boolean class member to tell us if the node is initialized or not, and check it in the **compute()** method. .. code-block:: python from dataclasses import dataclass from random import randint class OgnRandomInt: @dataclass class State: initialized: bool = False @staticmethod def internal_state() -> State: return OgnRandomInt.State() @staticmethod def compute(db) -> bool: if not db.internal_state.initialized: db.outputs.number = randint(-0x7fffffff, 0x7fffffff) db.internal_state.initialized = True # Normally you would have other things to do as part of the compute as well... return True If you know your attribute will never be set from the outside then that is sufficient. Unfortunately the Python API does not yet have a method of getting a callback when an attribute value has changed so for now this is all you can do.
omniverse-code/kit/exts/omni.graph/docs/autonode.rst
.. _autonode_ref: AutoNode - Autogenerating Nodes From Code ================================================================================ This is a description of the automated node generator for python code in OmniGraph. It turns this: .. code-block:: python import omni.graph.core as og @og.AutoFunc(pure=True) def dot(vec1: og.Float3, vec2: og.Float3) -> float: return vec1[0] * vec2[0] + vec1[1] * vec2[1] + vec1[2] * vec2[2] Into this: .. image:: images/dot.png What it Does -------------------------------------------------------------------------------- AutoNode allows developers to create OmniGraph nodes from any of the following: * **Free functions** (see `AutoFunc`_) * **Python classes and class instances** - AutoNode also scans classes and generates getters and setters (see `AutoClass`_ and `Passing Python Types in AutoNode`_ ). * **CPython and Pybind types** - see `Annotations: Overriding CPython Types`_. * **OmniGraph types** (see `Supported Types`_ ) * **Container types** (see `Bundles`_) * **Events, Enums and other special types**. This process will generate both the OGN description of the node and its attributes, and the implementation of the node compute function in Python. How it Works -------------------------------------------------------------------------------- AutoNode generates node signatures by extracting type annotations stored in functions and variables. In order for nodes to be generated, type annotations must be available to the decorator at initialization time. For most developers, this means using `type annotations <https://docs.python.org/3/library/typing.html>`_ for python 3, like in the example above. Under the hood, annotation extraction is done with the python ``__annotations__`` ( `PEP 3107 <https://www.python.org/dev/peps/pep-3107/>`_ ) dictionary in every class. .. note:: While the API will remain relatively stable, there is no current guarantee that the backend will not be changed. Some implementation details are captured in `Implementation Details`_, purely for reference. API Details -------------------------------------------------------------------------------- Decorators ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ ``omni.graph.core`` currently exposes these autogeneration functions: ``AutoFunc()``, ``AutoClass()``. Both these functions can be used as decorators or as free function calls: .. code-block:: python import omni.graph.core as og #this is convenient @og.AutoFunc() def say_hi() -> str: return "hi, everybody!" def say_hello() -> str: return "Hello, World!" # but this does virtually the same thing og.AutoFunc()(say_hello) ``AutoFunc`` ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Here's an example of wrapping a free function: .. code-block:: python import omni.graph.core as og @og.AutoFunc() def one_up(input : int = 0) -> str: """this documentation will appear in the node's help""" return f"one up! {input + 1}" **Note:** The type annotations really matter. Without them, AutoNode can't define node inputs and outputs. You can create multiple returns by making your return type a `typing.Tuple`: .. code-block:: python import omni.graph.core as og from typing import Tuple @og.AutoFunc() def break_vector(input : og.Float3) -> Tuple[og.Float, og.Float, og.Float] return (input[0], input[1], input[2]) ``AutoClass`` ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ This exposes entire classes to OGN. Here are the rules of evaluation: * Private properties and methods (starting with ``_``) will not be exposed * Public properties exposed will attempt to find a type annotation using ``__annotations__`` and will default to the inferred type. ``None`` types will be ignored. * Public methods will be associated with the class type, and will not attempt to find a type for ``self``. * Bound methods in classes (methods with an immutable ``__self__`` reference) will be stored for representation, but the actual method to be called will come from the specific instance that's being applied for this. For instance - if class ``A`` was decorated with ``AutoClass``, and it contained a method ``A.Method(self, arg: int)->str``, with ``__self__`` stored in the method ("bound method"), then when a class ``B`` with an overriding method gets called on this node, the node will search for inside ``B.Method`` and call it instead. Here is a simple case of wrapping a class: .. code-block:: python import omni.graph.core as og @og.AutoClass(module_name="AutoNodeDemo") class TestClass: #this will not generate getters and setters _private_var = 42 #this will generate getters and setters, and will make them of type ``float`` public_var: float = 3.141 # initializers are private methods and will not be exposed by the decorator def __init__(self): pass def public_method(self, exponent: float) -> float: """this method will be exposed into OmniGraph, along with its' documentation here. The function signature is necessary on every argument except for ``self``, which is implied.""" return self.public_var ** exponent This results in the following menu and implementation: .. image:: images/Autoclass01.png .. image:: images/Autoclass02.png Note that getters and setters take in a ``target`` variable. This allows users to pass in a reference to an existing class. See `Passing Python Types in AutoNode`_ for more details. Decorator Parameters ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ ``pure`` ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Boolean. Setting ``@og.AutoFunc(pure=True)`` will generate a method that can be used in a push or execute context, without an execution input or output. ``AutoFunc`` only. For example, these two functions: .. code-block:: python import omni.graph.core as og @og.AutoFunc(pure=True) def dot(vec1: og.Float3, vec2: og.Float3) -> float: return vec1[0] * vec2[0] + vec1[1] * vec2[1] + vec1[2] * vec2[2] @og.AutoFunc() def exec_dot(vec1: og.Float3, vec2: og.Float3) -> float: return vec1[0] * vec2[0] + vec1[1] * vec2[1] + vec1[2] * vec2[2] Will generate these nodes: .. image:: images/pure.png ``module_name`` ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Specifies where the node will be registered. This affects UI menus and node spawning by name. For example, setting .. code-block:: python import omni.graph.core as og import MyModule @og.AutoFunc(module_name="test_module") def add_one(input: int) -> int: return input + 1 og.AutoClass(module_name="test_module")(MyModule.TestClass) Will result in a UI displaying access to this node from ``test_module`` ``ui_name`` ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Specifies the onscreen name of the function. ``AutoFunc`` only. ``annotation`` ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ See `Annotations: Overriding CPython Types`_. ``tags`` ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Array of text tags to be added to the node. ``metadata`` ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Other metadata to pass through AutoNode, such as icon information. Supported Types -------------------------------------------------------------------------------- Currently, this is the list of types supported by AutoNode: .. code-block:: python import omni.graph.core as og # Generic Vectors [og.Vector3d, og.Vector3h, og.Vector3f] # Scalar and Vector types [og.Float, og.Float2, og.Float3, og.Float4] [og.Half, og.Half2, og.Half3, og.Half4] [og.Double, og.Double2, og.Double3, og.Double4] [og.Int, og.Int2, og.Int3, og.Int4] # Matrix Types [og.Matrix2d, og.Matrix3d, og.Matrix4d] # Vector Types with roles [og.Normal3d, og.Normal3f, og.Normal3h] [og.Point3d, og.Point3f, og.Point3h] [og.Quatd, og.Quatf, og.Quath] [og.TexCoord2d, og.TexCoord2f, og.TexCoord2h] [og.TexCoord3d, og.TexCoord3f, og.TexCoord3h] [og.Color3d, og.Color3f, og.Color3h, og.Color4d, og.Color4f, og.Color4h] # Specialty Types [og.Timecode, og.Uint, og.Uchar, og.Token] # Underspecified, but accepted types # str, int, float .. note:: Not all `python typing <https://docs.python.org/3/library/typing.html>`_ types are supported. .. _Bundles: ``Bundle`` Types : The Omniverse struct +++++++++++++++++++++++++++++++++++++++ Since most of Omniverse's computations require concrete numerical types - matrices, vectors, numbers with known precision - it makes sense to have a data structure to pass them in together - and to make that data structure GPU-friendly. ``Bundle`` serves that purpose - it's a lightweight data structure which contains information about the types it holds. ``Bundle`` can be passed around between nodes in OmniGraph without special handling. Here is one example: .. code-block:: python import omni.graph.core as og @og.AutoFunc(pure=True) def pack(v: og.Float3, c: og.Color3f) -> og.Bundle: bundle = og.Bundle("return", False) bundle.create_attribute("vec", og.Float3).value = v bundle.create_attribute("col", og.Color3f).value = c return bundle @og.AutoFunc(pure=True) def unpack_vector(bundle: og.Bundle) -> og.Float3: vec = bundle.attribute_by_name("vec") if vec: return vec.value return [0,0,0] Will yield this: .. image:: images/Bundle01.png Bundles aren't just useful as ways to easily pass data structures into the graph - they're also useful within python. Passing bundles between python methods is relatively cheap, and allows all users of the data to know the exact type and size it was used in. Furthermore, usage of bundles allows OmniGraph to move data to the GPU at will. Passing Python Types in AutoNode ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ While OmniGraph can only understand and manipulated the types listed above, any python type can be passed through OmniGraph by AutoNode. This is done by using a special type called ``objectId``, which is used by AutoNode to keep a reference (usually a hash, but that can change, see `Implementation Details`_) to the object being passed through OmniGraph. Any type in a method I/O that isn't recognized by AutoNode as supported by OmniGraph is automatically handled by AutoNode like this: 1. When a method signature has a type not recognized by AutoNode, AutoNode generates an ``objectId`` signature for that type in the node's ``ogn`` descriptor. 2. When a method outputs a object whose type is represented by an ``objectId`` in the output, AutoNode stores the object in a *Temporary Object Store*, a special runtime collection of python objects resident in OmniGraph memory. 3. When an input ``objectId`` is received by a method, the method requests the object from the *Temporary Object Store*. The object store is "read once" - after a single read, the object is deleted from the store. Every subsequent call will result in an error. Special Types ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ AutoNode adds special type handlers (see `Adding Type Handlers`_) to deal with how certain types are used in practice. Enums ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Type handlers which specialize enums are built for how enums are typically used: Switching on an Enum, like an event type. The switch class has one exec input and one enum input, and exec outputs to match the number of enum members: .. code-block:: python from enum import Enum @AutoClass() class DogType(Enum): SHIBA = 1 HUSKY = 2 SALUKI = 4 Results in: .. image:: images/Enum.png Events ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ TODO Annotations: Overriding CPython Types ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Sometimes, importing modules created in CPython is essential. Those modules may not have a ``__annotations__`` property, so we can create it for them. Suppose the codeblocks above were defined in CPython and didn't contain annotations. Here we create a shim for them: .. code-block:: python import omni.graph.core as og import MyModule # Note that we don't need a decorator call, since the function is being passed as an argument og.AutoFunc(annotation={ "input": int, "return": str })(MyModule.one_up) Similarly, for classes: .. code-block:: python import omni.graph.core as og import MyModule # Note that members only get a type annotation, but functions get the entire annotation. og.AutoClass( annotation={ "public_var" : float, "public_method": { "self": MyModule.TestClass, "exponent": float, "return": float} })(MyModule.TestClass) Customizing AutoNode -------------------------------------------------------------------------------- Adding Type Handlers ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Types going through ``AutoClass`` are highly customizable. By default, when a class is scanned, it is run through a series of custom handlers, each of type ``AutoNodeDefinitionGenerator``. This class implements this interface: .. code-block:: python import omni.graph.core as og # ================================================================================ class MyDefinitionGenerator(og.AutoNodeDefinitionGenerator): """Defines a property handler""" # Fill this with the type you wish to scan _name = "MyDefinition" # -------------------------------------------------------------------------------- @classmethod def generate_from_definitions(cls, new_type: type) -> Tuple[Iterable[og.AutoNodeDefinitionWrapper], Iterable[str]]: '''This method scans the type new_type and outputs an AutoNodeDefinitionWrapper from it, representing the type, as well as a list of members it wishes to hide from the rest of the node extraction process. Args: new_type: the type to analyze by attribute Returns: a tuple of: Iterable[AutoNodeDefinitionWrapper] - an iterable of AutoNodeDefinitionWrapper - every node wrapper that is generated from this type. Iterable[str] - an iterable of all members covered by this handler that other handlers should ignore. ''' pass The emitted ``AutoNodeDefinitionGenerator`` class has the following signature: .. code-block:: python import omni.graph.core as og class MyNodeDefinitionWrapper(og.AutoNodeDefinitionWrapper): """Container for a single node representation consumed by the Ogn code generator. Class is abstract and meant to be overridden. A sufficient implementation overrides these methods: * get_ogn(self) -> Dict * get_node_impl(self) * get_unique_name(self) -> str * get_module_name(self) -> str """ def __init__(self): super().__init__() # -------------------------------------------------------------------------------- def get_ogn(self) -> Dict: """Get the Ogn dictionary representation of the node interface. Overrides the AutoNodeDefinitionWrapper function of the same name. """ return {} # -------------------------------------------------------------------------------- def get_node_impl(self): """Returns the Ogn class implementing the node behavior. See the OmniGraph documentation on how to implement. A sufficient implementation contains a staticmethod with the function: compute(db) Overrides the AutoNodeDefinitionWrapper function of the same name. """ return None # -------------------------------------------------------------------------------- def get_unique_name(self) -> str: """Get nodes unique name, to be saved as an accessor in the node database. Overrides the AutoNodeDefinitionWrapper function of the same name. Returns: the nongled unique name """ return "" # -------------------------------------------------------------------------------- def get_module_name(self) -> str: """Get the module this AutoNode method was defined in. Overrides the AutoNodeDefinitionWrapper function of the same name. Returns: the module name """ return "" For more information on node implementations requires for ``get_node_impl``, read :ref:`ogn_tutorial_complexData_py`. Here is an example of creating an extension for ``enum`` types: .. code-block:: python from typing import Dict, OrderedDict, Tuple, Iterable import omni.graph.core as og # ================================================================================ class OgnEnumExecutionWrapper: # We use the __init_subclass__ mechanism to execute operations on a type def __init_subclass__(cls, target_class: type) -> None: # __members__ are the property required for identifying an enum cls.member_names = [name for name in target_class.__members__] cls.value_to_name = { getattr(target_class, name): name for name in target_class.__members__} # -------------------------------------------------------------------------------- @classmethod def compute(*args): cls = args[0] db = args[1] # don't execute if there's no need if not db.inputs.exec: return True input = db.inputs.enum input_value = og.TypeRegistry.instance().refs.pop(input) name = cls.value_to_name.get(input_value.value, None) if name is not None: out = getattr(db.outputs.attributes, name) db.outputs.context_helper.set_attr_value(True, out) return True return False # ================================================================================ class OgnEnumWrapper(og.AutoNodeDefinitionWrapper): """Wrapper around Enums""" def __init__( self, target_class, unique_name: str, module_name: str, *, ui_name: str = None): """Generate a definition from a parsed enum """ self.target_class = target_class self.unique_name = unique_name self.ui_name = ui_name or target_class.__name__ self.module_name = module_name # begin building the ogn descriptor self.descriptor: Dict = {} self.descriptor["uiName"] = ui_name self.descriptor["version"] = 1 self.descriptor["language"] = "Python" self.descriptor["description"] = f"Enum Wrapper for {self.ui_name}" self.descriptor["inputs"] = OrderedDict({ "enum": { "uiName": "Input", "description": "Enum input", "type": "uint64", "default": 0, "metadata": { "python_type_desc" : self.unique_name }}, "exec": { "uiName": "Exec", "description": "Execution input", "type": "execution", "default": 0 }}) def signature(name): return { "description": f"Execute on {name}", "type": "execution", "default": 0 } self.descriptor["outputs"] = OrderedDict({ name: signature(name) for name in self.target_class.__members__ }) # -------------------------------------------------------------------------------- def get_unique_name(self) -> str: """overloaded from AutoNodeDefinitionWrapper""" return self.unique_name # -------------------------------------------------------------------------------- def get_module_name(self) -> str: """overloaded from AutoNodeDefinitionWrapper""" return self.module_name # -------------------------------------------------------------------------------- def get_node_impl(self): """overloaded from AutoNodeDefinitionWrapper""" class OgnEnumReturnType( OgnEnumExecutionWrapper, target_class=self.target_class): pass return OgnEnumReturnType # -------------------------------------------------------------------------------- def get_ogn(self) -> Dict: """overloaded from AutoNodeDefinitionWrapper""" d = {self.unique_name: self.descriptor} return d # ================================================================================ class EnumAutoNodeDefinitionGenerator(og.AutoNodeDefinitionGenerator): _name = "Enum" # -------------------------------------------------------------------------------- @classmethod def generate_from_definitions( cls, target_type: type, type_name_sanitized: str, type_name_short: str, module_name: str) -> Tuple[Iterable[og.AutoNodeDefinitionWrapper], Iterable[str]]: members_covered = set() returned_generators = set() if hasattr(target_type, "__members__"): ret = OgnEnumWrapper( target_type, unique_name=type_name_sanitized, module_name=module_name, ui_name=f"Switch on {type_name_short}") members_covered.update(target_type.__members__) returned_generators.add(ret) return returned_generators, members_covered # ================================================================================ # submit this to AutoNode og.register_autonode_type_extension(og.EnumAutoNodeDefinitionGenerator) Implementation Details ------------------------------ This information is presented for debugging purposes. *Do not rely on this information for your API*. Name Mangling ++++++++++++++++++++++++++++++ To avoid name collisions between two nodes from different origins, OGN mangles names of functions. *If you are only using the UI to access your nodes, this shouldn't interest you*, but when accessing autogenerated nodes from code, the full node name is used. Mangling is done according to these rules: * Function specifiers have their ``.`` s replaced with ``__FUNC__`` as an infix, like: ``MyClass.Function -> MyClass__FUNC__Function`` * Property specifiers have their ``.`` s replaced with ``__PROP__`` as an infix, like: ``MyClass.Property -> MyClass__PROP__Property`` * Property getters and setters are suffixed as ``__GET`` and ``__SET``, like so: ``MyClass__PROP__Property__GET`` and ``MyClass__PROP__Property__SET`` * If any of those are nested inside another namespace will replace their separating dots with ``__NSP__`` Here is an example with conversions: .. code-block:: python import omni.graph.core as og @og.AutoClass(module_name="test_module") class TestClass: class TestSubclass: # TestClass__NSP__TestSubclass__PROP__public_var__GET # TestClass__NSP__TestSubclass__PROP__public_var__SET public_var: float = 3.141 # TestClass__FUNC__public_method def public_method(self, exponent: float) -> float: return self.public_var ** exponent This is done in order to spawn the node with code, like so: .. code-block:: python import omni.graph.core as og # This brings up `add_one` from the example above. path_01 = '/Test/MyNodes/AddOne' add_one = og.Controller.create_node(path_01, 'test_module.add_one') # This brings up `TestClass.public_method` from the example above. path_02 = '/Test/MyNodes/TestClassGetPublicMethod' public_method = og.Controller.create_node(path_02, 'test_module.TestClass__FUNC__public_method') path_03 = '/Test/MyNodes/TestClassGetPublicMethod' public_var_getter = og.Controller.create_node(path_03, 'test_module.TestClass__NSP__TestSubclass__PROP__public_var__GET')
omniverse-code/kit/exts/omni.graph/docs/running_one_script.rst
.. _run_omnigraph_python_script: Running Minimal Kit With OmniGraph ================================== The Kit application at its core is a basic framework from plugging in extensions with a common communication method. We can take advantage of this to run a script that works with OmniGraph without pulling in the entire Kit overhead. Running With Python Support --------------------------- The most user-friendly approach to running a minimal version of Kit with OmniGraph is to make use of the `omni.graph` extension, which adds Python bindings and scripts to the OmniGraph core. Your extension must have a dependency on `omni.graph` using these lines in your `extension.toml` file: .. code-block:: toml [dependencies] "omni.graph" = {} Let's say your extension, `omni.my.extension`, has a single node type `MyNodeType` that when executed will take a directory path name as input and will print out the number of files and total file size of every file in that directory. This is a script that will set up and execute an OmniGraph that creates a node that will display that information for the Omniverse Cache directory. .. code-block:: Python import carb import omni.graph.core as og import omni.usd # This is needed to initialize the OmniGraph backing omni.usd.get_context().new_stage() # Get the cache directory to be examined cache_directory = carb.tokens.get_tokens_interface().resolve("${omni_cache}") # Create a graph with the node that will print out the cache directory contents _ = og.Controller.edit("/CacheGraph", { og.Controller.Keys.CREATE_NODES: ("MyNode", "omni.my.extension.MyNodeType"), og.Controller.Keys.SET_VALUES: ("MyNode.inputs:directory", cache_directory) }) # Evaluate the node to complete the operation og.Controller.evaluate_sync() If this script is saved in the file `showCache.py` then you run this from your Kit executable directory: .. code-block:: sh $ ./kit.exe --enable omni.my.extension --exec showCache.py C:/Kit/cache contained 123 files with a total size of 456,789 bytes .. note:: Running with only `omni.graph` enabled will work, but it is just a framework and has no nodes of its own to execute. That is why you must enable your own extension. You might also want to enable other extensions such as `omni.graph.nodes` or `omni.graph.action` if you want to access the standard set of OmniGraph nodes. Running With Just The Core -------------------------- If you have an extension that uses the C++ ABI to create and manipulate an OmniGraph you can run Kit with only your extension enabled, executing a script that will trigger the code you wish to execute. Your extension must have a dependency on `omni.graph.core` using these lines in your `extension.toml` file: .. code-block:: toml [dependencies] "omni.graph.core" = {} You can then run your own script `setUpOmniGraphAndEvaluate.py` that executes your C++ code to create and evaluate the graph in a way similar to the above, but using the C++ ABI, with the same command line: .. code-block:: sh $ ./kit.exe --enable omni.my.extension --exec setUpOmniGraphAndEvaluate.py
omniverse-code/kit/exts/omni.graph/docs/controller.rst
.. _omnigraph_controller_class: OmniGraph Controller Class ========================== .. _howto_omnigraph_controller: The primary interface you can use for interacting with OmniGraph is the `Controller` class. It is in the main module so you can access it like this: .. code-block:: python import omni.graph.core as og keys = og.Controller.Keys controller = og.Controller() .. note:: For future examples these two lines will be assumed to be present. Structure --------- The `Controller` class is an amalgam of several other classes with specific subsets of functionality. It derives from each of them, so that all of their functionality can be accessed through the one `Controller` class. - **GraphController** handles operations that affect the structure of the graph - **NodeController** handles operations that affect individual nodes - **ObjectLookup** provides a generic set of interfaces for finding OmniGraph objects with a flexible set of inputs - **DataView** lets you get and set attribute values For the most part the controller functions can be accessed as static class members: .. code-block:: python og.Controller.edit("/World/MyGraph", {keys.CREATE_NODES: ("MyNode", "omni.graph.tutorials.SimpleData")}) og.Controller.edit("/World/MyGraph", {keys.SET_VALUES: ("/World/MyGraph/MyNode.inputs:a_bool", False)}) A second way to do it is to instantiate the controller so that the relative paths are all remembered: .. code-block:: python controller.edit("/World/MyGraph", {keys.CREATE_NODES: ("MyNode", "omni.graph.tutorials.SimpleData")}) controller.edit("/World/MyGraph", {keys.SET_VALUES: ("MyNode.inputs:a_bool", False)}) Or you can remember the return values of the first call yourself and reuse them: .. code-block:: python (graph, nodes, _, _) = og.Controller.edit("/World/MyGraph", {keys.CREATE_NODES: ("MyNode", "omni.graph.tutorials.SimpleData")}) og.Controller.edit(graph, {keys.SET_VALUES: (("inputs:a_bool", nodes[0]), False)) The exceptions are when using the :py:class:`omni.graph.core.DataView` functions, as that class requires an attribute in order to perform its operations. For those you can pass an `Attribute` or `AttributeValue` identifier to construct a controller that can handle those operations: .. code-block:: python controller = og.Controller(og.Controller.attribute("/World/MyGraph/MyNode.inputs:myInput")) print(f"My attribute value is {controller.get()}") .. literalinclude:: ../../../../source/extensions/omni.graph/python/_impl/controller.py :language: python :start-after: begin-controller-docs :end-before: end-controller-docs Controller Functions -------------------- In addition to the functions inherited from the other classes the `Controller` has a couple of key functions itself. There is a coroutine to evaluate one or more graphs: .. code-block:: python async def my_function(): await og.Controller.evaluate() The :py:meth:`evaluate()<omni.graph.core.Controller.evaluate>` method takes an optional parameter with a graph or list of graphs to be evaluated. By default it evaluates all graphs in the scene. If you want to evaluate but are not in a coroutine then you can use the synchronous version `evaluate_sync()` .. code-block:: python def my_normal_function(): og.Controller.evaluate_sync() The :py:meth:`evaluate_sync()<omni.graph.core.Controller.evaluate_sync>` method also takes an optional parameter with a graph or list of graphs to be evaluated. By default it evaluates all graphs in the scene. The workhorse of the controller class is the :py:meth:`edit()<omni.graph.core.Controller.edit>` method. It provides simple access to a lot of the underlying functionality for manipulating the contents of OmniGraph. It should be noted here that this method can be accessed as both a class method and an object method. The reason you would create an instance of a `Controller` object is if you wish to preserve the internal mapping of node names to instantiated node paths for future use. For example, this code sequence could be used to create a node and then set a value on one of its attributes: .. code-block:: python og.Controller.edit("/World/PushGraph", { og.Controller.Keys.CREATE_NODES: ("NewNode", "omni.graph.nodes.Add"), og.Controller.Keys.SET_VALUES: ("NewNode.inputs:a", {"type": "float", "value": 1.0}) } ) In this example the extended version of value setting is used, where both the type and value are provided so that the extended attribute type in `omni.graph.nodes.Add` can resolve its type. ObjectLookup ------------ This class contains the functions you will probably use the most. It provides an extremely flexible method for looking up OmniGraph objects from the information you have on hand. The specs it accepts as arguments can be seen in the :py:class:`class documentation<omni.graph.core.ObjectLookup>`. Here's a quick summary of the most useful methods on this class: - :py:meth:`graph()<omni.graph.core.ObjectLookup.graph>` gets an **og.Graph** object - :py:meth:`node()<omni.graph.core.ObjectLookup.node>` gets an **og.Node** object - :py:meth:`attribute()<omni.graph.core.ObjectLookup.attribute>` gets an **og.Attribute** object - :py:meth:`attribute_type()<omni.graph.core.ObjectLookup.attribute_type>` gets an **og.Type** object - :py:meth:`node_type()<omni.graph.core.ObjectLookup.node_type>` gets an **og.NodeType** object - :py:meth:`prim()<omni.graph.core.ObjectLookup.prim>` gets a **Usd.Prim** object - :py:meth:`usd_attribute()<omni.graph.core.ObjectLookup.usd_attribute>` gets a **Usd.Attribute** object - :py:meth:`variable()<omni.graph.core.ObjectLookup.variable>` gets a **og.IVariable** object Other methods will be added as they become useful. GraphController --------------- This class contains the functions that manipulate the structure of the graph, including creating a graph. The :py:class:`class documentation<omni.graph.core.GraphController>` describe the details of what it can do. Here's a quick summary of the most useful methods in the class. All but the last of them can be accessed through different keywords in the dictionary passed to :py:meth:`og.Controller.edit()<omni.graph.core.Controller.edit>`. - :py:meth:`create_graph()<omni.graph.core.GraphController.create_graph>` creates a new **og.Graph** - :py:meth:`create_node()<omni.graph.core.GraphController.create_node>` creates a new **og.Node** - :py:meth:`create_prim()<omni.graph.core.GraphController.create_prim>` creates a new **Usd.Prim** - :py:meth:`create_variable()<omni.graph.core.GraphController.create_variable>` creates a new **og.IVariable** - :py:meth:`delete_node()<omni.graph.core.GraphController.delete_node>` deletes an existing **og.Node** - :py:meth:`expose_prim()<omni.graph.core.GraphController.expose_prim>` makes a **Usd.Prim** visible to OmniGraph through a read node - :py:meth:`connect()<omni.graph.core.GraphController.connect>` connects two **og.Attributes** together - :py:meth:`disconnect()<omni.graph.core.GraphController.disconnect>` breaks an existing connection between two **og.Attributes** - :py:meth:`disconnect_all()<omni.graph.core.GraphController.disconnect_all>` disconnects everything from an existing **og.Attribute** - :py:meth:`set_variable_default_value()<omni.graph.core.GraphController.set_variable_default_value>` sets the default value of an **og.IVariable** - :py:meth:`get_variable_default_value()<omni.graph.core.GraphController.get_variable_default_value>` gets the default value of an **og.IVariable** NodeController -------------- This class contains the functions that manipulate the contents of a node. It only has a few functions. The :py:class:`class documentation<omni.graph.core.NodeController>` outlines its areas of control. Here's a quick summary of the most useful methods in the class: - :py:meth:`create_attribute()<omni.graph.core.NodeController.create_attribute>` creates a new dynamic **og.Attribute** - :py:meth:`remove_attribute()<omni.graph.core.NodeController.remove_attribute>` removes an existing dynamic **og.Attribute** - :py:meth:`safe_node_name()<omni.graph.core.NodeController.safe_node_name>` returns a node name based on an **og.NodeType** that is USD-safe .. note:: A **dynamic** attribute in this context means an attribute that can be added to the node that does not exist in the node's .ogn file. DataView -------- This class contains the functions to get and set attribute values. It has a flexible **__init__** function that can optionally take an "attribute" parameter to specify either an **og.Attribute** or **og.AttributeData** to which the data operations will apply. The :py:class:`class documentation<omni.graph.core.DataView>` shows the available functionality. Here's a quick summary of the most useful methods in the class: - :py:meth:`get()<omni.graph.core.DataView.get>` gets the current value of the attribute - :py:meth:`get_array_size()<omni.graph.core.DataView.get_array_size>` gets the number of elements in an array attribute - :py:meth:`set()<omni.graph.core.DataView.set>` sets a new value on the attribute All of these methods are set up to work either as class methods or as object methods. The difference is that when called as a class method you have add an extra parameter at the beginning that is the attribute whose value is being processed. These two calls, for example, are equivalent: .. code-block:: python attribute = og.Controller.attribute("/World/PushGraph/Add:inputs:a") # As a class method value = og.DataView.get(attribute) # or value = og.Controller.get(attribute) # As an object method value = og.DataView(attribute=attribute).get() # or value = og.Controller(attribute=attribute).get()
omniverse-code/kit/exts/omni.graph/docs/omni.graph.core.bindings.rst
omni.graph.core.bindings ======================== All of the OmniGraph ABI interfaces have Python bindings on top of them, as well as additional bindings that provide convenient Pythonic access to some of the data. See the full description in the :ref:`Python API<omnigraph_python_api>`
omniverse-code/kit/exts/omni.graph/docs/commands.rst
OmniGraph Commands ================== Like other extensions, the OmniGraph extensions expose undoable functionality through some basic commands. A lot of the functionality of the commands can be accessed from the *og.Controller* object, described above. OmniGraph has created a shortcut to allow more natural expression of command execution. The raw method of executing a command is something like this: .. code-block:: python import omni.graph.core as og graph = og.get_graph_by_path("/World/PushGraph") omni.kit.commands.execute("CreateNode", graph=graph, node_path="/World/PushGraph/TestSingleton", node_type="omni.graph.examples.python.TestSingleton", create_usd=True) The abbreviated method, using the constructed *cmds* object looks like this: .. code-block:: python import omni.graph.core as og graph = og.get_graph_by_path("/World/PushGraph") cmds.CreateNode(graph=graph, node_path="/World/PushGraph/TestSingleton", node_type="omni.graph.examples.python.TestSingleton", create_usd=True) However for most operations you would use the controller class, which is a single line: .. code-block:: python import omni.graph.core as og og.Controller.edit("/World/PushGraph", { og.Controller.Keys.CREATE_NODES: ("TestSingleton", "omni.graph.examples.python.TestSingleton") }) .. tip:: Running the Python command *help(omni.graph.core.cmds)* in the script editor will give you a description of all available commands.
omniverse-code/kit/exts/omni.graph/docs/CHANGELOG.md
# Changelog All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] ## [1.50.2] - 2023-02-14 ### Fixed - Made test file pattern account for node files not beginning with Ogn ## [1.50.1] - 2022-11-22 ### Added - Documentation for running a minimal Kit with OmniGraph ## [1.50.0] - 2022-11-15 ### Changed - Default simple dynamic attribute values to the CPU ## [1.49.0] - 2022-11-14 ### Added - instance_path argument added to IVariable.get, get_array and set methods to specify the instance of the variable - node_type.get_path(), which returns the path to the prim associated with a node type ## [1.48.0] - 2022-11-09 ### Added - Support for redirecting dynamic attributes to the GPU ## [1.47.1] - 2022-10-18 ### Fixed - Corrected the path to the default category files ## [1.47.0] - 2022-09-28 ### Changed - Refactored controller classes to accept variable arguments in all methods and constructor ### Removed - References to obsolete set of unsupported types - Last remaining references to the obsolete ContextHelper ### Added - Argument flattening utility ## [1.46.0] - 2022-09-27 ### Added - Collection of registration and deregistration timing for Python node types ## [1.45.2] - 2022-09-01 ### Fixed - Fixed the type name access in the node controller to handle bundles properly ## [1.45.1] - 2022-08-31 ### Fixed - Refactored out use of a deprecated class ## [1.45.0] - 2022-08-30 ### Added - Handling for allocation of memory and transfer of values for Python default values ## [1.44.0] - 2022-08-25 ### Added - Access to new setting that turns deprecations into errors ## [1.43.0] - 2022-08-17 ### Added - Cross-handling of array and non-array types when compatible ## [1.42.0] - 2022-08-12 ### Changed - og.AttributeData now raise exceptions for errors instead of printing ## [1.41.1] - 2022-08-09 ### Fixed - All of the lint errors reported on the Python files in this extension ## [1.41.0] - 2022-08-02 ### Added - Optimize attribute setting from python nodes - during runtime computation we skip commands (no need for undo) ## [1.40.0] - 2022-07-27 ### Added - IBundle2 remove_attributes_by_name, remove_child_bundles_by_name ## [1.39.0] - 2022-07-27 ### Changed - Added better __repr__ to Attribute and Node ## [1.38.1] - 2022-07-26 ### Fixed - Adjusted config to avoid obsolete commands module - Added firewall protection to AutoFunc and AutoClass initialization so that they work in the script editor ## [1.38.0] - 2022-07-19 ### Added - IBundle2 interface API review ## [1.37.0] - 2022-07-12 ### Added - Python performance: database caching, prefetch and commit for batching of simple attribute reads/writes ## [1.36.0] - 2022-07-12 ### Fixed - Backward compatibility of the generated attribute descriptions. ## [1.35.0] - 2022-07-08 ### Added - omni.graph.core.Attribute.is_deprecated() - omni.graph.core.Attribute.deprecation_message() - omni.graph.core.Internal sub-module - omni.graph.core.Internal._deprecateAttribute() ## [1.34.0] - 2022-07-07 ### Changed - Refactored imports from omni.graph.tools to get the new locations - Moved node_generator/ into the _impl/ subdirectory - Made dunder attribute names in AttributeDataValueHelper into single-underscore to avoid Python compatibility problem ### Added - Test for public API consistency ## [1.33.0] - 2022-07-06 ### Added - Metadata support for IBundle2 interface ## [1.32.3] - 2022-07-04 ### Fixed - Py_GraphContext's __eq__ and __hash__ now use the underlying GraphContext object rather than the Python wrapper ## [1.32.2] - 2022-06-28 ### Changed - Made node type failure a more actionable error - Bootstrap the nodeContextHandle to allow independent database creation ### Added - Linked docs in the build area ## [1.32.1] - 2022-06-26 ### Changed - Made node type failure a more actionable error ## [1.32.0] - 2022-06-26 ### Added - Added test for clearing bundle contents ## [1.31.1] - 2022-06-21 ### Changed - Fixed error in graph_settings when loading non-schema prims ## [1.31.0] - 2022-06-17 ### Added - omni.graph.core.graph.get_evaluator_name() ## [1.30.1] - 2022-06-17 ### Added - Added ApplyOmniGraph and RemoveOmniGraph api commands ## [1.30.0] - 2022-06-13 ### Added - omni.graph.core.GraphEvaluationMode enum - evaluation_mode argument added to omni.graph.core.Graph.create_graph_as_node - evaluation_mode property added to omni.graph.core.Graph - SetEvaluationModeCommand - evaluation_mode parameter added to CreateGraphAsNodeCommand - evaluation_mode option added to GraphController ## [1.29.0] - 2022-06-13 ### Added - Temporary binding function to prevent Python node initialization from overwriting values already set ## [1.28.0] - 2022-06-07 ### Added - Added CPU-GPU pointer support in data_view class and propagation of the state through python wrapper classes ## [1.27.0] - 2022-06-07 ### Added - Support for the generator settings to complement runtime settings ## [1.26.1] - 2022-06-04 ### Fixed - Nodes with invalid connections no longer break upgrades to OmniGraph schema ## [1.26.0] - 2022-05-06 ### Fixed - Handling of runtime attributes whose bundle uses CPU to GPU pointers ### Added - Support for CPU to GPU data in the DataWrapper ## [1.25.0] - 2022-05-05 ### Removed - Python subscriptions to changes in settings, now handled in C++ ## [1.24.1] - 2022-05-05 ### Deprecated - Deprecated OmniGraphHelper and ContextHelper for og.Controller ## [1.24.0] - 2022-04-29 ### Fixed - Fixed override method for IPythonNode type ### Removed - Obsolete example files ### Added - Explicit settings handler ### Changed - Used explicit OmniGraph test handler base classes ## [1.24.0] - 2022-04-27 ### Added - *GraphController.set_variable_default_value* - *GraphController.get_variable_default_value* - *ObjectLookup.variable* - *GraphContext.get_graph_target* ## [1.23.0] - 2022-04-25 ### Added - Added a test to confirm that all version references in omni.graph.* match ## [1.22.2] - 2022-04-20 ### Fixed - Undoing the deletion of a connection's src prim will now restore the connection on undo. ## [1.22.1] - 2022-04-18 ### Changed - og.Attribute will now raise an exception when methods are called when in an invalid state. ## [1.22.0] - 2022-04-11 ### Fixed - Moved Py_Node and Py_Graph callback lists to static storage where they won't be destroyed prematurely. - Callback objects now get destroyed when the extension is unloaded. ## [1.21.1] - 2022-04-05 ### Fixed - Added hash check to avoid overwriting ogn/tests/__init__.py when it hasn't changed - Fix deprecated generator of ogn/tests/__init__.py to generate a safer, non-changing version ## [1.21.0] - 2022-03-31 ### Added - `IConstBundle2`, `IBundle2` and `IBundleFactory` interface python bindings. - Unit tests for bundle interfaces ## [1.20.1] - 2022-03-24 ### Fixed - Fixed location of live-generation of USD files from .ogn - Fixed contents of the generated tests/__init__.py file ### [1.20.0] - 2022-03-23 ### Added - *GraphEvent.CREATE_VARIABLE* and *GraphEvent.REMOVE_VARIABLE* event types - *Graph.get_event_stream()* ## [1.19.0] - 2022-03-18 ### Added - Added command to set variable tooltip ## [1.18.0] - 2022-03-16 ### Added - support for *enableLegacyPrimConnection* setting to test utils ## [1.17.1] - 2022-03-14 ### Fixed - Corrected creation of implicit graphs that were not at the root path - Added tests for such graphs and a graph in a layer ## [1.17.0] - 2022-03-11 ### Added - *Node.get_backing_bucket_id()* - *GraphContext.write_bucket_to_backing()* ## [1.16.0] - 2022-03-01 ### Added - *expected_error.ExpectedError* (moved from omni.graph.test) ### Changed - Updated OmniGraphTestCase and derived classes to use *test_case_class* ## [1.15.0] - 2022-02-16 ### Added - Added commands to create and remove variables ## [1.14.0] - 2022-02-11 ### Added - *Attribute.register_value_changed_callback* - *Database.get_variable* - *Database.set_variable* - *Controller.keys.CREATE_VARIABLES* - *GraphController.create_variable* ## [1.13.0] - 2022-02-10 ### Added - Added support for migration of old graphs to use schema prims ## [1.12.2] - 2022-02-07 ### Changed - Moved carb logging out of database.py and into Node::logComputeMessage. - Fall back to old localized logging for Python nodes which don't yet support the compute message logging ABI. ## [1.12.1] - 2022-02-04 ### Fixed - Compute counts weren't working for Python nodes - Compute messages from Python nodes weren't visible in the graph editors ## [1.12.0] - 2022-01-28 ### Added - Support for WritePrim creation in *GraphController.expose_prims* ## [1.11.0] - 2022-01-29 ### Changed - Reflecting change of omni.graph.core from 2.11 -> 2.12 ## [1.10.0] - 2022-01-27 ### Added - *ObjectLookup.usd_attribute* ## [1.9.0] - 2022-01-21 ### Added - *Node.log_compute_message* - *Node.get_compute_messages* - *Node.clear_old_compute_messages* - *Graph.register_error_status_change_callback* - *Graph.deregister_error_status_change_callback* - *Severity* enum ## [1.8.0] - 2021-12-17 ### Added - Added *NodeType.get_all_categories_* - Added *get_node_categories_interface* - Created binding class *NodeCategories* ## [1.7.0] - 2021-12-15 ### Added - Added _NodeType::isValid_ and cast to bool - Added _Controller_ class - Added _GraphController_ class ## [1.6.0] - 2021-12-06 ### Added - og.NodeEvent.ATTRIBUTE_TYPE_RESOLVE ## [1.5.2] - 2021-12-03 ### Added - Node, Attribute, AttributeData, Graph, and Type objects are now hashable in Python, meaning that they can be used in sets, as keys in dicts, etc. ### Fixed - Comparing Node and Graph objects for equality in Python now compare the actual objects referenced rather than the wrappers which hold the references - Comparing Attribute and AttributeData objects to None in Python no longer generates an exception. ## [1.5.0] - 2021-12-01 - Added functions to get extension versions for core and tools - Added cascading Python node registration process, that auto-generates when out of date - Added user cache location for live regeneration of nodes ## [1.4.0] - 2021-11-26 ### Added - Python Api `Graph.get_parent_graph` ### Fixed - Fix failure when disconnecting a connection from a subgraph node to the parent graph node ## [1.3.2] - 2021-11-24 ### Changed - Generated python nodes will emit info instead of warning when inputs are unresolved ## [1.3.1] - 2021-11-22 ### Changed - Improved error messages from wrapped functions ## [1.3.0] - 2021-11-19 ### Added - __bool__ operators added to all returned OG Objects. So `if node:` is equivalent to `if node.is_valid():` ### Changed - Bug fix in Graph getter methods ## [1.2.0] - 2021-11-10 ### Added - `og.get_node_by_path` - `get_graph_by_path`, `get_node_by_path` now return None on failure ## [1.1.0] - 2021-10-17 ### Added - og.get_graph_by_path ## [1.0.0] - 2021-10-17 ### Initial Version - Started changelog with current version of omni.graph
omniverse-code/kit/exts/omni.graph/docs/python_api.rst
.. _omnigraph_python_api: OmniGraph Python API Documentation ********************************** .. automodule:: omni.graph.core :platform: Windows-x86_64, Linux-x86_64, Linux-aarch64 :members: :undoc-members: :imported-members:
omniverse-code/kit/exts/omni.graph/docs/README.md
# OmniGraph [omni.graph] This extension provides the Python bindings, script support, data files, and other non-core support for the OmniGraph implementation extension `omni.graph.core`. It behaves as an addition to that extension, so you will still use the Python import path `omni.graph.core` for scripts in this directory.
omniverse-code/kit/exts/omni.graph/docs/index.rst
.. _omnigraph_python_scripting: OmniGraph Python Scripting ########################## .. tabularcolumns:: |L|R| .. csv-table:: :width: 100% **Extension**: omni.graph,**Documentation Generated**: |today| While the core part of OmniGraph is built in C++ there are Python bindings and scripts built on top of it to make it easier to work with. Importing --------- The Python interface is exposed in a consistent way so that you can easily find any of the OmniGraph scripting information. Any script can start with this simple import, in the spirit of how popular packages such as `numpy` and `pandas` work: .. code-block:: python import omni.graph.core as og Using this module you can access internal documentation through the usual Python mechanisms: .. code-block:: python help(og) Bindings -------- The first level of support is the :doc:`Python Bindings<omni.graph.core.bindings>` which provide a wrapper on top of the C++ ABI of the OmniGraph core. These have been made available from the same import to make user of all OmniGraph functionality consistent. When you are programming in Python you really don't need to be aware of the C++ underpinnings. The bound functions have all of the same documentation available at runtime so they can be inspected in the same way you would work with any regular Pythyon scripts. For the most part the bindings follow the C++ ABI closely, with the minor exception of using the standard PEP8 naming conventions rather than the established C++ naming conventions. For example a C++ ABI function `getAttributeType` will be named `get_attribute_type` in the Python binding. This was primarily done to deemphasize the boundary between Python and C++ so that Python writers can stick with Python conventions and C++ writers can stick with C++ conventions. As the Python world doesn't have the C++ concept of an interface definition there is no separation between the objects providing the functionality and the objects storing the implementation and data. For example in C++ you would have an `AttributeObj` which contains a handle to the internal data and a reference to the `IAttribute` interface definition. In Python you only have the `og.Attribute` object which encapsulates both. You can see the online version of the Python documentation at :ref:`omnigraph_python_api`. The One Thing You Need ---------------------- A lot of the imported submodules and functions available are used internally by generated code and you won't have much occasion to use them. You can explore the internal documentation to see if any look useful to you. The naming was intentionally made verbose so that it's easier to discover functionality. .. _ogn_omnigraph_controller: One class deserves special attention though, as it is quite useful for interacting with the OmniGraph. .. code-block:: python import omni.graph.core as og controller = og.Controller() The `Controller` class provides functionality for you to change the graph topology, or modify and inspect values within the graph. .. literalinclude:: ../python/_impl/controller.py :language: python :start-after: begin-controller-docs :end-before: end-controller-docs See the internal documentation at :py:class:`omni.graph.core.Controller` for details, or take a tour of how to use the controller with :ref:`this how-to documentation<howto_omnigraph_controller>` .. toctree:: :maxdepth: 1 :caption: Contents OmniGraph Commands <commands> How-To Guides<../../omni.graph.core/docs/how_to.rst> running_one_script Python API <python_api> omni.graph.core.bindings autonode How versions are updated <../../omni.graph.core/docs/versioning> controller runtimeInitialize testing CHANGELOG
omniverse-code/kit/exts/omni.graph/docs/Overview.md
# OmniGraph Python Scripting ```{csv-table} **Extension**: omni.graph,**Documentation Generated**: {sub-ref}`today` ``` While the core part of OmniGraph is built in C++ there are Python bindings and scripts built on top of it to make it easier to work with. ## Importing The Python interface is exposed in a consistent way so that you can easily find any of the OmniGraph scripting information. Any script can start with this simple import, in the spirit of how popular packages such as `numpy` and `pandas` work: ```python import omni.graph.core as og ``` Using this module you can access internal documentation through the usual Python mechanisms: ```python help(og) ``` ## Bindings The first level of support is the [Python Bindings](omni.graph.core.bindings) which provide a wrapper on top of the C++ ABI of the OmniGraph core. These have been made available from the same import to make user of all OmniGraph functionality consistent. When you are programming in Python you really don't need to be aware of the C++ underpinnings. The bound functions have all of the same documentation available at runtime so they can be inspected in the same way you would work with any regular Pythyon scripts. For the most part the bindings follow the C++ ABI closely, with the minor exception of using the standard PEP8 naming conventions rather than the established C++ naming conventions. For example a C++ ABI function `getAttributeType` will be named `get_attribute_type` in the Python binding. This was primarily done to deemphasize the boundary between Python and C++ so that Python writers can stick with Python conventions and C++ writers can stick with C++ conventions. As the Python world doesn't have the C++ concept of an interface definition there is no separation between the objects providing the functionality and the objects storing the implementation and data. For example in C++ you would have an `AttributeObj` which contains a handle to the internal data and a reference to the `IAttribute` interface definition. In Python you only have the `og.Attribute` object which encapsulates both. You can see the online version of the Python documentation at {doc}`API`. ## The One Thing You Need A lot of the imported submodules and functions available are used internally by generated code and you won't have much occasion to use them. You can explore the internal documentation to see if any look useful to you. The naming was intentionally made verbose so that it's easier to discover functionality. (ogn_omnigraph_controller)= One class deserves special attention though, as it is quite useful for interacting with the OmniGraph. ```python import omni.graph.core as og controller = og.Controller() ``` The `Controller` class provides functionality for you to change the graph topology, or modify and inspect values within the graph. ```{literalinclude} ../../../../source/extensions/omni.graph/python/_impl/controller.py --- language: python start-after: begin-controller-docs end-before: end-controller-docs --- ``` See the internal documentation at {py:class}`omni.graph.core.Controller` for details, or take a tour of how to use the controller with {ref}`this how-to documentation<howto_omnigraph_controller>` - [](commands) - [How to guides](../../omni.graph.core/latest/how_to.html) - [](running_one_script) - [](API) - [](omni.graph.core.bindings) - [](autonode) - [How versions are updated](../../omni.graph.core/latest/versioning.html) - [](controller) - [](runtimeInitialize) - [](testing) - [](CHANGELOG)
omniverse-code/kit/exts/omni.graph/data/ExampleThreeDeformersDirtyPush.usda
#usda 1.0 def "World" { def Mesh "inputGrid" { uniform bool doubleSided = 1 int[] faceVertexCounts = [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 1, 33, 0, 33, 32, 1, 2, 34, 1, 34, 33, 2, 3, 35, 2, 35, 34, 3, 4, 36, 3, 36, 35, 4, 5, 37, 4, 37, 36, 5, 6, 38, 5, 38, 37, 6, 7, 39, 6, 39, 38, 7, 8, 40, 7, 40, 39, 8, 9, 41, 8, 41, 40, 9, 10, 42, 9, 42, 41, 10, 11, 43, 10, 43, 42, 11, 12, 44, 11, 44, 43, 12, 13, 45, 12, 45, 44, 13, 14, 46, 13, 46, 45, 14, 15, 47, 14, 47, 46, 15, 16, 48, 15, 48, 47, 16, 17, 49, 16, 49, 48, 17, 18, 50, 17, 50, 49, 18, 19, 51, 18, 51, 50, 19, 20, 52, 19, 52, 51, 20, 21, 53, 20, 53, 52, 21, 22, 54, 21, 54, 53, 22, 23, 55, 22, 55, 54, 23, 24, 56, 23, 56, 55, 24, 25, 57, 24, 57, 56, 25, 26, 58, 25, 58, 57, 26, 27, 59, 26, 59, 58, 27, 28, 60, 27, 60, 59, 28, 29, 61, 28, 61, 60, 29, 30, 62, 29, 62, 61, 30, 31, 63, 30, 63, 62, 32, 33, 65, 32, 65, 64, 33, 34, 66, 33, 66, 65, 34, 35, 67, 34, 67, 66, 35, 36, 68, 35, 68, 67, 36, 37, 69, 36, 69, 68, 37, 38, 70, 37, 70, 69, 38, 39, 71, 38, 71, 70, 39, 40, 72, 39, 72, 71, 40, 41, 73, 40, 73, 72, 41, 42, 74, 41, 74, 73, 42, 43, 75, 42, 75, 74, 43, 44, 76, 43, 76, 75, 44, 45, 77, 44, 77, 76, 45, 46, 78, 45, 78, 77, 46, 47, 79, 46, 79, 78, 47, 48, 80, 47, 80, 79, 48, 49, 81, 48, 81, 80, 49, 50, 82, 49, 82, 81, 50, 51, 83, 50, 83, 82, 51, 52, 84, 51, 84, 83, 52, 53, 85, 52, 85, 84, 53, 54, 86, 53, 86, 85, 54, 55, 87, 54, 87, 86, 55, 56, 88, 55, 88, 87, 56, 57, 89, 56, 89, 88, 57, 58, 90, 57, 90, 89, 58, 59, 91, 58, 91, 90, 59, 60, 92, 59, 92, 91, 60, 61, 93, 60, 93, 92, 61, 62, 94, 61, 94, 93, 62, 63, 95, 62, 95, 94, 64, 65, 97, 64, 97, 96, 65, 66, 98, 65, 98, 97, 66, 67, 99, 66, 99, 98, 67, 68, 100, 67, 100, 99, 68, 69, 101, 68, 101, 100, 69, 70, 102, 69, 102, 101, 70, 71, 103, 70, 103, 102, 71, 72, 104, 71, 104, 103, 72, 73, 105, 72, 105, 104, 73, 74, 106, 73, 106, 105, 74, 75, 107, 74, 107, 106, 75, 76, 108, 75, 108, 107, 76, 77, 109, 76, 109, 108, 77, 78, 110, 77, 110, 109, 78, 79, 111, 78, 111, 110, 79, 80, 112, 79, 112, 111, 80, 81, 113, 80, 113, 112, 81, 82, 114, 81, 114, 113, 82, 83, 115, 82, 115, 114, 83, 84, 116, 83, 116, 115, 84, 85, 117, 84, 117, 116, 85, 86, 118, 85, 118, 117, 86, 87, 119, 86, 119, 118, 87, 88, 120, 87, 120, 119, 88, 89, 121, 88, 121, 120, 89, 90, 122, 89, 122, 121, 90, 91, 123, 90, 123, 122, 91, 92, 124, 91, 124, 123, 92, 93, 125, 92, 125, 124, 93, 94, 126, 93, 126, 125, 94, 95, 127, 94, 127, 126, 96, 97, 129, 96, 129, 128, 97, 98, 130, 97, 130, 129, 98, 99, 131, 98, 131, 130, 99, 100, 132, 99, 132, 131, 100, 101, 133, 100, 133, 132, 101, 102, 134, 101, 134, 133, 102, 103, 135, 102, 135, 134, 103, 104, 136, 103, 136, 135, 104, 105, 137, 104, 137, 136, 105, 106, 138, 105, 138, 137, 106, 107, 139, 106, 139, 138, 107, 108, 140, 107, 140, 139, 108, 109, 141, 108, 141, 140, 109, 110, 142, 109, 142, 141, 110, 111, 143, 110, 143, 142, 111, 112, 144, 111, 144, 143, 112, 113, 145, 112, 145, 144, 113, 114, 146, 113, 146, 145, 114, 115, 147, 114, 147, 146, 115, 116, 148, 115, 148, 147, 116, 117, 149, 116, 149, 148, 117, 118, 150, 117, 150, 149, 118, 119, 151, 118, 151, 150, 119, 120, 152, 119, 152, 151, 120, 121, 153, 120, 153, 152, 121, 122, 154, 121, 154, 153, 122, 123, 155, 122, 155, 154, 123, 124, 156, 123, 156, 155, 124, 125, 157, 124, 157, 156, 125, 126, 158, 125, 158, 157, 126, 127, 159, 126, 159, 158, 128, 129, 161, 128, 161, 160, 129, 130, 162, 129, 162, 161, 130, 131, 163, 130, 163, 162, 131, 132, 164, 131, 164, 163, 132, 133, 165, 132, 165, 164, 133, 134, 166, 133, 166, 165, 134, 135, 167, 134, 167, 166, 135, 136, 168, 135, 168, 167, 136, 137, 169, 136, 169, 168, 137, 138, 170, 137, 170, 169, 138, 139, 171, 138, 171, 170, 139, 140, 172, 139, 172, 171, 140, 141, 173, 140, 173, 172, 141, 142, 174, 141, 174, 173, 142, 143, 175, 142, 175, 174, 143, 144, 176, 143, 176, 175, 144, 145, 177, 144, 177, 176, 145, 146, 178, 145, 178, 177, 146, 147, 179, 146, 179, 178, 147, 148, 180, 147, 180, 179, 148, 149, 181, 148, 181, 180, 149, 150, 182, 149, 182, 181, 150, 151, 183, 150, 183, 182, 151, 152, 184, 151, 184, 183, 152, 153, 185, 152, 185, 184, 153, 154, 186, 153, 186, 185, 154, 155, 187, 154, 187, 186, 155, 156, 188, 155, 188, 187, 156, 157, 189, 156, 189, 188, 157, 158, 190, 157, 190, 189, 158, 159, 191, 158, 191, 190, 160, 161, 193, 160, 193, 192, 161, 162, 194, 161, 194, 193, 162, 163, 195, 162, 195, 194, 163, 164, 196, 163, 196, 195, 164, 165, 197, 164, 197, 196, 165, 166, 198, 165, 198, 197, 166, 167, 199, 166, 199, 198, 167, 168, 200, 167, 200, 199, 168, 169, 201, 168, 201, 200, 169, 170, 202, 169, 202, 201, 170, 171, 203, 170, 203, 202, 171, 172, 204, 171, 204, 203, 172, 173, 205, 172, 205, 204, 173, 174, 206, 173, 206, 205, 174, 175, 207, 174, 207, 206, 175, 176, 208, 175, 208, 207, 176, 177, 209, 176, 209, 208, 177, 178, 210, 177, 210, 209, 178, 179, 211, 178, 211, 210, 179, 180, 212, 179, 212, 211, 180, 181, 213, 180, 213, 212, 181, 182, 214, 181, 214, 213, 182, 183, 215, 182, 215, 214, 183, 184, 216, 183, 216, 215, 184, 185, 217, 184, 217, 216, 185, 186, 218, 185, 218, 217, 186, 187, 219, 186, 219, 218, 187, 188, 220, 187, 220, 219, 188, 189, 221, 188, 221, 220, 189, 190, 222, 189, 222, 221, 190, 191, 223, 190, 223, 222, 192, 193, 225, 192, 225, 224, 193, 194, 226, 193, 226, 225, 194, 195, 227, 194, 227, 226, 195, 196, 228, 195, 228, 227, 196, 197, 229, 196, 229, 228, 197, 198, 230, 197, 230, 229, 198, 199, 231, 198, 231, 230, 199, 200, 232, 199, 232, 231, 200, 201, 233, 200, 233, 232, 201, 202, 234, 201, 234, 233, 202, 203, 235, 202, 235, 234, 203, 204, 236, 203, 236, 235, 204, 205, 237, 204, 237, 236, 205, 206, 238, 205, 238, 237, 206, 207, 239, 206, 239, 238, 207, 208, 240, 207, 240, 239, 208, 209, 241, 208, 241, 240, 209, 210, 242, 209, 242, 241, 210, 211, 243, 210, 243, 242, 211, 212, 244, 211, 244, 243, 212, 213, 245, 212, 245, 244, 213, 214, 246, 213, 246, 245, 214, 215, 247, 214, 247, 246, 215, 216, 248, 215, 248, 247, 216, 217, 249, 216, 249, 248, 217, 218, 250, 217, 250, 249, 218, 219, 251, 218, 251, 250, 219, 220, 252, 219, 252, 251, 220, 221, 253, 220, 253, 252, 221, 222, 254, 221, 254, 253, 222, 223, 255, 222, 255, 254, 224, 225, 257, 224, 257, 256, 225, 226, 258, 225, 258, 257, 226, 227, 259, 226, 259, 258, 227, 228, 260, 227, 260, 259, 228, 229, 261, 228, 261, 260, 229, 230, 262, 229, 262, 261, 230, 231, 263, 230, 263, 262, 231, 232, 264, 231, 264, 263, 232, 233, 265, 232, 265, 264, 233, 234, 266, 233, 266, 265, 234, 235, 267, 234, 267, 266, 235, 236, 268, 235, 268, 267, 236, 237, 269, 236, 269, 268, 237, 238, 270, 237, 270, 269, 238, 239, 271, 238, 271, 270, 239, 240, 272, 239, 272, 271, 240, 241, 273, 240, 273, 272, 241, 242, 274, 241, 274, 273, 242, 243, 275, 242, 275, 274, 243, 244, 276, 243, 276, 275, 244, 245, 277, 244, 277, 276, 245, 246, 278, 245, 278, 277, 246, 247, 279, 246, 279, 278, 247, 248, 280, 247, 280, 279, 248, 249, 281, 248, 281, 280, 249, 250, 282, 249, 282, 281, 250, 251, 283, 250, 283, 282, 251, 252, 284, 251, 284, 283, 252, 253, 285, 252, 285, 284, 253, 254, 286, 253, 286, 285, 254, 255, 287, 254, 287, 286, 256, 257, 289, 256, 289, 288, 257, 258, 290, 257, 290, 289, 258, 259, 291, 258, 291, 290, 259, 260, 292, 259, 292, 291, 260, 261, 293, 260, 293, 292, 261, 262, 294, 261, 294, 293, 262, 263, 295, 262, 295, 294, 263, 264, 296, 263, 296, 295, 264, 265, 297, 264, 297, 296, 265, 266, 298, 265, 298, 297, 266, 267, 299, 266, 299, 298, 267, 268, 300, 267, 300, 299, 268, 269, 301, 268, 301, 300, 269, 270, 302, 269, 302, 301, 270, 271, 303, 270, 303, 302, 271, 272, 304, 271, 304, 303, 272, 273, 305, 272, 305, 304, 273, 274, 306, 273, 306, 305, 274, 275, 307, 274, 307, 306, 275, 276, 308, 275, 308, 307, 276, 277, 309, 276, 309, 308, 277, 278, 310, 277, 310, 309, 278, 279, 311, 278, 311, 310, 279, 280, 312, 279, 312, 311, 280, 281, 313, 280, 313, 312, 281, 282, 314, 281, 314, 313, 282, 283, 315, 282, 315, 314, 283, 284, 316, 283, 316, 315, 284, 285, 317, 284, 317, 316, 285, 286, 318, 285, 318, 317, 286, 287, 319, 286, 319, 318, 288, 289, 321, 288, 321, 320, 289, 290, 322, 289, 322, 321, 290, 291, 323, 290, 323, 322, 291, 292, 324, 291, 324, 323, 292, 293, 325, 292, 325, 324, 293, 294, 326, 293, 326, 325, 294, 295, 327, 294, 327, 326, 295, 296, 328, 295, 328, 327, 296, 297, 329, 296, 329, 328, 297, 298, 330, 297, 330, 329, 298, 299, 331, 298, 331, 330, 299, 300, 332, 299, 332, 331, 300, 301, 333, 300, 333, 332, 301, 302, 334, 301, 334, 333, 302, 303, 335, 302, 335, 334, 303, 304, 336, 303, 336, 335, 304, 305, 337, 304, 337, 336, 305, 306, 338, 305, 338, 337, 306, 307, 339, 306, 339, 338, 307, 308, 340, 307, 340, 339, 308, 309, 341, 308, 341, 340, 309, 310, 342, 309, 342, 341, 310, 311, 343, 310, 343, 342, 311, 312, 344, 311, 344, 343, 312, 313, 345, 312, 345, 344, 313, 314, 346, 313, 346, 345, 314, 315, 347, 314, 347, 346, 315, 316, 348, 315, 348, 347, 316, 317, 349, 316, 349, 348, 317, 318, 350, 317, 350, 349, 318, 319, 351, 318, 351, 350, 320, 321, 353, 320, 353, 352, 321, 322, 354, 321, 354, 353, 322, 323, 355, 322, 355, 354, 323, 324, 356, 323, 356, 355, 324, 325, 357, 324, 357, 356, 325, 326, 358, 325, 358, 357, 326, 327, 359, 326, 359, 358, 327, 328, 360, 327, 360, 359, 328, 329, 361, 328, 361, 360, 329, 330, 362, 329, 362, 361, 330, 331, 363, 330, 363, 362, 331, 332, 364, 331, 364, 363, 332, 333, 365, 332, 365, 364, 333, 334, 366, 333, 366, 365, 334, 335, 367, 334, 367, 366, 335, 336, 368, 335, 368, 367, 336, 337, 369, 336, 369, 368, 337, 338, 370, 337, 370, 369, 338, 339, 371, 338, 371, 370, 339, 340, 372, 339, 372, 371, 340, 341, 373, 340, 373, 372, 341, 342, 374, 341, 374, 373, 342, 343, 375, 342, 375, 374, 343, 344, 376, 343, 376, 375, 344, 345, 377, 344, 377, 376, 345, 346, 378, 345, 378, 377, 346, 347, 379, 346, 379, 378, 347, 348, 380, 347, 380, 379, 348, 349, 381, 348, 381, 380, 349, 350, 382, 349, 382, 381, 350, 351, 383, 350, 383, 382, 352, 353, 385, 352, 385, 384, 353, 354, 386, 353, 386, 385, 354, 355, 387, 354, 387, 386, 355, 356, 388, 355, 388, 387, 356, 357, 389, 356, 389, 388, 357, 358, 390, 357, 390, 389, 358, 359, 391, 358, 391, 390, 359, 360, 392, 359, 392, 391, 360, 361, 393, 360, 393, 392, 361, 362, 394, 361, 394, 393, 362, 363, 395, 362, 395, 394, 363, 364, 396, 363, 396, 395, 364, 365, 397, 364, 397, 396, 365, 366, 398, 365, 398, 397, 366, 367, 399, 366, 399, 398, 367, 368, 400, 367, 400, 399, 368, 369, 401, 368, 401, 400, 369, 370, 402, 369, 402, 401, 370, 371, 403, 370, 403, 402, 371, 372, 404, 371, 404, 403, 372, 373, 405, 372, 405, 404, 373, 374, 406, 373, 406, 405, 374, 375, 407, 374, 407, 406, 375, 376, 408, 375, 408, 407, 376, 377, 409, 376, 409, 408, 377, 378, 410, 377, 410, 409, 378, 379, 411, 378, 411, 410, 379, 380, 412, 379, 412, 411, 380, 381, 413, 380, 413, 412, 381, 382, 414, 381, 414, 413, 382, 383, 415, 382, 415, 414, 384, 385, 417, 384, 417, 416, 385, 386, 418, 385, 418, 417, 386, 387, 419, 386, 419, 418, 387, 388, 420, 387, 420, 419, 388, 389, 421, 388, 421, 420, 389, 390, 422, 389, 422, 421, 390, 391, 423, 390, 423, 422, 391, 392, 424, 391, 424, 423, 392, 393, 425, 392, 425, 424, 393, 394, 426, 393, 426, 425, 394, 395, 427, 394, 427, 426, 395, 396, 428, 395, 428, 427, 396, 397, 429, 396, 429, 428, 397, 398, 430, 397, 430, 429, 398, 399, 431, 398, 431, 430, 399, 400, 432, 399, 432, 431, 400, 401, 433, 400, 433, 432, 401, 402, 434, 401, 434, 433, 402, 403, 435, 402, 435, 434, 403, 404, 436, 403, 436, 435, 404, 405, 437, 404, 437, 436, 405, 406, 438, 405, 438, 437, 406, 407, 439, 406, 439, 438, 407, 408, 440, 407, 440, 439, 408, 409, 441, 408, 441, 440, 409, 410, 442, 409, 442, 441, 410, 411, 443, 410, 443, 442, 411, 412, 444, 411, 444, 443, 412, 413, 445, 412, 445, 444, 413, 414, 446, 413, 446, 445, 414, 415, 447, 414, 447, 446, 416, 417, 449, 416, 449, 448, 417, 418, 450, 417, 450, 449, 418, 419, 451, 418, 451, 450, 419, 420, 452, 419, 452, 451, 420, 421, 453, 420, 453, 452, 421, 422, 454, 421, 454, 453, 422, 423, 455, 422, 455, 454, 423, 424, 456, 423, 456, 455, 424, 425, 457, 424, 457, 456, 425, 426, 458, 425, 458, 457, 426, 427, 459, 426, 459, 458, 427, 428, 460, 427, 460, 459, 428, 429, 461, 428, 461, 460, 429, 430, 462, 429, 462, 461, 430, 431, 463, 430, 463, 462, 431, 432, 464, 431, 464, 463, 432, 433, 465, 432, 465, 464, 433, 434, 466, 433, 466, 465, 434, 435, 467, 434, 467, 466, 435, 436, 468, 435, 468, 467, 436, 437, 469, 436, 469, 468, 437, 438, 470, 437, 470, 469, 438, 439, 471, 438, 471, 470, 439, 440, 472, 439, 472, 471, 440, 441, 473, 440, 473, 472, 441, 442, 474, 441, 474, 473, 442, 443, 475, 442, 475, 474, 443, 444, 476, 443, 476, 475, 444, 445, 477, 444, 477, 476, 445, 446, 478, 445, 478, 477, 446, 447, 479, 446, 479, 478, 448, 449, 481, 448, 481, 480, 449, 450, 482, 449, 482, 481, 450, 451, 483, 450, 483, 482, 451, 452, 484, 451, 484, 483, 452, 453, 485, 452, 485, 484, 453, 454, 486, 453, 486, 485, 454, 455, 487, 454, 487, 486, 455, 456, 488, 455, 488, 487, 456, 457, 489, 456, 489, 488, 457, 458, 490, 457, 490, 489, 458, 459, 491, 458, 491, 490, 459, 460, 492, 459, 492, 491, 460, 461, 493, 460, 493, 492, 461, 462, 494, 461, 494, 493, 462, 463, 495, 462, 495, 494, 463, 464, 496, 463, 496, 495, 464, 465, 497, 464, 497, 496, 465, 466, 498, 465, 498, 497, 466, 467, 499, 466, 499, 498, 467, 468, 500, 467, 500, 499, 468, 469, 501, 468, 501, 500, 469, 470, 502, 469, 502, 501, 470, 471, 503, 470, 503, 502, 471, 472, 504, 471, 504, 503, 472, 473, 505, 472, 505, 504, 473, 474, 506, 473, 506, 505, 474, 475, 507, 474, 507, 506, 475, 476, 508, 475, 508, 507, 476, 477, 509, 476, 509, 508, 477, 478, 510, 477, 510, 509, 478, 479, 511, 478, 511, 510, 480, 481, 513, 480, 513, 512, 481, 482, 514, 481, 514, 513, 482, 483, 515, 482, 515, 514, 483, 484, 516, 483, 516, 515, 484, 485, 517, 484, 517, 516, 485, 486, 518, 485, 518, 517, 486, 487, 519, 486, 519, 518, 487, 488, 520, 487, 520, 519, 488, 489, 521, 488, 521, 520, 489, 490, 522, 489, 522, 521, 490, 491, 523, 490, 523, 522, 491, 492, 524, 491, 524, 523, 492, 493, 525, 492, 525, 524, 493, 494, 526, 493, 526, 525, 494, 495, 527, 494, 527, 526, 495, 496, 528, 495, 528, 527, 496, 497, 529, 496, 529, 528, 497, 498, 530, 497, 530, 529, 498, 499, 531, 498, 531, 530, 499, 500, 532, 499, 532, 531, 500, 501, 533, 500, 533, 532, 501, 502, 534, 501, 534, 533, 502, 503, 535, 502, 535, 534, 503, 504, 536, 503, 536, 535, 504, 505, 537, 504, 537, 536, 505, 506, 538, 505, 538, 537, 506, 507, 539, 506, 539, 538, 507, 508, 540, 507, 540, 539, 508, 509, 541, 508, 541, 540, 509, 510, 542, 509, 542, 541, 510, 511, 543, 510, 543, 542, 512, 513, 545, 512, 545, 544, 513, 514, 546, 513, 546, 545, 514, 515, 547, 514, 547, 546, 515, 516, 548, 515, 548, 547, 516, 517, 549, 516, 549, 548, 517, 518, 550, 517, 550, 549, 518, 519, 551, 518, 551, 550, 519, 520, 552, 519, 552, 551, 520, 521, 553, 520, 553, 552, 521, 522, 554, 521, 554, 553, 522, 523, 555, 522, 555, 554, 523, 524, 556, 523, 556, 555, 524, 525, 557, 524, 557, 556, 525, 526, 558, 525, 558, 557, 526, 527, 559, 526, 559, 558, 527, 528, 560, 527, 560, 559, 528, 529, 561, 528, 561, 560, 529, 530, 562, 529, 562, 561, 530, 531, 563, 530, 563, 562, 531, 532, 564, 531, 564, 563, 532, 533, 565, 532, 565, 564, 533, 534, 566, 533, 566, 565, 534, 535, 567, 534, 567, 566, 535, 536, 568, 535, 568, 567, 536, 537, 569, 536, 569, 568, 537, 538, 570, 537, 570, 569, 538, 539, 571, 538, 571, 570, 539, 540, 572, 539, 572, 571, 540, 541, 573, 540, 573, 572, 541, 542, 574, 541, 574, 573, 542, 543, 575, 542, 575, 574, 544, 545, 577, 544, 577, 576, 545, 546, 578, 545, 578, 577, 546, 547, 579, 546, 579, 578, 547, 548, 580, 547, 580, 579, 548, 549, 581, 548, 581, 580, 549, 550, 582, 549, 582, 581, 550, 551, 583, 550, 583, 582, 551, 552, 584, 551, 584, 583, 552, 553, 585, 552, 585, 584, 553, 554, 586, 553, 586, 585, 554, 555, 587, 554, 587, 586, 555, 556, 588, 555, 588, 587, 556, 557, 589, 556, 589, 588, 557, 558, 590, 557, 590, 589, 558, 559, 591, 558, 591, 590, 559, 560, 592, 559, 592, 591, 560, 561, 593, 560, 593, 592, 561, 562, 594, 561, 594, 593, 562, 563, 595, 562, 595, 594, 563, 564, 596, 563, 596, 595, 564, 565, 597, 564, 597, 596, 565, 566, 598, 565, 598, 597, 566, 567, 599, 566, 599, 598, 567, 568, 600, 567, 600, 599, 568, 569, 601, 568, 601, 600, 569, 570, 602, 569, 602, 601, 570, 571, 603, 570, 603, 602, 571, 572, 604, 571, 604, 603, 572, 573, 605, 572, 605, 604, 573, 574, 606, 573, 606, 605, 574, 575, 607, 574, 607, 606, 576, 577, 609, 576, 609, 608, 577, 578, 610, 577, 610, 609, 578, 579, 611, 578, 611, 610, 579, 580, 612, 579, 612, 611, 580, 581, 613, 580, 613, 612, 581, 582, 614, 581, 614, 613, 582, 583, 615, 582, 615, 614, 583, 584, 616, 583, 616, 615, 584, 585, 617, 584, 617, 616, 585, 586, 618, 585, 618, 617, 586, 587, 619, 586, 619, 618, 587, 588, 620, 587, 620, 619, 588, 589, 621, 588, 621, 620, 589, 590, 622, 589, 622, 621, 590, 591, 623, 590, 623, 622, 591, 592, 624, 591, 624, 623, 592, 593, 625, 592, 625, 624, 593, 594, 626, 593, 626, 625, 594, 595, 627, 594, 627, 626, 595, 596, 628, 595, 628, 627, 596, 597, 629, 596, 629, 628, 597, 598, 630, 597, 630, 629, 598, 599, 631, 598, 631, 630, 599, 600, 632, 599, 632, 631, 600, 601, 633, 600, 633, 632, 601, 602, 634, 601, 634, 633, 602, 603, 635, 602, 635, 634, 603, 604, 636, 603, 636, 635, 604, 605, 637, 604, 637, 636, 605, 606, 638, 605, 638, 637, 606, 607, 639, 606, 639, 638, 608, 609, 641, 608, 641, 640, 609, 610, 642, 609, 642, 641, 610, 611, 643, 610, 643, 642, 611, 612, 644, 611, 644, 643, 612, 613, 645, 612, 645, 644, 613, 614, 646, 613, 646, 645, 614, 615, 647, 614, 647, 646, 615, 616, 648, 615, 648, 647, 616, 617, 649, 616, 649, 648, 617, 618, 650, 617, 650, 649, 618, 619, 651, 618, 651, 650, 619, 620, 652, 619, 652, 651, 620, 621, 653, 620, 653, 652, 621, 622, 654, 621, 654, 653, 622, 623, 655, 622, 655, 654, 623, 624, 656, 623, 656, 655, 624, 625, 657, 624, 657, 656, 625, 626, 658, 625, 658, 657, 626, 627, 659, 626, 659, 658, 627, 628, 660, 627, 660, 659, 628, 629, 661, 628, 661, 660, 629, 630, 662, 629, 662, 661, 630, 631, 663, 630, 663, 662, 631, 632, 664, 631, 664, 663, 632, 633, 665, 632, 665, 664, 633, 634, 666, 633, 666, 665, 634, 635, 667, 634, 667, 666, 635, 636, 668, 635, 668, 667, 636, 637, 669, 636, 669, 668, 637, 638, 670, 637, 670, 669, 638, 639, 671, 638, 671, 670, 640, 641, 673, 640, 673, 672, 641, 642, 674, 641, 674, 673, 642, 643, 675, 642, 675, 674, 643, 644, 676, 643, 676, 675, 644, 645, 677, 644, 677, 676, 645, 646, 678, 645, 678, 677, 646, 647, 679, 646, 679, 678, 647, 648, 680, 647, 680, 679, 648, 649, 681, 648, 681, 680, 649, 650, 682, 649, 682, 681, 650, 651, 683, 650, 683, 682, 651, 652, 684, 651, 684, 683, 652, 653, 685, 652, 685, 684, 653, 654, 686, 653, 686, 685, 654, 655, 687, 654, 687, 686, 655, 656, 688, 655, 688, 687, 656, 657, 689, 656, 689, 688, 657, 658, 690, 657, 690, 689, 658, 659, 691, 658, 691, 690, 659, 660, 692, 659, 692, 691, 660, 661, 693, 660, 693, 692, 661, 662, 694, 661, 694, 693, 662, 663, 695, 662, 695, 694, 663, 664, 696, 663, 696, 695, 664, 665, 697, 664, 697, 696, 665, 666, 698, 665, 698, 697, 666, 667, 699, 666, 699, 698, 667, 668, 700, 667, 700, 699, 668, 669, 701, 668, 701, 700, 669, 670, 702, 669, 702, 701, 670, 671, 703, 670, 703, 702, 672, 673, 705, 672, 705, 704, 673, 674, 706, 673, 706, 705, 674, 675, 707, 674, 707, 706, 675, 676, 708, 675, 708, 707, 676, 677, 709, 676, 709, 708, 677, 678, 710, 677, 710, 709, 678, 679, 711, 678, 711, 710, 679, 680, 712, 679, 712, 711, 680, 681, 713, 680, 713, 712, 681, 682, 714, 681, 714, 713, 682, 683, 715, 682, 715, 714, 683, 684, 716, 683, 716, 715, 684, 685, 717, 684, 717, 716, 685, 686, 718, 685, 718, 717, 686, 687, 719, 686, 719, 718, 687, 688, 720, 687, 720, 719, 688, 689, 721, 688, 721, 720, 689, 690, 722, 689, 722, 721, 690, 691, 723, 690, 723, 722, 691, 692, 724, 691, 724, 723, 692, 693, 725, 692, 725, 724, 693, 694, 726, 693, 726, 725, 694, 695, 727, 694, 727, 726, 695, 696, 728, 695, 728, 727, 696, 697, 729, 696, 729, 728, 697, 698, 730, 697, 730, 729, 698, 699, 731, 698, 731, 730, 699, 700, 732, 699, 732, 731, 700, 701, 733, 700, 733, 732, 701, 702, 734, 701, 734, 733, 702, 703, 735, 702, 735, 734, 704, 705, 737, 704, 737, 736, 705, 706, 738, 705, 738, 737, 706, 707, 739, 706, 739, 738, 707, 708, 740, 707, 740, 739, 708, 709, 741, 708, 741, 740, 709, 710, 742, 709, 742, 741, 710, 711, 743, 710, 743, 742, 711, 712, 744, 711, 744, 743, 712, 713, 745, 712, 745, 744, 713, 714, 746, 713, 746, 745, 714, 715, 747, 714, 747, 746, 715, 716, 748, 715, 748, 747, 716, 717, 749, 716, 749, 748, 717, 718, 750, 717, 750, 749, 718, 719, 751, 718, 751, 750, 719, 720, 752, 719, 752, 751, 720, 721, 753, 720, 753, 752, 721, 722, 754, 721, 754, 753, 722, 723, 755, 722, 755, 754, 723, 724, 756, 723, 756, 755, 724, 725, 757, 724, 757, 756, 725, 726, 758, 725, 758, 757, 726, 727, 759, 726, 759, 758, 727, 728, 760, 727, 760, 759, 728, 729, 761, 728, 761, 760, 729, 730, 762, 729, 762, 761, 730, 731, 763, 730, 763, 762, 731, 732, 764, 731, 764, 763, 732, 733, 765, 732, 765, 764, 733, 734, 766, 733, 766, 765, 734, 735, 767, 734, 767, 766, 736, 737, 769, 736, 769, 768, 737, 738, 770, 737, 770, 769, 738, 739, 771, 738, 771, 770, 739, 740, 772, 739, 772, 771, 740, 741, 773, 740, 773, 772, 741, 742, 774, 741, 774, 773, 742, 743, 775, 742, 775, 774, 743, 744, 776, 743, 776, 775, 744, 745, 777, 744, 777, 776, 745, 746, 778, 745, 778, 777, 746, 747, 779, 746, 779, 778, 747, 748, 780, 747, 780, 779, 748, 749, 781, 748, 781, 780, 749, 750, 782, 749, 782, 781, 750, 751, 783, 750, 783, 782, 751, 752, 784, 751, 784, 783, 752, 753, 785, 752, 785, 784, 753, 754, 786, 753, 786, 785, 754, 755, 787, 754, 787, 786, 755, 756, 788, 755, 788, 787, 756, 757, 789, 756, 789, 788, 757, 758, 790, 757, 790, 789, 758, 759, 791, 758, 791, 790, 759, 760, 792, 759, 792, 791, 760, 761, 793, 760, 793, 792, 761, 762, 794, 761, 794, 793, 762, 763, 795, 762, 795, 794, 763, 764, 796, 763, 796, 795, 764, 765, 797, 764, 797, 796, 765, 766, 798, 765, 798, 797, 766, 767, 799, 766, 799, 798, 768, 769, 801, 768, 801, 800, 769, 770, 802, 769, 802, 801, 770, 771, 803, 770, 803, 802, 771, 772, 804, 771, 804, 803, 772, 773, 805, 772, 805, 804, 773, 774, 806, 773, 806, 805, 774, 775, 807, 774, 807, 806, 775, 776, 808, 775, 808, 807, 776, 777, 809, 776, 809, 808, 777, 778, 810, 777, 810, 809, 778, 779, 811, 778, 811, 810, 779, 780, 812, 779, 812, 811, 780, 781, 813, 780, 813, 812, 781, 782, 814, 781, 814, 813, 782, 783, 815, 782, 815, 814, 783, 784, 816, 783, 816, 815, 784, 785, 817, 784, 817, 816, 785, 786, 818, 785, 818, 817, 786, 787, 819, 786, 819, 818, 787, 788, 820, 787, 820, 819, 788, 789, 821, 788, 821, 820, 789, 790, 822, 789, 822, 821, 790, 791, 823, 790, 823, 822, 791, 792, 824, 791, 824, 823, 792, 793, 825, 792, 825, 824, 793, 794, 826, 793, 826, 825, 794, 795, 827, 794, 827, 826, 795, 796, 828, 795, 828, 827, 796, 797, 829, 796, 829, 828, 797, 798, 830, 797, 830, 829, 798, 799, 831, 798, 831, 830, 800, 801, 833, 800, 833, 832, 801, 802, 834, 801, 834, 833, 802, 803, 835, 802, 835, 834, 803, 804, 836, 803, 836, 835, 804, 805, 837, 804, 837, 836, 805, 806, 838, 805, 838, 837, 806, 807, 839, 806, 839, 838, 807, 808, 840, 807, 840, 839, 808, 809, 841, 808, 841, 840, 809, 810, 842, 809, 842, 841, 810, 811, 843, 810, 843, 842, 811, 812, 844, 811, 844, 843, 812, 813, 845, 812, 845, 844, 813, 814, 846, 813, 846, 845, 814, 815, 847, 814, 847, 846, 815, 816, 848, 815, 848, 847, 816, 817, 849, 816, 849, 848, 817, 818, 850, 817, 850, 849, 818, 819, 851, 818, 851, 850, 819, 820, 852, 819, 852, 851, 820, 821, 853, 820, 853, 852, 821, 822, 854, 821, 854, 853, 822, 823, 855, 822, 855, 854, 823, 824, 856, 823, 856, 855, 824, 825, 857, 824, 857, 856, 825, 826, 858, 825, 858, 857, 826, 827, 859, 826, 859, 858, 827, 828, 860, 827, 860, 859, 828, 829, 861, 828, 861, 860, 829, 830, 862, 829, 862, 861, 830, 831, 863, 830, 863, 862, 832, 833, 865, 832, 865, 864, 833, 834, 866, 833, 866, 865, 834, 835, 867, 834, 867, 866, 835, 836, 868, 835, 868, 867, 836, 837, 869, 836, 869, 868, 837, 838, 870, 837, 870, 869, 838, 839, 871, 838, 871, 870, 839, 840, 872, 839, 872, 871, 840, 841, 873, 840, 873, 872, 841, 842, 874, 841, 874, 873, 842, 843, 875, 842, 875, 874, 843, 844, 876, 843, 876, 875, 844, 845, 877, 844, 877, 876, 845, 846, 878, 845, 878, 877, 846, 847, 879, 846, 879, 878, 847, 848, 880, 847, 880, 879, 848, 849, 881, 848, 881, 880, 849, 850, 882, 849, 882, 881, 850, 851, 883, 850, 883, 882, 851, 852, 884, 851, 884, 883, 852, 853, 885, 852, 885, 884, 853, 854, 886, 853, 886, 885, 854, 855, 887, 854, 887, 886, 855, 856, 888, 855, 888, 887, 856, 857, 889, 856, 889, 888, 857, 858, 890, 857, 890, 889, 858, 859, 891, 858, 891, 890, 859, 860, 892, 859, 892, 891, 860, 861, 893, 860, 893, 892, 861, 862, 894, 861, 894, 893, 862, 863, 895, 862, 895, 894, 864, 865, 897, 864, 897, 896, 865, 866, 898, 865, 898, 897, 866, 867, 899, 866, 899, 898, 867, 868, 900, 867, 900, 899, 868, 869, 901, 868, 901, 900, 869, 870, 902, 869, 902, 901, 870, 871, 903, 870, 903, 902, 871, 872, 904, 871, 904, 903, 872, 873, 905, 872, 905, 904, 873, 874, 906, 873, 906, 905, 874, 875, 907, 874, 907, 906, 875, 876, 908, 875, 908, 907, 876, 877, 909, 876, 909, 908, 877, 878, 910, 877, 910, 909, 878, 879, 911, 878, 911, 910, 879, 880, 912, 879, 912, 911, 880, 881, 913, 880, 913, 912, 881, 882, 914, 881, 914, 913, 882, 883, 915, 882, 915, 914, 883, 884, 916, 883, 916, 915, 884, 885, 917, 884, 917, 916, 885, 886, 918, 885, 918, 917, 886, 887, 919, 886, 919, 918, 887, 888, 920, 887, 920, 919, 888, 889, 921, 888, 921, 920, 889, 890, 922, 889, 922, 921, 890, 891, 923, 890, 923, 922, 891, 892, 924, 891, 924, 923, 892, 893, 925, 892, 925, 924, 893, 894, 926, 893, 926, 925, 894, 895, 927, 894, 927, 926, 896, 897, 929, 896, 929, 928, 897, 898, 930, 897, 930, 929, 898, 899, 931, 898, 931, 930, 899, 900, 932, 899, 932, 931, 900, 901, 933, 900, 933, 932, 901, 902, 934, 901, 934, 933, 902, 903, 935, 902, 935, 934, 903, 904, 936, 903, 936, 935, 904, 905, 937, 904, 937, 936, 905, 906, 938, 905, 938, 937, 906, 907, 939, 906, 939, 938, 907, 908, 940, 907, 940, 939, 908, 909, 941, 908, 941, 940, 909, 910, 942, 909, 942, 941, 910, 911, 943, 910, 943, 942, 911, 912, 944, 911, 944, 943, 912, 913, 945, 912, 945, 944, 913, 914, 946, 913, 946, 945, 914, 915, 947, 914, 947, 946, 915, 916, 948, 915, 948, 947, 916, 917, 949, 916, 949, 948, 917, 918, 950, 917, 950, 949, 918, 919, 951, 918, 951, 950, 919, 920, 952, 919, 952, 951, 920, 921, 953, 920, 953, 952, 921, 922, 954, 921, 954, 953, 922, 923, 955, 922, 955, 954, 923, 924, 956, 923, 956, 955, 924, 925, 957, 924, 957, 956, 925, 926, 958, 925, 958, 957, 926, 927, 959, 926, 959, 958, 928, 929, 961, 928, 961, 960, 929, 930, 962, 929, 962, 961, 930, 931, 963, 930, 963, 962, 931, 932, 964, 931, 964, 963, 932, 933, 965, 932, 965, 964, 933, 934, 966, 933, 966, 965, 934, 935, 967, 934, 967, 966, 935, 936, 968, 935, 968, 967, 936, 937, 969, 936, 969, 968, 937, 938, 970, 937, 970, 969, 938, 939, 971, 938, 971, 970, 939, 940, 972, 939, 972, 971, 940, 941, 973, 940, 973, 972, 941, 942, 974, 941, 974, 973, 942, 943, 975, 942, 975, 974, 943, 944, 976, 943, 976, 975, 944, 945, 977, 944, 977, 976, 945, 946, 978, 945, 978, 977, 946, 947, 979, 946, 979, 978, 947, 948, 980, 947, 980, 979, 948, 949, 981, 948, 981, 980, 949, 950, 982, 949, 982, 981, 950, 951, 983, 950, 983, 982, 951, 952, 984, 951, 984, 983, 952, 953, 985, 952, 985, 984, 953, 954, 986, 953, 986, 985, 954, 955, 987, 954, 987, 986, 955, 956, 988, 955, 988, 987, 956, 957, 989, 956, 989, 988, 957, 958, 990, 957, 990, 989, 958, 959, 991, 958, 991, 990, 960, 961, 993, 960, 993, 992, 961, 962, 994, 961, 994, 993, 962, 963, 995, 962, 995, 994, 963, 964, 996, 963, 996, 995, 964, 965, 997, 964, 997, 996, 965, 966, 998, 965, 998, 997, 966, 967, 999, 966, 999, 998, 967, 968, 1000, 967, 1000, 999, 968, 969, 1001, 968, 1001, 1000, 969, 970, 1002, 969, 1002, 1001, 970, 971, 1003, 970, 1003, 1002, 971, 972, 1004, 971, 1004, 1003, 972, 973, 1005, 972, 1005, 1004, 973, 974, 1006, 973, 1006, 1005, 974, 975, 1007, 974, 1007, 1006, 975, 976, 1008, 975, 1008, 1007, 976, 977, 1009, 976, 1009, 1008, 977, 978, 1010, 977, 1010, 1009, 978, 979, 1011, 978, 1011, 1010, 979, 980, 1012, 979, 1012, 1011, 980, 981, 1013, 980, 1013, 1012, 981, 982, 1014, 981, 1014, 1013, 982, 983, 1015, 982, 1015, 1014, 983, 984, 1016, 983, 1016, 1015, 984, 985, 1017, 984, 1017, 1016, 985, 986, 1018, 985, 1018, 1017, 986, 987, 1019, 986, 1019, 1018, 987, 988, 1020, 987, 1020, 1019, 988, 989, 1021, 988, 1021, 1020, 989, 990, 1022, 989, 1022, 1021, 990, 991, 1023, 990, 1023, 1022] point3f[] points = [(0, 0, 20), (20, 0, 20), (40, 0, 20), (60, 0, 20), (80, 0, 20), (100, 0, 20), (120, 0, 20), (140, 0, 20), (160, 0, 20), (180, 0, 20), (200, 0, 20), (220, 0, 20), (240, 0, 20), (260, 0, 20), (280, 0, 20), (300, 0, 20), (320, 0, 20), (340, 0, 20), (360, 0, 20), (380, 0, 20), (400, 0, 20), (420, 0, 20), (440, 0, 20), (460, 0, 20), (480, 0, 20), (500, 0, 20), (520, 0, 20), (540, 0, 20), (560, 0, 20), (580, 0, 20), (600, 0, 20), (620, 0, 20), (0, 20, 20), (20, 20, 20), (40, 20, 20), (60, 20, 20), (80, 20, 20), (100, 20, 20), (120, 20, 20), (140, 20, 20), (160, 20, 20), (180, 20, 20), (200, 20, 20), (220, 20, 20), (240, 20, 20), (260, 20, 20), (280, 20, 20), (300, 20, 20), (320, 20, 20), (340, 20, 20), (360, 20, 20), (380, 20, 20), (400, 20, 20), (420, 20, 20), (440, 20, 20), (460, 20, 20), (480, 20, 20), (500, 20, 20), (520, 20, 20), (540, 20, 20), (560, 20, 20), (580, 20, 20), (600, 20, 20), (620, 20, 20), (0, 40, 20), (20, 40, 20), (40, 40, 20), (60, 40, 20), (80, 40, 20), (100, 40, 20), (120, 40, 20), (140, 40, 20), (160, 40, 20), (180, 40, 20), (200, 40, 20), (220, 40, 20), (240, 40, 20), (260, 40, 20), (280, 40, 20), (300, 40, 20), (320, 40, 20), (340, 40, 20), (360, 40, 20), (380, 40, 20), (400, 40, 20), (420, 40, 20), (440, 40, 20), (460, 40, 20), (480, 40, 20), (500, 40, 20), (520, 40, 20), (540, 40, 20), (560, 40, 20), (580, 40, 20), (600, 40, 20), (620, 40, 20), (0, 60, 20), (20, 60, 20), (40, 60, 20), (60, 60, 20), (80, 60, 20), (100, 60, 20), (120, 60, 20), (140, 60, 20), (160, 60, 20), (180, 60, 20), (200, 60, 20), (220, 60, 20), (240, 60, 20), (260, 60, 20), (280, 60, 20), (300, 60, 20), (320, 60, 20), (340, 60, 20), (360, 60, 20), (380, 60, 20), (400, 60, 20), (420, 60, 20), (440, 60, 20), (460, 60, 20), (480, 60, 20), (500, 60, 20), (520, 60, 20), (540, 60, 20), (560, 60, 20), (580, 60, 20), (600, 60, 20), (620, 60, 20), (0, 80, 20), (20, 80, 20), (40, 80, 20), (60, 80, 20), (80, 80, 20), (100, 80, 20), (120, 80, 20), (140, 80, 20), (160, 80, 20), (180, 80, 20), (200, 80, 20), (220, 80, 20), (240, 80, 20), (260, 80, 20), (280, 80, 20), (300, 80, 20), (320, 80, 20), (340, 80, 20), (360, 80, 20), (380, 80, 20), (400, 80, 20), (420, 80, 20), (440, 80, 20), (460, 80, 20), (480, 80, 20), (500, 80, 20), (520, 80, 20), (540, 80, 20), (560, 80, 20), (580, 80, 20), (600, 80, 20), (620, 80, 20), (0, 100, 20), (20, 100, 20), (40, 100, 20), (60, 100, 20), (80, 100, 20), (100, 100, 20), (120, 100, 20), (140, 100, 20), (160, 100, 20), (180, 100, 20), (200, 100, 20), (220, 100, 20), (240, 100, 20), (260, 100, 20), (280, 100, 20), (300, 100, 20), (320, 100, 20), (340, 100, 20), (360, 100, 20), (380, 100, 20), (400, 100, 20), (420, 100, 20), (440, 100, 20), (460, 100, 20), (480, 100, 20), (500, 100, 20), (520, 100, 20), (540, 100, 20), (560, 100, 20), (580, 100, 20), (600, 100, 20), (620, 100, 20), (0, 120, 20), (20, 120, 20), (40, 120, 20), (60, 120, 20), (80, 120, 20), (100, 120, 20), (120, 120, 20), (140, 120, 20), (160, 120, 20), (180, 120, 20), (200, 120, 20), (220, 120, 20), (240, 120, 20), (260, 120, 20), (280, 120, 20), (300, 120, 20), (320, 120, 20), (340, 120, 20), (360, 120, 20), (380, 120, 20), (400, 120, 20), (420, 120, 20), (440, 120, 20), (460, 120, 20), (480, 120, 20), (500, 120, 20), (520, 120, 20), (540, 120, 20), (560, 120, 20), (580, 120, 20), (600, 120, 20), (620, 120, 20), (0, 140, 20), (20, 140, 20), (40, 140, 20), (60, 140, 20), (80, 140, 20), (100, 140, 20), (120, 140, 20), (140, 140, 20), (160, 140, 20), (180, 140, 20), (200, 140, 20), (220, 140, 20), (240, 140, 20), (260, 140, 20), (280, 140, 20), (300, 140, 20), (320, 140, 20), (340, 140, 20), (360, 140, 20), (380, 140, 20), (400, 140, 20), (420, 140, 20), (440, 140, 20), (460, 140, 20), (480, 140, 20), (500, 140, 20), (520, 140, 20), (540, 140, 20), (560, 140, 20), (580, 140, 20), (600, 140, 20), (620, 140, 20), (0, 160, 20), (20, 160, 20), (40, 160, 20), (60, 160, 20), (80, 160, 20), (100, 160, 20), (120, 160, 20), (140, 160, 20), (160, 160, 20), (180, 160, 20), (200, 160, 20), (220, 160, 20), (240, 160, 20), (260, 160, 20), (280, 160, 20), (300, 160, 20), (320, 160, 20), (340, 160, 20), (360, 160, 20), (380, 160, 20), (400, 160, 20), (420, 160, 20), (440, 160, 20), (460, 160, 20), (480, 160, 20), (500, 160, 20), (520, 160, 20), (540, 160, 20), (560, 160, 20), (580, 160, 20), (600, 160, 20), (620, 160, 20), (0, 180, 20), (20, 180, 20), (40, 180, 20), (60, 180, 20), (80, 180, 20), (100, 180, 20), (120, 180, 20), (140, 180, 20), (160, 180, 20), (180, 180, 20), (200, 180, 20), (220, 180, 20), (240, 180, 20), (260, 180, 20), (280, 180, 20), (300, 180, 20), (320, 180, 20), (340, 180, 20), (360, 180, 20), (380, 180, 20), (400, 180, 20), (420, 180, 20), (440, 180, 20), (460, 180, 20), (480, 180, 20), (500, 180, 20), (520, 180, 20), (540, 180, 20), (560, 180, 20), (580, 180, 20), (600, 180, 20), (620, 180, 20), (0, 200, 20), (20, 200, 20), (40, 200, 20), (60, 200, 20), (80, 200, 20), (100, 200, 20), (120, 200, 20), (140, 200, 20), (160, 200, 20), (180, 200, 20), (200, 200, 20), (220, 200, 20), (240, 200, 20), (260, 200, 20), (280, 200, 20), (300, 200, 20), (320, 200, 20), (340, 200, 20), (360, 200, 20), (380, 200, 20), (400, 200, 20), (420, 200, 20), (440, 200, 20), (460, 200, 20), (480, 200, 20), (500, 200, 20), (520, 200, 20), (540, 200, 20), (560, 200, 20), (580, 200, 20), (600, 200, 20), (620, 200, 20), (0, 220, 20), (20, 220, 20), (40, 220, 20), (60, 220, 20), (80, 220, 20), (100, 220, 20), (120, 220, 20), (140, 220, 20), (160, 220, 20), (180, 220, 20), (200, 220, 20), (220, 220, 20), (240, 220, 20), (260, 220, 20), (280, 220, 20), (300, 220, 20), (320, 220, 20), (340, 220, 20), (360, 220, 20), (380, 220, 20), (400, 220, 20), (420, 220, 20), (440, 220, 20), (460, 220, 20), (480, 220, 20), (500, 220, 20), (520, 220, 20), (540, 220, 20), (560, 220, 20), (580, 220, 20), (600, 220, 20), (620, 220, 20), (0, 240, 20), (20, 240, 20), (40, 240, 20), (60, 240, 20), (80, 240, 20), (100, 240, 20), (120, 240, 20), (140, 240, 20), (160, 240, 20), (180, 240, 20), (200, 240, 20), (220, 240, 20), (240, 240, 20), (260, 240, 20), (280, 240, 20), (300, 240, 20), (320, 240, 20), (340, 240, 20), (360, 240, 20), (380, 240, 20), (400, 240, 20), (420, 240, 20), (440, 240, 20), (460, 240, 20), (480, 240, 20), (500, 240, 20), (520, 240, 20), (540, 240, 20), (560, 240, 20), (580, 240, 20), (600, 240, 20), (620, 240, 20), (0, 260, 20), (20, 260, 20), (40, 260, 20), (60, 260, 20), (80, 260, 20), (100, 260, 20), (120, 260, 20), (140, 260, 20), (160, 260, 20), (180, 260, 20), (200, 260, 20), (220, 260, 20), (240, 260, 20), (260, 260, 20), (280, 260, 20), (300, 260, 20), (320, 260, 20), (340, 260, 20), (360, 260, 20), (380, 260, 20), (400, 260, 20), (420, 260, 20), (440, 260, 20), (460, 260, 20), (480, 260, 20), (500, 260, 20), (520, 260, 20), (540, 260, 20), (560, 260, 20), (580, 260, 20), (600, 260, 20), (620, 260, 20), (0, 280, 20), (20, 280, 20), (40, 280, 20), (60, 280, 20), (80, 280, 20), (100, 280, 20), (120, 280, 20), (140, 280, 20), (160, 280, 20), (180, 280, 20), (200, 280, 20), (220, 280, 20), (240, 280, 20), (260, 280, 20), (280, 280, 20), (300, 280, 20), (320, 280, 20), (340, 280, 20), (360, 280, 20), (380, 280, 20), (400, 280, 20), (420, 280, 20), (440, 280, 20), (460, 280, 20), (480, 280, 20), (500, 280, 20), (520, 280, 20), (540, 280, 20), (560, 280, 20), (580, 280, 20), (600, 280, 20), (620, 280, 20), (0, 300, 20), (20, 300, 20), (40, 300, 20), (60, 300, 20), (80, 300, 20), (100, 300, 20), (120, 300, 20), (140, 300, 20), (160, 300, 20), (180, 300, 20), (200, 300, 20), (220, 300, 20), (240, 300, 20), (260, 300, 20), (280, 300, 20), (300, 300, 20), (320, 300, 20), (340, 300, 20), (360, 300, 20), (380, 300, 20), (400, 300, 20), (420, 300, 20), (440, 300, 20), (460, 300, 20), (480, 300, 20), (500, 300, 20), (520, 300, 20), (540, 300, 20), (560, 300, 20), (580, 300, 20), (600, 300, 20), (620, 300, 20), (0, 320, 20), (20, 320, 20), (40, 320, 20), (60, 320, 20), (80, 320, 20), (100, 320, 20), (120, 320, 20), (140, 320, 20), (160, 320, 20), (180, 320, 20), (200, 320, 20), (220, 320, 20), (240, 320, 20), (260, 320, 20), (280, 320, 20), (300, 320, 20), (320, 320, 20), (340, 320, 20), (360, 320, 20), (380, 320, 20), (400, 320, 20), (420, 320, 20), (440, 320, 20), (460, 320, 20), (480, 320, 20), (500, 320, 20), (520, 320, 20), (540, 320, 20), (560, 320, 20), (580, 320, 20), (600, 320, 20), (620, 320, 20), (0, 340, 20), (20, 340, 20), (40, 340, 20), (60, 340, 20), (80, 340, 20), (100, 340, 20), (120, 340, 20), (140, 340, 20), (160, 340, 20), (180, 340, 20), (200, 340, 20), (220, 340, 20), (240, 340, 20), (260, 340, 20), (280, 340, 20), (300, 340, 20), (320, 340, 20), (340, 340, 20), (360, 340, 20), (380, 340, 20), (400, 340, 20), (420, 340, 20), (440, 340, 20), (460, 340, 20), (480, 340, 20), (500, 340, 20), (520, 340, 20), (540, 340, 20), (560, 340, 20), (580, 340, 20), (600, 340, 20), (620, 340, 20), (0, 360, 20), (20, 360, 20), (40, 360, 20), (60, 360, 20), (80, 360, 20), (100, 360, 20), (120, 360, 20), (140, 360, 20), (160, 360, 20), (180, 360, 20), (200, 360, 20), (220, 360, 20), (240, 360, 20), (260, 360, 20), (280, 360, 20), (300, 360, 20), (320, 360, 20), (340, 360, 20), (360, 360, 20), (380, 360, 20), (400, 360, 20), (420, 360, 20), (440, 360, 20), (460, 360, 20), (480, 360, 20), (500, 360, 20), (520, 360, 20), (540, 360, 20), (560, 360, 20), (580, 360, 20), (600, 360, 20), (620, 360, 20), (0, 380, 20), (20, 380, 20), (40, 380, 20), (60, 380, 20), (80, 380, 20), (100, 380, 20), (120, 380, 20), (140, 380, 20), (160, 380, 20), (180, 380, 20), (200, 380, 20), (220, 380, 20), (240, 380, 20), (260, 380, 20), (280, 380, 20), (300, 380, 20), (320, 380, 20), (340, 380, 20), (360, 380, 20), (380, 380, 20), (400, 380, 20), (420, 380, 20), (440, 380, 20), (460, 380, 20), (480, 380, 20), (500, 380, 20), (520, 380, 20), (540, 380, 20), (560, 380, 20), (580, 380, 20), (600, 380, 20), (620, 380, 20), (0, 400, 20), (20, 400, 20), (40, 400, 20), (60, 400, 20), (80, 400, 20), (100, 400, 20), (120, 400, 20), (140, 400, 20), (160, 400, 20), (180, 400, 20), (200, 400, 20), (220, 400, 20), (240, 400, 20), (260, 400, 20), (280, 400, 20), (300, 400, 20), (320, 400, 20), (340, 400, 20), (360, 400, 20), (380, 400, 20), (400, 400, 20), (420, 400, 20), (440, 400, 20), (460, 400, 20), (480, 400, 20), (500, 400, 20), (520, 400, 20), (540, 400, 20), (560, 400, 20), (580, 400, 20), (600, 400, 20), (620, 400, 20), (0, 420, 20), (20, 420, 20), (40, 420, 20), (60, 420, 20), (80, 420, 20), (100, 420, 20), (120, 420, 20), (140, 420, 20), (160, 420, 20), (180, 420, 20), (200, 420, 20), (220, 420, 20), (240, 420, 20), (260, 420, 20), (280, 420, 20), (300, 420, 20), (320, 420, 20), (340, 420, 20), (360, 420, 20), (380, 420, 20), (400, 420, 20), (420, 420, 20), (440, 420, 20), (460, 420, 20), (480, 420, 20), (500, 420, 20), (520, 420, 20), (540, 420, 20), (560, 420, 20), (580, 420, 20), (600, 420, 20), (620, 420, 20), (0, 440, 20), (20, 440, 20), (40, 440, 20), (60, 440, 20), (80, 440, 20), (100, 440, 20), (120, 440, 20), (140, 440, 20), (160, 440, 20), (180, 440, 20), (200, 440, 20), (220, 440, 20), (240, 440, 20), (260, 440, 20), (280, 440, 20), (300, 440, 20), (320, 440, 20), (340, 440, 20), (360, 440, 20), (380, 440, 20), (400, 440, 20), (420, 440, 20), (440, 440, 20), (460, 440, 20), (480, 440, 20), (500, 440, 20), (520, 440, 20), (540, 440, 20), (560, 440, 20), (580, 440, 20), (600, 440, 20), (620, 440, 20), (0, 460, 20), (20, 460, 20), (40, 460, 20), (60, 460, 20), (80, 460, 20), (100, 460, 20), (120, 460, 20), (140, 460, 20), (160, 460, 20), (180, 460, 20), (200, 460, 20), (220, 460, 20), (240, 460, 20), (260, 460, 20), (280, 460, 20), (300, 460, 20), (320, 460, 20), (340, 460, 20), (360, 460, 20), (380, 460, 20), (400, 460, 20), (420, 460, 20), (440, 460, 20), (460, 460, 20), (480, 460, 20), (500, 460, 20), (520, 460, 20), (540, 460, 20), (560, 460, 20), (580, 460, 20), (600, 460, 20), (620, 460, 20), (0, 480, 20), (20, 480, 20), (40, 480, 20), (60, 480, 20), (80, 480, 20), (100, 480, 20), (120, 480, 20), (140, 480, 20), (160, 480, 20), (180, 480, 20), (200, 480, 20), (220, 480, 20), (240, 480, 20), (260, 480, 20), (280, 480, 20), (300, 480, 20), (320, 480, 20), (340, 480, 20), (360, 480, 20), (380, 480, 20), (400, 480, 20), (420, 480, 20), (440, 480, 20), (460, 480, 20), (480, 480, 20), (500, 480, 20), (520, 480, 20), (540, 480, 20), (560, 480, 20), (580, 480, 20), (600, 480, 20), (620, 480, 20), (0, 500, 20), (20, 500, 20), (40, 500, 20), (60, 500, 20), (80, 500, 20), (100, 500, 20), (120, 500, 20), (140, 500, 20), (160, 500, 20), (180, 500, 20), (200, 500, 20), (220, 500, 20), (240, 500, 20), (260, 500, 20), (280, 500, 20), (300, 500, 20), (320, 500, 20), (340, 500, 20), (360, 500, 20), (380, 500, 20), (400, 500, 20), (420, 500, 20), (440, 500, 20), (460, 500, 20), (480, 500, 20), (500, 500, 20), (520, 500, 20), (540, 500, 20), (560, 500, 20), (580, 500, 20), (600, 500, 20), (620, 500, 20), (0, 520, 20), (20, 520, 20), (40, 520, 20), (60, 520, 20), (80, 520, 20), (100, 520, 20), (120, 520, 20), (140, 520, 20), (160, 520, 20), (180, 520, 20), (200, 520, 20), (220, 520, 20), (240, 520, 20), (260, 520, 20), (280, 520, 20), (300, 520, 20), (320, 520, 20), (340, 520, 20), (360, 520, 20), (380, 520, 20), (400, 520, 20), (420, 520, 20), (440, 520, 20), (460, 520, 20), (480, 520, 20), (500, 520, 20), (520, 520, 20), (540, 520, 20), (560, 520, 20), (580, 520, 20), (600, 520, 20), (620, 520, 20), (0, 540, 20), (20, 540, 20), (40, 540, 20), (60, 540, 20), (80, 540, 20), (100, 540, 20), (120, 540, 20), (140, 540, 20), (160, 540, 20), (180, 540, 20), (200, 540, 20), (220, 540, 20), (240, 540, 20), (260, 540, 20), (280, 540, 20), (300, 540, 20), (320, 540, 20), (340, 540, 20), (360, 540, 20), (380, 540, 20), (400, 540, 20), (420, 540, 20), (440, 540, 20), (460, 540, 20), (480, 540, 20), (500, 540, 20), (520, 540, 20), (540, 540, 20), (560, 540, 20), (580, 540, 20), (600, 540, 20), (620, 540, 20), (0, 560, 20), (20, 560, 20), (40, 560, 20), (60, 560, 20), (80, 560, 20), (100, 560, 20), (120, 560, 20), (140, 560, 20), (160, 560, 20), (180, 560, 20), (200, 560, 20), (220, 560, 20), (240, 560, 20), (260, 560, 20), (280, 560, 20), (300, 560, 20), (320, 560, 20), (340, 560, 20), (360, 560, 20), (380, 560, 20), (400, 560, 20), (420, 560, 20), (440, 560, 20), (460, 560, 20), (480, 560, 20), (500, 560, 20), (520, 560, 20), (540, 560, 20), (560, 560, 20), (580, 560, 20), (600, 560, 20), (620, 560, 20), (0, 580, 20), (20, 580, 20), (40, 580, 20), (60, 580, 20), (80, 580, 20), (100, 580, 20), (120, 580, 20), (140, 580, 20), (160, 580, 20), (180, 580, 20), (200, 580, 20), (220, 580, 20), (240, 580, 20), (260, 580, 20), (280, 580, 20), (300, 580, 20), (320, 580, 20), (340, 580, 20), (360, 580, 20), (380, 580, 20), (400, 580, 20), (420, 580, 20), (440, 580, 20), (460, 580, 20), (480, 580, 20), (500, 580, 20), (520, 580, 20), (540, 580, 20), (560, 580, 20), (580, 580, 20), (600, 580, 20), (620, 580, 20), (0, 600, 20), (20, 600, 20), (40, 600, 20), (60, 600, 20), (80, 600, 20), (100, 600, 20), (120, 600, 20), (140, 600, 20), (160, 600, 20), (180, 600, 20), (200, 600, 20), (220, 600, 20), (240, 600, 20), (260, 600, 20), (280, 600, 20), (300, 600, 20), (320, 600, 20), (340, 600, 20), (360, 600, 20), (380, 600, 20), (400, 600, 20), (420, 600, 20), (440, 600, 20), (460, 600, 20), (480, 600, 20), (500, 600, 20), (520, 600, 20), (540, 600, 20), (560, 600, 20), (580, 600, 20), (600, 600, 20), (620, 600, 20), (0, 620, 20), (20, 620, 20), (40, 620, 20), (60, 620, 20), (80, 620, 20), (100, 620, 20), (120, 620, 20), (140, 620, 20), (160, 620, 20), (180, 620, 20), (200, 620, 20), (220, 620, 20), (240, 620, 20), (260, 620, 20), (280, 620, 20), (300, 620, 20), (320, 620, 20), (340, 620, 20), (360, 620, 20), (380, 620, 20), (400, 620, 20), (420, 620, 20), (440, 620, 20), (460, 620, 20), (480, 620, 20), (500, 620, 20), (520, 620, 20), (540, 620, 20), (560, 620, 20), (580, 620, 20), (600, 620, 20), (620, 620, 20)] color3f[] primvars:displayColor = [(0.2784314, 0.64705884, 1)] } def Mesh "outputGrid" { uniform bool doubleSided = 1 int[] faceVertexCounts = [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 1, 33, 0, 33, 32, 1, 2, 34, 1, 34, 33, 2, 3, 35, 2, 35, 34, 3, 4, 36, 3, 36, 35, 4, 5, 37, 4, 37, 36, 5, 6, 38, 5, 38, 37, 6, 7, 39, 6, 39, 38, 7, 8, 40, 7, 40, 39, 8, 9, 41, 8, 41, 40, 9, 10, 42, 9, 42, 41, 10, 11, 43, 10, 43, 42, 11, 12, 44, 11, 44, 43, 12, 13, 45, 12, 45, 44, 13, 14, 46, 13, 46, 45, 14, 15, 47, 14, 47, 46, 15, 16, 48, 15, 48, 47, 16, 17, 49, 16, 49, 48, 17, 18, 50, 17, 50, 49, 18, 19, 51, 18, 51, 50, 19, 20, 52, 19, 52, 51, 20, 21, 53, 20, 53, 52, 21, 22, 54, 21, 54, 53, 22, 23, 55, 22, 55, 54, 23, 24, 56, 23, 56, 55, 24, 25, 57, 24, 57, 56, 25, 26, 58, 25, 58, 57, 26, 27, 59, 26, 59, 58, 27, 28, 60, 27, 60, 59, 28, 29, 61, 28, 61, 60, 29, 30, 62, 29, 62, 61, 30, 31, 63, 30, 63, 62, 32, 33, 65, 32, 65, 64, 33, 34, 66, 33, 66, 65, 34, 35, 67, 34, 67, 66, 35, 36, 68, 35, 68, 67, 36, 37, 69, 36, 69, 68, 37, 38, 70, 37, 70, 69, 38, 39, 71, 38, 71, 70, 39, 40, 72, 39, 72, 71, 40, 41, 73, 40, 73, 72, 41, 42, 74, 41, 74, 73, 42, 43, 75, 42, 75, 74, 43, 44, 76, 43, 76, 75, 44, 45, 77, 44, 77, 76, 45, 46, 78, 45, 78, 77, 46, 47, 79, 46, 79, 78, 47, 48, 80, 47, 80, 79, 48, 49, 81, 48, 81, 80, 49, 50, 82, 49, 82, 81, 50, 51, 83, 50, 83, 82, 51, 52, 84, 51, 84, 83, 52, 53, 85, 52, 85, 84, 53, 54, 86, 53, 86, 85, 54, 55, 87, 54, 87, 86, 55, 56, 88, 55, 88, 87, 56, 57, 89, 56, 89, 88, 57, 58, 90, 57, 90, 89, 58, 59, 91, 58, 91, 90, 59, 60, 92, 59, 92, 91, 60, 61, 93, 60, 93, 92, 61, 62, 94, 61, 94, 93, 62, 63, 95, 62, 95, 94, 64, 65, 97, 64, 97, 96, 65, 66, 98, 65, 98, 97, 66, 67, 99, 66, 99, 98, 67, 68, 100, 67, 100, 99, 68, 69, 101, 68, 101, 100, 69, 70, 102, 69, 102, 101, 70, 71, 103, 70, 103, 102, 71, 72, 104, 71, 104, 103, 72, 73, 105, 72, 105, 104, 73, 74, 106, 73, 106, 105, 74, 75, 107, 74, 107, 106, 75, 76, 108, 75, 108, 107, 76, 77, 109, 76, 109, 108, 77, 78, 110, 77, 110, 109, 78, 79, 111, 78, 111, 110, 79, 80, 112, 79, 112, 111, 80, 81, 113, 80, 113, 112, 81, 82, 114, 81, 114, 113, 82, 83, 115, 82, 115, 114, 83, 84, 116, 83, 116, 115, 84, 85, 117, 84, 117, 116, 85, 86, 118, 85, 118, 117, 86, 87, 119, 86, 119, 118, 87, 88, 120, 87, 120, 119, 88, 89, 121, 88, 121, 120, 89, 90, 122, 89, 122, 121, 90, 91, 123, 90, 123, 122, 91, 92, 124, 91, 124, 123, 92, 93, 125, 92, 125, 124, 93, 94, 126, 93, 126, 125, 94, 95, 127, 94, 127, 126, 96, 97, 129, 96, 129, 128, 97, 98, 130, 97, 130, 129, 98, 99, 131, 98, 131, 130, 99, 100, 132, 99, 132, 131, 100, 101, 133, 100, 133, 132, 101, 102, 134, 101, 134, 133, 102, 103, 135, 102, 135, 134, 103, 104, 136, 103, 136, 135, 104, 105, 137, 104, 137, 136, 105, 106, 138, 105, 138, 137, 106, 107, 139, 106, 139, 138, 107, 108, 140, 107, 140, 139, 108, 109, 141, 108, 141, 140, 109, 110, 142, 109, 142, 141, 110, 111, 143, 110, 143, 142, 111, 112, 144, 111, 144, 143, 112, 113, 145, 112, 145, 144, 113, 114, 146, 113, 146, 145, 114, 115, 147, 114, 147, 146, 115, 116, 148, 115, 148, 147, 116, 117, 149, 116, 149, 148, 117, 118, 150, 117, 150, 149, 118, 119, 151, 118, 151, 150, 119, 120, 152, 119, 152, 151, 120, 121, 153, 120, 153, 152, 121, 122, 154, 121, 154, 153, 122, 123, 155, 122, 155, 154, 123, 124, 156, 123, 156, 155, 124, 125, 157, 124, 157, 156, 125, 126, 158, 125, 158, 157, 126, 127, 159, 126, 159, 158, 128, 129, 161, 128, 161, 160, 129, 130, 162, 129, 162, 161, 130, 131, 163, 130, 163, 162, 131, 132, 164, 131, 164, 163, 132, 133, 165, 132, 165, 164, 133, 134, 166, 133, 166, 165, 134, 135, 167, 134, 167, 166, 135, 136, 168, 135, 168, 167, 136, 137, 169, 136, 169, 168, 137, 138, 170, 137, 170, 169, 138, 139, 171, 138, 171, 170, 139, 140, 172, 139, 172, 171, 140, 141, 173, 140, 173, 172, 141, 142, 174, 141, 174, 173, 142, 143, 175, 142, 175, 174, 143, 144, 176, 143, 176, 175, 144, 145, 177, 144, 177, 176, 145, 146, 178, 145, 178, 177, 146, 147, 179, 146, 179, 178, 147, 148, 180, 147, 180, 179, 148, 149, 181, 148, 181, 180, 149, 150, 182, 149, 182, 181, 150, 151, 183, 150, 183, 182, 151, 152, 184, 151, 184, 183, 152, 153, 185, 152, 185, 184, 153, 154, 186, 153, 186, 185, 154, 155, 187, 154, 187, 186, 155, 156, 188, 155, 188, 187, 156, 157, 189, 156, 189, 188, 157, 158, 190, 157, 190, 189, 158, 159, 191, 158, 191, 190, 160, 161, 193, 160, 193, 192, 161, 162, 194, 161, 194, 193, 162, 163, 195, 162, 195, 194, 163, 164, 196, 163, 196, 195, 164, 165, 197, 164, 197, 196, 165, 166, 198, 165, 198, 197, 166, 167, 199, 166, 199, 198, 167, 168, 200, 167, 200, 199, 168, 169, 201, 168, 201, 200, 169, 170, 202, 169, 202, 201, 170, 171, 203, 170, 203, 202, 171, 172, 204, 171, 204, 203, 172, 173, 205, 172, 205, 204, 173, 174, 206, 173, 206, 205, 174, 175, 207, 174, 207, 206, 175, 176, 208, 175, 208, 207, 176, 177, 209, 176, 209, 208, 177, 178, 210, 177, 210, 209, 178, 179, 211, 178, 211, 210, 179, 180, 212, 179, 212, 211, 180, 181, 213, 180, 213, 212, 181, 182, 214, 181, 214, 213, 182, 183, 215, 182, 215, 214, 183, 184, 216, 183, 216, 215, 184, 185, 217, 184, 217, 216, 185, 186, 218, 185, 218, 217, 186, 187, 219, 186, 219, 218, 187, 188, 220, 187, 220, 219, 188, 189, 221, 188, 221, 220, 189, 190, 222, 189, 222, 221, 190, 191, 223, 190, 223, 222, 192, 193, 225, 192, 225, 224, 193, 194, 226, 193, 226, 225, 194, 195, 227, 194, 227, 226, 195, 196, 228, 195, 228, 227, 196, 197, 229, 196, 229, 228, 197, 198, 230, 197, 230, 229, 198, 199, 231, 198, 231, 230, 199, 200, 232, 199, 232, 231, 200, 201, 233, 200, 233, 232, 201, 202, 234, 201, 234, 233, 202, 203, 235, 202, 235, 234, 203, 204, 236, 203, 236, 235, 204, 205, 237, 204, 237, 236, 205, 206, 238, 205, 238, 237, 206, 207, 239, 206, 239, 238, 207, 208, 240, 207, 240, 239, 208, 209, 241, 208, 241, 240, 209, 210, 242, 209, 242, 241, 210, 211, 243, 210, 243, 242, 211, 212, 244, 211, 244, 243, 212, 213, 245, 212, 245, 244, 213, 214, 246, 213, 246, 245, 214, 215, 247, 214, 247, 246, 215, 216, 248, 215, 248, 247, 216, 217, 249, 216, 249, 248, 217, 218, 250, 217, 250, 249, 218, 219, 251, 218, 251, 250, 219, 220, 252, 219, 252, 251, 220, 221, 253, 220, 253, 252, 221, 222, 254, 221, 254, 253, 222, 223, 255, 222, 255, 254, 224, 225, 257, 224, 257, 256, 225, 226, 258, 225, 258, 257, 226, 227, 259, 226, 259, 258, 227, 228, 260, 227, 260, 259, 228, 229, 261, 228, 261, 260, 229, 230, 262, 229, 262, 261, 230, 231, 263, 230, 263, 262, 231, 232, 264, 231, 264, 263, 232, 233, 265, 232, 265, 264, 233, 234, 266, 233, 266, 265, 234, 235, 267, 234, 267, 266, 235, 236, 268, 235, 268, 267, 236, 237, 269, 236, 269, 268, 237, 238, 270, 237, 270, 269, 238, 239, 271, 238, 271, 270, 239, 240, 272, 239, 272, 271, 240, 241, 273, 240, 273, 272, 241, 242, 274, 241, 274, 273, 242, 243, 275, 242, 275, 274, 243, 244, 276, 243, 276, 275, 244, 245, 277, 244, 277, 276, 245, 246, 278, 245, 278, 277, 246, 247, 279, 246, 279, 278, 247, 248, 280, 247, 280, 279, 248, 249, 281, 248, 281, 280, 249, 250, 282, 249, 282, 281, 250, 251, 283, 250, 283, 282, 251, 252, 284, 251, 284, 283, 252, 253, 285, 252, 285, 284, 253, 254, 286, 253, 286, 285, 254, 255, 287, 254, 287, 286, 256, 257, 289, 256, 289, 288, 257, 258, 290, 257, 290, 289, 258, 259, 291, 258, 291, 290, 259, 260, 292, 259, 292, 291, 260, 261, 293, 260, 293, 292, 261, 262, 294, 261, 294, 293, 262, 263, 295, 262, 295, 294, 263, 264, 296, 263, 296, 295, 264, 265, 297, 264, 297, 296, 265, 266, 298, 265, 298, 297, 266, 267, 299, 266, 299, 298, 267, 268, 300, 267, 300, 299, 268, 269, 301, 268, 301, 300, 269, 270, 302, 269, 302, 301, 270, 271, 303, 270, 303, 302, 271, 272, 304, 271, 304, 303, 272, 273, 305, 272, 305, 304, 273, 274, 306, 273, 306, 305, 274, 275, 307, 274, 307, 306, 275, 276, 308, 275, 308, 307, 276, 277, 309, 276, 309, 308, 277, 278, 310, 277, 310, 309, 278, 279, 311, 278, 311, 310, 279, 280, 312, 279, 312, 311, 280, 281, 313, 280, 313, 312, 281, 282, 314, 281, 314, 313, 282, 283, 315, 282, 315, 314, 283, 284, 316, 283, 316, 315, 284, 285, 317, 284, 317, 316, 285, 286, 318, 285, 318, 317, 286, 287, 319, 286, 319, 318, 288, 289, 321, 288, 321, 320, 289, 290, 322, 289, 322, 321, 290, 291, 323, 290, 323, 322, 291, 292, 324, 291, 324, 323, 292, 293, 325, 292, 325, 324, 293, 294, 326, 293, 326, 325, 294, 295, 327, 294, 327, 326, 295, 296, 328, 295, 328, 327, 296, 297, 329, 296, 329, 328, 297, 298, 330, 297, 330, 329, 298, 299, 331, 298, 331, 330, 299, 300, 332, 299, 332, 331, 300, 301, 333, 300, 333, 332, 301, 302, 334, 301, 334, 333, 302, 303, 335, 302, 335, 334, 303, 304, 336, 303, 336, 335, 304, 305, 337, 304, 337, 336, 305, 306, 338, 305, 338, 337, 306, 307, 339, 306, 339, 338, 307, 308, 340, 307, 340, 339, 308, 309, 341, 308, 341, 340, 309, 310, 342, 309, 342, 341, 310, 311, 343, 310, 343, 342, 311, 312, 344, 311, 344, 343, 312, 313, 345, 312, 345, 344, 313, 314, 346, 313, 346, 345, 314, 315, 347, 314, 347, 346, 315, 316, 348, 315, 348, 347, 316, 317, 349, 316, 349, 348, 317, 318, 350, 317, 350, 349, 318, 319, 351, 318, 351, 350, 320, 321, 353, 320, 353, 352, 321, 322, 354, 321, 354, 353, 322, 323, 355, 322, 355, 354, 323, 324, 356, 323, 356, 355, 324, 325, 357, 324, 357, 356, 325, 326, 358, 325, 358, 357, 326, 327, 359, 326, 359, 358, 327, 328, 360, 327, 360, 359, 328, 329, 361, 328, 361, 360, 329, 330, 362, 329, 362, 361, 330, 331, 363, 330, 363, 362, 331, 332, 364, 331, 364, 363, 332, 333, 365, 332, 365, 364, 333, 334, 366, 333, 366, 365, 334, 335, 367, 334, 367, 366, 335, 336, 368, 335, 368, 367, 336, 337, 369, 336, 369, 368, 337, 338, 370, 337, 370, 369, 338, 339, 371, 338, 371, 370, 339, 340, 372, 339, 372, 371, 340, 341, 373, 340, 373, 372, 341, 342, 374, 341, 374, 373, 342, 343, 375, 342, 375, 374, 343, 344, 376, 343, 376, 375, 344, 345, 377, 344, 377, 376, 345, 346, 378, 345, 378, 377, 346, 347, 379, 346, 379, 378, 347, 348, 380, 347, 380, 379, 348, 349, 381, 348, 381, 380, 349, 350, 382, 349, 382, 381, 350, 351, 383, 350, 383, 382, 352, 353, 385, 352, 385, 384, 353, 354, 386, 353, 386, 385, 354, 355, 387, 354, 387, 386, 355, 356, 388, 355, 388, 387, 356, 357, 389, 356, 389, 388, 357, 358, 390, 357, 390, 389, 358, 359, 391, 358, 391, 390, 359, 360, 392, 359, 392, 391, 360, 361, 393, 360, 393, 392, 361, 362, 394, 361, 394, 393, 362, 363, 395, 362, 395, 394, 363, 364, 396, 363, 396, 395, 364, 365, 397, 364, 397, 396, 365, 366, 398, 365, 398, 397, 366, 367, 399, 366, 399, 398, 367, 368, 400, 367, 400, 399, 368, 369, 401, 368, 401, 400, 369, 370, 402, 369, 402, 401, 370, 371, 403, 370, 403, 402, 371, 372, 404, 371, 404, 403, 372, 373, 405, 372, 405, 404, 373, 374, 406, 373, 406, 405, 374, 375, 407, 374, 407, 406, 375, 376, 408, 375, 408, 407, 376, 377, 409, 376, 409, 408, 377, 378, 410, 377, 410, 409, 378, 379, 411, 378, 411, 410, 379, 380, 412, 379, 412, 411, 380, 381, 413, 380, 413, 412, 381, 382, 414, 381, 414, 413, 382, 383, 415, 382, 415, 414, 384, 385, 417, 384, 417, 416, 385, 386, 418, 385, 418, 417, 386, 387, 419, 386, 419, 418, 387, 388, 420, 387, 420, 419, 388, 389, 421, 388, 421, 420, 389, 390, 422, 389, 422, 421, 390, 391, 423, 390, 423, 422, 391, 392, 424, 391, 424, 423, 392, 393, 425, 392, 425, 424, 393, 394, 426, 393, 426, 425, 394, 395, 427, 394, 427, 426, 395, 396, 428, 395, 428, 427, 396, 397, 429, 396, 429, 428, 397, 398, 430, 397, 430, 429, 398, 399, 431, 398, 431, 430, 399, 400, 432, 399, 432, 431, 400, 401, 433, 400, 433, 432, 401, 402, 434, 401, 434, 433, 402, 403, 435, 402, 435, 434, 403, 404, 436, 403, 436, 435, 404, 405, 437, 404, 437, 436, 405, 406, 438, 405, 438, 437, 406, 407, 439, 406, 439, 438, 407, 408, 440, 407, 440, 439, 408, 409, 441, 408, 441, 440, 409, 410, 442, 409, 442, 441, 410, 411, 443, 410, 443, 442, 411, 412, 444, 411, 444, 443, 412, 413, 445, 412, 445, 444, 413, 414, 446, 413, 446, 445, 414, 415, 447, 414, 447, 446, 416, 417, 449, 416, 449, 448, 417, 418, 450, 417, 450, 449, 418, 419, 451, 418, 451, 450, 419, 420, 452, 419, 452, 451, 420, 421, 453, 420, 453, 452, 421, 422, 454, 421, 454, 453, 422, 423, 455, 422, 455, 454, 423, 424, 456, 423, 456, 455, 424, 425, 457, 424, 457, 456, 425, 426, 458, 425, 458, 457, 426, 427, 459, 426, 459, 458, 427, 428, 460, 427, 460, 459, 428, 429, 461, 428, 461, 460, 429, 430, 462, 429, 462, 461, 430, 431, 463, 430, 463, 462, 431, 432, 464, 431, 464, 463, 432, 433, 465, 432, 465, 464, 433, 434, 466, 433, 466, 465, 434, 435, 467, 434, 467, 466, 435, 436, 468, 435, 468, 467, 436, 437, 469, 436, 469, 468, 437, 438, 470, 437, 470, 469, 438, 439, 471, 438, 471, 470, 439, 440, 472, 439, 472, 471, 440, 441, 473, 440, 473, 472, 441, 442, 474, 441, 474, 473, 442, 443, 475, 442, 475, 474, 443, 444, 476, 443, 476, 475, 444, 445, 477, 444, 477, 476, 445, 446, 478, 445, 478, 477, 446, 447, 479, 446, 479, 478, 448, 449, 481, 448, 481, 480, 449, 450, 482, 449, 482, 481, 450, 451, 483, 450, 483, 482, 451, 452, 484, 451, 484, 483, 452, 453, 485, 452, 485, 484, 453, 454, 486, 453, 486, 485, 454, 455, 487, 454, 487, 486, 455, 456, 488, 455, 488, 487, 456, 457, 489, 456, 489, 488, 457, 458, 490, 457, 490, 489, 458, 459, 491, 458, 491, 490, 459, 460, 492, 459, 492, 491, 460, 461, 493, 460, 493, 492, 461, 462, 494, 461, 494, 493, 462, 463, 495, 462, 495, 494, 463, 464, 496, 463, 496, 495, 464, 465, 497, 464, 497, 496, 465, 466, 498, 465, 498, 497, 466, 467, 499, 466, 499, 498, 467, 468, 500, 467, 500, 499, 468, 469, 501, 468, 501, 500, 469, 470, 502, 469, 502, 501, 470, 471, 503, 470, 503, 502, 471, 472, 504, 471, 504, 503, 472, 473, 505, 472, 505, 504, 473, 474, 506, 473, 506, 505, 474, 475, 507, 474, 507, 506, 475, 476, 508, 475, 508, 507, 476, 477, 509, 476, 509, 508, 477, 478, 510, 477, 510, 509, 478, 479, 511, 478, 511, 510, 480, 481, 513, 480, 513, 512, 481, 482, 514, 481, 514, 513, 482, 483, 515, 482, 515, 514, 483, 484, 516, 483, 516, 515, 484, 485, 517, 484, 517, 516, 485, 486, 518, 485, 518, 517, 486, 487, 519, 486, 519, 518, 487, 488, 520, 487, 520, 519, 488, 489, 521, 488, 521, 520, 489, 490, 522, 489, 522, 521, 490, 491, 523, 490, 523, 522, 491, 492, 524, 491, 524, 523, 492, 493, 525, 492, 525, 524, 493, 494, 526, 493, 526, 525, 494, 495, 527, 494, 527, 526, 495, 496, 528, 495, 528, 527, 496, 497, 529, 496, 529, 528, 497, 498, 530, 497, 530, 529, 498, 499, 531, 498, 531, 530, 499, 500, 532, 499, 532, 531, 500, 501, 533, 500, 533, 532, 501, 502, 534, 501, 534, 533, 502, 503, 535, 502, 535, 534, 503, 504, 536, 503, 536, 535, 504, 505, 537, 504, 537, 536, 505, 506, 538, 505, 538, 537, 506, 507, 539, 506, 539, 538, 507, 508, 540, 507, 540, 539, 508, 509, 541, 508, 541, 540, 509, 510, 542, 509, 542, 541, 510, 511, 543, 510, 543, 542, 512, 513, 545, 512, 545, 544, 513, 514, 546, 513, 546, 545, 514, 515, 547, 514, 547, 546, 515, 516, 548, 515, 548, 547, 516, 517, 549, 516, 549, 548, 517, 518, 550, 517, 550, 549, 518, 519, 551, 518, 551, 550, 519, 520, 552, 519, 552, 551, 520, 521, 553, 520, 553, 552, 521, 522, 554, 521, 554, 553, 522, 523, 555, 522, 555, 554, 523, 524, 556, 523, 556, 555, 524, 525, 557, 524, 557, 556, 525, 526, 558, 525, 558, 557, 526, 527, 559, 526, 559, 558, 527, 528, 560, 527, 560, 559, 528, 529, 561, 528, 561, 560, 529, 530, 562, 529, 562, 561, 530, 531, 563, 530, 563, 562, 531, 532, 564, 531, 564, 563, 532, 533, 565, 532, 565, 564, 533, 534, 566, 533, 566, 565, 534, 535, 567, 534, 567, 566, 535, 536, 568, 535, 568, 567, 536, 537, 569, 536, 569, 568, 537, 538, 570, 537, 570, 569, 538, 539, 571, 538, 571, 570, 539, 540, 572, 539, 572, 571, 540, 541, 573, 540, 573, 572, 541, 542, 574, 541, 574, 573, 542, 543, 575, 542, 575, 574, 544, 545, 577, 544, 577, 576, 545, 546, 578, 545, 578, 577, 546, 547, 579, 546, 579, 578, 547, 548, 580, 547, 580, 579, 548, 549, 581, 548, 581, 580, 549, 550, 582, 549, 582, 581, 550, 551, 583, 550, 583, 582, 551, 552, 584, 551, 584, 583, 552, 553, 585, 552, 585, 584, 553, 554, 586, 553, 586, 585, 554, 555, 587, 554, 587, 586, 555, 556, 588, 555, 588, 587, 556, 557, 589, 556, 589, 588, 557, 558, 590, 557, 590, 589, 558, 559, 591, 558, 591, 590, 559, 560, 592, 559, 592, 591, 560, 561, 593, 560, 593, 592, 561, 562, 594, 561, 594, 593, 562, 563, 595, 562, 595, 594, 563, 564, 596, 563, 596, 595, 564, 565, 597, 564, 597, 596, 565, 566, 598, 565, 598, 597, 566, 567, 599, 566, 599, 598, 567, 568, 600, 567, 600, 599, 568, 569, 601, 568, 601, 600, 569, 570, 602, 569, 602, 601, 570, 571, 603, 570, 603, 602, 571, 572, 604, 571, 604, 603, 572, 573, 605, 572, 605, 604, 573, 574, 606, 573, 606, 605, 574, 575, 607, 574, 607, 606, 576, 577, 609, 576, 609, 608, 577, 578, 610, 577, 610, 609, 578, 579, 611, 578, 611, 610, 579, 580, 612, 579, 612, 611, 580, 581, 613, 580, 613, 612, 581, 582, 614, 581, 614, 613, 582, 583, 615, 582, 615, 614, 583, 584, 616, 583, 616, 615, 584, 585, 617, 584, 617, 616, 585, 586, 618, 585, 618, 617, 586, 587, 619, 586, 619, 618, 587, 588, 620, 587, 620, 619, 588, 589, 621, 588, 621, 620, 589, 590, 622, 589, 622, 621, 590, 591, 623, 590, 623, 622, 591, 592, 624, 591, 624, 623, 592, 593, 625, 592, 625, 624, 593, 594, 626, 593, 626, 625, 594, 595, 627, 594, 627, 626, 595, 596, 628, 595, 628, 627, 596, 597, 629, 596, 629, 628, 597, 598, 630, 597, 630, 629, 598, 599, 631, 598, 631, 630, 599, 600, 632, 599, 632, 631, 600, 601, 633, 600, 633, 632, 601, 602, 634, 601, 634, 633, 602, 603, 635, 602, 635, 634, 603, 604, 636, 603, 636, 635, 604, 605, 637, 604, 637, 636, 605, 606, 638, 605, 638, 637, 606, 607, 639, 606, 639, 638, 608, 609, 641, 608, 641, 640, 609, 610, 642, 609, 642, 641, 610, 611, 643, 610, 643, 642, 611, 612, 644, 611, 644, 643, 612, 613, 645, 612, 645, 644, 613, 614, 646, 613, 646, 645, 614, 615, 647, 614, 647, 646, 615, 616, 648, 615, 648, 647, 616, 617, 649, 616, 649, 648, 617, 618, 650, 617, 650, 649, 618, 619, 651, 618, 651, 650, 619, 620, 652, 619, 652, 651, 620, 621, 653, 620, 653, 652, 621, 622, 654, 621, 654, 653, 622, 623, 655, 622, 655, 654, 623, 624, 656, 623, 656, 655, 624, 625, 657, 624, 657, 656, 625, 626, 658, 625, 658, 657, 626, 627, 659, 626, 659, 658, 627, 628, 660, 627, 660, 659, 628, 629, 661, 628, 661, 660, 629, 630, 662, 629, 662, 661, 630, 631, 663, 630, 663, 662, 631, 632, 664, 631, 664, 663, 632, 633, 665, 632, 665, 664, 633, 634, 666, 633, 666, 665, 634, 635, 667, 634, 667, 666, 635, 636, 668, 635, 668, 667, 636, 637, 669, 636, 669, 668, 637, 638, 670, 637, 670, 669, 638, 639, 671, 638, 671, 670, 640, 641, 673, 640, 673, 672, 641, 642, 674, 641, 674, 673, 642, 643, 675, 642, 675, 674, 643, 644, 676, 643, 676, 675, 644, 645, 677, 644, 677, 676, 645, 646, 678, 645, 678, 677, 646, 647, 679, 646, 679, 678, 647, 648, 680, 647, 680, 679, 648, 649, 681, 648, 681, 680, 649, 650, 682, 649, 682, 681, 650, 651, 683, 650, 683, 682, 651, 652, 684, 651, 684, 683, 652, 653, 685, 652, 685, 684, 653, 654, 686, 653, 686, 685, 654, 655, 687, 654, 687, 686, 655, 656, 688, 655, 688, 687, 656, 657, 689, 656, 689, 688, 657, 658, 690, 657, 690, 689, 658, 659, 691, 658, 691, 690, 659, 660, 692, 659, 692, 691, 660, 661, 693, 660, 693, 692, 661, 662, 694, 661, 694, 693, 662, 663, 695, 662, 695, 694, 663, 664, 696, 663, 696, 695, 664, 665, 697, 664, 697, 696, 665, 666, 698, 665, 698, 697, 666, 667, 699, 666, 699, 698, 667, 668, 700, 667, 700, 699, 668, 669, 701, 668, 701, 700, 669, 670, 702, 669, 702, 701, 670, 671, 703, 670, 703, 702, 672, 673, 705, 672, 705, 704, 673, 674, 706, 673, 706, 705, 674, 675, 707, 674, 707, 706, 675, 676, 708, 675, 708, 707, 676, 677, 709, 676, 709, 708, 677, 678, 710, 677, 710, 709, 678, 679, 711, 678, 711, 710, 679, 680, 712, 679, 712, 711, 680, 681, 713, 680, 713, 712, 681, 682, 714, 681, 714, 713, 682, 683, 715, 682, 715, 714, 683, 684, 716, 683, 716, 715, 684, 685, 717, 684, 717, 716, 685, 686, 718, 685, 718, 717, 686, 687, 719, 686, 719, 718, 687, 688, 720, 687, 720, 719, 688, 689, 721, 688, 721, 720, 689, 690, 722, 689, 722, 721, 690, 691, 723, 690, 723, 722, 691, 692, 724, 691, 724, 723, 692, 693, 725, 692, 725, 724, 693, 694, 726, 693, 726, 725, 694, 695, 727, 694, 727, 726, 695, 696, 728, 695, 728, 727, 696, 697, 729, 696, 729, 728, 697, 698, 730, 697, 730, 729, 698, 699, 731, 698, 731, 730, 699, 700, 732, 699, 732, 731, 700, 701, 733, 700, 733, 732, 701, 702, 734, 701, 734, 733, 702, 703, 735, 702, 735, 734, 704, 705, 737, 704, 737, 736, 705, 706, 738, 705, 738, 737, 706, 707, 739, 706, 739, 738, 707, 708, 740, 707, 740, 739, 708, 709, 741, 708, 741, 740, 709, 710, 742, 709, 742, 741, 710, 711, 743, 710, 743, 742, 711, 712, 744, 711, 744, 743, 712, 713, 745, 712, 745, 744, 713, 714, 746, 713, 746, 745, 714, 715, 747, 714, 747, 746, 715, 716, 748, 715, 748, 747, 716, 717, 749, 716, 749, 748, 717, 718, 750, 717, 750, 749, 718, 719, 751, 718, 751, 750, 719, 720, 752, 719, 752, 751, 720, 721, 753, 720, 753, 752, 721, 722, 754, 721, 754, 753, 722, 723, 755, 722, 755, 754, 723, 724, 756, 723, 756, 755, 724, 725, 757, 724, 757, 756, 725, 726, 758, 725, 758, 757, 726, 727, 759, 726, 759, 758, 727, 728, 760, 727, 760, 759, 728, 729, 761, 728, 761, 760, 729, 730, 762, 729, 762, 761, 730, 731, 763, 730, 763, 762, 731, 732, 764, 731, 764, 763, 732, 733, 765, 732, 765, 764, 733, 734, 766, 733, 766, 765, 734, 735, 767, 734, 767, 766, 736, 737, 769, 736, 769, 768, 737, 738, 770, 737, 770, 769, 738, 739, 771, 738, 771, 770, 739, 740, 772, 739, 772, 771, 740, 741, 773, 740, 773, 772, 741, 742, 774, 741, 774, 773, 742, 743, 775, 742, 775, 774, 743, 744, 776, 743, 776, 775, 744, 745, 777, 744, 777, 776, 745, 746, 778, 745, 778, 777, 746, 747, 779, 746, 779, 778, 747, 748, 780, 747, 780, 779, 748, 749, 781, 748, 781, 780, 749, 750, 782, 749, 782, 781, 750, 751, 783, 750, 783, 782, 751, 752, 784, 751, 784, 783, 752, 753, 785, 752, 785, 784, 753, 754, 786, 753, 786, 785, 754, 755, 787, 754, 787, 786, 755, 756, 788, 755, 788, 787, 756, 757, 789, 756, 789, 788, 757, 758, 790, 757, 790, 789, 758, 759, 791, 758, 791, 790, 759, 760, 792, 759, 792, 791, 760, 761, 793, 760, 793, 792, 761, 762, 794, 761, 794, 793, 762, 763, 795, 762, 795, 794, 763, 764, 796, 763, 796, 795, 764, 765, 797, 764, 797, 796, 765, 766, 798, 765, 798, 797, 766, 767, 799, 766, 799, 798, 768, 769, 801, 768, 801, 800, 769, 770, 802, 769, 802, 801, 770, 771, 803, 770, 803, 802, 771, 772, 804, 771, 804, 803, 772, 773, 805, 772, 805, 804, 773, 774, 806, 773, 806, 805, 774, 775, 807, 774, 807, 806, 775, 776, 808, 775, 808, 807, 776, 777, 809, 776, 809, 808, 777, 778, 810, 777, 810, 809, 778, 779, 811, 778, 811, 810, 779, 780, 812, 779, 812, 811, 780, 781, 813, 780, 813, 812, 781, 782, 814, 781, 814, 813, 782, 783, 815, 782, 815, 814, 783, 784, 816, 783, 816, 815, 784, 785, 817, 784, 817, 816, 785, 786, 818, 785, 818, 817, 786, 787, 819, 786, 819, 818, 787, 788, 820, 787, 820, 819, 788, 789, 821, 788, 821, 820, 789, 790, 822, 789, 822, 821, 790, 791, 823, 790, 823, 822, 791, 792, 824, 791, 824, 823, 792, 793, 825, 792, 825, 824, 793, 794, 826, 793, 826, 825, 794, 795, 827, 794, 827, 826, 795, 796, 828, 795, 828, 827, 796, 797, 829, 796, 829, 828, 797, 798, 830, 797, 830, 829, 798, 799, 831, 798, 831, 830, 800, 801, 833, 800, 833, 832, 801, 802, 834, 801, 834, 833, 802, 803, 835, 802, 835, 834, 803, 804, 836, 803, 836, 835, 804, 805, 837, 804, 837, 836, 805, 806, 838, 805, 838, 837, 806, 807, 839, 806, 839, 838, 807, 808, 840, 807, 840, 839, 808, 809, 841, 808, 841, 840, 809, 810, 842, 809, 842, 841, 810, 811, 843, 810, 843, 842, 811, 812, 844, 811, 844, 843, 812, 813, 845, 812, 845, 844, 813, 814, 846, 813, 846, 845, 814, 815, 847, 814, 847, 846, 815, 816, 848, 815, 848, 847, 816, 817, 849, 816, 849, 848, 817, 818, 850, 817, 850, 849, 818, 819, 851, 818, 851, 850, 819, 820, 852, 819, 852, 851, 820, 821, 853, 820, 853, 852, 821, 822, 854, 821, 854, 853, 822, 823, 855, 822, 855, 854, 823, 824, 856, 823, 856, 855, 824, 825, 857, 824, 857, 856, 825, 826, 858, 825, 858, 857, 826, 827, 859, 826, 859, 858, 827, 828, 860, 827, 860, 859, 828, 829, 861, 828, 861, 860, 829, 830, 862, 829, 862, 861, 830, 831, 863, 830, 863, 862, 832, 833, 865, 832, 865, 864, 833, 834, 866, 833, 866, 865, 834, 835, 867, 834, 867, 866, 835, 836, 868, 835, 868, 867, 836, 837, 869, 836, 869, 868, 837, 838, 870, 837, 870, 869, 838, 839, 871, 838, 871, 870, 839, 840, 872, 839, 872, 871, 840, 841, 873, 840, 873, 872, 841, 842, 874, 841, 874, 873, 842, 843, 875, 842, 875, 874, 843, 844, 876, 843, 876, 875, 844, 845, 877, 844, 877, 876, 845, 846, 878, 845, 878, 877, 846, 847, 879, 846, 879, 878, 847, 848, 880, 847, 880, 879, 848, 849, 881, 848, 881, 880, 849, 850, 882, 849, 882, 881, 850, 851, 883, 850, 883, 882, 851, 852, 884, 851, 884, 883, 852, 853, 885, 852, 885, 884, 853, 854, 886, 853, 886, 885, 854, 855, 887, 854, 887, 886, 855, 856, 888, 855, 888, 887, 856, 857, 889, 856, 889, 888, 857, 858, 890, 857, 890, 889, 858, 859, 891, 858, 891, 890, 859, 860, 892, 859, 892, 891, 860, 861, 893, 860, 893, 892, 861, 862, 894, 861, 894, 893, 862, 863, 895, 862, 895, 894, 864, 865, 897, 864, 897, 896, 865, 866, 898, 865, 898, 897, 866, 867, 899, 866, 899, 898, 867, 868, 900, 867, 900, 899, 868, 869, 901, 868, 901, 900, 869, 870, 902, 869, 902, 901, 870, 871, 903, 870, 903, 902, 871, 872, 904, 871, 904, 903, 872, 873, 905, 872, 905, 904, 873, 874, 906, 873, 906, 905, 874, 875, 907, 874, 907, 906, 875, 876, 908, 875, 908, 907, 876, 877, 909, 876, 909, 908, 877, 878, 910, 877, 910, 909, 878, 879, 911, 878, 911, 910, 879, 880, 912, 879, 912, 911, 880, 881, 913, 880, 913, 912, 881, 882, 914, 881, 914, 913, 882, 883, 915, 882, 915, 914, 883, 884, 916, 883, 916, 915, 884, 885, 917, 884, 917, 916, 885, 886, 918, 885, 918, 917, 886, 887, 919, 886, 919, 918, 887, 888, 920, 887, 920, 919, 888, 889, 921, 888, 921, 920, 889, 890, 922, 889, 922, 921, 890, 891, 923, 890, 923, 922, 891, 892, 924, 891, 924, 923, 892, 893, 925, 892, 925, 924, 893, 894, 926, 893, 926, 925, 894, 895, 927, 894, 927, 926, 896, 897, 929, 896, 929, 928, 897, 898, 930, 897, 930, 929, 898, 899, 931, 898, 931, 930, 899, 900, 932, 899, 932, 931, 900, 901, 933, 900, 933, 932, 901, 902, 934, 901, 934, 933, 902, 903, 935, 902, 935, 934, 903, 904, 936, 903, 936, 935, 904, 905, 937, 904, 937, 936, 905, 906, 938, 905, 938, 937, 906, 907, 939, 906, 939, 938, 907, 908, 940, 907, 940, 939, 908, 909, 941, 908, 941, 940, 909, 910, 942, 909, 942, 941, 910, 911, 943, 910, 943, 942, 911, 912, 944, 911, 944, 943, 912, 913, 945, 912, 945, 944, 913, 914, 946, 913, 946, 945, 914, 915, 947, 914, 947, 946, 915, 916, 948, 915, 948, 947, 916, 917, 949, 916, 949, 948, 917, 918, 950, 917, 950, 949, 918, 919, 951, 918, 951, 950, 919, 920, 952, 919, 952, 951, 920, 921, 953, 920, 953, 952, 921, 922, 954, 921, 954, 953, 922, 923, 955, 922, 955, 954, 923, 924, 956, 923, 956, 955, 924, 925, 957, 924, 957, 956, 925, 926, 958, 925, 958, 957, 926, 927, 959, 926, 959, 958, 928, 929, 961, 928, 961, 960, 929, 930, 962, 929, 962, 961, 930, 931, 963, 930, 963, 962, 931, 932, 964, 931, 964, 963, 932, 933, 965, 932, 965, 964, 933, 934, 966, 933, 966, 965, 934, 935, 967, 934, 967, 966, 935, 936, 968, 935, 968, 967, 936, 937, 969, 936, 969, 968, 937, 938, 970, 937, 970, 969, 938, 939, 971, 938, 971, 970, 939, 940, 972, 939, 972, 971, 940, 941, 973, 940, 973, 972, 941, 942, 974, 941, 974, 973, 942, 943, 975, 942, 975, 974, 943, 944, 976, 943, 976, 975, 944, 945, 977, 944, 977, 976, 945, 946, 978, 945, 978, 977, 946, 947, 979, 946, 979, 978, 947, 948, 980, 947, 980, 979, 948, 949, 981, 948, 981, 980, 949, 950, 982, 949, 982, 981, 950, 951, 983, 950, 983, 982, 951, 952, 984, 951, 984, 983, 952, 953, 985, 952, 985, 984, 953, 954, 986, 953, 986, 985, 954, 955, 987, 954, 987, 986, 955, 956, 988, 955, 988, 987, 956, 957, 989, 956, 989, 988, 957, 958, 990, 957, 990, 989, 958, 959, 991, 958, 991, 990, 960, 961, 993, 960, 993, 992, 961, 962, 994, 961, 994, 993, 962, 963, 995, 962, 995, 994, 963, 964, 996, 963, 996, 995, 964, 965, 997, 964, 997, 996, 965, 966, 998, 965, 998, 997, 966, 967, 999, 966, 999, 998, 967, 968, 1000, 967, 1000, 999, 968, 969, 1001, 968, 1001, 1000, 969, 970, 1002, 969, 1002, 1001, 970, 971, 1003, 970, 1003, 1002, 971, 972, 1004, 971, 1004, 1003, 972, 973, 1005, 972, 1005, 1004, 973, 974, 1006, 973, 1006, 1005, 974, 975, 1007, 974, 1007, 1006, 975, 976, 1008, 975, 1008, 1007, 976, 977, 1009, 976, 1009, 1008, 977, 978, 1010, 977, 1010, 1009, 978, 979, 1011, 978, 1011, 1010, 979, 980, 1012, 979, 1012, 1011, 980, 981, 1013, 980, 1013, 1012, 981, 982, 1014, 981, 1014, 1013, 982, 983, 1015, 982, 1015, 1014, 983, 984, 1016, 983, 1016, 1015, 984, 985, 1017, 984, 1017, 1016, 985, 986, 1018, 985, 1018, 1017, 986, 987, 1019, 986, 1019, 1018, 987, 988, 1020, 987, 1020, 1019, 988, 989, 1021, 988, 1021, 1020, 989, 990, 1022, 989, 1022, 1021, 990, 991, 1023, 990, 1023, 1022] point3f[] points = [(0, 0, -8.03668), (20, 0, -42.435413), (40, 0, -196.9681), (60, 0, 10), (80, 0, -115.08344), (100, 0, -149.48218), (120, 0, 10), (140, 0, -176.38777), (160, 0, -79.910095), (180, 0, 10), (200, 0, -207.20355), (220, 0, -9.978674), (240, 0, -40.231514), (260, 0, -197.90723), (280, 0, 10), (300, 0, -112.868164), (320, 0, -151.402), (340, 0, 10), (360, 0, -174.8529), (380, 0, -82.211075), (400, 0, 10), (420, 0, -206.82843), (440, 0, -11.9422245), (460, 0, -38.039684), (480, 0, -198.80902), (500, 0, 10), (520, 0, -110.64218), (540, 0, -153.29907), (560, 0, 10), (580, 0, -173.28796), (600, 0, -84.51098), (620, 0, 10), (0, 20, -27.724184), (20, 20, -62.122917), (40, 20, -216.65561), (60, 20, 10), (80, 20, -134.77095), (100, 20, -169.16968), (120, 20, 10), (140, 20, -196.07527), (160, 20, -99.597595), (180, 20, 0.685668), (200, 20, -226.89104), (220, 20, -29.66618), (240, 20, -59.91902), (260, 20, -217.59473), (280, 20, 10), (300, 20, -132.55566), (320, 20, -171.08951), (340, 20, 10), (360, 20, -194.54044), (380, 20, -101.898575), (400, 20, 2.1588554), (420, 20, -226.51595), (440, 20, -31.629728), (460, 20, -57.72719), (480, 20, -218.49654), (500, 20, 10), (520, 20, -130.32968), (540, 20, -172.98657), (560, 20, 10), (580, 20, -192.97545), (600, 20, -104.19848), (620, 20, 3.600522), (0, 40, -37.97628), (20, 40, -72.375015), (40, 40, -226.90768), (60, 40, 9.509638), (80, 40, -145.02304), (100, 40, -179.42178), (120, 40, 10), (140, 40, -206.32735), (160, 40, -109.849686), (180, 40, -9.566425), (200, 40, -237.14314), (220, 40, -39.91827), (240, 40, -70.171104), (260, 40, -227.84682), (280, 40, 8.533462), (300, 40, -142.80777), (320, 40, -181.34161), (340, 40, 10), (360, 40, -204.79251), (380, 40, -112.15067), (400, 40, -8.093237), (420, 40, -236.76805), (440, 40, -41.88182), (460, 40, -67.97928), (480, 40, -228.74863), (500, 40, 7.52054), (520, 40, -140.58179), (540, 40, -183.23866), (560, 40, 10), (580, 40, -203.22755), (600, 40, -114.45057), (620, 40, -6.6515713), (0, 60, -37.97628), (20, 60, -72.375015), (40, 60, -226.90768), (60, 60, 9.509638), (80, 60, -145.02304), (100, 60, -179.42178), (120, 60, 10), (140, 60, -206.32735), (160, 60, -109.849686), (180, 60, -9.566425), (200, 60, -237.14314), (220, 60, -39.91827), (240, 60, -70.171104), (260, 60, -227.84682), (280, 60, 8.533462), (300, 60, -142.80777), (320, 60, -181.34161), (340, 60, 10), (360, 60, -204.79251), (380, 60, -112.15067), (400, 60, -8.093237), (420, 60, -236.76805), (440, 60, -41.88182), (460, 60, -67.97928), (480, 60, -228.74863), (500, 60, 7.52054), (520, 60, -140.58179), (540, 60, -183.23866), (560, 60, 10), (580, 60, -203.22755), (600, 60, -114.45057), (620, 60, -6.6515713), (0, 80, -27.724184), (20, 80, -62.122917), (40, 80, -216.65561), (60, 80, 10), (80, 80, -134.77095), (100, 80, -169.16968), (120, 80, 10), (140, 80, -196.07527), (160, 80, -99.597595), (180, 80, 0.685668), (200, 80, -226.89104), (220, 80, -29.66618), (240, 80, -59.91902), (260, 80, -217.59473), (280, 80, 10), (300, 80, -132.55566), (320, 80, -171.08951), (340, 80, 10), (360, 80, -194.54044), (380, 80, -101.898575), (400, 80, 2.1588554), (420, 80, -226.51595), (440, 80, -31.629728), (460, 80, -57.72719), (480, 80, -218.49654), (500, 80, 10), (520, 80, -130.32968), (540, 80, -172.98657), (560, 80, 10), (580, 80, -192.97545), (600, 80, -104.19848), (620, 80, 3.600522), (0, 100, -8.03668), (20, 100, -42.435413), (40, 100, -196.9681), (60, 100, 10), (80, 100, -115.08344), (100, 100, -149.48218), (120, 100, 10), (140, 100, -176.38777), (160, 100, -79.910095), (180, 100, 10), (200, 100, -207.20355), (220, 100, -9.978674), (240, 100, -40.231514), (260, 100, -197.90723), (280, 100, 10), (300, 100, -112.868164), (320, 100, -151.402), (340, 100, 10), (360, 100, -174.8529), (380, 100, -82.211075), (400, 100, 10), (420, 100, -206.82843), (440, 100, -11.9422245), (460, 100, -38.039684), (480, 100, -198.80902), (500, 100, 10), (520, 100, -110.64218), (540, 100, -153.29907), (560, 100, 10), (580, 100, -173.28796), (600, 100, -84.51098), (620, 100, 10), (0, 120, 10), (20, 120, -14.88079), (40, 120, -169.41347), (60, 120, 10), (80, 120, -87.528824), (100, 120, -121.92755), (120, 120, 10), (140, 120, -148.83316), (160, 120, -52.35547), (180, 120, 10), (200, 120, -179.64891), (220, 120, 10), (240, 120, -12.676889), (260, 120, -170.3526), (280, 120, 10), (300, 120, -85.31354), (320, 120, -123.847374), (340, 120, 10), (360, 120, -147.2983), (380, 120, -54.65645), (400, 120, 10), (420, 120, -179.27382), (440, 120, 10), (460, 120, -10.485061), (480, 120, -171.25441), (500, 120, 10), (520, 120, -83.08756), (540, 120, -125.744446), (560, 120, 10), (580, 120, -145.73334), (600, 120, -56.956352), (620, 120, 10), (0, 140, 10), (20, 140, 10), (40, 140, -136.18672), (60, 140, 10), (80, 140, -54.30206), (100, 140, -88.7008), (120, 140, 10), (140, 140, -115.60639), (160, 140, -19.12872), (180, 140, 10), (200, 140, -146.42215), (220, 140, 10), (240, 140, 10), (260, 140, -137.12585), (280, 140, 10), (300, 140, -52.08678), (320, 140, -90.62062), (340, 140, 10), (360, 140, -114.07153), (380, 140, -21.429697), (400, 140, 10), (420, 140, -146.04706), (440, 140, 10), (460, 140, 10), (480, 140, -138.02765), (500, 140, 10), (520, 140, -49.86081), (540, 140, -92.51769), (560, 140, 10), (580, 140, -112.50658), (600, 140, -23.729595), (620, 140, 10), (0, 160, 10), (20, 160, 10), (40, 160, -99.93464), (60, 160, 10), (80, 160, -18.049992), (100, 160, -52.448727), (120, 160, 10), (140, 160, -79.35432), (160, 160, 10), (180, 160, 10), (200, 160, -110.170074), (220, 160, 10), (240, 160, 10), (260, 160, -100.87378), (280, 160, 10), (300, 160, -15.834709), (320, 160, -54.368557), (340, 160, 10), (360, 160, -77.819466), (380, 160, 10), (400, 160, 10), (420, 160, -109.79499), (440, 160, 10), (460, 160, 10), (480, 160, -101.77558), (500, 160, 10), (520, 160, -13.608737), (540, 160, -56.265625), (560, 160, 10), (580, 160, -76.2545), (600, 160, 10), (620, 160, 10), (0, 180, 10), (20, 180, 10), (40, 180, -63.545082), (60, 180, 10), (80, 180, 10), (100, 180, -16.059166), (120, 180, 10), (140, 180, -42.96476), (160, 180, 10), (180, 180, 10), (200, 180, -73.78053), (220, 180, 10), (240, 180, 10), (260, 180, -64.48422), (280, 180, 10), (300, 180, 10), (320, 180, -17.979), (340, 180, 10), (360, 180, -41.42991), (380, 180, 10), (400, 180, 10), (420, 180, -73.40543), (440, 180, 10), (460, 180, 10), (480, 180, -65.38602), (500, 180, 10), (520, 180, 10), (540, 180, -19.876066), (560, 180, 10), (580, 180, -39.864944), (600, 180, 10), (620, 180, 10), (0, 200, 10), (20, 200, 10), (40, 200, -29.91681), (60, 200, 10), (80, 200, 10), (100, 200, 10), (120, 200, 10), (140, 200, -9.336485), (160, 200, 10), (180, 200, 10), (200, 200, -40.152256), (220, 200, 10), (240, 200, 10), (260, 200, -30.855946), (280, 200, 10), (300, 200, 10), (320, 200, 10), (340, 200, 10), (360, 200, -7.801634), (380, 200, 10), (400, 200, 10), (420, 200, -39.77716), (440, 200, 10), (460, 200, 10), (480, 200, -31.757744), (500, 200, 10), (520, 200, 10), (540, 200, 10), (560, 200, 10), (580, 200, -6.2366714), (600, 200, 10), (620, 200, 10), (0, 220, 10), (20, 220, 10), (40, 220, -1.7286196), (60, 220, 10), (80, 220, 10), (100, 220, 10), (120, 220, 10), (140, 220, 10), (160, 220, 10), (180, 220, 10), (200, 220, -11.964067), (220, 220, 10), (240, 220, 10), (260, 220, -2.667758), (280, 220, 10), (300, 220, 10), (320, 220, 10), (340, 220, 10), (360, 220, 10), (380, 220, 10), (400, 220, 10), (420, 220, -11.588972), (440, 220, 10), (460, 220, 10), (480, 220, -3.5695572), (500, 220, 10), (520, 220, 10), (540, 220, 10), (560, 220, 10), (580, 220, 10), (600, 220, 10), (620, 220, 10), (0, 240, 10), (20, 240, 10), (40, 240, 10), (60, 240, 10), (80, 240, 10), (100, 240, 10), (120, 240, 10), (140, 240, 10), (160, 240, 10), (180, 240, 10), (200, 240, 8.538576), (220, 240, 10), (240, 240, 10), (260, 240, 10), (280, 240, 10), (300, 240, 10), (320, 240, 10), (340, 240, 10), (360, 240, 10), (380, 240, 10), (400, 240, 10), (420, 240, 8.91367), (440, 240, 10), (460, 240, 10), (480, 240, 10), (500, 240, 10), (520, 240, 10), (540, 240, 10), (560, 240, 10), (580, 240, 10), (600, 240, 10), (620, 240, 10), (0, 260, 10), (20, 260, 10), (40, 260, 10), (60, 260, 10), (80, 260, 10), (100, 260, 10), (120, 260, 10), (140, 260, 10), (160, 260, 10), (180, 260, 10), (200, 260, 10), (220, 260, 10), (240, 260, 10), (260, 260, 10), (280, 260, 10), (300, 260, 10), (320, 260, 10), (340, 260, 10), (360, 260, 10), (380, 260, 10), (400, 260, 10), (420, 260, 10), (440, 260, 10), (460, 260, 10), (480, 260, 10), (500, 260, 10), (520, 260, 10), (540, 260, 10), (560, 260, 10), (580, 260, 10), (600, 260, 10), (620, 260, 10), (0, 280, 10), (20, 280, 10), (40, 280, 10), (60, 280, 10), (80, 280, 10), (100, 280, 10), (120, 280, 10), (140, 280, 10), (160, 280, 10), (180, 280, 10), (200, 280, 10), (220, 280, 10), (240, 280, 10), (260, 280, 10), (280, 280, 10), (300, 280, 10), (320, 280, 10), (340, 280, 10), (360, 280, 10), (380, 280, 10), (400, 280, 10), (420, 280, 10), (440, 280, 10), (460, 280, 10), (480, 280, 10), (500, 280, 10), (520, 280, 10), (540, 280, 10), (560, 280, 10), (580, 280, 10), (600, 280, 10), (620, 280, 10), (0, 300, 10), (20, 300, 10), (40, 300, 10), (60, 300, 10), (80, 300, 10), (100, 300, 10), (120, 300, 10), (140, 300, 10), (160, 300, 10), (180, 300, 10), (200, 300, 10), (220, 300, 10), (240, 300, 10), (260, 300, 10), (280, 300, 10), (300, 300, 10), (320, 300, 10), (340, 300, 10), (360, 300, 10), (380, 300, 10), (400, 300, 10), (420, 300, 10), (440, 300, 10), (460, 300, 10), (480, 300, 10), (500, 300, 10), (520, 300, 10), (540, 300, 10), (560, 300, 10), (580, 300, 10), (600, 300, 10), (620, 300, 10), (0, 320, 10), (20, 320, 10), (40, 320, 2.7605104), (60, 320, 10), (80, 320, 10), (100, 320, 10), (120, 320, 10), (140, 320, 10), (160, 320, 10), (180, 320, 10), (200, 320, -7.4749374), (220, 320, 10), (240, 320, 10), (260, 320, 1.821372), (280, 320, 10), (300, 320, 10), (320, 320, 10), (340, 320, 10), (360, 320, 10), (380, 320, 10), (400, 320, 10), (420, 320, -7.099843), (440, 320, 10), (460, 320, 10), (480, 320, 0.91957474), (500, 320, 10), (520, 320, 10), (540, 320, 10), (560, 320, 10), (580, 320, 10), (600, 320, 10), (620, 320, 10), (0, 340, 10), (20, 340, 10), (40, 340, -24.14112), (60, 340, 10), (80, 340, 10), (100, 340, 10), (120, 340, 10), (140, 340, -3.5607986), (160, 340, 10), (180, 340, 10), (200, 340, -34.37657), (220, 340, 10), (240, 340, 10), (260, 340, -25.080261), (280, 340, 10), (300, 340, 10), (320, 340, 10), (340, 340, 10), (360, 340, -2.0259485), (380, 340, 10), (400, 340, 10), (420, 340, -34.001476), (440, 340, 10), (460, 340, 10), (480, 340, -25.98206), (500, 340, 10), (520, 340, 10), (540, 340, 10), (560, 340, 10), (580, 340, -0.46098614), (600, 340, 10), (620, 340, 10), (0, 360, 10), (20, 360, 10), (40, 360, -56.942932), (60, 360, 10), (80, 360, 10), (100, 360, -9.457015), (120, 360, 10), (140, 360, -36.36261), (160, 360, 10), (180, 360, 10), (200, 360, -67.17838), (220, 360, 10), (240, 360, 10), (260, 360, -57.88207), (280, 360, 10), (300, 360, 10), (320, 360, -11.376846), (340, 360, 10), (360, 360, -34.82776), (380, 360, 10), (400, 360, 10), (420, 360, -66.80328), (440, 360, 10), (460, 360, 10), (480, 360, -58.783867), (500, 360, 10), (520, 360, 10), (540, 360, -13.273915), (560, 360, 10), (580, 360, -33.262794), (600, 360, 10), (620, 360, 10), (0, 380, 10), (20, 380, 10), (40, 380, -93.03195), (60, 380, 10), (80, 380, -11.147299), (100, 380, -45.54603), (120, 380, 10), (140, 380, -72.45163), (160, 380, 10), (180, 380, 10), (200, 380, -103.267395), (220, 380, 10), (240, 380, 10), (260, 380, -93.971085), (280, 380, 10), (300, 380, -8.932016), (320, 380, -47.46587), (340, 380, 10), (360, 380, -70.91676), (380, 380, 10), (400, 380, 10), (420, 380, -102.8923), (440, 380, 10), (460, 380, 10), (480, 380, -94.87288), (500, 380, 10), (520, 380, -6.7060432), (540, 380, -49.36293), (560, 380, 10), (580, 380, -69.351814), (600, 380, 10), (620, 380, 10), (0, 400, 10), (20, 400, 10), (40, 400, -129.53333), (60, 400, 10), (80, 400, -47.64869), (100, 400, -82.047424), (120, 400, 10), (140, 400, -108.95302), (160, 400, -12.475346), (180, 400, 10), (200, 400, -139.7688), (220, 400, 10), (240, 400, 10), (260, 400, -130.47247), (280, 400, 10), (300, 400, -45.43341), (320, 400, -83.967255), (340, 400, 10), (360, 400, -107.41817), (380, 400, -14.776326), (400, 400, 10), (420, 400, -139.39369), (440, 400, 10), (460, 400, 10), (480, 400, -131.37427), (500, 400, 10), (520, 400, -43.20743), (540, 400, -85.86433), (560, 400, 10), (580, 400, -105.8532), (600, 400, -17.076225), (620, 400, 10), (0, 420, 10), (20, 420, -9.006751), (40, 420, -163.53943), (60, 420, 10), (80, 420, -81.65478), (100, 420, -116.05352), (120, 420, 10), (140, 420, -142.9591), (160, 420, -46.481434), (180, 420, 10), (200, 420, -173.77489), (220, 420, 10), (240, 420, -6.80285), (260, 420, -164.47858), (280, 420, 10), (300, 420, -79.43948), (320, 420, -117.97334), (340, 420, 10), (360, 420, -141.42426), (380, 420, -48.78241), (400, 420, 10), (420, 420, -173.3998), (440, 420, 10), (460, 420, -4.611023), (480, 420, -165.38037), (500, 420, 10), (520, 420, -77.213524), (540, 420, -119.87042), (560, 420, 10), (580, 420, -139.8593), (600, 420, -51.082314), (620, 420, 10), (0, 440, -3.4098883), (20, 440, -37.80862), (40, 440, -192.34131), (60, 440, 10), (80, 440, -110.45664), (100, 440, -144.8554), (120, 440, 10), (140, 440, -171.76097), (160, 440, -75.2833), (180, 440, 10), (200, 440, -202.57675), (220, 440, -5.351882), (240, 440, -35.60472), (260, 440, -193.28044), (280, 440, 10), (300, 440, -108.24136), (320, 440, -146.7752), (340, 440, 10), (360, 440, -170.22612), (380, 440, -77.58428), (400, 440, 10), (420, 440, -202.20166), (440, 440, -7.3154325), (460, 440, -33.412895), (480, 440, -194.18222), (500, 440, 10), (520, 440, -106.01539), (540, 440, -148.67229), (560, 440, 10), (580, 440, -168.66116), (600, 440, -79.88418), (620, 440, 10), (0, 460, -24.713207), (20, 460, -59.111942), (40, 460, -213.6446), (60, 460, 10), (80, 460, -131.75998), (100, 460, -166.1587), (120, 460, 10), (140, 460, -193.06429), (160, 460, -96.586624), (180, 460, 3.696642), (200, 460, -223.88007), (220, 460, -26.655205), (240, 460, -56.90804), (260, 460, -214.58377), (280, 460, 10), (300, 460, -129.5447), (320, 460, -168.07854), (340, 460, 10), (360, 460, -191.52945), (380, 460, -98.8876), (400, 460, 5.1698313), (420, 460, -223.50497), (440, 460, -28.618752), (460, 460, -54.716213), (480, 460, -215.48555), (500, 460, 10), (520, 460, -127.31872), (540, 460, -169.97562), (560, 460, 10), (580, 460, -189.96448), (600, 460, -101.18751), (620, 460, 6.611497), (0, 480, -36.82097), (20, 480, -71.219696), (40, 480, -225.75238), (60, 480, 10), (80, 480, -143.86772), (100, 480, -178.26646), (120, 480, 10), (140, 480, -205.17206), (160, 480, -108.69438), (180, 480, -8.411116), (200, 480, -235.98784), (220, 480, -38.762962), (240, 480, -69.0158), (260, 480, -226.69153), (280, 480, 9.68877), (300, 480, -141.65244), (320, 480, -180.1863), (340, 480, 10), (360, 480, -203.63719), (380, 480, -110.99537), (400, 480, -6.937928), (420, 480, -235.61273), (440, 480, -40.726517), (460, 480, -66.823975), (480, 480, -227.5933), (500, 480, 8.675849), (520, 480, -139.42647), (540, 480, -182.08337), (560, 480, 10), (580, 480, -202.07224), (600, 480, -113.295265), (620, 480, -5.4962616), (0, 500, -38.768673), (20, 500, -73.167404), (40, 500, -227.70009), (60, 500, 8.717241), (80, 500, -145.81544), (100, 500, -180.21416), (120, 500, 10), (140, 500, -207.11975), (160, 500, -110.6421), (180, 500, -10.358822), (200, 500, -237.93552), (220, 500, -40.710667), (240, 500, -70.96351), (260, 500, -228.63922), (280, 500, 7.741065), (300, 500, -143.60014), (320, 500, -182.134), (340, 500, 10), (360, 500, -205.58492), (380, 500, -112.94307), (400, 500, -8.8856325), (420, 500, -237.56044), (440, 500, -42.674217), (460, 500, -68.771675), (480, 500, -229.54103), (500, 500, 6.7281437), (520, 500, -141.37418), (540, 500, -184.03107), (560, 500, 10), (580, 500, -204.01994), (600, 500, -115.242966), (620, 500, -7.443966), (0, 520, -30.40116), (20, 520, -64.79989), (40, 520, -219.33257), (60, 520, 10), (80, 520, -137.4479), (100, 520, -171.84666), (120, 520, 10), (140, 520, -198.75224), (160, 520, -102.274574), (180, 520, -1.9913044), (200, 520, -229.56802), (220, 520, -32.34315), (240, 520, -62.595993), (260, 520, -220.27173), (280, 520, 10), (300, 520, -135.23264), (320, 520, -173.7665), (340, 520, 10), (360, 520, -197.21739), (380, 520, -104.57555), (400, 520, -0.51811695), (420, 520, -229.19293), (440, 520, -34.3067), (460, 520, -60.404163), (480, 520, -221.1735), (500, 520, 10), (520, 520, -133.00665), (540, 520, -175.66357), (560, 520, 10), (580, 520, -195.65244), (600, 520, -106.87546), (620, 520, 0.92354965), (0, 540, -12.384989), (20, 540, -46.783722), (40, 540, -201.31639), (60, 540, 10), (80, 540, -119.431755), (100, 540, -153.83047), (120, 540, 10), (140, 540, -180.73608), (160, 540, -84.2584), (180, 540, 10), (200, 540, -211.55183), (220, 540, -14.326982), (240, 540, -44.57982), (260, 540, -202.25552), (280, 540, 10), (300, 540, -117.21646), (320, 540, -155.75032), (340, 540, 10), (360, 540, -179.20123), (380, 540, -86.55939), (400, 540, 10), (420, 540, -211.17674), (440, 540, -16.290531), (460, 540, -42.387993), (480, 540, -203.15735), (500, 540, 10), (520, 540, -114.990486), (540, 540, -157.64737), (560, 540, 10), (580, 540, -177.63626), (600, 540, -88.85928), (620, 540, 10), (0, 560, 10), (20, 560, -20.554047), (40, 560, -175.08673), (60, 560, 10), (80, 560, -93.20207), (100, 560, -127.6008), (120, 560, 10), (140, 560, -154.5064), (160, 560, -58.02873), (180, 560, 10), (200, 560, -185.32216), (220, 560, 10), (240, 560, -18.350147), (260, 560, -176.02586), (280, 560, 10), (300, 560, -90.986786), (320, 560, -129.52065), (340, 560, 10), (360, 560, -152.97156), (380, 560, -60.329704), (400, 560, 10), (420, 560, -184.94708), (440, 560, 9.939144), (460, 560, -16.158318), (480, 560, -176.92767), (500, 560, 10), (520, 560, -88.76081), (540, 560, -131.4177), (560, 560, 10), (580, 560, -151.40659), (600, 560, -62.62961), (620, 560, 10), (0, 580, 10), (20, 580, 10), (40, 580, -142.73299), (60, 580, 10), (80, 580, -60.848335), (100, 580, -95.24707), (120, 580, 10), (140, 580, -122.152664), (160, 580, -25.674992), (180, 580, 10), (200, 580, -152.96843), (220, 580, 10), (240, 580, 10), (260, 580, -143.67212), (280, 580, 10), (300, 580, -58.63305), (320, 580, -97.1669), (340, 580, 10), (360, 580, -120.61782), (380, 580, -27.975973), (400, 580, 10), (420, 580, -152.59332), (440, 580, 10), (460, 580, 10), (480, 580, -144.57393), (500, 580, 10), (520, 580, -56.407074), (540, 580, -99.06397), (560, 580, 10), (580, 580, -119.05285), (600, 580, -30.275871), (620, 580, 10), (0, 600, 10), (20, 600, 10), (40, 600, -106.83246), (60, 600, 10), (80, 600, -24.947815), (100, 600, -59.346546), (120, 600, 10), (140, 600, -86.25214), (160, 600, 10), (180, 600, 10), (200, 600, -117.06792), (220, 600, 10), (240, 600, 10), (260, 600, -107.77161), (280, 600, 10), (300, 600, -22.73253), (320, 600, -61.26638), (340, 600, 10), (360, 600, -84.717285), (380, 600, 7.924549), (400, 600, 10), (420, 600, -116.692825), (440, 600, 10), (460, 600, 10), (480, 600, -108.6734), (500, 600, 10), (520, 600, -20.50656), (540, 600, -63.163445), (560, 600, 10), (580, 600, -83.15233), (600, 600, 5.624651), (620, 600, 10), (0, 620, 10), (20, 620, 10), (40, 620, -70.24499), (60, 620, 10), (80, 620, 10), (100, 620, -22.759062), (120, 620, 10), (140, 620, -49.664658), (160, 620, 10), (180, 620, 10), (200, 620, -80.48042), (220, 620, 10), (240, 620, 10), (260, 620, -71.18411), (280, 620, 10), (300, 620, 10), (320, 620, -24.678896), (340, 620, 10), (360, 620, -48.1298), (380, 620, 10), (400, 620, 10), (420, 620, -80.10533), (440, 620, 10), (460, 620, 10), (480, 620, -72.085915), (500, 620, 10), (520, 620, 10), (540, 620, -26.575962), (560, 620, 10), (580, 620, -46.564846), (600, 620, 10), (620, 620, 10)] point3f[] points.connect = </World/__migratedImplicitGraph/innerPullGraph/deformer3.outputs:points> color3f[] primvars:displayColor = [(0.784314, 0.64705884, 0.1)] float3 xformOp:rotateXYZ = (0, 0, 0) float3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, -392.826889104303) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def OmniGraph "DirtyPushGraph" { token evaluator:type = "dirty_push" int2 fileFormatVersion = (1, 5) def OmniGraphNode "read_prim_attribute" { custom bool inputs:forceUSDRead = 0 custom token inputs:name = "points" custom rel inputs:prim prepend rel inputs:prim = </World/inputGrid> custom token inputs:primPath = "" custom timecode inputs:usdTimecode = -1 custom bool inputs:usePath = 0 token node:type = "omni.graph.nodes.ReadPrimAttribute" int node:typeVersion = 1 custom token outputs:value custom uint64 state:target = 0 custom timecode state:usdTimecode = -1 } def OmniGraphNode "deformer1" { float inputs:multiplier = 3 point3f[] inputs:points.connect = </World/DirtyPushGraph/read_prim_attribute.outputs:value> custom float inputs:wavelength = 50 token node:type = "omni.graph.examples.cpp.Deformer1" int node:typeVersion = 1 point3f[] outputs:points } def OmniGraphNode "deformer2" { float inputs:multiplier = 10 point3f[] inputs:points.connect = </World/DirtyPushGraph/deformer1.outputs:points> custom float inputs:wavelength = 50 token node:type = "omni.graph.examples.cpp.Deformer1" int node:typeVersion = 1 point3f[] outputs:points } def OmniGraphNode "deformer3" { point3f[] inputs:points.connect = </World/DirtyPushGraph/deformer2.outputs:points> float inputs:threshold = 10 token node:type = "omni.graph.examples.cpp.Deformer2" int node:typeVersion = 1 point3f[] outputs:points } def OmniGraphNode "outputGridWriteAttrib" ( prepend apiSchemas = ["NodeGraphNodeAPI"] ) { custom uint inputs:execIn custom token inputs:name = "points" custom rel inputs:prim prepend rel inputs:prim = </World/outputGrid> custom token inputs:primPath custom bool inputs:usdWriteBack = 1 custom bool inputs:usePath = 0 custom token inputs:value prepend token inputs:value.connect = </World/DirtyPushGraph/deformer3.outputs:points> token node:type = "omni.graph.nodes.WritePrimAttribute" int node:typeVersion = 1 custom uint outputs:execOut ( customData = { bool isExecution = 1 } ) } } }
omniverse-code/kit/exts/omni.graph/data/TestUnionTypes.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double radius = 500 double3 target = (0, 0, 0) } dictionary Perspective = { double3 position = (500.0000000000001, 500.0000000000001, 499.9999999999998) double3 target = (0, 0, 0) } dictionary Right = { double radius = 500 double3 target = (0, 0, 0) } dictionary Top = { double radius = 500 double3 target = (0, 0, 0) } string boundCamera = "/OmniverseKit_Persp" } int refinementOverrideImplVersion = 0 dictionary renderSettings = { float "rtx:post:lensDistortion:cameraFocalLength" = 18.147562 } } defaultPrim = "World" endTimeCode = 100 metersPerUnit = 0.009999999776482582 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Y" ) def Xform "World" { def DistantLight "defaultLight" ( prepend apiSchemas = ["ShapingAPI"] ) { float angle = 1 float intensity = 3000 float shaping:cone:angle = 180 float shaping:cone:softness float shaping:focus color3f shaping:focusTint asset shaping:ies:file float3 xformOp:rotateXYZ = (315, 0, 0) double3 xformOp:scale = (1, 1, 1) float3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def ComputeNode "builtin_generic_add" { custom token inputs:input_a = "union type of double3,float,double" ( customData = { string ExtendedAttributeType = "Union-->double3,float,double" } ) prepend token inputs:input_a.connect = </World/Cube.xformOp:translate> custom token inputs:input_b = "union type of double3,float,double" ( customData = { string ExtendedAttributeType = "Union-->double3,float,double" } ) prepend token inputs:input_b.connect = </World/Cone.xformOp:translate> custom token node:type = "omni.graph.nodes.Noop" custom int node:typeVersion = 1 custom token outputs:sum = "union type of numeric" ( customData = { string ExtendedAttributeType = "Union-->numeric" } ) } def ComputeGraphSettings "computegraphSettings" { custom token evaluator:type = "push" } def Cube "Cube" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double size = 100 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (-167.995136, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (169.547738, 0, 0) prepend double3 xformOp:translate.connect = </World/builtin_generic_add.outputs:sum> uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Cone "Cone" { uniform token axis = "Y" float3[] extent = [(-50, -50, -50), (50, 50, 50)] double height = 100 double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } }
omniverse-code/kit/exts/omni.graph/data/ExampleConnectionType.usda
#usda 1.0 ( doc = """Generated from Composed Stage of root layer """ ) def Xform "World" { def Xform "inputPrim" { custom float value = 0.5 } def ComputeNode "SimpleNode" { custom float input:value ( customData = { token AttributeConnectionType = "DataOnly" } ) prepend float input:value.connect = </World/inputPrim.value> custom token node:type = "omni.graph.nodes.Noop" custom int node:typeVersion = 1 custom float output:value } }
omniverse-code/kit/exts/omni.graph/data/ExampleCubeWithSettings.usda
#usda 1.0 ( doc = """Generated from Composed Stage of root layer """ ) def Xform "World" { def Xform "inputPrim" { custom float value = 0.5 def ComputeGraphSettings "graphSettings" { custom token graph:path = "/World" } } def ComputeNode "SimpleNode" { custom float input:value prepend float input:value.connect = </World/inputPrim.value> custom float multiplier = 3 custom token node:type = "omni.graph.examples.cpp.Simple" custom int node:typeVersion = 1 custom double output:value } def Cube "Cube" { prepend double size.connect = </World/SimpleNode.output:value> } }
omniverse-code/kit/exts/omni.graph/data/ExampleGridDeformerNonUSD.usda
#usda 1.0 ( doc = """Generated from Composed Stage of root layer """ ) def Xform "defaultPrim" { def Mesh "inputGrid" { uniform bool doubleSided = 1 int[] faceVertexCounts = [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 1, 33, 0, 33, 32, 1, 2, 34, 1, 34, 33, 2, 3, 35, 2, 35, 34, 3, 4, 36, 3, 36, 35, 4, 5, 37, 4, 37, 36, 5, 6, 38, 5, 38, 37, 6, 7, 39, 6, 39, 38, 7, 8, 40, 7, 40, 39, 8, 9, 41, 8, 41, 40, 9, 10, 42, 9, 42, 41, 10, 11, 43, 10, 43, 42, 11, 12, 44, 11, 44, 43, 12, 13, 45, 12, 45, 44, 13, 14, 46, 13, 46, 45, 14, 15, 47, 14, 47, 46, 15, 16, 48, 15, 48, 47, 16, 17, 49, 16, 49, 48, 17, 18, 50, 17, 50, 49, 18, 19, 51, 18, 51, 50, 19, 20, 52, 19, 52, 51, 20, 21, 53, 20, 53, 52, 21, 22, 54, 21, 54, 53, 22, 23, 55, 22, 55, 54, 23, 24, 56, 23, 56, 55, 24, 25, 57, 24, 57, 56, 25, 26, 58, 25, 58, 57, 26, 27, 59, 26, 59, 58, 27, 28, 60, 27, 60, 59, 28, 29, 61, 28, 61, 60, 29, 30, 62, 29, 62, 61, 30, 31, 63, 30, 63, 62, 32, 33, 65, 32, 65, 64, 33, 34, 66, 33, 66, 65, 34, 35, 67, 34, 67, 66, 35, 36, 68, 35, 68, 67, 36, 37, 69, 36, 69, 68, 37, 38, 70, 37, 70, 69, 38, 39, 71, 38, 71, 70, 39, 40, 72, 39, 72, 71, 40, 41, 73, 40, 73, 72, 41, 42, 74, 41, 74, 73, 42, 43, 75, 42, 75, 74, 43, 44, 76, 43, 76, 75, 44, 45, 77, 44, 77, 76, 45, 46, 78, 45, 78, 77, 46, 47, 79, 46, 79, 78, 47, 48, 80, 47, 80, 79, 48, 49, 81, 48, 81, 80, 49, 50, 82, 49, 82, 81, 50, 51, 83, 50, 83, 82, 51, 52, 84, 51, 84, 83, 52, 53, 85, 52, 85, 84, 53, 54, 86, 53, 86, 85, 54, 55, 87, 54, 87, 86, 55, 56, 88, 55, 88, 87, 56, 57, 89, 56, 89, 88, 57, 58, 90, 57, 90, 89, 58, 59, 91, 58, 91, 90, 59, 60, 92, 59, 92, 91, 60, 61, 93, 60, 93, 92, 61, 62, 94, 61, 94, 93, 62, 63, 95, 62, 95, 94, 64, 65, 97, 64, 97, 96, 65, 66, 98, 65, 98, 97, 66, 67, 99, 66, 99, 98, 67, 68, 100, 67, 100, 99, 68, 69, 101, 68, 101, 100, 69, 70, 102, 69, 102, 101, 70, 71, 103, 70, 103, 102, 71, 72, 104, 71, 104, 103, 72, 73, 105, 72, 105, 104, 73, 74, 106, 73, 106, 105, 74, 75, 107, 74, 107, 106, 75, 76, 108, 75, 108, 107, 76, 77, 109, 76, 109, 108, 77, 78, 110, 77, 110, 109, 78, 79, 111, 78, 111, 110, 79, 80, 112, 79, 112, 111, 80, 81, 113, 80, 113, 112, 81, 82, 114, 81, 114, 113, 82, 83, 115, 82, 115, 114, 83, 84, 116, 83, 116, 115, 84, 85, 117, 84, 117, 116, 85, 86, 118, 85, 118, 117, 86, 87, 119, 86, 119, 118, 87, 88, 120, 87, 120, 119, 88, 89, 121, 88, 121, 120, 89, 90, 122, 89, 122, 121, 90, 91, 123, 90, 123, 122, 91, 92, 124, 91, 124, 123, 92, 93, 125, 92, 125, 124, 93, 94, 126, 93, 126, 125, 94, 95, 127, 94, 127, 126, 96, 97, 129, 96, 129, 128, 97, 98, 130, 97, 130, 129, 98, 99, 131, 98, 131, 130, 99, 100, 132, 99, 132, 131, 100, 101, 133, 100, 133, 132, 101, 102, 134, 101, 134, 133, 102, 103, 135, 102, 135, 134, 103, 104, 136, 103, 136, 135, 104, 105, 137, 104, 137, 136, 105, 106, 138, 105, 138, 137, 106, 107, 139, 106, 139, 138, 107, 108, 140, 107, 140, 139, 108, 109, 141, 108, 141, 140, 109, 110, 142, 109, 142, 141, 110, 111, 143, 110, 143, 142, 111, 112, 144, 111, 144, 143, 112, 113, 145, 112, 145, 144, 113, 114, 146, 113, 146, 145, 114, 115, 147, 114, 147, 146, 115, 116, 148, 115, 148, 147, 116, 117, 149, 116, 149, 148, 117, 118, 150, 117, 150, 149, 118, 119, 151, 118, 151, 150, 119, 120, 152, 119, 152, 151, 120, 121, 153, 120, 153, 152, 121, 122, 154, 121, 154, 153, 122, 123, 155, 122, 155, 154, 123, 124, 156, 123, 156, 155, 124, 125, 157, 124, 157, 156, 125, 126, 158, 125, 158, 157, 126, 127, 159, 126, 159, 158, 128, 129, 161, 128, 161, 160, 129, 130, 162, 129, 162, 161, 130, 131, 163, 130, 163, 162, 131, 132, 164, 131, 164, 163, 132, 133, 165, 132, 165, 164, 133, 134, 166, 133, 166, 165, 134, 135, 167, 134, 167, 166, 135, 136, 168, 135, 168, 167, 136, 137, 169, 136, 169, 168, 137, 138, 170, 137, 170, 169, 138, 139, 171, 138, 171, 170, 139, 140, 172, 139, 172, 171, 140, 141, 173, 140, 173, 172, 141, 142, 174, 141, 174, 173, 142, 143, 175, 142, 175, 174, 143, 144, 176, 143, 176, 175, 144, 145, 177, 144, 177, 176, 145, 146, 178, 145, 178, 177, 146, 147, 179, 146, 179, 178, 147, 148, 180, 147, 180, 179, 148, 149, 181, 148, 181, 180, 149, 150, 182, 149, 182, 181, 150, 151, 183, 150, 183, 182, 151, 152, 184, 151, 184, 183, 152, 153, 185, 152, 185, 184, 153, 154, 186, 153, 186, 185, 154, 155, 187, 154, 187, 186, 155, 156, 188, 155, 188, 187, 156, 157, 189, 156, 189, 188, 157, 158, 190, 157, 190, 189, 158, 159, 191, 158, 191, 190, 160, 161, 193, 160, 193, 192, 161, 162, 194, 161, 194, 193, 162, 163, 195, 162, 195, 194, 163, 164, 196, 163, 196, 195, 164, 165, 197, 164, 197, 196, 165, 166, 198, 165, 198, 197, 166, 167, 199, 166, 199, 198, 167, 168, 200, 167, 200, 199, 168, 169, 201, 168, 201, 200, 169, 170, 202, 169, 202, 201, 170, 171, 203, 170, 203, 202, 171, 172, 204, 171, 204, 203, 172, 173, 205, 172, 205, 204, 173, 174, 206, 173, 206, 205, 174, 175, 207, 174, 207, 206, 175, 176, 208, 175, 208, 207, 176, 177, 209, 176, 209, 208, 177, 178, 210, 177, 210, 209, 178, 179, 211, 178, 211, 210, 179, 180, 212, 179, 212, 211, 180, 181, 213, 180, 213, 212, 181, 182, 214, 181, 214, 213, 182, 183, 215, 182, 215, 214, 183, 184, 216, 183, 216, 215, 184, 185, 217, 184, 217, 216, 185, 186, 218, 185, 218, 217, 186, 187, 219, 186, 219, 218, 187, 188, 220, 187, 220, 219, 188, 189, 221, 188, 221, 220, 189, 190, 222, 189, 222, 221, 190, 191, 223, 190, 223, 222, 192, 193, 225, 192, 225, 224, 193, 194, 226, 193, 226, 225, 194, 195, 227, 194, 227, 226, 195, 196, 228, 195, 228, 227, 196, 197, 229, 196, 229, 228, 197, 198, 230, 197, 230, 229, 198, 199, 231, 198, 231, 230, 199, 200, 232, 199, 232, 231, 200, 201, 233, 200, 233, 232, 201, 202, 234, 201, 234, 233, 202, 203, 235, 202, 235, 234, 203, 204, 236, 203, 236, 235, 204, 205, 237, 204, 237, 236, 205, 206, 238, 205, 238, 237, 206, 207, 239, 206, 239, 238, 207, 208, 240, 207, 240, 239, 208, 209, 241, 208, 241, 240, 209, 210, 242, 209, 242, 241, 210, 211, 243, 210, 243, 242, 211, 212, 244, 211, 244, 243, 212, 213, 245, 212, 245, 244, 213, 214, 246, 213, 246, 245, 214, 215, 247, 214, 247, 246, 215, 216, 248, 215, 248, 247, 216, 217, 249, 216, 249, 248, 217, 218, 250, 217, 250, 249, 218, 219, 251, 218, 251, 250, 219, 220, 252, 219, 252, 251, 220, 221, 253, 220, 253, 252, 221, 222, 254, 221, 254, 253, 222, 223, 255, 222, 255, 254, 224, 225, 257, 224, 257, 256, 225, 226, 258, 225, 258, 257, 226, 227, 259, 226, 259, 258, 227, 228, 260, 227, 260, 259, 228, 229, 261, 228, 261, 260, 229, 230, 262, 229, 262, 261, 230, 231, 263, 230, 263, 262, 231, 232, 264, 231, 264, 263, 232, 233, 265, 232, 265, 264, 233, 234, 266, 233, 266, 265, 234, 235, 267, 234, 267, 266, 235, 236, 268, 235, 268, 267, 236, 237, 269, 236, 269, 268, 237, 238, 270, 237, 270, 269, 238, 239, 271, 238, 271, 270, 239, 240, 272, 239, 272, 271, 240, 241, 273, 240, 273, 272, 241, 242, 274, 241, 274, 273, 242, 243, 275, 242, 275, 274, 243, 244, 276, 243, 276, 275, 244, 245, 277, 244, 277, 276, 245, 246, 278, 245, 278, 277, 246, 247, 279, 246, 279, 278, 247, 248, 280, 247, 280, 279, 248, 249, 281, 248, 281, 280, 249, 250, 282, 249, 282, 281, 250, 251, 283, 250, 283, 282, 251, 252, 284, 251, 284, 283, 252, 253, 285, 252, 285, 284, 253, 254, 286, 253, 286, 285, 254, 255, 287, 254, 287, 286, 256, 257, 289, 256, 289, 288, 257, 258, 290, 257, 290, 289, 258, 259, 291, 258, 291, 290, 259, 260, 292, 259, 292, 291, 260, 261, 293, 260, 293, 292, 261, 262, 294, 261, 294, 293, 262, 263, 295, 262, 295, 294, 263, 264, 296, 263, 296, 295, 264, 265, 297, 264, 297, 296, 265, 266, 298, 265, 298, 297, 266, 267, 299, 266, 299, 298, 267, 268, 300, 267, 300, 299, 268, 269, 301, 268, 301, 300, 269, 270, 302, 269, 302, 301, 270, 271, 303, 270, 303, 302, 271, 272, 304, 271, 304, 303, 272, 273, 305, 272, 305, 304, 273, 274, 306, 273, 306, 305, 274, 275, 307, 274, 307, 306, 275, 276, 308, 275, 308, 307, 276, 277, 309, 276, 309, 308, 277, 278, 310, 277, 310, 309, 278, 279, 311, 278, 311, 310, 279, 280, 312, 279, 312, 311, 280, 281, 313, 280, 313, 312, 281, 282, 314, 281, 314, 313, 282, 283, 315, 282, 315, 314, 283, 284, 316, 283, 316, 315, 284, 285, 317, 284, 317, 316, 285, 286, 318, 285, 318, 317, 286, 287, 319, 286, 319, 318, 288, 289, 321, 288, 321, 320, 289, 290, 322, 289, 322, 321, 290, 291, 323, 290, 323, 322, 291, 292, 324, 291, 324, 323, 292, 293, 325, 292, 325, 324, 293, 294, 326, 293, 326, 325, 294, 295, 327, 294, 327, 326, 295, 296, 328, 295, 328, 327, 296, 297, 329, 296, 329, 328, 297, 298, 330, 297, 330, 329, 298, 299, 331, 298, 331, 330, 299, 300, 332, 299, 332, 331, 300, 301, 333, 300, 333, 332, 301, 302, 334, 301, 334, 333, 302, 303, 335, 302, 335, 334, 303, 304, 336, 303, 336, 335, 304, 305, 337, 304, 337, 336, 305, 306, 338, 305, 338, 337, 306, 307, 339, 306, 339, 338, 307, 308, 340, 307, 340, 339, 308, 309, 341, 308, 341, 340, 309, 310, 342, 309, 342, 341, 310, 311, 343, 310, 343, 342, 311, 312, 344, 311, 344, 343, 312, 313, 345, 312, 345, 344, 313, 314, 346, 313, 346, 345, 314, 315, 347, 314, 347, 346, 315, 316, 348, 315, 348, 347, 316, 317, 349, 316, 349, 348, 317, 318, 350, 317, 350, 349, 318, 319, 351, 318, 351, 350, 320, 321, 353, 320, 353, 352, 321, 322, 354, 321, 354, 353, 322, 323, 355, 322, 355, 354, 323, 324, 356, 323, 356, 355, 324, 325, 357, 324, 357, 356, 325, 326, 358, 325, 358, 357, 326, 327, 359, 326, 359, 358, 327, 328, 360, 327, 360, 359, 328, 329, 361, 328, 361, 360, 329, 330, 362, 329, 362, 361, 330, 331, 363, 330, 363, 362, 331, 332, 364, 331, 364, 363, 332, 333, 365, 332, 365, 364, 333, 334, 366, 333, 366, 365, 334, 335, 367, 334, 367, 366, 335, 336, 368, 335, 368, 367, 336, 337, 369, 336, 369, 368, 337, 338, 370, 337, 370, 369, 338, 339, 371, 338, 371, 370, 339, 340, 372, 339, 372, 371, 340, 341, 373, 340, 373, 372, 341, 342, 374, 341, 374, 373, 342, 343, 375, 342, 375, 374, 343, 344, 376, 343, 376, 375, 344, 345, 377, 344, 377, 376, 345, 346, 378, 345, 378, 377, 346, 347, 379, 346, 379, 378, 347, 348, 380, 347, 380, 379, 348, 349, 381, 348, 381, 380, 349, 350, 382, 349, 382, 381, 350, 351, 383, 350, 383, 382, 352, 353, 385, 352, 385, 384, 353, 354, 386, 353, 386, 385, 354, 355, 387, 354, 387, 386, 355, 356, 388, 355, 388, 387, 356, 357, 389, 356, 389, 388, 357, 358, 390, 357, 390, 389, 358, 359, 391, 358, 391, 390, 359, 360, 392, 359, 392, 391, 360, 361, 393, 360, 393, 392, 361, 362, 394, 361, 394, 393, 362, 363, 395, 362, 395, 394, 363, 364, 396, 363, 396, 395, 364, 365, 397, 364, 397, 396, 365, 366, 398, 365, 398, 397, 366, 367, 399, 366, 399, 398, 367, 368, 400, 367, 400, 399, 368, 369, 401, 368, 401, 400, 369, 370, 402, 369, 402, 401, 370, 371, 403, 370, 403, 402, 371, 372, 404, 371, 404, 403, 372, 373, 405, 372, 405, 404, 373, 374, 406, 373, 406, 405, 374, 375, 407, 374, 407, 406, 375, 376, 408, 375, 408, 407, 376, 377, 409, 376, 409, 408, 377, 378, 410, 377, 410, 409, 378, 379, 411, 378, 411, 410, 379, 380, 412, 379, 412, 411, 380, 381, 413, 380, 413, 412, 381, 382, 414, 381, 414, 413, 382, 383, 415, 382, 415, 414, 384, 385, 417, 384, 417, 416, 385, 386, 418, 385, 418, 417, 386, 387, 419, 386, 419, 418, 387, 388, 420, 387, 420, 419, 388, 389, 421, 388, 421, 420, 389, 390, 422, 389, 422, 421, 390, 391, 423, 390, 423, 422, 391, 392, 424, 391, 424, 423, 392, 393, 425, 392, 425, 424, 393, 394, 426, 393, 426, 425, 394, 395, 427, 394, 427, 426, 395, 396, 428, 395, 428, 427, 396, 397, 429, 396, 429, 428, 397, 398, 430, 397, 430, 429, 398, 399, 431, 398, 431, 430, 399, 400, 432, 399, 432, 431, 400, 401, 433, 400, 433, 432, 401, 402, 434, 401, 434, 433, 402, 403, 435, 402, 435, 434, 403, 404, 436, 403, 436, 435, 404, 405, 437, 404, 437, 436, 405, 406, 438, 405, 438, 437, 406, 407, 439, 406, 439, 438, 407, 408, 440, 407, 440, 439, 408, 409, 441, 408, 441, 440, 409, 410, 442, 409, 442, 441, 410, 411, 443, 410, 443, 442, 411, 412, 444, 411, 444, 443, 412, 413, 445, 412, 445, 444, 413, 414, 446, 413, 446, 445, 414, 415, 447, 414, 447, 446, 416, 417, 449, 416, 449, 448, 417, 418, 450, 417, 450, 449, 418, 419, 451, 418, 451, 450, 419, 420, 452, 419, 452, 451, 420, 421, 453, 420, 453, 452, 421, 422, 454, 421, 454, 453, 422, 423, 455, 422, 455, 454, 423, 424, 456, 423, 456, 455, 424, 425, 457, 424, 457, 456, 425, 426, 458, 425, 458, 457, 426, 427, 459, 426, 459, 458, 427, 428, 460, 427, 460, 459, 428, 429, 461, 428, 461, 460, 429, 430, 462, 429, 462, 461, 430, 431, 463, 430, 463, 462, 431, 432, 464, 431, 464, 463, 432, 433, 465, 432, 465, 464, 433, 434, 466, 433, 466, 465, 434, 435, 467, 434, 467, 466, 435, 436, 468, 435, 468, 467, 436, 437, 469, 436, 469, 468, 437, 438, 470, 437, 470, 469, 438, 439, 471, 438, 471, 470, 439, 440, 472, 439, 472, 471, 440, 441, 473, 440, 473, 472, 441, 442, 474, 441, 474, 473, 442, 443, 475, 442, 475, 474, 443, 444, 476, 443, 476, 475, 444, 445, 477, 444, 477, 476, 445, 446, 478, 445, 478, 477, 446, 447, 479, 446, 479, 478, 448, 449, 481, 448, 481, 480, 449, 450, 482, 449, 482, 481, 450, 451, 483, 450, 483, 482, 451, 452, 484, 451, 484, 483, 452, 453, 485, 452, 485, 484, 453, 454, 486, 453, 486, 485, 454, 455, 487, 454, 487, 486, 455, 456, 488, 455, 488, 487, 456, 457, 489, 456, 489, 488, 457, 458, 490, 457, 490, 489, 458, 459, 491, 458, 491, 490, 459, 460, 492, 459, 492, 491, 460, 461, 493, 460, 493, 492, 461, 462, 494, 461, 494, 493, 462, 463, 495, 462, 495, 494, 463, 464, 496, 463, 496, 495, 464, 465, 497, 464, 497, 496, 465, 466, 498, 465, 498, 497, 466, 467, 499, 466, 499, 498, 467, 468, 500, 467, 500, 499, 468, 469, 501, 468, 501, 500, 469, 470, 502, 469, 502, 501, 470, 471, 503, 470, 503, 502, 471, 472, 504, 471, 504, 503, 472, 473, 505, 472, 505, 504, 473, 474, 506, 473, 506, 505, 474, 475, 507, 474, 507, 506, 475, 476, 508, 475, 508, 507, 476, 477, 509, 476, 509, 508, 477, 478, 510, 477, 510, 509, 478, 479, 511, 478, 511, 510, 480, 481, 513, 480, 513, 512, 481, 482, 514, 481, 514, 513, 482, 483, 515, 482, 515, 514, 483, 484, 516, 483, 516, 515, 484, 485, 517, 484, 517, 516, 485, 486, 518, 485, 518, 517, 486, 487, 519, 486, 519, 518, 487, 488, 520, 487, 520, 519, 488, 489, 521, 488, 521, 520, 489, 490, 522, 489, 522, 521, 490, 491, 523, 490, 523, 522, 491, 492, 524, 491, 524, 523, 492, 493, 525, 492, 525, 524, 493, 494, 526, 493, 526, 525, 494, 495, 527, 494, 527, 526, 495, 496, 528, 495, 528, 527, 496, 497, 529, 496, 529, 528, 497, 498, 530, 497, 530, 529, 498, 499, 531, 498, 531, 530, 499, 500, 532, 499, 532, 531, 500, 501, 533, 500, 533, 532, 501, 502, 534, 501, 534, 533, 502, 503, 535, 502, 535, 534, 503, 504, 536, 503, 536, 535, 504, 505, 537, 504, 537, 536, 505, 506, 538, 505, 538, 537, 506, 507, 539, 506, 539, 538, 507, 508, 540, 507, 540, 539, 508, 509, 541, 508, 541, 540, 509, 510, 542, 509, 542, 541, 510, 511, 543, 510, 543, 542, 512, 513, 545, 512, 545, 544, 513, 514, 546, 513, 546, 545, 514, 515, 547, 514, 547, 546, 515, 516, 548, 515, 548, 547, 516, 517, 549, 516, 549, 548, 517, 518, 550, 517, 550, 549, 518, 519, 551, 518, 551, 550, 519, 520, 552, 519, 552, 551, 520, 521, 553, 520, 553, 552, 521, 522, 554, 521, 554, 553, 522, 523, 555, 522, 555, 554, 523, 524, 556, 523, 556, 555, 524, 525, 557, 524, 557, 556, 525, 526, 558, 525, 558, 557, 526, 527, 559, 526, 559, 558, 527, 528, 560, 527, 560, 559, 528, 529, 561, 528, 561, 560, 529, 530, 562, 529, 562, 561, 530, 531, 563, 530, 563, 562, 531, 532, 564, 531, 564, 563, 532, 533, 565, 532, 565, 564, 533, 534, 566, 533, 566, 565, 534, 535, 567, 534, 567, 566, 535, 536, 568, 535, 568, 567, 536, 537, 569, 536, 569, 568, 537, 538, 570, 537, 570, 569, 538, 539, 571, 538, 571, 570, 539, 540, 572, 539, 572, 571, 540, 541, 573, 540, 573, 572, 541, 542, 574, 541, 574, 573, 542, 543, 575, 542, 575, 574, 544, 545, 577, 544, 577, 576, 545, 546, 578, 545, 578, 577, 546, 547, 579, 546, 579, 578, 547, 548, 580, 547, 580, 579, 548, 549, 581, 548, 581, 580, 549, 550, 582, 549, 582, 581, 550, 551, 583, 550, 583, 582, 551, 552, 584, 551, 584, 583, 552, 553, 585, 552, 585, 584, 553, 554, 586, 553, 586, 585, 554, 555, 587, 554, 587, 586, 555, 556, 588, 555, 588, 587, 556, 557, 589, 556, 589, 588, 557, 558, 590, 557, 590, 589, 558, 559, 591, 558, 591, 590, 559, 560, 592, 559, 592, 591, 560, 561, 593, 560, 593, 592, 561, 562, 594, 561, 594, 593, 562, 563, 595, 562, 595, 594, 563, 564, 596, 563, 596, 595, 564, 565, 597, 564, 597, 596, 565, 566, 598, 565, 598, 597, 566, 567, 599, 566, 599, 598, 567, 568, 600, 567, 600, 599, 568, 569, 601, 568, 601, 600, 569, 570, 602, 569, 602, 601, 570, 571, 603, 570, 603, 602, 571, 572, 604, 571, 604, 603, 572, 573, 605, 572, 605, 604, 573, 574, 606, 573, 606, 605, 574, 575, 607, 574, 607, 606, 576, 577, 609, 576, 609, 608, 577, 578, 610, 577, 610, 609, 578, 579, 611, 578, 611, 610, 579, 580, 612, 579, 612, 611, 580, 581, 613, 580, 613, 612, 581, 582, 614, 581, 614, 613, 582, 583, 615, 582, 615, 614, 583, 584, 616, 583, 616, 615, 584, 585, 617, 584, 617, 616, 585, 586, 618, 585, 618, 617, 586, 587, 619, 586, 619, 618, 587, 588, 620, 587, 620, 619, 588, 589, 621, 588, 621, 620, 589, 590, 622, 589, 622, 621, 590, 591, 623, 590, 623, 622, 591, 592, 624, 591, 624, 623, 592, 593, 625, 592, 625, 624, 593, 594, 626, 593, 626, 625, 594, 595, 627, 594, 627, 626, 595, 596, 628, 595, 628, 627, 596, 597, 629, 596, 629, 628, 597, 598, 630, 597, 630, 629, 598, 599, 631, 598, 631, 630, 599, 600, 632, 599, 632, 631, 600, 601, 633, 600, 633, 632, 601, 602, 634, 601, 634, 633, 602, 603, 635, 602, 635, 634, 603, 604, 636, 603, 636, 635, 604, 605, 637, 604, 637, 636, 605, 606, 638, 605, 638, 637, 606, 607, 639, 606, 639, 638, 608, 609, 641, 608, 641, 640, 609, 610, 642, 609, 642, 641, 610, 611, 643, 610, 643, 642, 611, 612, 644, 611, 644, 643, 612, 613, 645, 612, 645, 644, 613, 614, 646, 613, 646, 645, 614, 615, 647, 614, 647, 646, 615, 616, 648, 615, 648, 647, 616, 617, 649, 616, 649, 648, 617, 618, 650, 617, 650, 649, 618, 619, 651, 618, 651, 650, 619, 620, 652, 619, 652, 651, 620, 621, 653, 620, 653, 652, 621, 622, 654, 621, 654, 653, 622, 623, 655, 622, 655, 654, 623, 624, 656, 623, 656, 655, 624, 625, 657, 624, 657, 656, 625, 626, 658, 625, 658, 657, 626, 627, 659, 626, 659, 658, 627, 628, 660, 627, 660, 659, 628, 629, 661, 628, 661, 660, 629, 630, 662, 629, 662, 661, 630, 631, 663, 630, 663, 662, 631, 632, 664, 631, 664, 663, 632, 633, 665, 632, 665, 664, 633, 634, 666, 633, 666, 665, 634, 635, 667, 634, 667, 666, 635, 636, 668, 635, 668, 667, 636, 637, 669, 636, 669, 668, 637, 638, 670, 637, 670, 669, 638, 639, 671, 638, 671, 670, 640, 641, 673, 640, 673, 672, 641, 642, 674, 641, 674, 673, 642, 643, 675, 642, 675, 674, 643, 644, 676, 643, 676, 675, 644, 645, 677, 644, 677, 676, 645, 646, 678, 645, 678, 677, 646, 647, 679, 646, 679, 678, 647, 648, 680, 647, 680, 679, 648, 649, 681, 648, 681, 680, 649, 650, 682, 649, 682, 681, 650, 651, 683, 650, 683, 682, 651, 652, 684, 651, 684, 683, 652, 653, 685, 652, 685, 684, 653, 654, 686, 653, 686, 685, 654, 655, 687, 654, 687, 686, 655, 656, 688, 655, 688, 687, 656, 657, 689, 656, 689, 688, 657, 658, 690, 657, 690, 689, 658, 659, 691, 658, 691, 690, 659, 660, 692, 659, 692, 691, 660, 661, 693, 660, 693, 692, 661, 662, 694, 661, 694, 693, 662, 663, 695, 662, 695, 694, 663, 664, 696, 663, 696, 695, 664, 665, 697, 664, 697, 696, 665, 666, 698, 665, 698, 697, 666, 667, 699, 666, 699, 698, 667, 668, 700, 667, 700, 699, 668, 669, 701, 668, 701, 700, 669, 670, 702, 669, 702, 701, 670, 671, 703, 670, 703, 702, 672, 673, 705, 672, 705, 704, 673, 674, 706, 673, 706, 705, 674, 675, 707, 674, 707, 706, 675, 676, 708, 675, 708, 707, 676, 677, 709, 676, 709, 708, 677, 678, 710, 677, 710, 709, 678, 679, 711, 678, 711, 710, 679, 680, 712, 679, 712, 711, 680, 681, 713, 680, 713, 712, 681, 682, 714, 681, 714, 713, 682, 683, 715, 682, 715, 714, 683, 684, 716, 683, 716, 715, 684, 685, 717, 684, 717, 716, 685, 686, 718, 685, 718, 717, 686, 687, 719, 686, 719, 718, 687, 688, 720, 687, 720, 719, 688, 689, 721, 688, 721, 720, 689, 690, 722, 689, 722, 721, 690, 691, 723, 690, 723, 722, 691, 692, 724, 691, 724, 723, 692, 693, 725, 692, 725, 724, 693, 694, 726, 693, 726, 725, 694, 695, 727, 694, 727, 726, 695, 696, 728, 695, 728, 727, 696, 697, 729, 696, 729, 728, 697, 698, 730, 697, 730, 729, 698, 699, 731, 698, 731, 730, 699, 700, 732, 699, 732, 731, 700, 701, 733, 700, 733, 732, 701, 702, 734, 701, 734, 733, 702, 703, 735, 702, 735, 734, 704, 705, 737, 704, 737, 736, 705, 706, 738, 705, 738, 737, 706, 707, 739, 706, 739, 738, 707, 708, 740, 707, 740, 739, 708, 709, 741, 708, 741, 740, 709, 710, 742, 709, 742, 741, 710, 711, 743, 710, 743, 742, 711, 712, 744, 711, 744, 743, 712, 713, 745, 712, 745, 744, 713, 714, 746, 713, 746, 745, 714, 715, 747, 714, 747, 746, 715, 716, 748, 715, 748, 747, 716, 717, 749, 716, 749, 748, 717, 718, 750, 717, 750, 749, 718, 719, 751, 718, 751, 750, 719, 720, 752, 719, 752, 751, 720, 721, 753, 720, 753, 752, 721, 722, 754, 721, 754, 753, 722, 723, 755, 722, 755, 754, 723, 724, 756, 723, 756, 755, 724, 725, 757, 724, 757, 756, 725, 726, 758, 725, 758, 757, 726, 727, 759, 726, 759, 758, 727, 728, 760, 727, 760, 759, 728, 729, 761, 728, 761, 760, 729, 730, 762, 729, 762, 761, 730, 731, 763, 730, 763, 762, 731, 732, 764, 731, 764, 763, 732, 733, 765, 732, 765, 764, 733, 734, 766, 733, 766, 765, 734, 735, 767, 734, 767, 766, 736, 737, 769, 736, 769, 768, 737, 738, 770, 737, 770, 769, 738, 739, 771, 738, 771, 770, 739, 740, 772, 739, 772, 771, 740, 741, 773, 740, 773, 772, 741, 742, 774, 741, 774, 773, 742, 743, 775, 742, 775, 774, 743, 744, 776, 743, 776, 775, 744, 745, 777, 744, 777, 776, 745, 746, 778, 745, 778, 777, 746, 747, 779, 746, 779, 778, 747, 748, 780, 747, 780, 779, 748, 749, 781, 748, 781, 780, 749, 750, 782, 749, 782, 781, 750, 751, 783, 750, 783, 782, 751, 752, 784, 751, 784, 783, 752, 753, 785, 752, 785, 784, 753, 754, 786, 753, 786, 785, 754, 755, 787, 754, 787, 786, 755, 756, 788, 755, 788, 787, 756, 757, 789, 756, 789, 788, 757, 758, 790, 757, 790, 789, 758, 759, 791, 758, 791, 790, 759, 760, 792, 759, 792, 791, 760, 761, 793, 760, 793, 792, 761, 762, 794, 761, 794, 793, 762, 763, 795, 762, 795, 794, 763, 764, 796, 763, 796, 795, 764, 765, 797, 764, 797, 796, 765, 766, 798, 765, 798, 797, 766, 767, 799, 766, 799, 798, 768, 769, 801, 768, 801, 800, 769, 770, 802, 769, 802, 801, 770, 771, 803, 770, 803, 802, 771, 772, 804, 771, 804, 803, 772, 773, 805, 772, 805, 804, 773, 774, 806, 773, 806, 805, 774, 775, 807, 774, 807, 806, 775, 776, 808, 775, 808, 807, 776, 777, 809, 776, 809, 808, 777, 778, 810, 777, 810, 809, 778, 779, 811, 778, 811, 810, 779, 780, 812, 779, 812, 811, 780, 781, 813, 780, 813, 812, 781, 782, 814, 781, 814, 813, 782, 783, 815, 782, 815, 814, 783, 784, 816, 783, 816, 815, 784, 785, 817, 784, 817, 816, 785, 786, 818, 785, 818, 817, 786, 787, 819, 786, 819, 818, 787, 788, 820, 787, 820, 819, 788, 789, 821, 788, 821, 820, 789, 790, 822, 789, 822, 821, 790, 791, 823, 790, 823, 822, 791, 792, 824, 791, 824, 823, 792, 793, 825, 792, 825, 824, 793, 794, 826, 793, 826, 825, 794, 795, 827, 794, 827, 826, 795, 796, 828, 795, 828, 827, 796, 797, 829, 796, 829, 828, 797, 798, 830, 797, 830, 829, 798, 799, 831, 798, 831, 830, 800, 801, 833, 800, 833, 832, 801, 802, 834, 801, 834, 833, 802, 803, 835, 802, 835, 834, 803, 804, 836, 803, 836, 835, 804, 805, 837, 804, 837, 836, 805, 806, 838, 805, 838, 837, 806, 807, 839, 806, 839, 838, 807, 808, 840, 807, 840, 839, 808, 809, 841, 808, 841, 840, 809, 810, 842, 809, 842, 841, 810, 811, 843, 810, 843, 842, 811, 812, 844, 811, 844, 843, 812, 813, 845, 812, 845, 844, 813, 814, 846, 813, 846, 845, 814, 815, 847, 814, 847, 846, 815, 816, 848, 815, 848, 847, 816, 817, 849, 816, 849, 848, 817, 818, 850, 817, 850, 849, 818, 819, 851, 818, 851, 850, 819, 820, 852, 819, 852, 851, 820, 821, 853, 820, 853, 852, 821, 822, 854, 821, 854, 853, 822, 823, 855, 822, 855, 854, 823, 824, 856, 823, 856, 855, 824, 825, 857, 824, 857, 856, 825, 826, 858, 825, 858, 857, 826, 827, 859, 826, 859, 858, 827, 828, 860, 827, 860, 859, 828, 829, 861, 828, 861, 860, 829, 830, 862, 829, 862, 861, 830, 831, 863, 830, 863, 862, 832, 833, 865, 832, 865, 864, 833, 834, 866, 833, 866, 865, 834, 835, 867, 834, 867, 866, 835, 836, 868, 835, 868, 867, 836, 837, 869, 836, 869, 868, 837, 838, 870, 837, 870, 869, 838, 839, 871, 838, 871, 870, 839, 840, 872, 839, 872, 871, 840, 841, 873, 840, 873, 872, 841, 842, 874, 841, 874, 873, 842, 843, 875, 842, 875, 874, 843, 844, 876, 843, 876, 875, 844, 845, 877, 844, 877, 876, 845, 846, 878, 845, 878, 877, 846, 847, 879, 846, 879, 878, 847, 848, 880, 847, 880, 879, 848, 849, 881, 848, 881, 880, 849, 850, 882, 849, 882, 881, 850, 851, 883, 850, 883, 882, 851, 852, 884, 851, 884, 883, 852, 853, 885, 852, 885, 884, 853, 854, 886, 853, 886, 885, 854, 855, 887, 854, 887, 886, 855, 856, 888, 855, 888, 887, 856, 857, 889, 856, 889, 888, 857, 858, 890, 857, 890, 889, 858, 859, 891, 858, 891, 890, 859, 860, 892, 859, 892, 891, 860, 861, 893, 860, 893, 892, 861, 862, 894, 861, 894, 893, 862, 863, 895, 862, 895, 894, 864, 865, 897, 864, 897, 896, 865, 866, 898, 865, 898, 897, 866, 867, 899, 866, 899, 898, 867, 868, 900, 867, 900, 899, 868, 869, 901, 868, 901, 900, 869, 870, 902, 869, 902, 901, 870, 871, 903, 870, 903, 902, 871, 872, 904, 871, 904, 903, 872, 873, 905, 872, 905, 904, 873, 874, 906, 873, 906, 905, 874, 875, 907, 874, 907, 906, 875, 876, 908, 875, 908, 907, 876, 877, 909, 876, 909, 908, 877, 878, 910, 877, 910, 909, 878, 879, 911, 878, 911, 910, 879, 880, 912, 879, 912, 911, 880, 881, 913, 880, 913, 912, 881, 882, 914, 881, 914, 913, 882, 883, 915, 882, 915, 914, 883, 884, 916, 883, 916, 915, 884, 885, 917, 884, 917, 916, 885, 886, 918, 885, 918, 917, 886, 887, 919, 886, 919, 918, 887, 888, 920, 887, 920, 919, 888, 889, 921, 888, 921, 920, 889, 890, 922, 889, 922, 921, 890, 891, 923, 890, 923, 922, 891, 892, 924, 891, 924, 923, 892, 893, 925, 892, 925, 924, 893, 894, 926, 893, 926, 925, 894, 895, 927, 894, 927, 926, 896, 897, 929, 896, 929, 928, 897, 898, 930, 897, 930, 929, 898, 899, 931, 898, 931, 930, 899, 900, 932, 899, 932, 931, 900, 901, 933, 900, 933, 932, 901, 902, 934, 901, 934, 933, 902, 903, 935, 902, 935, 934, 903, 904, 936, 903, 936, 935, 904, 905, 937, 904, 937, 936, 905, 906, 938, 905, 938, 937, 906, 907, 939, 906, 939, 938, 907, 908, 940, 907, 940, 939, 908, 909, 941, 908, 941, 940, 909, 910, 942, 909, 942, 941, 910, 911, 943, 910, 943, 942, 911, 912, 944, 911, 944, 943, 912, 913, 945, 912, 945, 944, 913, 914, 946, 913, 946, 945, 914, 915, 947, 914, 947, 946, 915, 916, 948, 915, 948, 947, 916, 917, 949, 916, 949, 948, 917, 918, 950, 917, 950, 949, 918, 919, 951, 918, 951, 950, 919, 920, 952, 919, 952, 951, 920, 921, 953, 920, 953, 952, 921, 922, 954, 921, 954, 953, 922, 923, 955, 922, 955, 954, 923, 924, 956, 923, 956, 955, 924, 925, 957, 924, 957, 956, 925, 926, 958, 925, 958, 957, 926, 927, 959, 926, 959, 958, 928, 929, 961, 928, 961, 960, 929, 930, 962, 929, 962, 961, 930, 931, 963, 930, 963, 962, 931, 932, 964, 931, 964, 963, 932, 933, 965, 932, 965, 964, 933, 934, 966, 933, 966, 965, 934, 935, 967, 934, 967, 966, 935, 936, 968, 935, 968, 967, 936, 937, 969, 936, 969, 968, 937, 938, 970, 937, 970, 969, 938, 939, 971, 938, 971, 970, 939, 940, 972, 939, 972, 971, 940, 941, 973, 940, 973, 972, 941, 942, 974, 941, 974, 973, 942, 943, 975, 942, 975, 974, 943, 944, 976, 943, 976, 975, 944, 945, 977, 944, 977, 976, 945, 946, 978, 945, 978, 977, 946, 947, 979, 946, 979, 978, 947, 948, 980, 947, 980, 979, 948, 949, 981, 948, 981, 980, 949, 950, 982, 949, 982, 981, 950, 951, 983, 950, 983, 982, 951, 952, 984, 951, 984, 983, 952, 953, 985, 952, 985, 984, 953, 954, 986, 953, 986, 985, 954, 955, 987, 954, 987, 986, 955, 956, 988, 955, 988, 987, 956, 957, 989, 956, 989, 988, 957, 958, 990, 957, 990, 989, 958, 959, 991, 958, 991, 990, 960, 961, 993, 960, 993, 992, 961, 962, 994, 961, 994, 993, 962, 963, 995, 962, 995, 994, 963, 964, 996, 963, 996, 995, 964, 965, 997, 964, 997, 996, 965, 966, 998, 965, 998, 997, 966, 967, 999, 966, 999, 998, 967, 968, 1000, 967, 1000, 999, 968, 969, 1001, 968, 1001, 1000, 969, 970, 1002, 969, 1002, 1001, 970, 971, 1003, 970, 1003, 1002, 971, 972, 1004, 971, 1004, 1003, 972, 973, 1005, 972, 1005, 1004, 973, 974, 1006, 973, 1006, 1005, 974, 975, 1007, 974, 1007, 1006, 975, 976, 1008, 975, 1008, 1007, 976, 977, 1009, 976, 1009, 1008, 977, 978, 1010, 977, 1010, 1009, 978, 979, 1011, 978, 1011, 1010, 979, 980, 1012, 979, 1012, 1011, 980, 981, 1013, 980, 1013, 1012, 981, 982, 1014, 981, 1014, 1013, 982, 983, 1015, 982, 1015, 1014, 983, 984, 1016, 983, 1016, 1015, 984, 985, 1017, 984, 1017, 1016, 985, 986, 1018, 985, 1018, 1017, 986, 987, 1019, 986, 1019, 1018, 987, 988, 1020, 987, 1020, 1019, 988, 989, 1021, 988, 1021, 1020, 989, 990, 1022, 989, 1022, 1021, 990, 991, 1023, 990, 1023, 1022] point3f[] points = [(0, 0, 20), (20, 0, 20), (40, 0, 20), (60, 0, 20), (80, 0, 20), (100, 0, 20), (120, 0, 20), (140, 0, 20), (160, 0, 20), (180, 0, 20), (200, 0, 20), (220, 0, 20), (240, 0, 20), (260, 0, 20), (280, 0, 20), (300, 0, 20), (320, 0, 20), (340, 0, 20), (360, 0, 20), (380, 0, 20), (400, 0, 20), (420, 0, 20), (440, 0, 20), (460, 0, 20), (480, 0, 20), (500, 0, 20), (520, 0, 20), (540, 0, 20), (560, 0, 20), (580, 0, 20), (600, 0, 20), (620, 0, 20), (0, 20, 20), (20, 20, 20), (40, 20, 20), (60, 20, 20), (80, 20, 20), (100, 20, 20), (120, 20, 20), (140, 20, 20), (160, 20, 20), (180, 20, 20), (200, 20, 20), (220, 20, 20), (240, 20, 20), (260, 20, 20), (280, 20, 20), (300, 20, 20), (320, 20, 20), (340, 20, 20), (360, 20, 20), (380, 20, 20), (400, 20, 20), (420, 20, 20), (440, 20, 20), (460, 20, 20), (480, 20, 20), (500, 20, 20), (520, 20, 20), (540, 20, 20), (560, 20, 20), (580, 20, 20), (600, 20, 20), (620, 20, 20), (0, 40, 20), (20, 40, 20), (40, 40, 20), (60, 40, 20), (80, 40, 20), (100, 40, 20), (120, 40, 20), (140, 40, 20), (160, 40, 20), (180, 40, 20), (200, 40, 20), (220, 40, 20), (240, 40, 20), (260, 40, 20), (280, 40, 20), (300, 40, 20), (320, 40, 20), (340, 40, 20), (360, 40, 20), (380, 40, 20), (400, 40, 20), (420, 40, 20), (440, 40, 20), (460, 40, 20), (480, 40, 20), (500, 40, 20), (520, 40, 20), (540, 40, 20), (560, 40, 20), (580, 40, 20), (600, 40, 20), (620, 40, 20), (0, 60, 20), (20, 60, 20), (40, 60, 20), (60, 60, 20), (80, 60, 20), (100, 60, 20), (120, 60, 20), (140, 60, 20), (160, 60, 20), (180, 60, 20), (200, 60, 20), (220, 60, 20), (240, 60, 20), (260, 60, 20), (280, 60, 20), (300, 60, 20), (320, 60, 20), (340, 60, 20), (360, 60, 20), (380, 60, 20), (400, 60, 20), (420, 60, 20), (440, 60, 20), (460, 60, 20), (480, 60, 20), (500, 60, 20), (520, 60, 20), (540, 60, 20), (560, 60, 20), (580, 60, 20), (600, 60, 20), (620, 60, 20), (0, 80, 20), (20, 80, 20), (40, 80, 20), (60, 80, 20), (80, 80, 20), (100, 80, 20), (120, 80, 20), (140, 80, 20), (160, 80, 20), (180, 80, 20), (200, 80, 20), (220, 80, 20), (240, 80, 20), (260, 80, 20), (280, 80, 20), (300, 80, 20), (320, 80, 20), (340, 80, 20), (360, 80, 20), (380, 80, 20), (400, 80, 20), (420, 80, 20), (440, 80, 20), (460, 80, 20), (480, 80, 20), (500, 80, 20), (520, 80, 20), (540, 80, 20), (560, 80, 20), (580, 80, 20), (600, 80, 20), (620, 80, 20), (0, 100, 20), (20, 100, 20), (40, 100, 20), (60, 100, 20), (80, 100, 20), (100, 100, 20), (120, 100, 20), (140, 100, 20), (160, 100, 20), (180, 100, 20), (200, 100, 20), (220, 100, 20), (240, 100, 20), (260, 100, 20), (280, 100, 20), (300, 100, 20), (320, 100, 20), (340, 100, 20), (360, 100, 20), (380, 100, 20), (400, 100, 20), (420, 100, 20), (440, 100, 20), (460, 100, 20), (480, 100, 20), (500, 100, 20), (520, 100, 20), (540, 100, 20), (560, 100, 20), (580, 100, 20), (600, 100, 20), (620, 100, 20), (0, 120, 20), (20, 120, 20), (40, 120, 20), (60, 120, 20), (80, 120, 20), (100, 120, 20), (120, 120, 20), (140, 120, 20), (160, 120, 20), (180, 120, 20), (200, 120, 20), (220, 120, 20), (240, 120, 20), (260, 120, 20), (280, 120, 20), (300, 120, 20), (320, 120, 20), (340, 120, 20), (360, 120, 20), (380, 120, 20), (400, 120, 20), (420, 120, 20), (440, 120, 20), (460, 120, 20), (480, 120, 20), (500, 120, 20), (520, 120, 20), (540, 120, 20), (560, 120, 20), (580, 120, 20), (600, 120, 20), (620, 120, 20), (0, 140, 20), (20, 140, 20), (40, 140, 20), (60, 140, 20), (80, 140, 20), (100, 140, 20), (120, 140, 20), (140, 140, 20), (160, 140, 20), (180, 140, 20), (200, 140, 20), (220, 140, 20), (240, 140, 20), (260, 140, 20), (280, 140, 20), (300, 140, 20), (320, 140, 20), (340, 140, 20), (360, 140, 20), (380, 140, 20), (400, 140, 20), (420, 140, 20), (440, 140, 20), (460, 140, 20), (480, 140, 20), (500, 140, 20), (520, 140, 20), (540, 140, 20), (560, 140, 20), (580, 140, 20), (600, 140, 20), (620, 140, 20), (0, 160, 20), (20, 160, 20), (40, 160, 20), (60, 160, 20), (80, 160, 20), (100, 160, 20), (120, 160, 20), (140, 160, 20), (160, 160, 20), (180, 160, 20), (200, 160, 20), (220, 160, 20), (240, 160, 20), (260, 160, 20), (280, 160, 20), (300, 160, 20), (320, 160, 20), (340, 160, 20), (360, 160, 20), (380, 160, 20), (400, 160, 20), (420, 160, 20), (440, 160, 20), (460, 160, 20), (480, 160, 20), (500, 160, 20), (520, 160, 20), (540, 160, 20), (560, 160, 20), (580, 160, 20), (600, 160, 20), (620, 160, 20), (0, 180, 20), (20, 180, 20), (40, 180, 20), (60, 180, 20), (80, 180, 20), (100, 180, 20), (120, 180, 20), (140, 180, 20), (160, 180, 20), (180, 180, 20), (200, 180, 20), (220, 180, 20), (240, 180, 20), (260, 180, 20), (280, 180, 20), (300, 180, 20), (320, 180, 20), (340, 180, 20), (360, 180, 20), (380, 180, 20), (400, 180, 20), (420, 180, 20), (440, 180, 20), (460, 180, 20), (480, 180, 20), (500, 180, 20), (520, 180, 20), (540, 180, 20), (560, 180, 20), (580, 180, 20), (600, 180, 20), (620, 180, 20), (0, 200, 20), (20, 200, 20), (40, 200, 20), (60, 200, 20), (80, 200, 20), (100, 200, 20), (120, 200, 20), (140, 200, 20), (160, 200, 20), (180, 200, 20), (200, 200, 20), (220, 200, 20), (240, 200, 20), (260, 200, 20), (280, 200, 20), (300, 200, 20), (320, 200, 20), (340, 200, 20), (360, 200, 20), (380, 200, 20), (400, 200, 20), (420, 200, 20), (440, 200, 20), (460, 200, 20), (480, 200, 20), (500, 200, 20), (520, 200, 20), (540, 200, 20), (560, 200, 20), (580, 200, 20), (600, 200, 20), (620, 200, 20), (0, 220, 20), (20, 220, 20), (40, 220, 20), (60, 220, 20), (80, 220, 20), (100, 220, 20), (120, 220, 20), (140, 220, 20), (160, 220, 20), (180, 220, 20), (200, 220, 20), (220, 220, 20), (240, 220, 20), (260, 220, 20), (280, 220, 20), (300, 220, 20), (320, 220, 20), (340, 220, 20), (360, 220, 20), (380, 220, 20), (400, 220, 20), (420, 220, 20), (440, 220, 20), (460, 220, 20), (480, 220, 20), (500, 220, 20), (520, 220, 20), (540, 220, 20), (560, 220, 20), (580, 220, 20), (600, 220, 20), (620, 220, 20), (0, 240, 20), (20, 240, 20), (40, 240, 20), (60, 240, 20), (80, 240, 20), (100, 240, 20), (120, 240, 20), (140, 240, 20), (160, 240, 20), (180, 240, 20), (200, 240, 20), (220, 240, 20), (240, 240, 20), (260, 240, 20), (280, 240, 20), (300, 240, 20), (320, 240, 20), (340, 240, 20), (360, 240, 20), (380, 240, 20), (400, 240, 20), (420, 240, 20), (440, 240, 20), (460, 240, 20), (480, 240, 20), (500, 240, 20), (520, 240, 20), (540, 240, 20), (560, 240, 20), (580, 240, 20), (600, 240, 20), (620, 240, 20), (0, 260, 20), (20, 260, 20), (40, 260, 20), (60, 260, 20), (80, 260, 20), (100, 260, 20), (120, 260, 20), (140, 260, 20), (160, 260, 20), (180, 260, 20), (200, 260, 20), (220, 260, 20), (240, 260, 20), (260, 260, 20), (280, 260, 20), (300, 260, 20), (320, 260, 20), (340, 260, 20), (360, 260, 20), (380, 260, 20), (400, 260, 20), (420, 260, 20), (440, 260, 20), (460, 260, 20), (480, 260, 20), (500, 260, 20), (520, 260, 20), (540, 260, 20), (560, 260, 20), (580, 260, 20), (600, 260, 20), (620, 260, 20), (0, 280, 20), (20, 280, 20), (40, 280, 20), (60, 280, 20), (80, 280, 20), (100, 280, 20), (120, 280, 20), (140, 280, 20), (160, 280, 20), (180, 280, 20), (200, 280, 20), (220, 280, 20), (240, 280, 20), (260, 280, 20), (280, 280, 20), (300, 280, 20), (320, 280, 20), (340, 280, 20), (360, 280, 20), (380, 280, 20), (400, 280, 20), (420, 280, 20), (440, 280, 20), (460, 280, 20), (480, 280, 20), (500, 280, 20), (520, 280, 20), (540, 280, 20), (560, 280, 20), (580, 280, 20), (600, 280, 20), (620, 280, 20), (0, 300, 20), (20, 300, 20), (40, 300, 20), (60, 300, 20), (80, 300, 20), (100, 300, 20), (120, 300, 20), (140, 300, 20), (160, 300, 20), (180, 300, 20), (200, 300, 20), (220, 300, 20), (240, 300, 20), (260, 300, 20), (280, 300, 20), (300, 300, 20), (320, 300, 20), (340, 300, 20), (360, 300, 20), (380, 300, 20), (400, 300, 20), (420, 300, 20), (440, 300, 20), (460, 300, 20), (480, 300, 20), (500, 300, 20), (520, 300, 20), (540, 300, 20), (560, 300, 20), (580, 300, 20), (600, 300, 20), (620, 300, 20), (0, 320, 20), (20, 320, 20), (40, 320, 20), (60, 320, 20), (80, 320, 20), (100, 320, 20), (120, 320, 20), (140, 320, 20), (160, 320, 20), (180, 320, 20), (200, 320, 20), (220, 320, 20), (240, 320, 20), (260, 320, 20), (280, 320, 20), (300, 320, 20), (320, 320, 20), (340, 320, 20), (360, 320, 20), (380, 320, 20), (400, 320, 20), (420, 320, 20), (440, 320, 20), (460, 320, 20), (480, 320, 20), (500, 320, 20), (520, 320, 20), (540, 320, 20), (560, 320, 20), (580, 320, 20), (600, 320, 20), (620, 320, 20), (0, 340, 20), (20, 340, 20), (40, 340, 20), (60, 340, 20), (80, 340, 20), (100, 340, 20), (120, 340, 20), (140, 340, 20), (160, 340, 20), (180, 340, 20), (200, 340, 20), (220, 340, 20), (240, 340, 20), (260, 340, 20), (280, 340, 20), (300, 340, 20), (320, 340, 20), (340, 340, 20), (360, 340, 20), (380, 340, 20), (400, 340, 20), (420, 340, 20), (440, 340, 20), (460, 340, 20), (480, 340, 20), (500, 340, 20), (520, 340, 20), (540, 340, 20), (560, 340, 20), (580, 340, 20), (600, 340, 20), (620, 340, 20), (0, 360, 20), (20, 360, 20), (40, 360, 20), (60, 360, 20), (80, 360, 20), (100, 360, 20), (120, 360, 20), (140, 360, 20), (160, 360, 20), (180, 360, 20), (200, 360, 20), (220, 360, 20), (240, 360, 20), (260, 360, 20), (280, 360, 20), (300, 360, 20), (320, 360, 20), (340, 360, 20), (360, 360, 20), (380, 360, 20), (400, 360, 20), (420, 360, 20), (440, 360, 20), (460, 360, 20), (480, 360, 20), (500, 360, 20), (520, 360, 20), (540, 360, 20), (560, 360, 20), (580, 360, 20), (600, 360, 20), (620, 360, 20), (0, 380, 20), (20, 380, 20), (40, 380, 20), (60, 380, 20), (80, 380, 20), (100, 380, 20), (120, 380, 20), (140, 380, 20), (160, 380, 20), (180, 380, 20), (200, 380, 20), (220, 380, 20), (240, 380, 20), (260, 380, 20), (280, 380, 20), (300, 380, 20), (320, 380, 20), (340, 380, 20), (360, 380, 20), (380, 380, 20), (400, 380, 20), (420, 380, 20), (440, 380, 20), (460, 380, 20), (480, 380, 20), (500, 380, 20), (520, 380, 20), (540, 380, 20), (560, 380, 20), (580, 380, 20), (600, 380, 20), (620, 380, 20), (0, 400, 20), (20, 400, 20), (40, 400, 20), (60, 400, 20), (80, 400, 20), (100, 400, 20), (120, 400, 20), (140, 400, 20), (160, 400, 20), (180, 400, 20), (200, 400, 20), (220, 400, 20), (240, 400, 20), (260, 400, 20), (280, 400, 20), (300, 400, 20), (320, 400, 20), (340, 400, 20), (360, 400, 20), (380, 400, 20), (400, 400, 20), (420, 400, 20), (440, 400, 20), (460, 400, 20), (480, 400, 20), (500, 400, 20), (520, 400, 20), (540, 400, 20), (560, 400, 20), (580, 400, 20), (600, 400, 20), (620, 400, 20), (0, 420, 20), (20, 420, 20), (40, 420, 20), (60, 420, 20), (80, 420, 20), (100, 420, 20), (120, 420, 20), (140, 420, 20), (160, 420, 20), (180, 420, 20), (200, 420, 20), (220, 420, 20), (240, 420, 20), (260, 420, 20), (280, 420, 20), (300, 420, 20), (320, 420, 20), (340, 420, 20), (360, 420, 20), (380, 420, 20), (400, 420, 20), (420, 420, 20), (440, 420, 20), (460, 420, 20), (480, 420, 20), (500, 420, 20), (520, 420, 20), (540, 420, 20), (560, 420, 20), (580, 420, 20), (600, 420, 20), (620, 420, 20), (0, 440, 20), (20, 440, 20), (40, 440, 20), (60, 440, 20), (80, 440, 20), (100, 440, 20), (120, 440, 20), (140, 440, 20), (160, 440, 20), (180, 440, 20), (200, 440, 20), (220, 440, 20), (240, 440, 20), (260, 440, 20), (280, 440, 20), (300, 440, 20), (320, 440, 20), (340, 440, 20), (360, 440, 20), (380, 440, 20), (400, 440, 20), (420, 440, 20), (440, 440, 20), (460, 440, 20), (480, 440, 20), (500, 440, 20), (520, 440, 20), (540, 440, 20), (560, 440, 20), (580, 440, 20), (600, 440, 20), (620, 440, 20), (0, 460, 20), (20, 460, 20), (40, 460, 20), (60, 460, 20), (80, 460, 20), (100, 460, 20), (120, 460, 20), (140, 460, 20), (160, 460, 20), (180, 460, 20), (200, 460, 20), (220, 460, 20), (240, 460, 20), (260, 460, 20), (280, 460, 20), (300, 460, 20), (320, 460, 20), (340, 460, 20), (360, 460, 20), (380, 460, 20), (400, 460, 20), (420, 460, 20), (440, 460, 20), (460, 460, 20), (480, 460, 20), (500, 460, 20), (520, 460, 20), (540, 460, 20), (560, 460, 20), (580, 460, 20), (600, 460, 20), (620, 460, 20), (0, 480, 20), (20, 480, 20), (40, 480, 20), (60, 480, 20), (80, 480, 20), (100, 480, 20), (120, 480, 20), (140, 480, 20), (160, 480, 20), (180, 480, 20), (200, 480, 20), (220, 480, 20), (240, 480, 20), (260, 480, 20), (280, 480, 20), (300, 480, 20), (320, 480, 20), (340, 480, 20), (360, 480, 20), (380, 480, 20), (400, 480, 20), (420, 480, 20), (440, 480, 20), (460, 480, 20), (480, 480, 20), (500, 480, 20), (520, 480, 20), (540, 480, 20), (560, 480, 20), (580, 480, 20), (600, 480, 20), (620, 480, 20), (0, 500, 20), (20, 500, 20), (40, 500, 20), (60, 500, 20), (80, 500, 20), (100, 500, 20), (120, 500, 20), (140, 500, 20), (160, 500, 20), (180, 500, 20), (200, 500, 20), (220, 500, 20), (240, 500, 20), (260, 500, 20), (280, 500, 20), (300, 500, 20), (320, 500, 20), (340, 500, 20), (360, 500, 20), (380, 500, 20), (400, 500, 20), (420, 500, 20), (440, 500, 20), (460, 500, 20), (480, 500, 20), (500, 500, 20), (520, 500, 20), (540, 500, 20), (560, 500, 20), (580, 500, 20), (600, 500, 20), (620, 500, 20), (0, 520, 20), (20, 520, 20), (40, 520, 20), (60, 520, 20), (80, 520, 20), (100, 520, 20), (120, 520, 20), (140, 520, 20), (160, 520, 20), (180, 520, 20), (200, 520, 20), (220, 520, 20), (240, 520, 20), (260, 520, 20), (280, 520, 20), (300, 520, 20), (320, 520, 20), (340, 520, 20), (360, 520, 20), (380, 520, 20), (400, 520, 20), (420, 520, 20), (440, 520, 20), (460, 520, 20), (480, 520, 20), (500, 520, 20), (520, 520, 20), (540, 520, 20), (560, 520, 20), (580, 520, 20), (600, 520, 20), (620, 520, 20), (0, 540, 20), (20, 540, 20), (40, 540, 20), (60, 540, 20), (80, 540, 20), (100, 540, 20), (120, 540, 20), (140, 540, 20), (160, 540, 20), (180, 540, 20), (200, 540, 20), (220, 540, 20), (240, 540, 20), (260, 540, 20), (280, 540, 20), (300, 540, 20), (320, 540, 20), (340, 540, 20), (360, 540, 20), (380, 540, 20), (400, 540, 20), (420, 540, 20), (440, 540, 20), (460, 540, 20), (480, 540, 20), (500, 540, 20), (520, 540, 20), (540, 540, 20), (560, 540, 20), (580, 540, 20), (600, 540, 20), (620, 540, 20), (0, 560, 20), (20, 560, 20), (40, 560, 20), (60, 560, 20), (80, 560, 20), (100, 560, 20), (120, 560, 20), (140, 560, 20), (160, 560, 20), (180, 560, 20), (200, 560, 20), (220, 560, 20), (240, 560, 20), (260, 560, 20), (280, 560, 20), (300, 560, 20), (320, 560, 20), (340, 560, 20), (360, 560, 20), (380, 560, 20), (400, 560, 20), (420, 560, 20), (440, 560, 20), (460, 560, 20), (480, 560, 20), (500, 560, 20), (520, 560, 20), (540, 560, 20), (560, 560, 20), (580, 560, 20), (600, 560, 20), (620, 560, 20), (0, 580, 20), (20, 580, 20), (40, 580, 20), (60, 580, 20), (80, 580, 20), (100, 580, 20), (120, 580, 20), (140, 580, 20), (160, 580, 20), (180, 580, 20), (200, 580, 20), (220, 580, 20), (240, 580, 20), (260, 580, 20), (280, 580, 20), (300, 580, 20), (320, 580, 20), (340, 580, 20), (360, 580, 20), (380, 580, 20), (400, 580, 20), (420, 580, 20), (440, 580, 20), (460, 580, 20), (480, 580, 20), (500, 580, 20), (520, 580, 20), (540, 580, 20), (560, 580, 20), (580, 580, 20), (600, 580, 20), (620, 580, 20), (0, 600, 20), (20, 600, 20), (40, 600, 20), (60, 600, 20), (80, 600, 20), (100, 600, 20), (120, 600, 20), (140, 600, 20), (160, 600, 20), (180, 600, 20), (200, 600, 20), (220, 600, 20), (240, 600, 20), (260, 600, 20), (280, 600, 20), (300, 600, 20), (320, 600, 20), (340, 600, 20), (360, 600, 20), (380, 600, 20), (400, 600, 20), (420, 600, 20), (440, 600, 20), (460, 600, 20), (480, 600, 20), (500, 600, 20), (520, 600, 20), (540, 600, 20), (560, 600, 20), (580, 600, 20), (600, 600, 20), (620, 600, 20), (0, 620, 20), (20, 620, 20), (40, 620, 20), (60, 620, 20), (80, 620, 20), (100, 620, 20), (120, 620, 20), (140, 620, 20), (160, 620, 20), (180, 620, 20), (200, 620, 20), (220, 620, 20), (240, 620, 20), (260, 620, 20), (280, 620, 20), (300, 620, 20), (320, 620, 20), (340, 620, 20), (360, 620, 20), (380, 620, 20), (400, 620, 20), (420, 620, 20), (440, 620, 20), (460, 620, 20), (480, 620, 20), (500, 620, 20), (520, 620, 20), (540, 620, 20), (560, 620, 20), (580, 620, 20), (600, 620, 20), (620, 620, 20)] color3f[] primvars:displayColor = [(0.2784314, 0.64705884, 1)] } def Mesh "outputGrid" { uniform bool doubleSided = 1 int[] faceVertexCounts = [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 1, 33, 0, 33, 32, 1, 2, 34, 1, 34, 33, 2, 3, 35, 2, 35, 34, 3, 4, 36, 3, 36, 35, 4, 5, 37, 4, 37, 36, 5, 6, 38, 5, 38, 37, 6, 7, 39, 6, 39, 38, 7, 8, 40, 7, 40, 39, 8, 9, 41, 8, 41, 40, 9, 10, 42, 9, 42, 41, 10, 11, 43, 10, 43, 42, 11, 12, 44, 11, 44, 43, 12, 13, 45, 12, 45, 44, 13, 14, 46, 13, 46, 45, 14, 15, 47, 14, 47, 46, 15, 16, 48, 15, 48, 47, 16, 17, 49, 16, 49, 48, 17, 18, 50, 17, 50, 49, 18, 19, 51, 18, 51, 50, 19, 20, 52, 19, 52, 51, 20, 21, 53, 20, 53, 52, 21, 22, 54, 21, 54, 53, 22, 23, 55, 22, 55, 54, 23, 24, 56, 23, 56, 55, 24, 25, 57, 24, 57, 56, 25, 26, 58, 25, 58, 57, 26, 27, 59, 26, 59, 58, 27, 28, 60, 27, 60, 59, 28, 29, 61, 28, 61, 60, 29, 30, 62, 29, 62, 61, 30, 31, 63, 30, 63, 62, 32, 33, 65, 32, 65, 64, 33, 34, 66, 33, 66, 65, 34, 35, 67, 34, 67, 66, 35, 36, 68, 35, 68, 67, 36, 37, 69, 36, 69, 68, 37, 38, 70, 37, 70, 69, 38, 39, 71, 38, 71, 70, 39, 40, 72, 39, 72, 71, 40, 41, 73, 40, 73, 72, 41, 42, 74, 41, 74, 73, 42, 43, 75, 42, 75, 74, 43, 44, 76, 43, 76, 75, 44, 45, 77, 44, 77, 76, 45, 46, 78, 45, 78, 77, 46, 47, 79, 46, 79, 78, 47, 48, 80, 47, 80, 79, 48, 49, 81, 48, 81, 80, 49, 50, 82, 49, 82, 81, 50, 51, 83, 50, 83, 82, 51, 52, 84, 51, 84, 83, 52, 53, 85, 52, 85, 84, 53, 54, 86, 53, 86, 85, 54, 55, 87, 54, 87, 86, 55, 56, 88, 55, 88, 87, 56, 57, 89, 56, 89, 88, 57, 58, 90, 57, 90, 89, 58, 59, 91, 58, 91, 90, 59, 60, 92, 59, 92, 91, 60, 61, 93, 60, 93, 92, 61, 62, 94, 61, 94, 93, 62, 63, 95, 62, 95, 94, 64, 65, 97, 64, 97, 96, 65, 66, 98, 65, 98, 97, 66, 67, 99, 66, 99, 98, 67, 68, 100, 67, 100, 99, 68, 69, 101, 68, 101, 100, 69, 70, 102, 69, 102, 101, 70, 71, 103, 70, 103, 102, 71, 72, 104, 71, 104, 103, 72, 73, 105, 72, 105, 104, 73, 74, 106, 73, 106, 105, 74, 75, 107, 74, 107, 106, 75, 76, 108, 75, 108, 107, 76, 77, 109, 76, 109, 108, 77, 78, 110, 77, 110, 109, 78, 79, 111, 78, 111, 110, 79, 80, 112, 79, 112, 111, 80, 81, 113, 80, 113, 112, 81, 82, 114, 81, 114, 113, 82, 83, 115, 82, 115, 114, 83, 84, 116, 83, 116, 115, 84, 85, 117, 84, 117, 116, 85, 86, 118, 85, 118, 117, 86, 87, 119, 86, 119, 118, 87, 88, 120, 87, 120, 119, 88, 89, 121, 88, 121, 120, 89, 90, 122, 89, 122, 121, 90, 91, 123, 90, 123, 122, 91, 92, 124, 91, 124, 123, 92, 93, 125, 92, 125, 124, 93, 94, 126, 93, 126, 125, 94, 95, 127, 94, 127, 126, 96, 97, 129, 96, 129, 128, 97, 98, 130, 97, 130, 129, 98, 99, 131, 98, 131, 130, 99, 100, 132, 99, 132, 131, 100, 101, 133, 100, 133, 132, 101, 102, 134, 101, 134, 133, 102, 103, 135, 102, 135, 134, 103, 104, 136, 103, 136, 135, 104, 105, 137, 104, 137, 136, 105, 106, 138, 105, 138, 137, 106, 107, 139, 106, 139, 138, 107, 108, 140, 107, 140, 139, 108, 109, 141, 108, 141, 140, 109, 110, 142, 109, 142, 141, 110, 111, 143, 110, 143, 142, 111, 112, 144, 111, 144, 143, 112, 113, 145, 112, 145, 144, 113, 114, 146, 113, 146, 145, 114, 115, 147, 114, 147, 146, 115, 116, 148, 115, 148, 147, 116, 117, 149, 116, 149, 148, 117, 118, 150, 117, 150, 149, 118, 119, 151, 118, 151, 150, 119, 120, 152, 119, 152, 151, 120, 121, 153, 120, 153, 152, 121, 122, 154, 121, 154, 153, 122, 123, 155, 122, 155, 154, 123, 124, 156, 123, 156, 155, 124, 125, 157, 124, 157, 156, 125, 126, 158, 125, 158, 157, 126, 127, 159, 126, 159, 158, 128, 129, 161, 128, 161, 160, 129, 130, 162, 129, 162, 161, 130, 131, 163, 130, 163, 162, 131, 132, 164, 131, 164, 163, 132, 133, 165, 132, 165, 164, 133, 134, 166, 133, 166, 165, 134, 135, 167, 134, 167, 166, 135, 136, 168, 135, 168, 167, 136, 137, 169, 136, 169, 168, 137, 138, 170, 137, 170, 169, 138, 139, 171, 138, 171, 170, 139, 140, 172, 139, 172, 171, 140, 141, 173, 140, 173, 172, 141, 142, 174, 141, 174, 173, 142, 143, 175, 142, 175, 174, 143, 144, 176, 143, 176, 175, 144, 145, 177, 144, 177, 176, 145, 146, 178, 145, 178, 177, 146, 147, 179, 146, 179, 178, 147, 148, 180, 147, 180, 179, 148, 149, 181, 148, 181, 180, 149, 150, 182, 149, 182, 181, 150, 151, 183, 150, 183, 182, 151, 152, 184, 151, 184, 183, 152, 153, 185, 152, 185, 184, 153, 154, 186, 153, 186, 185, 154, 155, 187, 154, 187, 186, 155, 156, 188, 155, 188, 187, 156, 157, 189, 156, 189, 188, 157, 158, 190, 157, 190, 189, 158, 159, 191, 158, 191, 190, 160, 161, 193, 160, 193, 192, 161, 162, 194, 161, 194, 193, 162, 163, 195, 162, 195, 194, 163, 164, 196, 163, 196, 195, 164, 165, 197, 164, 197, 196, 165, 166, 198, 165, 198, 197, 166, 167, 199, 166, 199, 198, 167, 168, 200, 167, 200, 199, 168, 169, 201, 168, 201, 200, 169, 170, 202, 169, 202, 201, 170, 171, 203, 170, 203, 202, 171, 172, 204, 171, 204, 203, 172, 173, 205, 172, 205, 204, 173, 174, 206, 173, 206, 205, 174, 175, 207, 174, 207, 206, 175, 176, 208, 175, 208, 207, 176, 177, 209, 176, 209, 208, 177, 178, 210, 177, 210, 209, 178, 179, 211, 178, 211, 210, 179, 180, 212, 179, 212, 211, 180, 181, 213, 180, 213, 212, 181, 182, 214, 181, 214, 213, 182, 183, 215, 182, 215, 214, 183, 184, 216, 183, 216, 215, 184, 185, 217, 184, 217, 216, 185, 186, 218, 185, 218, 217, 186, 187, 219, 186, 219, 218, 187, 188, 220, 187, 220, 219, 188, 189, 221, 188, 221, 220, 189, 190, 222, 189, 222, 221, 190, 191, 223, 190, 223, 222, 192, 193, 225, 192, 225, 224, 193, 194, 226, 193, 226, 225, 194, 195, 227, 194, 227, 226, 195, 196, 228, 195, 228, 227, 196, 197, 229, 196, 229, 228, 197, 198, 230, 197, 230, 229, 198, 199, 231, 198, 231, 230, 199, 200, 232, 199, 232, 231, 200, 201, 233, 200, 233, 232, 201, 202, 234, 201, 234, 233, 202, 203, 235, 202, 235, 234, 203, 204, 236, 203, 236, 235, 204, 205, 237, 204, 237, 236, 205, 206, 238, 205, 238, 237, 206, 207, 239, 206, 239, 238, 207, 208, 240, 207, 240, 239, 208, 209, 241, 208, 241, 240, 209, 210, 242, 209, 242, 241, 210, 211, 243, 210, 243, 242, 211, 212, 244, 211, 244, 243, 212, 213, 245, 212, 245, 244, 213, 214, 246, 213, 246, 245, 214, 215, 247, 214, 247, 246, 215, 216, 248, 215, 248, 247, 216, 217, 249, 216, 249, 248, 217, 218, 250, 217, 250, 249, 218, 219, 251, 218, 251, 250, 219, 220, 252, 219, 252, 251, 220, 221, 253, 220, 253, 252, 221, 222, 254, 221, 254, 253, 222, 223, 255, 222, 255, 254, 224, 225, 257, 224, 257, 256, 225, 226, 258, 225, 258, 257, 226, 227, 259, 226, 259, 258, 227, 228, 260, 227, 260, 259, 228, 229, 261, 228, 261, 260, 229, 230, 262, 229, 262, 261, 230, 231, 263, 230, 263, 262, 231, 232, 264, 231, 264, 263, 232, 233, 265, 232, 265, 264, 233, 234, 266, 233, 266, 265, 234, 235, 267, 234, 267, 266, 235, 236, 268, 235, 268, 267, 236, 237, 269, 236, 269, 268, 237, 238, 270, 237, 270, 269, 238, 239, 271, 238, 271, 270, 239, 240, 272, 239, 272, 271, 240, 241, 273, 240, 273, 272, 241, 242, 274, 241, 274, 273, 242, 243, 275, 242, 275, 274, 243, 244, 276, 243, 276, 275, 244, 245, 277, 244, 277, 276, 245, 246, 278, 245, 278, 277, 246, 247, 279, 246, 279, 278, 247, 248, 280, 247, 280, 279, 248, 249, 281, 248, 281, 280, 249, 250, 282, 249, 282, 281, 250, 251, 283, 250, 283, 282, 251, 252, 284, 251, 284, 283, 252, 253, 285, 252, 285, 284, 253, 254, 286, 253, 286, 285, 254, 255, 287, 254, 287, 286, 256, 257, 289, 256, 289, 288, 257, 258, 290, 257, 290, 289, 258, 259, 291, 258, 291, 290, 259, 260, 292, 259, 292, 291, 260, 261, 293, 260, 293, 292, 261, 262, 294, 261, 294, 293, 262, 263, 295, 262, 295, 294, 263, 264, 296, 263, 296, 295, 264, 265, 297, 264, 297, 296, 265, 266, 298, 265, 298, 297, 266, 267, 299, 266, 299, 298, 267, 268, 300, 267, 300, 299, 268, 269, 301, 268, 301, 300, 269, 270, 302, 269, 302, 301, 270, 271, 303, 270, 303, 302, 271, 272, 304, 271, 304, 303, 272, 273, 305, 272, 305, 304, 273, 274, 306, 273, 306, 305, 274, 275, 307, 274, 307, 306, 275, 276, 308, 275, 308, 307, 276, 277, 309, 276, 309, 308, 277, 278, 310, 277, 310, 309, 278, 279, 311, 278, 311, 310, 279, 280, 312, 279, 312, 311, 280, 281, 313, 280, 313, 312, 281, 282, 314, 281, 314, 313, 282, 283, 315, 282, 315, 314, 283, 284, 316, 283, 316, 315, 284, 285, 317, 284, 317, 316, 285, 286, 318, 285, 318, 317, 286, 287, 319, 286, 319, 318, 288, 289, 321, 288, 321, 320, 289, 290, 322, 289, 322, 321, 290, 291, 323, 290, 323, 322, 291, 292, 324, 291, 324, 323, 292, 293, 325, 292, 325, 324, 293, 294, 326, 293, 326, 325, 294, 295, 327, 294, 327, 326, 295, 296, 328, 295, 328, 327, 296, 297, 329, 296, 329, 328, 297, 298, 330, 297, 330, 329, 298, 299, 331, 298, 331, 330, 299, 300, 332, 299, 332, 331, 300, 301, 333, 300, 333, 332, 301, 302, 334, 301, 334, 333, 302, 303, 335, 302, 335, 334, 303, 304, 336, 303, 336, 335, 304, 305, 337, 304, 337, 336, 305, 306, 338, 305, 338, 337, 306, 307, 339, 306, 339, 338, 307, 308, 340, 307, 340, 339, 308, 309, 341, 308, 341, 340, 309, 310, 342, 309, 342, 341, 310, 311, 343, 310, 343, 342, 311, 312, 344, 311, 344, 343, 312, 313, 345, 312, 345, 344, 313, 314, 346, 313, 346, 345, 314, 315, 347, 314, 347, 346, 315, 316, 348, 315, 348, 347, 316, 317, 349, 316, 349, 348, 317, 318, 350, 317, 350, 349, 318, 319, 351, 318, 351, 350, 320, 321, 353, 320, 353, 352, 321, 322, 354, 321, 354, 353, 322, 323, 355, 322, 355, 354, 323, 324, 356, 323, 356, 355, 324, 325, 357, 324, 357, 356, 325, 326, 358, 325, 358, 357, 326, 327, 359, 326, 359, 358, 327, 328, 360, 327, 360, 359, 328, 329, 361, 328, 361, 360, 329, 330, 362, 329, 362, 361, 330, 331, 363, 330, 363, 362, 331, 332, 364, 331, 364, 363, 332, 333, 365, 332, 365, 364, 333, 334, 366, 333, 366, 365, 334, 335, 367, 334, 367, 366, 335, 336, 368, 335, 368, 367, 336, 337, 369, 336, 369, 368, 337, 338, 370, 337, 370, 369, 338, 339, 371, 338, 371, 370, 339, 340, 372, 339, 372, 371, 340, 341, 373, 340, 373, 372, 341, 342, 374, 341, 374, 373, 342, 343, 375, 342, 375, 374, 343, 344, 376, 343, 376, 375, 344, 345, 377, 344, 377, 376, 345, 346, 378, 345, 378, 377, 346, 347, 379, 346, 379, 378, 347, 348, 380, 347, 380, 379, 348, 349, 381, 348, 381, 380, 349, 350, 382, 349, 382, 381, 350, 351, 383, 350, 383, 382, 352, 353, 385, 352, 385, 384, 353, 354, 386, 353, 386, 385, 354, 355, 387, 354, 387, 386, 355, 356, 388, 355, 388, 387, 356, 357, 389, 356, 389, 388, 357, 358, 390, 357, 390, 389, 358, 359, 391, 358, 391, 390, 359, 360, 392, 359, 392, 391, 360, 361, 393, 360, 393, 392, 361, 362, 394, 361, 394, 393, 362, 363, 395, 362, 395, 394, 363, 364, 396, 363, 396, 395, 364, 365, 397, 364, 397, 396, 365, 366, 398, 365, 398, 397, 366, 367, 399, 366, 399, 398, 367, 368, 400, 367, 400, 399, 368, 369, 401, 368, 401, 400, 369, 370, 402, 369, 402, 401, 370, 371, 403, 370, 403, 402, 371, 372, 404, 371, 404, 403, 372, 373, 405, 372, 405, 404, 373, 374, 406, 373, 406, 405, 374, 375, 407, 374, 407, 406, 375, 376, 408, 375, 408, 407, 376, 377, 409, 376, 409, 408, 377, 378, 410, 377, 410, 409, 378, 379, 411, 378, 411, 410, 379, 380, 412, 379, 412, 411, 380, 381, 413, 380, 413, 412, 381, 382, 414, 381, 414, 413, 382, 383, 415, 382, 415, 414, 384, 385, 417, 384, 417, 416, 385, 386, 418, 385, 418, 417, 386, 387, 419, 386, 419, 418, 387, 388, 420, 387, 420, 419, 388, 389, 421, 388, 421, 420, 389, 390, 422, 389, 422, 421, 390, 391, 423, 390, 423, 422, 391, 392, 424, 391, 424, 423, 392, 393, 425, 392, 425, 424, 393, 394, 426, 393, 426, 425, 394, 395, 427, 394, 427, 426, 395, 396, 428, 395, 428, 427, 396, 397, 429, 396, 429, 428, 397, 398, 430, 397, 430, 429, 398, 399, 431, 398, 431, 430, 399, 400, 432, 399, 432, 431, 400, 401, 433, 400, 433, 432, 401, 402, 434, 401, 434, 433, 402, 403, 435, 402, 435, 434, 403, 404, 436, 403, 436, 435, 404, 405, 437, 404, 437, 436, 405, 406, 438, 405, 438, 437, 406, 407, 439, 406, 439, 438, 407, 408, 440, 407, 440, 439, 408, 409, 441, 408, 441, 440, 409, 410, 442, 409, 442, 441, 410, 411, 443, 410, 443, 442, 411, 412, 444, 411, 444, 443, 412, 413, 445, 412, 445, 444, 413, 414, 446, 413, 446, 445, 414, 415, 447, 414, 447, 446, 416, 417, 449, 416, 449, 448, 417, 418, 450, 417, 450, 449, 418, 419, 451, 418, 451, 450, 419, 420, 452, 419, 452, 451, 420, 421, 453, 420, 453, 452, 421, 422, 454, 421, 454, 453, 422, 423, 455, 422, 455, 454, 423, 424, 456, 423, 456, 455, 424, 425, 457, 424, 457, 456, 425, 426, 458, 425, 458, 457, 426, 427, 459, 426, 459, 458, 427, 428, 460, 427, 460, 459, 428, 429, 461, 428, 461, 460, 429, 430, 462, 429, 462, 461, 430, 431, 463, 430, 463, 462, 431, 432, 464, 431, 464, 463, 432, 433, 465, 432, 465, 464, 433, 434, 466, 433, 466, 465, 434, 435, 467, 434, 467, 466, 435, 436, 468, 435, 468, 467, 436, 437, 469, 436, 469, 468, 437, 438, 470, 437, 470, 469, 438, 439, 471, 438, 471, 470, 439, 440, 472, 439, 472, 471, 440, 441, 473, 440, 473, 472, 441, 442, 474, 441, 474, 473, 442, 443, 475, 442, 475, 474, 443, 444, 476, 443, 476, 475, 444, 445, 477, 444, 477, 476, 445, 446, 478, 445, 478, 477, 446, 447, 479, 446, 479, 478, 448, 449, 481, 448, 481, 480, 449, 450, 482, 449, 482, 481, 450, 451, 483, 450, 483, 482, 451, 452, 484, 451, 484, 483, 452, 453, 485, 452, 485, 484, 453, 454, 486, 453, 486, 485, 454, 455, 487, 454, 487, 486, 455, 456, 488, 455, 488, 487, 456, 457, 489, 456, 489, 488, 457, 458, 490, 457, 490, 489, 458, 459, 491, 458, 491, 490, 459, 460, 492, 459, 492, 491, 460, 461, 493, 460, 493, 492, 461, 462, 494, 461, 494, 493, 462, 463, 495, 462, 495, 494, 463, 464, 496, 463, 496, 495, 464, 465, 497, 464, 497, 496, 465, 466, 498, 465, 498, 497, 466, 467, 499, 466, 499, 498, 467, 468, 500, 467, 500, 499, 468, 469, 501, 468, 501, 500, 469, 470, 502, 469, 502, 501, 470, 471, 503, 470, 503, 502, 471, 472, 504, 471, 504, 503, 472, 473, 505, 472, 505, 504, 473, 474, 506, 473, 506, 505, 474, 475, 507, 474, 507, 506, 475, 476, 508, 475, 508, 507, 476, 477, 509, 476, 509, 508, 477, 478, 510, 477, 510, 509, 478, 479, 511, 478, 511, 510, 480, 481, 513, 480, 513, 512, 481, 482, 514, 481, 514, 513, 482, 483, 515, 482, 515, 514, 483, 484, 516, 483, 516, 515, 484, 485, 517, 484, 517, 516, 485, 486, 518, 485, 518, 517, 486, 487, 519, 486, 519, 518, 487, 488, 520, 487, 520, 519, 488, 489, 521, 488, 521, 520, 489, 490, 522, 489, 522, 521, 490, 491, 523, 490, 523, 522, 491, 492, 524, 491, 524, 523, 492, 493, 525, 492, 525, 524, 493, 494, 526, 493, 526, 525, 494, 495, 527, 494, 527, 526, 495, 496, 528, 495, 528, 527, 496, 497, 529, 496, 529, 528, 497, 498, 530, 497, 530, 529, 498, 499, 531, 498, 531, 530, 499, 500, 532, 499, 532, 531, 500, 501, 533, 500, 533, 532, 501, 502, 534, 501, 534, 533, 502, 503, 535, 502, 535, 534, 503, 504, 536, 503, 536, 535, 504, 505, 537, 504, 537, 536, 505, 506, 538, 505, 538, 537, 506, 507, 539, 506, 539, 538, 507, 508, 540, 507, 540, 539, 508, 509, 541, 508, 541, 540, 509, 510, 542, 509, 542, 541, 510, 511, 543, 510, 543, 542, 512, 513, 545, 512, 545, 544, 513, 514, 546, 513, 546, 545, 514, 515, 547, 514, 547, 546, 515, 516, 548, 515, 548, 547, 516, 517, 549, 516, 549, 548, 517, 518, 550, 517, 550, 549, 518, 519, 551, 518, 551, 550, 519, 520, 552, 519, 552, 551, 520, 521, 553, 520, 553, 552, 521, 522, 554, 521, 554, 553, 522, 523, 555, 522, 555, 554, 523, 524, 556, 523, 556, 555, 524, 525, 557, 524, 557, 556, 525, 526, 558, 525, 558, 557, 526, 527, 559, 526, 559, 558, 527, 528, 560, 527, 560, 559, 528, 529, 561, 528, 561, 560, 529, 530, 562, 529, 562, 561, 530, 531, 563, 530, 563, 562, 531, 532, 564, 531, 564, 563, 532, 533, 565, 532, 565, 564, 533, 534, 566, 533, 566, 565, 534, 535, 567, 534, 567, 566, 535, 536, 568, 535, 568, 567, 536, 537, 569, 536, 569, 568, 537, 538, 570, 537, 570, 569, 538, 539, 571, 538, 571, 570, 539, 540, 572, 539, 572, 571, 540, 541, 573, 540, 573, 572, 541, 542, 574, 541, 574, 573, 542, 543, 575, 542, 575, 574, 544, 545, 577, 544, 577, 576, 545, 546, 578, 545, 578, 577, 546, 547, 579, 546, 579, 578, 547, 548, 580, 547, 580, 579, 548, 549, 581, 548, 581, 580, 549, 550, 582, 549, 582, 581, 550, 551, 583, 550, 583, 582, 551, 552, 584, 551, 584, 583, 552, 553, 585, 552, 585, 584, 553, 554, 586, 553, 586, 585, 554, 555, 587, 554, 587, 586, 555, 556, 588, 555, 588, 587, 556, 557, 589, 556, 589, 588, 557, 558, 590, 557, 590, 589, 558, 559, 591, 558, 591, 590, 559, 560, 592, 559, 592, 591, 560, 561, 593, 560, 593, 592, 561, 562, 594, 561, 594, 593, 562, 563, 595, 562, 595, 594, 563, 564, 596, 563, 596, 595, 564, 565, 597, 564, 597, 596, 565, 566, 598, 565, 598, 597, 566, 567, 599, 566, 599, 598, 567, 568, 600, 567, 600, 599, 568, 569, 601, 568, 601, 600, 569, 570, 602, 569, 602, 601, 570, 571, 603, 570, 603, 602, 571, 572, 604, 571, 604, 603, 572, 573, 605, 572, 605, 604, 573, 574, 606, 573, 606, 605, 574, 575, 607, 574, 607, 606, 576, 577, 609, 576, 609, 608, 577, 578, 610, 577, 610, 609, 578, 579, 611, 578, 611, 610, 579, 580, 612, 579, 612, 611, 580, 581, 613, 580, 613, 612, 581, 582, 614, 581, 614, 613, 582, 583, 615, 582, 615, 614, 583, 584, 616, 583, 616, 615, 584, 585, 617, 584, 617, 616, 585, 586, 618, 585, 618, 617, 586, 587, 619, 586, 619, 618, 587, 588, 620, 587, 620, 619, 588, 589, 621, 588, 621, 620, 589, 590, 622, 589, 622, 621, 590, 591, 623, 590, 623, 622, 591, 592, 624, 591, 624, 623, 592, 593, 625, 592, 625, 624, 593, 594, 626, 593, 626, 625, 594, 595, 627, 594, 627, 626, 595, 596, 628, 595, 628, 627, 596, 597, 629, 596, 629, 628, 597, 598, 630, 597, 630, 629, 598, 599, 631, 598, 631, 630, 599, 600, 632, 599, 632, 631, 600, 601, 633, 600, 633, 632, 601, 602, 634, 601, 634, 633, 602, 603, 635, 602, 635, 634, 603, 604, 636, 603, 636, 635, 604, 605, 637, 604, 637, 636, 605, 606, 638, 605, 638, 637, 606, 607, 639, 606, 639, 638, 608, 609, 641, 608, 641, 640, 609, 610, 642, 609, 642, 641, 610, 611, 643, 610, 643, 642, 611, 612, 644, 611, 644, 643, 612, 613, 645, 612, 645, 644, 613, 614, 646, 613, 646, 645, 614, 615, 647, 614, 647, 646, 615, 616, 648, 615, 648, 647, 616, 617, 649, 616, 649, 648, 617, 618, 650, 617, 650, 649, 618, 619, 651, 618, 651, 650, 619, 620, 652, 619, 652, 651, 620, 621, 653, 620, 653, 652, 621, 622, 654, 621, 654, 653, 622, 623, 655, 622, 655, 654, 623, 624, 656, 623, 656, 655, 624, 625, 657, 624, 657, 656, 625, 626, 658, 625, 658, 657, 626, 627, 659, 626, 659, 658, 627, 628, 660, 627, 660, 659, 628, 629, 661, 628, 661, 660, 629, 630, 662, 629, 662, 661, 630, 631, 663, 630, 663, 662, 631, 632, 664, 631, 664, 663, 632, 633, 665, 632, 665, 664, 633, 634, 666, 633, 666, 665, 634, 635, 667, 634, 667, 666, 635, 636, 668, 635, 668, 667, 636, 637, 669, 636, 669, 668, 637, 638, 670, 637, 670, 669, 638, 639, 671, 638, 671, 670, 640, 641, 673, 640, 673, 672, 641, 642, 674, 641, 674, 673, 642, 643, 675, 642, 675, 674, 643, 644, 676, 643, 676, 675, 644, 645, 677, 644, 677, 676, 645, 646, 678, 645, 678, 677, 646, 647, 679, 646, 679, 678, 647, 648, 680, 647, 680, 679, 648, 649, 681, 648, 681, 680, 649, 650, 682, 649, 682, 681, 650, 651, 683, 650, 683, 682, 651, 652, 684, 651, 684, 683, 652, 653, 685, 652, 685, 684, 653, 654, 686, 653, 686, 685, 654, 655, 687, 654, 687, 686, 655, 656, 688, 655, 688, 687, 656, 657, 689, 656, 689, 688, 657, 658, 690, 657, 690, 689, 658, 659, 691, 658, 691, 690, 659, 660, 692, 659, 692, 691, 660, 661, 693, 660, 693, 692, 661, 662, 694, 661, 694, 693, 662, 663, 695, 662, 695, 694, 663, 664, 696, 663, 696, 695, 664, 665, 697, 664, 697, 696, 665, 666, 698, 665, 698, 697, 666, 667, 699, 666, 699, 698, 667, 668, 700, 667, 700, 699, 668, 669, 701, 668, 701, 700, 669, 670, 702, 669, 702, 701, 670, 671, 703, 670, 703, 702, 672, 673, 705, 672, 705, 704, 673, 674, 706, 673, 706, 705, 674, 675, 707, 674, 707, 706, 675, 676, 708, 675, 708, 707, 676, 677, 709, 676, 709, 708, 677, 678, 710, 677, 710, 709, 678, 679, 711, 678, 711, 710, 679, 680, 712, 679, 712, 711, 680, 681, 713, 680, 713, 712, 681, 682, 714, 681, 714, 713, 682, 683, 715, 682, 715, 714, 683, 684, 716, 683, 716, 715, 684, 685, 717, 684, 717, 716, 685, 686, 718, 685, 718, 717, 686, 687, 719, 686, 719, 718, 687, 688, 720, 687, 720, 719, 688, 689, 721, 688, 721, 720, 689, 690, 722, 689, 722, 721, 690, 691, 723, 690, 723, 722, 691, 692, 724, 691, 724, 723, 692, 693, 725, 692, 725, 724, 693, 694, 726, 693, 726, 725, 694, 695, 727, 694, 727, 726, 695, 696, 728, 695, 728, 727, 696, 697, 729, 696, 729, 728, 697, 698, 730, 697, 730, 729, 698, 699, 731, 698, 731, 730, 699, 700, 732, 699, 732, 731, 700, 701, 733, 700, 733, 732, 701, 702, 734, 701, 734, 733, 702, 703, 735, 702, 735, 734, 704, 705, 737, 704, 737, 736, 705, 706, 738, 705, 738, 737, 706, 707, 739, 706, 739, 738, 707, 708, 740, 707, 740, 739, 708, 709, 741, 708, 741, 740, 709, 710, 742, 709, 742, 741, 710, 711, 743, 710, 743, 742, 711, 712, 744, 711, 744, 743, 712, 713, 745, 712, 745, 744, 713, 714, 746, 713, 746, 745, 714, 715, 747, 714, 747, 746, 715, 716, 748, 715, 748, 747, 716, 717, 749, 716, 749, 748, 717, 718, 750, 717, 750, 749, 718, 719, 751, 718, 751, 750, 719, 720, 752, 719, 752, 751, 720, 721, 753, 720, 753, 752, 721, 722, 754, 721, 754, 753, 722, 723, 755, 722, 755, 754, 723, 724, 756, 723, 756, 755, 724, 725, 757, 724, 757, 756, 725, 726, 758, 725, 758, 757, 726, 727, 759, 726, 759, 758, 727, 728, 760, 727, 760, 759, 728, 729, 761, 728, 761, 760, 729, 730, 762, 729, 762, 761, 730, 731, 763, 730, 763, 762, 731, 732, 764, 731, 764, 763, 732, 733, 765, 732, 765, 764, 733, 734, 766, 733, 766, 765, 734, 735, 767, 734, 767, 766, 736, 737, 769, 736, 769, 768, 737, 738, 770, 737, 770, 769, 738, 739, 771, 738, 771, 770, 739, 740, 772, 739, 772, 771, 740, 741, 773, 740, 773, 772, 741, 742, 774, 741, 774, 773, 742, 743, 775, 742, 775, 774, 743, 744, 776, 743, 776, 775, 744, 745, 777, 744, 777, 776, 745, 746, 778, 745, 778, 777, 746, 747, 779, 746, 779, 778, 747, 748, 780, 747, 780, 779, 748, 749, 781, 748, 781, 780, 749, 750, 782, 749, 782, 781, 750, 751, 783, 750, 783, 782, 751, 752, 784, 751, 784, 783, 752, 753, 785, 752, 785, 784, 753, 754, 786, 753, 786, 785, 754, 755, 787, 754, 787, 786, 755, 756, 788, 755, 788, 787, 756, 757, 789, 756, 789, 788, 757, 758, 790, 757, 790, 789, 758, 759, 791, 758, 791, 790, 759, 760, 792, 759, 792, 791, 760, 761, 793, 760, 793, 792, 761, 762, 794, 761, 794, 793, 762, 763, 795, 762, 795, 794, 763, 764, 796, 763, 796, 795, 764, 765, 797, 764, 797, 796, 765, 766, 798, 765, 798, 797, 766, 767, 799, 766, 799, 798, 768, 769, 801, 768, 801, 800, 769, 770, 802, 769, 802, 801, 770, 771, 803, 770, 803, 802, 771, 772, 804, 771, 804, 803, 772, 773, 805, 772, 805, 804, 773, 774, 806, 773, 806, 805, 774, 775, 807, 774, 807, 806, 775, 776, 808, 775, 808, 807, 776, 777, 809, 776, 809, 808, 777, 778, 810, 777, 810, 809, 778, 779, 811, 778, 811, 810, 779, 780, 812, 779, 812, 811, 780, 781, 813, 780, 813, 812, 781, 782, 814, 781, 814, 813, 782, 783, 815, 782, 815, 814, 783, 784, 816, 783, 816, 815, 784, 785, 817, 784, 817, 816, 785, 786, 818, 785, 818, 817, 786, 787, 819, 786, 819, 818, 787, 788, 820, 787, 820, 819, 788, 789, 821, 788, 821, 820, 789, 790, 822, 789, 822, 821, 790, 791, 823, 790, 823, 822, 791, 792, 824, 791, 824, 823, 792, 793, 825, 792, 825, 824, 793, 794, 826, 793, 826, 825, 794, 795, 827, 794, 827, 826, 795, 796, 828, 795, 828, 827, 796, 797, 829, 796, 829, 828, 797, 798, 830, 797, 830, 829, 798, 799, 831, 798, 831, 830, 800, 801, 833, 800, 833, 832, 801, 802, 834, 801, 834, 833, 802, 803, 835, 802, 835, 834, 803, 804, 836, 803, 836, 835, 804, 805, 837, 804, 837, 836, 805, 806, 838, 805, 838, 837, 806, 807, 839, 806, 839, 838, 807, 808, 840, 807, 840, 839, 808, 809, 841, 808, 841, 840, 809, 810, 842, 809, 842, 841, 810, 811, 843, 810, 843, 842, 811, 812, 844, 811, 844, 843, 812, 813, 845, 812, 845, 844, 813, 814, 846, 813, 846, 845, 814, 815, 847, 814, 847, 846, 815, 816, 848, 815, 848, 847, 816, 817, 849, 816, 849, 848, 817, 818, 850, 817, 850, 849, 818, 819, 851, 818, 851, 850, 819, 820, 852, 819, 852, 851, 820, 821, 853, 820, 853, 852, 821, 822, 854, 821, 854, 853, 822, 823, 855, 822, 855, 854, 823, 824, 856, 823, 856, 855, 824, 825, 857, 824, 857, 856, 825, 826, 858, 825, 858, 857, 826, 827, 859, 826, 859, 858, 827, 828, 860, 827, 860, 859, 828, 829, 861, 828, 861, 860, 829, 830, 862, 829, 862, 861, 830, 831, 863, 830, 863, 862, 832, 833, 865, 832, 865, 864, 833, 834, 866, 833, 866, 865, 834, 835, 867, 834, 867, 866, 835, 836, 868, 835, 868, 867, 836, 837, 869, 836, 869, 868, 837, 838, 870, 837, 870, 869, 838, 839, 871, 838, 871, 870, 839, 840, 872, 839, 872, 871, 840, 841, 873, 840, 873, 872, 841, 842, 874, 841, 874, 873, 842, 843, 875, 842, 875, 874, 843, 844, 876, 843, 876, 875, 844, 845, 877, 844, 877, 876, 845, 846, 878, 845, 878, 877, 846, 847, 879, 846, 879, 878, 847, 848, 880, 847, 880, 879, 848, 849, 881, 848, 881, 880, 849, 850, 882, 849, 882, 881, 850, 851, 883, 850, 883, 882, 851, 852, 884, 851, 884, 883, 852, 853, 885, 852, 885, 884, 853, 854, 886, 853, 886, 885, 854, 855, 887, 854, 887, 886, 855, 856, 888, 855, 888, 887, 856, 857, 889, 856, 889, 888, 857, 858, 890, 857, 890, 889, 858, 859, 891, 858, 891, 890, 859, 860, 892, 859, 892, 891, 860, 861, 893, 860, 893, 892, 861, 862, 894, 861, 894, 893, 862, 863, 895, 862, 895, 894, 864, 865, 897, 864, 897, 896, 865, 866, 898, 865, 898, 897, 866, 867, 899, 866, 899, 898, 867, 868, 900, 867, 900, 899, 868, 869, 901, 868, 901, 900, 869, 870, 902, 869, 902, 901, 870, 871, 903, 870, 903, 902, 871, 872, 904, 871, 904, 903, 872, 873, 905, 872, 905, 904, 873, 874, 906, 873, 906, 905, 874, 875, 907, 874, 907, 906, 875, 876, 908, 875, 908, 907, 876, 877, 909, 876, 909, 908, 877, 878, 910, 877, 910, 909, 878, 879, 911, 878, 911, 910, 879, 880, 912, 879, 912, 911, 880, 881, 913, 880, 913, 912, 881, 882, 914, 881, 914, 913, 882, 883, 915, 882, 915, 914, 883, 884, 916, 883, 916, 915, 884, 885, 917, 884, 917, 916, 885, 886, 918, 885, 918, 917, 886, 887, 919, 886, 919, 918, 887, 888, 920, 887, 920, 919, 888, 889, 921, 888, 921, 920, 889, 890, 922, 889, 922, 921, 890, 891, 923, 890, 923, 922, 891, 892, 924, 891, 924, 923, 892, 893, 925, 892, 925, 924, 893, 894, 926, 893, 926, 925, 894, 895, 927, 894, 927, 926, 896, 897, 929, 896, 929, 928, 897, 898, 930, 897, 930, 929, 898, 899, 931, 898, 931, 930, 899, 900, 932, 899, 932, 931, 900, 901, 933, 900, 933, 932, 901, 902, 934, 901, 934, 933, 902, 903, 935, 902, 935, 934, 903, 904, 936, 903, 936, 935, 904, 905, 937, 904, 937, 936, 905, 906, 938, 905, 938, 937, 906, 907, 939, 906, 939, 938, 907, 908, 940, 907, 940, 939, 908, 909, 941, 908, 941, 940, 909, 910, 942, 909, 942, 941, 910, 911, 943, 910, 943, 942, 911, 912, 944, 911, 944, 943, 912, 913, 945, 912, 945, 944, 913, 914, 946, 913, 946, 945, 914, 915, 947, 914, 947, 946, 915, 916, 948, 915, 948, 947, 916, 917, 949, 916, 949, 948, 917, 918, 950, 917, 950, 949, 918, 919, 951, 918, 951, 950, 919, 920, 952, 919, 952, 951, 920, 921, 953, 920, 953, 952, 921, 922, 954, 921, 954, 953, 922, 923, 955, 922, 955, 954, 923, 924, 956, 923, 956, 955, 924, 925, 957, 924, 957, 956, 925, 926, 958, 925, 958, 957, 926, 927, 959, 926, 959, 958, 928, 929, 961, 928, 961, 960, 929, 930, 962, 929, 962, 961, 930, 931, 963, 930, 963, 962, 931, 932, 964, 931, 964, 963, 932, 933, 965, 932, 965, 964, 933, 934, 966, 933, 966, 965, 934, 935, 967, 934, 967, 966, 935, 936, 968, 935, 968, 967, 936, 937, 969, 936, 969, 968, 937, 938, 970, 937, 970, 969, 938, 939, 971, 938, 971, 970, 939, 940, 972, 939, 972, 971, 940, 941, 973, 940, 973, 972, 941, 942, 974, 941, 974, 973, 942, 943, 975, 942, 975, 974, 943, 944, 976, 943, 976, 975, 944, 945, 977, 944, 977, 976, 945, 946, 978, 945, 978, 977, 946, 947, 979, 946, 979, 978, 947, 948, 980, 947, 980, 979, 948, 949, 981, 948, 981, 980, 949, 950, 982, 949, 982, 981, 950, 951, 983, 950, 983, 982, 951, 952, 984, 951, 984, 983, 952, 953, 985, 952, 985, 984, 953, 954, 986, 953, 986, 985, 954, 955, 987, 954, 987, 986, 955, 956, 988, 955, 988, 987, 956, 957, 989, 956, 989, 988, 957, 958, 990, 957, 990, 989, 958, 959, 991, 958, 991, 990, 960, 961, 993, 960, 993, 992, 961, 962, 994, 961, 994, 993, 962, 963, 995, 962, 995, 994, 963, 964, 996, 963, 996, 995, 964, 965, 997, 964, 997, 996, 965, 966, 998, 965, 998, 997, 966, 967, 999, 966, 999, 998, 967, 968, 1000, 967, 1000, 999, 968, 969, 1001, 968, 1001, 1000, 969, 970, 1002, 969, 1002, 1001, 970, 971, 1003, 970, 1003, 1002, 971, 972, 1004, 971, 1004, 1003, 972, 973, 1005, 972, 1005, 1004, 973, 974, 1006, 973, 1006, 1005, 974, 975, 1007, 974, 1007, 1006, 975, 976, 1008, 975, 1008, 1007, 976, 977, 1009, 976, 1009, 1008, 977, 978, 1010, 977, 1010, 1009, 978, 979, 1011, 978, 1011, 1010, 979, 980, 1012, 979, 1012, 1011, 980, 981, 1013, 980, 1013, 1012, 981, 982, 1014, 981, 1014, 1013, 982, 983, 1015, 982, 1015, 1014, 983, 984, 1016, 983, 1016, 1015, 984, 985, 1017, 984, 1017, 1016, 985, 986, 1018, 985, 1018, 1017, 986, 987, 1019, 986, 1019, 1018, 987, 988, 1020, 987, 1020, 1019, 988, 989, 1021, 988, 1021, 1020, 989, 990, 1022, 989, 1022, 1021, 990, 991, 1023, 990, 1023, 1022] color3f[] primvars:displayColor = [(0.784314, 0.64705884, 0.1)] point3f[] points = [(0, 0, 20), (20, 0, 20), (40, 0, 20), (60, 0, 20), (80, 0, 20), (100, 0, 20), (120, 0, 20), (140, 0, 20), (160, 0, 20), (180, 0, 20), (200, 0, 20), (220, 0, 20), (240, 0, 20), (260, 0, 20), (280, 0, 20), (300, 0, 20), (320, 0, 20), (340, 0, 20), (360, 0, 20), (380, 0, 20), (400, 0, 20), (420, 0, 20), (440, 0, 20), (460, 0, 20), (480, 0, 20), (500, 0, 20), (520, 0, 20), (540, 0, 20), (560, 0, 20), (580, 0, 20), (600, 0, 20), (620, 0, 20), (0, 20, 20), (20, 20, 20), (40, 20, 20), (60, 20, 20), (80, 20, 20), (100, 20, 20), (120, 20, 20), (140, 20, 20), (160, 20, 20), (180, 20, 20), (200, 20, 20), (220, 20, 20), (240, 20, 20), (260, 20, 20), (280, 20, 20), (300, 20, 20), (320, 20, 20), (340, 20, 20), (360, 20, 20), (380, 20, 20), (400, 20, 20), (420, 20, 20), (440, 20, 20), (460, 20, 20), (480, 20, 20), (500, 20, 20), (520, 20, 20), (540, 20, 20), (560, 20, 20), (580, 20, 20), (600, 20, 20), (620, 20, 20), (0, 40, 20), (20, 40, 20), (40, 40, 20), (60, 40, 20), (80, 40, 20), (100, 40, 20), (120, 40, 20), (140, 40, 20), (160, 40, 20), (180, 40, 20), (200, 40, 20), (220, 40, 20), (240, 40, 20), (260, 40, 20), (280, 40, 20), (300, 40, 20), (320, 40, 20), (340, 40, 20), (360, 40, 20), (380, 40, 20), (400, 40, 20), (420, 40, 20), (440, 40, 20), (460, 40, 20), (480, 40, 20), (500, 40, 20), (520, 40, 20), (540, 40, 20), (560, 40, 20), (580, 40, 20), (600, 40, 20), (620, 40, 20), (0, 60, 20), (20, 60, 20), (40, 60, 20), (60, 60, 20), (80, 60, 20), (100, 60, 20), (120, 60, 20), (140, 60, 20), (160, 60, 20), (180, 60, 20), (200, 60, 20), (220, 60, 20), (240, 60, 20), (260, 60, 20), (280, 60, 20), (300, 60, 20), (320, 60, 20), (340, 60, 20), (360, 60, 20), (380, 60, 20), (400, 60, 20), (420, 60, 20), (440, 60, 20), (460, 60, 20), (480, 60, 20), (500, 60, 20), (520, 60, 20), (540, 60, 20), (560, 60, 20), (580, 60, 20), (600, 60, 20), (620, 60, 20), (0, 80, 20), (20, 80, 20), (40, 80, 20), (60, 80, 20), (80, 80, 20), (100, 80, 20), (120, 80, 20), (140, 80, 20), (160, 80, 20), (180, 80, 20), (200, 80, 20), (220, 80, 20), (240, 80, 20), (260, 80, 20), (280, 80, 20), (300, 80, 20), (320, 80, 20), (340, 80, 20), (360, 80, 20), (380, 80, 20), (400, 80, 20), (420, 80, 20), (440, 80, 20), (460, 80, 20), (480, 80, 20), (500, 80, 20), (520, 80, 20), (540, 80, 20), (560, 80, 20), (580, 80, 20), (600, 80, 20), (620, 80, 20), (0, 100, 20), (20, 100, 20), (40, 100, 20), (60, 100, 20), (80, 100, 20), (100, 100, 20), (120, 100, 20), (140, 100, 20), (160, 100, 20), (180, 100, 20), (200, 100, 20), (220, 100, 20), (240, 100, 20), (260, 100, 20), (280, 100, 20), (300, 100, 20), (320, 100, 20), (340, 100, 20), (360, 100, 20), (380, 100, 20), (400, 100, 20), (420, 100, 20), (440, 100, 20), (460, 100, 20), (480, 100, 20), (500, 100, 20), (520, 100, 20), (540, 100, 20), (560, 100, 20), (580, 100, 20), (600, 100, 20), (620, 100, 20), (0, 120, 20), (20, 120, 20), (40, 120, 20), (60, 120, 20), (80, 120, 20), (100, 120, 20), (120, 120, 20), (140, 120, 20), (160, 120, 20), (180, 120, 20), (200, 120, 20), (220, 120, 20), (240, 120, 20), (260, 120, 20), (280, 120, 20), (300, 120, 20), (320, 120, 20), (340, 120, 20), (360, 120, 20), (380, 120, 20), (400, 120, 20), (420, 120, 20), (440, 120, 20), (460, 120, 20), (480, 120, 20), (500, 120, 20), (520, 120, 20), (540, 120, 20), (560, 120, 20), (580, 120, 20), (600, 120, 20), (620, 120, 20), (0, 140, 20), (20, 140, 20), (40, 140, 20), (60, 140, 20), (80, 140, 20), (100, 140, 20), (120, 140, 20), (140, 140, 20), (160, 140, 20), (180, 140, 20), (200, 140, 20), (220, 140, 20), (240, 140, 20), (260, 140, 20), (280, 140, 20), (300, 140, 20), (320, 140, 20), (340, 140, 20), (360, 140, 20), (380, 140, 20), (400, 140, 20), (420, 140, 20), (440, 140, 20), (460, 140, 20), (480, 140, 20), (500, 140, 20), (520, 140, 20), (540, 140, 20), (560, 140, 20), (580, 140, 20), (600, 140, 20), (620, 140, 20), (0, 160, 20), (20, 160, 20), (40, 160, 20), (60, 160, 20), (80, 160, 20), (100, 160, 20), (120, 160, 20), (140, 160, 20), (160, 160, 20), (180, 160, 20), (200, 160, 20), (220, 160, 20), (240, 160, 20), (260, 160, 20), (280, 160, 20), (300, 160, 20), (320, 160, 20), (340, 160, 20), (360, 160, 20), (380, 160, 20), (400, 160, 20), (420, 160, 20), (440, 160, 20), (460, 160, 20), (480, 160, 20), (500, 160, 20), (520, 160, 20), (540, 160, 20), (560, 160, 20), (580, 160, 20), (600, 160, 20), (620, 160, 20), (0, 180, 20), (20, 180, 20), (40, 180, 20), (60, 180, 20), (80, 180, 20), (100, 180, 20), (120, 180, 20), (140, 180, 20), (160, 180, 20), (180, 180, 20), (200, 180, 20), (220, 180, 20), (240, 180, 20), (260, 180, 20), (280, 180, 20), (300, 180, 20), (320, 180, 20), (340, 180, 20), (360, 180, 20), (380, 180, 20), (400, 180, 20), (420, 180, 20), (440, 180, 20), (460, 180, 20), (480, 180, 20), (500, 180, 20), (520, 180, 20), (540, 180, 20), (560, 180, 20), (580, 180, 20), (600, 180, 20), (620, 180, 20), (0, 200, 20), (20, 200, 20), (40, 200, 20), (60, 200, 20), (80, 200, 20), (100, 200, 20), (120, 200, 20), (140, 200, 20), (160, 200, 20), (180, 200, 20), (200, 200, 20), (220, 200, 20), (240, 200, 20), (260, 200, 20), (280, 200, 20), (300, 200, 20), (320, 200, 20), (340, 200, 20), (360, 200, 20), (380, 200, 20), (400, 200, 20), (420, 200, 20), (440, 200, 20), (460, 200, 20), (480, 200, 20), (500, 200, 20), (520, 200, 20), (540, 200, 20), (560, 200, 20), (580, 200, 20), (600, 200, 20), (620, 200, 20), (0, 220, 20), (20, 220, 20), (40, 220, 20), (60, 220, 20), (80, 220, 20), (100, 220, 20), (120, 220, 20), (140, 220, 20), (160, 220, 20), (180, 220, 20), (200, 220, 20), (220, 220, 20), (240, 220, 20), (260, 220, 20), (280, 220, 20), (300, 220, 20), (320, 220, 20), (340, 220, 20), (360, 220, 20), (380, 220, 20), (400, 220, 20), (420, 220, 20), (440, 220, 20), (460, 220, 20), (480, 220, 20), (500, 220, 20), (520, 220, 20), (540, 220, 20), (560, 220, 20), (580, 220, 20), (600, 220, 20), (620, 220, 20), (0, 240, 20), (20, 240, 20), (40, 240, 20), (60, 240, 20), (80, 240, 20), (100, 240, 20), (120, 240, 20), (140, 240, 20), (160, 240, 20), (180, 240, 20), (200, 240, 20), (220, 240, 20), (240, 240, 20), (260, 240, 20), (280, 240, 20), (300, 240, 20), (320, 240, 20), (340, 240, 20), (360, 240, 20), (380, 240, 20), (400, 240, 20), (420, 240, 20), (440, 240, 20), (460, 240, 20), (480, 240, 20), (500, 240, 20), (520, 240, 20), (540, 240, 20), (560, 240, 20), (580, 240, 20), (600, 240, 20), (620, 240, 20), (0, 260, 20), (20, 260, 20), (40, 260, 20), (60, 260, 20), (80, 260, 20), (100, 260, 20), (120, 260, 20), (140, 260, 20), (160, 260, 20), (180, 260, 20), (200, 260, 20), (220, 260, 20), (240, 260, 20), (260, 260, 20), (280, 260, 20), (300, 260, 20), (320, 260, 20), (340, 260, 20), (360, 260, 20), (380, 260, 20), (400, 260, 20), (420, 260, 20), (440, 260, 20), (460, 260, 20), (480, 260, 20), (500, 260, 20), (520, 260, 20), (540, 260, 20), (560, 260, 20), (580, 260, 20), (600, 260, 20), (620, 260, 20), (0, 280, 20), (20, 280, 20), (40, 280, 20), (60, 280, 20), (80, 280, 20), (100, 280, 20), (120, 280, 20), (140, 280, 20), (160, 280, 20), (180, 280, 20), (200, 280, 20), (220, 280, 20), (240, 280, 20), (260, 280, 20), (280, 280, 20), (300, 280, 20), (320, 280, 20), (340, 280, 20), (360, 280, 20), (380, 280, 20), (400, 280, 20), (420, 280, 20), (440, 280, 20), (460, 280, 20), (480, 280, 20), (500, 280, 20), (520, 280, 20), (540, 280, 20), (560, 280, 20), (580, 280, 20), (600, 280, 20), (620, 280, 20), (0, 300, 20), (20, 300, 20), (40, 300, 20), (60, 300, 20), (80, 300, 20), (100, 300, 20), (120, 300, 20), (140, 300, 20), (160, 300, 20), (180, 300, 20), (200, 300, 20), (220, 300, 20), (240, 300, 20), (260, 300, 20), (280, 300, 20), (300, 300, 20), (320, 300, 20), (340, 300, 20), (360, 300, 20), (380, 300, 20), (400, 300, 20), (420, 300, 20), (440, 300, 20), (460, 300, 20), (480, 300, 20), (500, 300, 20), (520, 300, 20), (540, 300, 20), (560, 300, 20), (580, 300, 20), (600, 300, 20), (620, 300, 20), (0, 320, 20), (20, 320, 20), (40, 320, 20), (60, 320, 20), (80, 320, 20), (100, 320, 20), (120, 320, 20), (140, 320, 20), (160, 320, 20), (180, 320, 20), (200, 320, 20), (220, 320, 20), (240, 320, 20), (260, 320, 20), (280, 320, 20), (300, 320, 20), (320, 320, 20), (340, 320, 20), (360, 320, 20), (380, 320, 20), (400, 320, 20), (420, 320, 20), (440, 320, 20), (460, 320, 20), (480, 320, 20), (500, 320, 20), (520, 320, 20), (540, 320, 20), (560, 320, 20), (580, 320, 20), (600, 320, 20), (620, 320, 20), (0, 340, 20), (20, 340, 20), (40, 340, 20), (60, 340, 20), (80, 340, 20), (100, 340, 20), (120, 340, 20), (140, 340, 20), (160, 340, 20), (180, 340, 20), (200, 340, 20), (220, 340, 20), (240, 340, 20), (260, 340, 20), (280, 340, 20), (300, 340, 20), (320, 340, 20), (340, 340, 20), (360, 340, 20), (380, 340, 20), (400, 340, 20), (420, 340, 20), (440, 340, 20), (460, 340, 20), (480, 340, 20), (500, 340, 20), (520, 340, 20), (540, 340, 20), (560, 340, 20), (580, 340, 20), (600, 340, 20), (620, 340, 20), (0, 360, 20), (20, 360, 20), (40, 360, 20), (60, 360, 20), (80, 360, 20), (100, 360, 20), (120, 360, 20), (140, 360, 20), (160, 360, 20), (180, 360, 20), (200, 360, 20), (220, 360, 20), (240, 360, 20), (260, 360, 20), (280, 360, 20), (300, 360, 20), (320, 360, 20), (340, 360, 20), (360, 360, 20), (380, 360, 20), (400, 360, 20), (420, 360, 20), (440, 360, 20), (460, 360, 20), (480, 360, 20), (500, 360, 20), (520, 360, 20), (540, 360, 20), (560, 360, 20), (580, 360, 20), (600, 360, 20), (620, 360, 20), (0, 380, 20), (20, 380, 20), (40, 380, 20), (60, 380, 20), (80, 380, 20), (100, 380, 20), (120, 380, 20), (140, 380, 20), (160, 380, 20), (180, 380, 20), (200, 380, 20), (220, 380, 20), (240, 380, 20), (260, 380, 20), (280, 380, 20), (300, 380, 20), (320, 380, 20), (340, 380, 20), (360, 380, 20), (380, 380, 20), (400, 380, 20), (420, 380, 20), (440, 380, 20), (460, 380, 20), (480, 380, 20), (500, 380, 20), (520, 380, 20), (540, 380, 20), (560, 380, 20), (580, 380, 20), (600, 380, 20), (620, 380, 20), (0, 400, 20), (20, 400, 20), (40, 400, 20), (60, 400, 20), (80, 400, 20), (100, 400, 20), (120, 400, 20), (140, 400, 20), (160, 400, 20), (180, 400, 20), (200, 400, 20), (220, 400, 20), (240, 400, 20), (260, 400, 20), (280, 400, 20), (300, 400, 20), (320, 400, 20), (340, 400, 20), (360, 400, 20), (380, 400, 20), (400, 400, 20), (420, 400, 20), (440, 400, 20), (460, 400, 20), (480, 400, 20), (500, 400, 20), (520, 400, 20), (540, 400, 20), (560, 400, 20), (580, 400, 20), (600, 400, 20), (620, 400, 20), (0, 420, 20), (20, 420, 20), (40, 420, 20), (60, 420, 20), (80, 420, 20), (100, 420, 20), (120, 420, 20), (140, 420, 20), (160, 420, 20), (180, 420, 20), (200, 420, 20), (220, 420, 20), (240, 420, 20), (260, 420, 20), (280, 420, 20), (300, 420, 20), (320, 420, 20), (340, 420, 20), (360, 420, 20), (380, 420, 20), (400, 420, 20), (420, 420, 20), (440, 420, 20), (460, 420, 20), (480, 420, 20), (500, 420, 20), (520, 420, 20), (540, 420, 20), (560, 420, 20), (580, 420, 20), (600, 420, 20), (620, 420, 20), (0, 440, 20), (20, 440, 20), (40, 440, 20), (60, 440, 20), (80, 440, 20), (100, 440, 20), (120, 440, 20), (140, 440, 20), (160, 440, 20), (180, 440, 20), (200, 440, 20), (220, 440, 20), (240, 440, 20), (260, 440, 20), (280, 440, 20), (300, 440, 20), (320, 440, 20), (340, 440, 20), (360, 440, 20), (380, 440, 20), (400, 440, 20), (420, 440, 20), (440, 440, 20), (460, 440, 20), (480, 440, 20), (500, 440, 20), (520, 440, 20), (540, 440, 20), (560, 440, 20), (580, 440, 20), (600, 440, 20), (620, 440, 20), (0, 460, 20), (20, 460, 20), (40, 460, 20), (60, 460, 20), (80, 460, 20), (100, 460, 20), (120, 460, 20), (140, 460, 20), (160, 460, 20), (180, 460, 20), (200, 460, 20), (220, 460, 20), (240, 460, 20), (260, 460, 20), (280, 460, 20), (300, 460, 20), (320, 460, 20), (340, 460, 20), (360, 460, 20), (380, 460, 20), (400, 460, 20), (420, 460, 20), (440, 460, 20), (460, 460, 20), (480, 460, 20), (500, 460, 20), (520, 460, 20), (540, 460, 20), (560, 460, 20), (580, 460, 20), (600, 460, 20), (620, 460, 20), (0, 480, 20), (20, 480, 20), (40, 480, 20), (60, 480, 20), (80, 480, 20), (100, 480, 20), (120, 480, 20), (140, 480, 20), (160, 480, 20), (180, 480, 20), (200, 480, 20), (220, 480, 20), (240, 480, 20), (260, 480, 20), (280, 480, 20), (300, 480, 20), (320, 480, 20), (340, 480, 20), (360, 480, 20), (380, 480, 20), (400, 480, 20), (420, 480, 20), (440, 480, 20), (460, 480, 20), (480, 480, 20), (500, 480, 20), (520, 480, 20), (540, 480, 20), (560, 480, 20), (580, 480, 20), (600, 480, 20), (620, 480, 20), (0, 500, 20), (20, 500, 20), (40, 500, 20), (60, 500, 20), (80, 500, 20), (100, 500, 20), (120, 500, 20), (140, 500, 20), (160, 500, 20), (180, 500, 20), (200, 500, 20), (220, 500, 20), (240, 500, 20), (260, 500, 20), (280, 500, 20), (300, 500, 20), (320, 500, 20), (340, 500, 20), (360, 500, 20), (380, 500, 20), (400, 500, 20), (420, 500, 20), (440, 500, 20), (460, 500, 20), (480, 500, 20), (500, 500, 20), (520, 500, 20), (540, 500, 20), (560, 500, 20), (580, 500, 20), (600, 500, 20), (620, 500, 20), (0, 520, 20), (20, 520, 20), (40, 520, 20), (60, 520, 20), (80, 520, 20), (100, 520, 20), (120, 520, 20), (140, 520, 20), (160, 520, 20), (180, 520, 20), (200, 520, 20), (220, 520, 20), (240, 520, 20), (260, 520, 20), (280, 520, 20), (300, 520, 20), (320, 520, 20), (340, 520, 20), (360, 520, 20), (380, 520, 20), (400, 520, 20), (420, 520, 20), (440, 520, 20), (460, 520, 20), (480, 520, 20), (500, 520, 20), (520, 520, 20), (540, 520, 20), (560, 520, 20), (580, 520, 20), (600, 520, 20), (620, 520, 20), (0, 540, 20), (20, 540, 20), (40, 540, 20), (60, 540, 20), (80, 540, 20), (100, 540, 20), (120, 540, 20), (140, 540, 20), (160, 540, 20), (180, 540, 20), (200, 540, 20), (220, 540, 20), (240, 540, 20), (260, 540, 20), (280, 540, 20), (300, 540, 20), (320, 540, 20), (340, 540, 20), (360, 540, 20), (380, 540, 20), (400, 540, 20), (420, 540, 20), (440, 540, 20), (460, 540, 20), (480, 540, 20), (500, 540, 20), (520, 540, 20), (540, 540, 20), (560, 540, 20), (580, 540, 20), (600, 540, 20), (620, 540, 20), (0, 560, 20), (20, 560, 20), (40, 560, 20), (60, 560, 20), (80, 560, 20), (100, 560, 20), (120, 560, 20), (140, 560, 20), (160, 560, 20), (180, 560, 20), (200, 560, 20), (220, 560, 20), (240, 560, 20), (260, 560, 20), (280, 560, 20), (300, 560, 20), (320, 560, 20), (340, 560, 20), (360, 560, 20), (380, 560, 20), (400, 560, 20), (420, 560, 20), (440, 560, 20), (460, 560, 20), (480, 560, 20), (500, 560, 20), (520, 560, 20), (540, 560, 20), (560, 560, 20), (580, 560, 20), (600, 560, 20), (620, 560, 20), (0, 580, 20), (20, 580, 20), (40, 580, 20), (60, 580, 20), (80, 580, 20), (100, 580, 20), (120, 580, 20), (140, 580, 20), (160, 580, 20), (180, 580, 20), (200, 580, 20), (220, 580, 20), (240, 580, 20), (260, 580, 20), (280, 580, 20), (300, 580, 20), (320, 580, 20), (340, 580, 20), (360, 580, 20), (380, 580, 20), (400, 580, 20), (420, 580, 20), (440, 580, 20), (460, 580, 20), (480, 580, 20), (500, 580, 20), (520, 580, 20), (540, 580, 20), (560, 580, 20), (580, 580, 20), (600, 580, 20), (620, 580, 20), (0, 600, 20), (20, 600, 20), (40, 600, 20), (60, 600, 20), (80, 600, 20), (100, 600, 20), (120, 600, 20), (140, 600, 20), (160, 600, 20), (180, 600, 20), (200, 600, 20), (220, 600, 20), (240, 600, 20), (260, 600, 20), (280, 600, 20), (300, 600, 20), (320, 600, 20), (340, 600, 20), (360, 600, 20), (380, 600, 20), (400, 600, 20), (420, 600, 20), (440, 600, 20), (460, 600, 20), (480, 600, 20), (500, 600, 20), (520, 600, 20), (540, 600, 20), (560, 600, 20), (580, 600, 20), (600, 600, 20), (620, 600, 20), (0, 620, 20), (20, 620, 20), (40, 620, 20), (60, 620, 20), (80, 620, 20), (100, 620, 20), (120, 620, 20), (140, 620, 20), (160, 620, 20), (180, 620, 20), (200, 620, 20), (220, 620, 20), (240, 620, 20), (260, 620, 20), (280, 620, 20), (300, 620, 20), (320, 620, 20), (340, 620, 20), (360, 620, 20), (380, 620, 20), (400, 620, 20), (420, 620, 20), (440, 620, 20), (460, 620, 20), (480, 620, 20), (500, 620, 20), (520, 620, 20), (540, 620, 20), (560, 620, 20), (580, 620, 20), (600, 620, 20), (620, 620, 20)] } }
omniverse-code/kit/exts/omni.graph/data/ExampleIK.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (1000.0000000000002, -2.220446049250313e-13, 0) double radius = 500 double3 target = (0, 0, 0) } dictionary Perspective = { double3 position = (-2.616098181034925, 20.71866516641422, 9.543708888748546) double radius = 22.350519885594053 double3 target = (-0.6915911212194166, 0.21808485420938695, 0.8507106375181337) } dictionary Right = { double3 position = (0, -1000, -2.220446049250313e-13) double radius = 500 double3 target = (0, 0, 0) } dictionary Top = { double3 position = (0, 0, 1000) double radius = 500 double3 target = (0, 0, 0) } string boundCamera = "/OmniverseKit_Persp" } dictionary renderSettings = { bool "rtx:grid:enabled" = 1 token "rtx:grid:plane" = "XY" } } defaultPrim = "Stage" metersPerUnit = 0.009999999776482582 timeCodesPerSecond = 24 upAxis = "Z" ) def Xform "Stage" { def Mesh "staticPlaneActor" { uniform bool doubleSided = 1 int[] faceVertexCounts = [4] int[] faceVertexIndices = [0, 1, 2, 3] normal3f[] normals = [(0, 0, 1), (0, 0, 1), (0, 0, 1), (0, 0, 1)] point3f[] points = [(-2500, -2500, 0), (2500, -2500, 0), (2500, 2500, 0), (-2500, 2500, 0)] color3f[] primvars:displayColor = [(0.5, 0.5, 0.5)] quatf xformOp:orient = (1, 0, 0, 0) float3 xformOp:scale = (1, 1, 1) float3 xformOp:translate = (0, 0, 2) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:orient", "xformOp:scale"] def Plane "collisionPlane" ( prepend apiSchemas = ["CollisionAPI"] ) { uniform token axis = "Z" uniform token purpose = "guide" } } def DistantLight "DistantLight" ( prepend apiSchemas = ["ShapingAPI"] kind = "model" ) { float angle = 1 float intensity = 800 float shaping:cone:angle = 180 float shaping:cone:softness float shaping:focus color3f shaping:focusTint asset shaping:ies:file float3 xformOp:rotateZYX = (0, 45, 0) float3 xformOp:scale = (1.0000004, 1, 1.0000004) float3 xformOp:translate = (0, 0, -1.186192) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateZYX", "xformOp:scale"] } } def Cube "Hip" { color3f[] primvars:displayColor = [(1, 0, 0)] double size = 1 float velocity = 0 matrix4d xformOp:transform = ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (0, 0, 6, 1) ) uniform token[] xformOpOrder = ["xformOp:transform"] } def Cube "Knee" { color3f[] primvars:displayColor = [(1, 1, 0)] double size = 1 float velocity = 0 matrix4d xformOp:transform = ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (0, 0, 4, 1) ) uniform token[] xformOpOrder = ["xformOp:transform"] } def Cube "Ankle" { color3f[] primvars:displayColor = [(0, 1, 0)] double size = 1 float velocity = 0 matrix4d xformOp:transform = ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (0, 0, 2, 1) ) uniform token[] xformOpOrder = ["xformOp:transform"] } def Sphere "Goal" { color3f[] primvars:displayColor = [(0, 0.5, 1)] double radius = 0.5 matrix4d xformOp:transform = ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (0, 0, 2, 1) ) uniform token[] xformOpOrder = ["xformOp:transform"] } def OmniGraph "IkGraph" { def OmniGraphNode "read_goal_attribute" { custom bool inputs:forceUSDRead = 0 custom token inputs:name = "xformOp:transform" custom rel inputs:prim prepend rel inputs:prim = </Goal> custom token inputs:primPath = "" custom timecode inputs:usdTimecode = -1 custom bool inputs:usePath = 0 token node:type = "omni.graph.nodes.ReadPrimAttribute" int node:typeVersion = 1 custom token outputs:value custom uint64 state:target = 0 custom timecode state:usdTimecode = -1 } def OmniGraphNode "read_knee_attribute" { custom bool inputs:forceUSDRead = 0 custom token inputs:name = "xformOp:transform" custom rel inputs:prim prepend rel inputs:prim = </Knee> custom token inputs:primPath = "" custom timecode inputs:usdTimecode = -1 custom bool inputs:usePath = 0 token node:type = "omni.graph.nodes.ReadPrimAttribute" int node:typeVersion = 1 custom token outputs:value custom uint64 state:target = 0 custom timecode state:usdTimecode = -1 } def OmniGraphNode "read_ankle_attribute" { custom bool inputs:forceUSDRead = 0 custom token inputs:name = "xformOp:transform" custom rel inputs:prim prepend rel inputs:prim = </Ankle> custom token inputs:primPath = "" custom timecode inputs:usdTimecode = -1 custom bool inputs:usePath = 0 token node:type = "omni.graph.nodes.ReadPrimAttribute" int node:typeVersion = 1 custom token outputs:value custom uint64 state:target = 0 custom timecode state:usdTimecode = -1 } def OmniGraphNode "read_hip_attribute" { custom bool inputs:forceUSDRead = 0 custom token inputs:name = "xformOp:transform" custom rel inputs:prim prepend rel inputs:prim = </Hip> custom token inputs:primPath = "" custom timecode inputs:usdTimecode = -1 custom bool inputs:usePath = 0 token node:type = "omni.graph.nodes.ReadPrimAttribute" int node:typeVersion = 1 custom token outputs:value custom uint64 state:target = 0 custom timecode state:usdTimecode = -1 } def OmniGraphNode "write_knee_attribute" ( prepend apiSchemas = ["NodeGraphNodeAPI"] ) { custom uint inputs:execIn custom token inputs:name = "xformOp:transform" custom rel inputs:prim prepend rel inputs:prim = </Knee> custom token inputs:primPath custom bool inputs:usdWriteBack = 1 custom bool inputs:usePath = 0 custom token inputs:value prepend token inputs:value.connect = </IkGraph/SimpleIK.state:knee> token node:type = "omni.graph.nodes.WritePrimAttribute" int node:typeVersion = 1 custom uint outputs:execOut ( customData = { bool isExecution = 1 } ) } def OmniGraphNode "write_hip_attribute" ( prepend apiSchemas = ["NodeGraphNodeAPI"] ) { custom uint inputs:execIn custom token inputs:name = "xformOp:transform" custom rel inputs:prim prepend rel inputs:prim = </Hip> custom token inputs:primPath custom bool inputs:usdWriteBack = 1 custom bool inputs:usePath = 0 custom token inputs:value prepend token inputs:value.connect = </IkGraph/SimpleIK.state:hip> token node:type = "omni.graph.nodes.WritePrimAttribute" int node:typeVersion = 1 custom uint outputs:execOut ( customData = { bool isExecution = 1 } ) } def OmniGraphNode "write_ankle_attribute" ( prepend apiSchemas = ["NodeGraphNodeAPI"] ) { custom uint inputs:execIn custom token inputs:name = "xformOp:transform" custom rel inputs:prim prepend rel inputs:prim = </Ankle> custom token inputs:primPath custom bool inputs:usdWriteBack = 1 custom bool inputs:usePath = 0 custom token inputs:value prepend token inputs:value.connect = </IkGraph/SimpleIK.state:ankle> token node:type = "omni.graph.nodes.WritePrimAttribute" int node:typeVersion = 1 custom uint outputs:execOut ( customData = { bool isExecution = 1 } ) } def OmniGraphNode "SimpleIK" { custom matrix4d inputs:goal matrix4d inputs:goal.connect = </IkGraph/read_goal_attribute.outputs:value> custom matrix4d state:ankle = ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (0, 0, 2, 1) ) custom matrix4d state:hip = ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (0, 0, 6, 1) ) custom matrix4d state:knee = ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (0, 0, 4, 1) ) custom token node:type = "omni.graph.examples.cpp.SimpleIk" custom int node:typeVersion = 1 } } over "OmniverseKit_Persp" { matrix4d xformOp:transform = ( (-0.9956225844512049, -0.09346480263036312, 2.978566414308606e-15, 0), (0.03635214616824583, -0.38723687099101006, 0.9212633321771123, 0), (-0.08610569551252109, 0.9172305797422827, 0.38893942045766294, 0), (-2.616098181034925, 20.718665166414226, 9.543708888748549, 1) ) } over "OmniverseKit_Front" { matrix4d xformOp:transform = ( (0, 1.0000000000000002, -2.220446049250313e-16, 0), (-2.220446049250313e-16, 0, 1.0000000000000002, 0), (1.0000000000000002, -2.220446049250313e-16, 0, 0), (1000.0000000000002, -2.220446049250313e-13, 0, 1) ) } over "OmniverseKit_Top" { matrix4d xformOp:transform = ( (-2.220446049250313e-16, -1, 0, 0), (1, -2.220446049250313e-16, 0, 0), (0, 0, 1, 0), (0, 0, 1000, 1) ) } over "OmniverseKit_Right" { matrix4d xformOp:transform = ( (1, 0, 0, 0), (0, -2.220446049250313e-16, 1, 0), (0, -1, -2.220446049250313e-16, 0), (0, -1000, -2.220446049250313e-13, 1) ) }
omniverse-code/kit/exts/omni.graph/data/ExampleTimeSampledTransform_SplineInterp_UITest.usda
#usda 1.0 ( endTimeCode = 72 metersPerUnit = 0.009999999776482582 ) def Xform "defaultPrim" { # Select prim "cube", Use Menu "Animation/Xform Interpolation“ to generate the interpolation pipeline def Cube "cube" { double size = 0.5 float3 xformOp:translate = (0, 0, 3)( customData = { string interpolationType = "Bezier" } ) float3 xformOp:translate.timeSamples = { 0: (0, 0, 3), 48: (3, 0, 3), } float3 xformOp:rotateZYX = (0, 0, 0)( customData = { string interpolationType = "Bezier" } ) float3 xformOp:rotateZYX.timeSamples = { 0: (0, 0, 0), 48: (0, 90.0, 0), } uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateZYX"] } # Select prim "cube1", Use Menu "Animation/Xform Interpolation" to generate the interpolation pipeline def Cube "cube1" { double size = 0.5 float3 xformOp:translate = (0, 0, 0)( customData = { string interpolationType = "Linear" } ) float3 xformOp:translate.timeSamples = { 0: (0, 0, 0), 48: (3, 0, 0), } float3 xformOp:rotateZYX = (0, 0, 0)( customData = { string interpolationType = "Linear" } ) float3 xformOp:rotateZYX.timeSamples = { 0: (0, 0, 0), 48: (0, 90.0, 0), } uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateZYX"] } }
omniverse-code/kit/exts/omni.graph/data/ExampleGridDeformer.usda
#usda 1.0 ( doc = """Generated from Composed Stage of root layer """ ) def Xform "defaultPrim" { def Mesh "inputGrid" { uniform bool doubleSided = 1 int[] faceVertexCounts = [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 1, 33, 0, 33, 32, 1, 2, 34, 1, 34, 33, 2, 3, 35, 2, 35, 34, 3, 4, 36, 3, 36, 35, 4, 5, 37, 4, 37, 36, 5, 6, 38, 5, 38, 37, 6, 7, 39, 6, 39, 38, 7, 8, 40, 7, 40, 39, 8, 9, 41, 8, 41, 40, 9, 10, 42, 9, 42, 41, 10, 11, 43, 10, 43, 42, 11, 12, 44, 11, 44, 43, 12, 13, 45, 12, 45, 44, 13, 14, 46, 13, 46, 45, 14, 15, 47, 14, 47, 46, 15, 16, 48, 15, 48, 47, 16, 17, 49, 16, 49, 48, 17, 18, 50, 17, 50, 49, 18, 19, 51, 18, 51, 50, 19, 20, 52, 19, 52, 51, 20, 21, 53, 20, 53, 52, 21, 22, 54, 21, 54, 53, 22, 23, 55, 22, 55, 54, 23, 24, 56, 23, 56, 55, 24, 25, 57, 24, 57, 56, 25, 26, 58, 25, 58, 57, 26, 27, 59, 26, 59, 58, 27, 28, 60, 27, 60, 59, 28, 29, 61, 28, 61, 60, 29, 30, 62, 29, 62, 61, 30, 31, 63, 30, 63, 62, 32, 33, 65, 32, 65, 64, 33, 34, 66, 33, 66, 65, 34, 35, 67, 34, 67, 66, 35, 36, 68, 35, 68, 67, 36, 37, 69, 36, 69, 68, 37, 38, 70, 37, 70, 69, 38, 39, 71, 38, 71, 70, 39, 40, 72, 39, 72, 71, 40, 41, 73, 40, 73, 72, 41, 42, 74, 41, 74, 73, 42, 43, 75, 42, 75, 74, 43, 44, 76, 43, 76, 75, 44, 45, 77, 44, 77, 76, 45, 46, 78, 45, 78, 77, 46, 47, 79, 46, 79, 78, 47, 48, 80, 47, 80, 79, 48, 49, 81, 48, 81, 80, 49, 50, 82, 49, 82, 81, 50, 51, 83, 50, 83, 82, 51, 52, 84, 51, 84, 83, 52, 53, 85, 52, 85, 84, 53, 54, 86, 53, 86, 85, 54, 55, 87, 54, 87, 86, 55, 56, 88, 55, 88, 87, 56, 57, 89, 56, 89, 88, 57, 58, 90, 57, 90, 89, 58, 59, 91, 58, 91, 90, 59, 60, 92, 59, 92, 91, 60, 61, 93, 60, 93, 92, 61, 62, 94, 61, 94, 93, 62, 63, 95, 62, 95, 94, 64, 65, 97, 64, 97, 96, 65, 66, 98, 65, 98, 97, 66, 67, 99, 66, 99, 98, 67, 68, 100, 67, 100, 99, 68, 69, 101, 68, 101, 100, 69, 70, 102, 69, 102, 101, 70, 71, 103, 70, 103, 102, 71, 72, 104, 71, 104, 103, 72, 73, 105, 72, 105, 104, 73, 74, 106, 73, 106, 105, 74, 75, 107, 74, 107, 106, 75, 76, 108, 75, 108, 107, 76, 77, 109, 76, 109, 108, 77, 78, 110, 77, 110, 109, 78, 79, 111, 78, 111, 110, 79, 80, 112, 79, 112, 111, 80, 81, 113, 80, 113, 112, 81, 82, 114, 81, 114, 113, 82, 83, 115, 82, 115, 114, 83, 84, 116, 83, 116, 115, 84, 85, 117, 84, 117, 116, 85, 86, 118, 85, 118, 117, 86, 87, 119, 86, 119, 118, 87, 88, 120, 87, 120, 119, 88, 89, 121, 88, 121, 120, 89, 90, 122, 89, 122, 121, 90, 91, 123, 90, 123, 122, 91, 92, 124, 91, 124, 123, 92, 93, 125, 92, 125, 124, 93, 94, 126, 93, 126, 125, 94, 95, 127, 94, 127, 126, 96, 97, 129, 96, 129, 128, 97, 98, 130, 97, 130, 129, 98, 99, 131, 98, 131, 130, 99, 100, 132, 99, 132, 131, 100, 101, 133, 100, 133, 132, 101, 102, 134, 101, 134, 133, 102, 103, 135, 102, 135, 134, 103, 104, 136, 103, 136, 135, 104, 105, 137, 104, 137, 136, 105, 106, 138, 105, 138, 137, 106, 107, 139, 106, 139, 138, 107, 108, 140, 107, 140, 139, 108, 109, 141, 108, 141, 140, 109, 110, 142, 109, 142, 141, 110, 111, 143, 110, 143, 142, 111, 112, 144, 111, 144, 143, 112, 113, 145, 112, 145, 144, 113, 114, 146, 113, 146, 145, 114, 115, 147, 114, 147, 146, 115, 116, 148, 115, 148, 147, 116, 117, 149, 116, 149, 148, 117, 118, 150, 117, 150, 149, 118, 119, 151, 118, 151, 150, 119, 120, 152, 119, 152, 151, 120, 121, 153, 120, 153, 152, 121, 122, 154, 121, 154, 153, 122, 123, 155, 122, 155, 154, 123, 124, 156, 123, 156, 155, 124, 125, 157, 124, 157, 156, 125, 126, 158, 125, 158, 157, 126, 127, 159, 126, 159, 158, 128, 129, 161, 128, 161, 160, 129, 130, 162, 129, 162, 161, 130, 131, 163, 130, 163, 162, 131, 132, 164, 131, 164, 163, 132, 133, 165, 132, 165, 164, 133, 134, 166, 133, 166, 165, 134, 135, 167, 134, 167, 166, 135, 136, 168, 135, 168, 167, 136, 137, 169, 136, 169, 168, 137, 138, 170, 137, 170, 169, 138, 139, 171, 138, 171, 170, 139, 140, 172, 139, 172, 171, 140, 141, 173, 140, 173, 172, 141, 142, 174, 141, 174, 173, 142, 143, 175, 142, 175, 174, 143, 144, 176, 143, 176, 175, 144, 145, 177, 144, 177, 176, 145, 146, 178, 145, 178, 177, 146, 147, 179, 146, 179, 178, 147, 148, 180, 147, 180, 179, 148, 149, 181, 148, 181, 180, 149, 150, 182, 149, 182, 181, 150, 151, 183, 150, 183, 182, 151, 152, 184, 151, 184, 183, 152, 153, 185, 152, 185, 184, 153, 154, 186, 153, 186, 185, 154, 155, 187, 154, 187, 186, 155, 156, 188, 155, 188, 187, 156, 157, 189, 156, 189, 188, 157, 158, 190, 157, 190, 189, 158, 159, 191, 158, 191, 190, 160, 161, 193, 160, 193, 192, 161, 162, 194, 161, 194, 193, 162, 163, 195, 162, 195, 194, 163, 164, 196, 163, 196, 195, 164, 165, 197, 164, 197, 196, 165, 166, 198, 165, 198, 197, 166, 167, 199, 166, 199, 198, 167, 168, 200, 167, 200, 199, 168, 169, 201, 168, 201, 200, 169, 170, 202, 169, 202, 201, 170, 171, 203, 170, 203, 202, 171, 172, 204, 171, 204, 203, 172, 173, 205, 172, 205, 204, 173, 174, 206, 173, 206, 205, 174, 175, 207, 174, 207, 206, 175, 176, 208, 175, 208, 207, 176, 177, 209, 176, 209, 208, 177, 178, 210, 177, 210, 209, 178, 179, 211, 178, 211, 210, 179, 180, 212, 179, 212, 211, 180, 181, 213, 180, 213, 212, 181, 182, 214, 181, 214, 213, 182, 183, 215, 182, 215, 214, 183, 184, 216, 183, 216, 215, 184, 185, 217, 184, 217, 216, 185, 186, 218, 185, 218, 217, 186, 187, 219, 186, 219, 218, 187, 188, 220, 187, 220, 219, 188, 189, 221, 188, 221, 220, 189, 190, 222, 189, 222, 221, 190, 191, 223, 190, 223, 222, 192, 193, 225, 192, 225, 224, 193, 194, 226, 193, 226, 225, 194, 195, 227, 194, 227, 226, 195, 196, 228, 195, 228, 227, 196, 197, 229, 196, 229, 228, 197, 198, 230, 197, 230, 229, 198, 199, 231, 198, 231, 230, 199, 200, 232, 199, 232, 231, 200, 201, 233, 200, 233, 232, 201, 202, 234, 201, 234, 233, 202, 203, 235, 202, 235, 234, 203, 204, 236, 203, 236, 235, 204, 205, 237, 204, 237, 236, 205, 206, 238, 205, 238, 237, 206, 207, 239, 206, 239, 238, 207, 208, 240, 207, 240, 239, 208, 209, 241, 208, 241, 240, 209, 210, 242, 209, 242, 241, 210, 211, 243, 210, 243, 242, 211, 212, 244, 211, 244, 243, 212, 213, 245, 212, 245, 244, 213, 214, 246, 213, 246, 245, 214, 215, 247, 214, 247, 246, 215, 216, 248, 215, 248, 247, 216, 217, 249, 216, 249, 248, 217, 218, 250, 217, 250, 249, 218, 219, 251, 218, 251, 250, 219, 220, 252, 219, 252, 251, 220, 221, 253, 220, 253, 252, 221, 222, 254, 221, 254, 253, 222, 223, 255, 222, 255, 254, 224, 225, 257, 224, 257, 256, 225, 226, 258, 225, 258, 257, 226, 227, 259, 226, 259, 258, 227, 228, 260, 227, 260, 259, 228, 229, 261, 228, 261, 260, 229, 230, 262, 229, 262, 261, 230, 231, 263, 230, 263, 262, 231, 232, 264, 231, 264, 263, 232, 233, 265, 232, 265, 264, 233, 234, 266, 233, 266, 265, 234, 235, 267, 234, 267, 266, 235, 236, 268, 235, 268, 267, 236, 237, 269, 236, 269, 268, 237, 238, 270, 237, 270, 269, 238, 239, 271, 238, 271, 270, 239, 240, 272, 239, 272, 271, 240, 241, 273, 240, 273, 272, 241, 242, 274, 241, 274, 273, 242, 243, 275, 242, 275, 274, 243, 244, 276, 243, 276, 275, 244, 245, 277, 244, 277, 276, 245, 246, 278, 245, 278, 277, 246, 247, 279, 246, 279, 278, 247, 248, 280, 247, 280, 279, 248, 249, 281, 248, 281, 280, 249, 250, 282, 249, 282, 281, 250, 251, 283, 250, 283, 282, 251, 252, 284, 251, 284, 283, 252, 253, 285, 252, 285, 284, 253, 254, 286, 253, 286, 285, 254, 255, 287, 254, 287, 286, 256, 257, 289, 256, 289, 288, 257, 258, 290, 257, 290, 289, 258, 259, 291, 258, 291, 290, 259, 260, 292, 259, 292, 291, 260, 261, 293, 260, 293, 292, 261, 262, 294, 261, 294, 293, 262, 263, 295, 262, 295, 294, 263, 264, 296, 263, 296, 295, 264, 265, 297, 264, 297, 296, 265, 266, 298, 265, 298, 297, 266, 267, 299, 266, 299, 298, 267, 268, 300, 267, 300, 299, 268, 269, 301, 268, 301, 300, 269, 270, 302, 269, 302, 301, 270, 271, 303, 270, 303, 302, 271, 272, 304, 271, 304, 303, 272, 273, 305, 272, 305, 304, 273, 274, 306, 273, 306, 305, 274, 275, 307, 274, 307, 306, 275, 276, 308, 275, 308, 307, 276, 277, 309, 276, 309, 308, 277, 278, 310, 277, 310, 309, 278, 279, 311, 278, 311, 310, 279, 280, 312, 279, 312, 311, 280, 281, 313, 280, 313, 312, 281, 282, 314, 281, 314, 313, 282, 283, 315, 282, 315, 314, 283, 284, 316, 283, 316, 315, 284, 285, 317, 284, 317, 316, 285, 286, 318, 285, 318, 317, 286, 287, 319, 286, 319, 318, 288, 289, 321, 288, 321, 320, 289, 290, 322, 289, 322, 321, 290, 291, 323, 290, 323, 322, 291, 292, 324, 291, 324, 323, 292, 293, 325, 292, 325, 324, 293, 294, 326, 293, 326, 325, 294, 295, 327, 294, 327, 326, 295, 296, 328, 295, 328, 327, 296, 297, 329, 296, 329, 328, 297, 298, 330, 297, 330, 329, 298, 299, 331, 298, 331, 330, 299, 300, 332, 299, 332, 331, 300, 301, 333, 300, 333, 332, 301, 302, 334, 301, 334, 333, 302, 303, 335, 302, 335, 334, 303, 304, 336, 303, 336, 335, 304, 305, 337, 304, 337, 336, 305, 306, 338, 305, 338, 337, 306, 307, 339, 306, 339, 338, 307, 308, 340, 307, 340, 339, 308, 309, 341, 308, 341, 340, 309, 310, 342, 309, 342, 341, 310, 311, 343, 310, 343, 342, 311, 312, 344, 311, 344, 343, 312, 313, 345, 312, 345, 344, 313, 314, 346, 313, 346, 345, 314, 315, 347, 314, 347, 346, 315, 316, 348, 315, 348, 347, 316, 317, 349, 316, 349, 348, 317, 318, 350, 317, 350, 349, 318, 319, 351, 318, 351, 350, 320, 321, 353, 320, 353, 352, 321, 322, 354, 321, 354, 353, 322, 323, 355, 322, 355, 354, 323, 324, 356, 323, 356, 355, 324, 325, 357, 324, 357, 356, 325, 326, 358, 325, 358, 357, 326, 327, 359, 326, 359, 358, 327, 328, 360, 327, 360, 359, 328, 329, 361, 328, 361, 360, 329, 330, 362, 329, 362, 361, 330, 331, 363, 330, 363, 362, 331, 332, 364, 331, 364, 363, 332, 333, 365, 332, 365, 364, 333, 334, 366, 333, 366, 365, 334, 335, 367, 334, 367, 366, 335, 336, 368, 335, 368, 367, 336, 337, 369, 336, 369, 368, 337, 338, 370, 337, 370, 369, 338, 339, 371, 338, 371, 370, 339, 340, 372, 339, 372, 371, 340, 341, 373, 340, 373, 372, 341, 342, 374, 341, 374, 373, 342, 343, 375, 342, 375, 374, 343, 344, 376, 343, 376, 375, 344, 345, 377, 344, 377, 376, 345, 346, 378, 345, 378, 377, 346, 347, 379, 346, 379, 378, 347, 348, 380, 347, 380, 379, 348, 349, 381, 348, 381, 380, 349, 350, 382, 349, 382, 381, 350, 351, 383, 350, 383, 382, 352, 353, 385, 352, 385, 384, 353, 354, 386, 353, 386, 385, 354, 355, 387, 354, 387, 386, 355, 356, 388, 355, 388, 387, 356, 357, 389, 356, 389, 388, 357, 358, 390, 357, 390, 389, 358, 359, 391, 358, 391, 390, 359, 360, 392, 359, 392, 391, 360, 361, 393, 360, 393, 392, 361, 362, 394, 361, 394, 393, 362, 363, 395, 362, 395, 394, 363, 364, 396, 363, 396, 395, 364, 365, 397, 364, 397, 396, 365, 366, 398, 365, 398, 397, 366, 367, 399, 366, 399, 398, 367, 368, 400, 367, 400, 399, 368, 369, 401, 368, 401, 400, 369, 370, 402, 369, 402, 401, 370, 371, 403, 370, 403, 402, 371, 372, 404, 371, 404, 403, 372, 373, 405, 372, 405, 404, 373, 374, 406, 373, 406, 405, 374, 375, 407, 374, 407, 406, 375, 376, 408, 375, 408, 407, 376, 377, 409, 376, 409, 408, 377, 378, 410, 377, 410, 409, 378, 379, 411, 378, 411, 410, 379, 380, 412, 379, 412, 411, 380, 381, 413, 380, 413, 412, 381, 382, 414, 381, 414, 413, 382, 383, 415, 382, 415, 414, 384, 385, 417, 384, 417, 416, 385, 386, 418, 385, 418, 417, 386, 387, 419, 386, 419, 418, 387, 388, 420, 387, 420, 419, 388, 389, 421, 388, 421, 420, 389, 390, 422, 389, 422, 421, 390, 391, 423, 390, 423, 422, 391, 392, 424, 391, 424, 423, 392, 393, 425, 392, 425, 424, 393, 394, 426, 393, 426, 425, 394, 395, 427, 394, 427, 426, 395, 396, 428, 395, 428, 427, 396, 397, 429, 396, 429, 428, 397, 398, 430, 397, 430, 429, 398, 399, 431, 398, 431, 430, 399, 400, 432, 399, 432, 431, 400, 401, 433, 400, 433, 432, 401, 402, 434, 401, 434, 433, 402, 403, 435, 402, 435, 434, 403, 404, 436, 403, 436, 435, 404, 405, 437, 404, 437, 436, 405, 406, 438, 405, 438, 437, 406, 407, 439, 406, 439, 438, 407, 408, 440, 407, 440, 439, 408, 409, 441, 408, 441, 440, 409, 410, 442, 409, 442, 441, 410, 411, 443, 410, 443, 442, 411, 412, 444, 411, 444, 443, 412, 413, 445, 412, 445, 444, 413, 414, 446, 413, 446, 445, 414, 415, 447, 414, 447, 446, 416, 417, 449, 416, 449, 448, 417, 418, 450, 417, 450, 449, 418, 419, 451, 418, 451, 450, 419, 420, 452, 419, 452, 451, 420, 421, 453, 420, 453, 452, 421, 422, 454, 421, 454, 453, 422, 423, 455, 422, 455, 454, 423, 424, 456, 423, 456, 455, 424, 425, 457, 424, 457, 456, 425, 426, 458, 425, 458, 457, 426, 427, 459, 426, 459, 458, 427, 428, 460, 427, 460, 459, 428, 429, 461, 428, 461, 460, 429, 430, 462, 429, 462, 461, 430, 431, 463, 430, 463, 462, 431, 432, 464, 431, 464, 463, 432, 433, 465, 432, 465, 464, 433, 434, 466, 433, 466, 465, 434, 435, 467, 434, 467, 466, 435, 436, 468, 435, 468, 467, 436, 437, 469, 436, 469, 468, 437, 438, 470, 437, 470, 469, 438, 439, 471, 438, 471, 470, 439, 440, 472, 439, 472, 471, 440, 441, 473, 440, 473, 472, 441, 442, 474, 441, 474, 473, 442, 443, 475, 442, 475, 474, 443, 444, 476, 443, 476, 475, 444, 445, 477, 444, 477, 476, 445, 446, 478, 445, 478, 477, 446, 447, 479, 446, 479, 478, 448, 449, 481, 448, 481, 480, 449, 450, 482, 449, 482, 481, 450, 451, 483, 450, 483, 482, 451, 452, 484, 451, 484, 483, 452, 453, 485, 452, 485, 484, 453, 454, 486, 453, 486, 485, 454, 455, 487, 454, 487, 486, 455, 456, 488, 455, 488, 487, 456, 457, 489, 456, 489, 488, 457, 458, 490, 457, 490, 489, 458, 459, 491, 458, 491, 490, 459, 460, 492, 459, 492, 491, 460, 461, 493, 460, 493, 492, 461, 462, 494, 461, 494, 493, 462, 463, 495, 462, 495, 494, 463, 464, 496, 463, 496, 495, 464, 465, 497, 464, 497, 496, 465, 466, 498, 465, 498, 497, 466, 467, 499, 466, 499, 498, 467, 468, 500, 467, 500, 499, 468, 469, 501, 468, 501, 500, 469, 470, 502, 469, 502, 501, 470, 471, 503, 470, 503, 502, 471, 472, 504, 471, 504, 503, 472, 473, 505, 472, 505, 504, 473, 474, 506, 473, 506, 505, 474, 475, 507, 474, 507, 506, 475, 476, 508, 475, 508, 507, 476, 477, 509, 476, 509, 508, 477, 478, 510, 477, 510, 509, 478, 479, 511, 478, 511, 510, 480, 481, 513, 480, 513, 512, 481, 482, 514, 481, 514, 513, 482, 483, 515, 482, 515, 514, 483, 484, 516, 483, 516, 515, 484, 485, 517, 484, 517, 516, 485, 486, 518, 485, 518, 517, 486, 487, 519, 486, 519, 518, 487, 488, 520, 487, 520, 519, 488, 489, 521, 488, 521, 520, 489, 490, 522, 489, 522, 521, 490, 491, 523, 490, 523, 522, 491, 492, 524, 491, 524, 523, 492, 493, 525, 492, 525, 524, 493, 494, 526, 493, 526, 525, 494, 495, 527, 494, 527, 526, 495, 496, 528, 495, 528, 527, 496, 497, 529, 496, 529, 528, 497, 498, 530, 497, 530, 529, 498, 499, 531, 498, 531, 530, 499, 500, 532, 499, 532, 531, 500, 501, 533, 500, 533, 532, 501, 502, 534, 501, 534, 533, 502, 503, 535, 502, 535, 534, 503, 504, 536, 503, 536, 535, 504, 505, 537, 504, 537, 536, 505, 506, 538, 505, 538, 537, 506, 507, 539, 506, 539, 538, 507, 508, 540, 507, 540, 539, 508, 509, 541, 508, 541, 540, 509, 510, 542, 509, 542, 541, 510, 511, 543, 510, 543, 542, 512, 513, 545, 512, 545, 544, 513, 514, 546, 513, 546, 545, 514, 515, 547, 514, 547, 546, 515, 516, 548, 515, 548, 547, 516, 517, 549, 516, 549, 548, 517, 518, 550, 517, 550, 549, 518, 519, 551, 518, 551, 550, 519, 520, 552, 519, 552, 551, 520, 521, 553, 520, 553, 552, 521, 522, 554, 521, 554, 553, 522, 523, 555, 522, 555, 554, 523, 524, 556, 523, 556, 555, 524, 525, 557, 524, 557, 556, 525, 526, 558, 525, 558, 557, 526, 527, 559, 526, 559, 558, 527, 528, 560, 527, 560, 559, 528, 529, 561, 528, 561, 560, 529, 530, 562, 529, 562, 561, 530, 531, 563, 530, 563, 562, 531, 532, 564, 531, 564, 563, 532, 533, 565, 532, 565, 564, 533, 534, 566, 533, 566, 565, 534, 535, 567, 534, 567, 566, 535, 536, 568, 535, 568, 567, 536, 537, 569, 536, 569, 568, 537, 538, 570, 537, 570, 569, 538, 539, 571, 538, 571, 570, 539, 540, 572, 539, 572, 571, 540, 541, 573, 540, 573, 572, 541, 542, 574, 541, 574, 573, 542, 543, 575, 542, 575, 574, 544, 545, 577, 544, 577, 576, 545, 546, 578, 545, 578, 577, 546, 547, 579, 546, 579, 578, 547, 548, 580, 547, 580, 579, 548, 549, 581, 548, 581, 580, 549, 550, 582, 549, 582, 581, 550, 551, 583, 550, 583, 582, 551, 552, 584, 551, 584, 583, 552, 553, 585, 552, 585, 584, 553, 554, 586, 553, 586, 585, 554, 555, 587, 554, 587, 586, 555, 556, 588, 555, 588, 587, 556, 557, 589, 556, 589, 588, 557, 558, 590, 557, 590, 589, 558, 559, 591, 558, 591, 590, 559, 560, 592, 559, 592, 591, 560, 561, 593, 560, 593, 592, 561, 562, 594, 561, 594, 593, 562, 563, 595, 562, 595, 594, 563, 564, 596, 563, 596, 595, 564, 565, 597, 564, 597, 596, 565, 566, 598, 565, 598, 597, 566, 567, 599, 566, 599, 598, 567, 568, 600, 567, 600, 599, 568, 569, 601, 568, 601, 600, 569, 570, 602, 569, 602, 601, 570, 571, 603, 570, 603, 602, 571, 572, 604, 571, 604, 603, 572, 573, 605, 572, 605, 604, 573, 574, 606, 573, 606, 605, 574, 575, 607, 574, 607, 606, 576, 577, 609, 576, 609, 608, 577, 578, 610, 577, 610, 609, 578, 579, 611, 578, 611, 610, 579, 580, 612, 579, 612, 611, 580, 581, 613, 580, 613, 612, 581, 582, 614, 581, 614, 613, 582, 583, 615, 582, 615, 614, 583, 584, 616, 583, 616, 615, 584, 585, 617, 584, 617, 616, 585, 586, 618, 585, 618, 617, 586, 587, 619, 586, 619, 618, 587, 588, 620, 587, 620, 619, 588, 589, 621, 588, 621, 620, 589, 590, 622, 589, 622, 621, 590, 591, 623, 590, 623, 622, 591, 592, 624, 591, 624, 623, 592, 593, 625, 592, 625, 624, 593, 594, 626, 593, 626, 625, 594, 595, 627, 594, 627, 626, 595, 596, 628, 595, 628, 627, 596, 597, 629, 596, 629, 628, 597, 598, 630, 597, 630, 629, 598, 599, 631, 598, 631, 630, 599, 600, 632, 599, 632, 631, 600, 601, 633, 600, 633, 632, 601, 602, 634, 601, 634, 633, 602, 603, 635, 602, 635, 634, 603, 604, 636, 603, 636, 635, 604, 605, 637, 604, 637, 636, 605, 606, 638, 605, 638, 637, 606, 607, 639, 606, 639, 638, 608, 609, 641, 608, 641, 640, 609, 610, 642, 609, 642, 641, 610, 611, 643, 610, 643, 642, 611, 612, 644, 611, 644, 643, 612, 613, 645, 612, 645, 644, 613, 614, 646, 613, 646, 645, 614, 615, 647, 614, 647, 646, 615, 616, 648, 615, 648, 647, 616, 617, 649, 616, 649, 648, 617, 618, 650, 617, 650, 649, 618, 619, 651, 618, 651, 650, 619, 620, 652, 619, 652, 651, 620, 621, 653, 620, 653, 652, 621, 622, 654, 621, 654, 653, 622, 623, 655, 622, 655, 654, 623, 624, 656, 623, 656, 655, 624, 625, 657, 624, 657, 656, 625, 626, 658, 625, 658, 657, 626, 627, 659, 626, 659, 658, 627, 628, 660, 627, 660, 659, 628, 629, 661, 628, 661, 660, 629, 630, 662, 629, 662, 661, 630, 631, 663, 630, 663, 662, 631, 632, 664, 631, 664, 663, 632, 633, 665, 632, 665, 664, 633, 634, 666, 633, 666, 665, 634, 635, 667, 634, 667, 666, 635, 636, 668, 635, 668, 667, 636, 637, 669, 636, 669, 668, 637, 638, 670, 637, 670, 669, 638, 639, 671, 638, 671, 670, 640, 641, 673, 640, 673, 672, 641, 642, 674, 641, 674, 673, 642, 643, 675, 642, 675, 674, 643, 644, 676, 643, 676, 675, 644, 645, 677, 644, 677, 676, 645, 646, 678, 645, 678, 677, 646, 647, 679, 646, 679, 678, 647, 648, 680, 647, 680, 679, 648, 649, 681, 648, 681, 680, 649, 650, 682, 649, 682, 681, 650, 651, 683, 650, 683, 682, 651, 652, 684, 651, 684, 683, 652, 653, 685, 652, 685, 684, 653, 654, 686, 653, 686, 685, 654, 655, 687, 654, 687, 686, 655, 656, 688, 655, 688, 687, 656, 657, 689, 656, 689, 688, 657, 658, 690, 657, 690, 689, 658, 659, 691, 658, 691, 690, 659, 660, 692, 659, 692, 691, 660, 661, 693, 660, 693, 692, 661, 662, 694, 661, 694, 693, 662, 663, 695, 662, 695, 694, 663, 664, 696, 663, 696, 695, 664, 665, 697, 664, 697, 696, 665, 666, 698, 665, 698, 697, 666, 667, 699, 666, 699, 698, 667, 668, 700, 667, 700, 699, 668, 669, 701, 668, 701, 700, 669, 670, 702, 669, 702, 701, 670, 671, 703, 670, 703, 702, 672, 673, 705, 672, 705, 704, 673, 674, 706, 673, 706, 705, 674, 675, 707, 674, 707, 706, 675, 676, 708, 675, 708, 707, 676, 677, 709, 676, 709, 708, 677, 678, 710, 677, 710, 709, 678, 679, 711, 678, 711, 710, 679, 680, 712, 679, 712, 711, 680, 681, 713, 680, 713, 712, 681, 682, 714, 681, 714, 713, 682, 683, 715, 682, 715, 714, 683, 684, 716, 683, 716, 715, 684, 685, 717, 684, 717, 716, 685, 686, 718, 685, 718, 717, 686, 687, 719, 686, 719, 718, 687, 688, 720, 687, 720, 719, 688, 689, 721, 688, 721, 720, 689, 690, 722, 689, 722, 721, 690, 691, 723, 690, 723, 722, 691, 692, 724, 691, 724, 723, 692, 693, 725, 692, 725, 724, 693, 694, 726, 693, 726, 725, 694, 695, 727, 694, 727, 726, 695, 696, 728, 695, 728, 727, 696, 697, 729, 696, 729, 728, 697, 698, 730, 697, 730, 729, 698, 699, 731, 698, 731, 730, 699, 700, 732, 699, 732, 731, 700, 701, 733, 700, 733, 732, 701, 702, 734, 701, 734, 733, 702, 703, 735, 702, 735, 734, 704, 705, 737, 704, 737, 736, 705, 706, 738, 705, 738, 737, 706, 707, 739, 706, 739, 738, 707, 708, 740, 707, 740, 739, 708, 709, 741, 708, 741, 740, 709, 710, 742, 709, 742, 741, 710, 711, 743, 710, 743, 742, 711, 712, 744, 711, 744, 743, 712, 713, 745, 712, 745, 744, 713, 714, 746, 713, 746, 745, 714, 715, 747, 714, 747, 746, 715, 716, 748, 715, 748, 747, 716, 717, 749, 716, 749, 748, 717, 718, 750, 717, 750, 749, 718, 719, 751, 718, 751, 750, 719, 720, 752, 719, 752, 751, 720, 721, 753, 720, 753, 752, 721, 722, 754, 721, 754, 753, 722, 723, 755, 722, 755, 754, 723, 724, 756, 723, 756, 755, 724, 725, 757, 724, 757, 756, 725, 726, 758, 725, 758, 757, 726, 727, 759, 726, 759, 758, 727, 728, 760, 727, 760, 759, 728, 729, 761, 728, 761, 760, 729, 730, 762, 729, 762, 761, 730, 731, 763, 730, 763, 762, 731, 732, 764, 731, 764, 763, 732, 733, 765, 732, 765, 764, 733, 734, 766, 733, 766, 765, 734, 735, 767, 734, 767, 766, 736, 737, 769, 736, 769, 768, 737, 738, 770, 737, 770, 769, 738, 739, 771, 738, 771, 770, 739, 740, 772, 739, 772, 771, 740, 741, 773, 740, 773, 772, 741, 742, 774, 741, 774, 773, 742, 743, 775, 742, 775, 774, 743, 744, 776, 743, 776, 775, 744, 745, 777, 744, 777, 776, 745, 746, 778, 745, 778, 777, 746, 747, 779, 746, 779, 778, 747, 748, 780, 747, 780, 779, 748, 749, 781, 748, 781, 780, 749, 750, 782, 749, 782, 781, 750, 751, 783, 750, 783, 782, 751, 752, 784, 751, 784, 783, 752, 753, 785, 752, 785, 784, 753, 754, 786, 753, 786, 785, 754, 755, 787, 754, 787, 786, 755, 756, 788, 755, 788, 787, 756, 757, 789, 756, 789, 788, 757, 758, 790, 757, 790, 789, 758, 759, 791, 758, 791, 790, 759, 760, 792, 759, 792, 791, 760, 761, 793, 760, 793, 792, 761, 762, 794, 761, 794, 793, 762, 763, 795, 762, 795, 794, 763, 764, 796, 763, 796, 795, 764, 765, 797, 764, 797, 796, 765, 766, 798, 765, 798, 797, 766, 767, 799, 766, 799, 798, 768, 769, 801, 768, 801, 800, 769, 770, 802, 769, 802, 801, 770, 771, 803, 770, 803, 802, 771, 772, 804, 771, 804, 803, 772, 773, 805, 772, 805, 804, 773, 774, 806, 773, 806, 805, 774, 775, 807, 774, 807, 806, 775, 776, 808, 775, 808, 807, 776, 777, 809, 776, 809, 808, 777, 778, 810, 777, 810, 809, 778, 779, 811, 778, 811, 810, 779, 780, 812, 779, 812, 811, 780, 781, 813, 780, 813, 812, 781, 782, 814, 781, 814, 813, 782, 783, 815, 782, 815, 814, 783, 784, 816, 783, 816, 815, 784, 785, 817, 784, 817, 816, 785, 786, 818, 785, 818, 817, 786, 787, 819, 786, 819, 818, 787, 788, 820, 787, 820, 819, 788, 789, 821, 788, 821, 820, 789, 790, 822, 789, 822, 821, 790, 791, 823, 790, 823, 822, 791, 792, 824, 791, 824, 823, 792, 793, 825, 792, 825, 824, 793, 794, 826, 793, 826, 825, 794, 795, 827, 794, 827, 826, 795, 796, 828, 795, 828, 827, 796, 797, 829, 796, 829, 828, 797, 798, 830, 797, 830, 829, 798, 799, 831, 798, 831, 830, 800, 801, 833, 800, 833, 832, 801, 802, 834, 801, 834, 833, 802, 803, 835, 802, 835, 834, 803, 804, 836, 803, 836, 835, 804, 805, 837, 804, 837, 836, 805, 806, 838, 805, 838, 837, 806, 807, 839, 806, 839, 838, 807, 808, 840, 807, 840, 839, 808, 809, 841, 808, 841, 840, 809, 810, 842, 809, 842, 841, 810, 811, 843, 810, 843, 842, 811, 812, 844, 811, 844, 843, 812, 813, 845, 812, 845, 844, 813, 814, 846, 813, 846, 845, 814, 815, 847, 814, 847, 846, 815, 816, 848, 815, 848, 847, 816, 817, 849, 816, 849, 848, 817, 818, 850, 817, 850, 849, 818, 819, 851, 818, 851, 850, 819, 820, 852, 819, 852, 851, 820, 821, 853, 820, 853, 852, 821, 822, 854, 821, 854, 853, 822, 823, 855, 822, 855, 854, 823, 824, 856, 823, 856, 855, 824, 825, 857, 824, 857, 856, 825, 826, 858, 825, 858, 857, 826, 827, 859, 826, 859, 858, 827, 828, 860, 827, 860, 859, 828, 829, 861, 828, 861, 860, 829, 830, 862, 829, 862, 861, 830, 831, 863, 830, 863, 862, 832, 833, 865, 832, 865, 864, 833, 834, 866, 833, 866, 865, 834, 835, 867, 834, 867, 866, 835, 836, 868, 835, 868, 867, 836, 837, 869, 836, 869, 868, 837, 838, 870, 837, 870, 869, 838, 839, 871, 838, 871, 870, 839, 840, 872, 839, 872, 871, 840, 841, 873, 840, 873, 872, 841, 842, 874, 841, 874, 873, 842, 843, 875, 842, 875, 874, 843, 844, 876, 843, 876, 875, 844, 845, 877, 844, 877, 876, 845, 846, 878, 845, 878, 877, 846, 847, 879, 846, 879, 878, 847, 848, 880, 847, 880, 879, 848, 849, 881, 848, 881, 880, 849, 850, 882, 849, 882, 881, 850, 851, 883, 850, 883, 882, 851, 852, 884, 851, 884, 883, 852, 853, 885, 852, 885, 884, 853, 854, 886, 853, 886, 885, 854, 855, 887, 854, 887, 886, 855, 856, 888, 855, 888, 887, 856, 857, 889, 856, 889, 888, 857, 858, 890, 857, 890, 889, 858, 859, 891, 858, 891, 890, 859, 860, 892, 859, 892, 891, 860, 861, 893, 860, 893, 892, 861, 862, 894, 861, 894, 893, 862, 863, 895, 862, 895, 894, 864, 865, 897, 864, 897, 896, 865, 866, 898, 865, 898, 897, 866, 867, 899, 866, 899, 898, 867, 868, 900, 867, 900, 899, 868, 869, 901, 868, 901, 900, 869, 870, 902, 869, 902, 901, 870, 871, 903, 870, 903, 902, 871, 872, 904, 871, 904, 903, 872, 873, 905, 872, 905, 904, 873, 874, 906, 873, 906, 905, 874, 875, 907, 874, 907, 906, 875, 876, 908, 875, 908, 907, 876, 877, 909, 876, 909, 908, 877, 878, 910, 877, 910, 909, 878, 879, 911, 878, 911, 910, 879, 880, 912, 879, 912, 911, 880, 881, 913, 880, 913, 912, 881, 882, 914, 881, 914, 913, 882, 883, 915, 882, 915, 914, 883, 884, 916, 883, 916, 915, 884, 885, 917, 884, 917, 916, 885, 886, 918, 885, 918, 917, 886, 887, 919, 886, 919, 918, 887, 888, 920, 887, 920, 919, 888, 889, 921, 888, 921, 920, 889, 890, 922, 889, 922, 921, 890, 891, 923, 890, 923, 922, 891, 892, 924, 891, 924, 923, 892, 893, 925, 892, 925, 924, 893, 894, 926, 893, 926, 925, 894, 895, 927, 894, 927, 926, 896, 897, 929, 896, 929, 928, 897, 898, 930, 897, 930, 929, 898, 899, 931, 898, 931, 930, 899, 900, 932, 899, 932, 931, 900, 901, 933, 900, 933, 932, 901, 902, 934, 901, 934, 933, 902, 903, 935, 902, 935, 934, 903, 904, 936, 903, 936, 935, 904, 905, 937, 904, 937, 936, 905, 906, 938, 905, 938, 937, 906, 907, 939, 906, 939, 938, 907, 908, 940, 907, 940, 939, 908, 909, 941, 908, 941, 940, 909, 910, 942, 909, 942, 941, 910, 911, 943, 910, 943, 942, 911, 912, 944, 911, 944, 943, 912, 913, 945, 912, 945, 944, 913, 914, 946, 913, 946, 945, 914, 915, 947, 914, 947, 946, 915, 916, 948, 915, 948, 947, 916, 917, 949, 916, 949, 948, 917, 918, 950, 917, 950, 949, 918, 919, 951, 918, 951, 950, 919, 920, 952, 919, 952, 951, 920, 921, 953, 920, 953, 952, 921, 922, 954, 921, 954, 953, 922, 923, 955, 922, 955, 954, 923, 924, 956, 923, 956, 955, 924, 925, 957, 924, 957, 956, 925, 926, 958, 925, 958, 957, 926, 927, 959, 926, 959, 958, 928, 929, 961, 928, 961, 960, 929, 930, 962, 929, 962, 961, 930, 931, 963, 930, 963, 962, 931, 932, 964, 931, 964, 963, 932, 933, 965, 932, 965, 964, 933, 934, 966, 933, 966, 965, 934, 935, 967, 934, 967, 966, 935, 936, 968, 935, 968, 967, 936, 937, 969, 936, 969, 968, 937, 938, 970, 937, 970, 969, 938, 939, 971, 938, 971, 970, 939, 940, 972, 939, 972, 971, 940, 941, 973, 940, 973, 972, 941, 942, 974, 941, 974, 973, 942, 943, 975, 942, 975, 974, 943, 944, 976, 943, 976, 975, 944, 945, 977, 944, 977, 976, 945, 946, 978, 945, 978, 977, 946, 947, 979, 946, 979, 978, 947, 948, 980, 947, 980, 979, 948, 949, 981, 948, 981, 980, 949, 950, 982, 949, 982, 981, 950, 951, 983, 950, 983, 982, 951, 952, 984, 951, 984, 983, 952, 953, 985, 952, 985, 984, 953, 954, 986, 953, 986, 985, 954, 955, 987, 954, 987, 986, 955, 956, 988, 955, 988, 987, 956, 957, 989, 956, 989, 988, 957, 958, 990, 957, 990, 989, 958, 959, 991, 958, 991, 990, 960, 961, 993, 960, 993, 992, 961, 962, 994, 961, 994, 993, 962, 963, 995, 962, 995, 994, 963, 964, 996, 963, 996, 995, 964, 965, 997, 964, 997, 996, 965, 966, 998, 965, 998, 997, 966, 967, 999, 966, 999, 998, 967, 968, 1000, 967, 1000, 999, 968, 969, 1001, 968, 1001, 1000, 969, 970, 1002, 969, 1002, 1001, 970, 971, 1003, 970, 1003, 1002, 971, 972, 1004, 971, 1004, 1003, 972, 973, 1005, 972, 1005, 1004, 973, 974, 1006, 973, 1006, 1005, 974, 975, 1007, 974, 1007, 1006, 975, 976, 1008, 975, 1008, 1007, 976, 977, 1009, 976, 1009, 1008, 977, 978, 1010, 977, 1010, 1009, 978, 979, 1011, 978, 1011, 1010, 979, 980, 1012, 979, 1012, 1011, 980, 981, 1013, 980, 1013, 1012, 981, 982, 1014, 981, 1014, 1013, 982, 983, 1015, 982, 1015, 1014, 983, 984, 1016, 983, 1016, 1015, 984, 985, 1017, 984, 1017, 1016, 985, 986, 1018, 985, 1018, 1017, 986, 987, 1019, 986, 1019, 1018, 987, 988, 1020, 987, 1020, 1019, 988, 989, 1021, 988, 1021, 1020, 989, 990, 1022, 989, 1022, 1021, 990, 991, 1023, 990, 1023, 1022] point3f[] points = [(0, 0, 20), (20, 0, 20), (40, 0, 20), (60, 0, 20), (80, 0, 20), (100, 0, 20), (120, 0, 20), (140, 0, 20), (160, 0, 20), (180, 0, 20), (200, 0, 20), (220, 0, 20), (240, 0, 20), (260, 0, 20), (280, 0, 20), (300, 0, 20), (320, 0, 20), (340, 0, 20), (360, 0, 20), (380, 0, 20), (400, 0, 20), (420, 0, 20), (440, 0, 20), (460, 0, 20), (480, 0, 20), (500, 0, 20), (520, 0, 20), (540, 0, 20), (560, 0, 20), (580, 0, 20), (600, 0, 20), (620, 0, 20), (0, 20, 20), (20, 20, 20), (40, 20, 20), (60, 20, 20), (80, 20, 20), (100, 20, 20), (120, 20, 20), (140, 20, 20), (160, 20, 20), (180, 20, 20), (200, 20, 20), (220, 20, 20), (240, 20, 20), (260, 20, 20), (280, 20, 20), (300, 20, 20), (320, 20, 20), (340, 20, 20), (360, 20, 20), (380, 20, 20), (400, 20, 20), (420, 20, 20), (440, 20, 20), (460, 20, 20), (480, 20, 20), (500, 20, 20), (520, 20, 20), (540, 20, 20), (560, 20, 20), (580, 20, 20), (600, 20, 20), (620, 20, 20), (0, 40, 20), (20, 40, 20), (40, 40, 20), (60, 40, 20), (80, 40, 20), (100, 40, 20), (120, 40, 20), (140, 40, 20), (160, 40, 20), (180, 40, 20), (200, 40, 20), (220, 40, 20), (240, 40, 20), (260, 40, 20), (280, 40, 20), (300, 40, 20), (320, 40, 20), (340, 40, 20), (360, 40, 20), (380, 40, 20), (400, 40, 20), (420, 40, 20), (440, 40, 20), (460, 40, 20), (480, 40, 20), (500, 40, 20), (520, 40, 20), (540, 40, 20), (560, 40, 20), (580, 40, 20), (600, 40, 20), (620, 40, 20), (0, 60, 20), (20, 60, 20), (40, 60, 20), (60, 60, 20), (80, 60, 20), (100, 60, 20), (120, 60, 20), (140, 60, 20), (160, 60, 20), (180, 60, 20), (200, 60, 20), (220, 60, 20), (240, 60, 20), (260, 60, 20), (280, 60, 20), (300, 60, 20), (320, 60, 20), (340, 60, 20), (360, 60, 20), (380, 60, 20), (400, 60, 20), (420, 60, 20), (440, 60, 20), (460, 60, 20), (480, 60, 20), (500, 60, 20), (520, 60, 20), (540, 60, 20), (560, 60, 20), (580, 60, 20), (600, 60, 20), (620, 60, 20), (0, 80, 20), (20, 80, 20), (40, 80, 20), (60, 80, 20), (80, 80, 20), (100, 80, 20), (120, 80, 20), (140, 80, 20), (160, 80, 20), (180, 80, 20), (200, 80, 20), (220, 80, 20), (240, 80, 20), (260, 80, 20), (280, 80, 20), (300, 80, 20), (320, 80, 20), (340, 80, 20), (360, 80, 20), (380, 80, 20), (400, 80, 20), (420, 80, 20), (440, 80, 20), (460, 80, 20), (480, 80, 20), (500, 80, 20), (520, 80, 20), (540, 80, 20), (560, 80, 20), (580, 80, 20), (600, 80, 20), (620, 80, 20), (0, 100, 20), (20, 100, 20), (40, 100, 20), (60, 100, 20), (80, 100, 20), (100, 100, 20), (120, 100, 20), (140, 100, 20), (160, 100, 20), (180, 100, 20), (200, 100, 20), (220, 100, 20), (240, 100, 20), (260, 100, 20), (280, 100, 20), (300, 100, 20), (320, 100, 20), (340, 100, 20), (360, 100, 20), (380, 100, 20), (400, 100, 20), (420, 100, 20), (440, 100, 20), (460, 100, 20), (480, 100, 20), (500, 100, 20), (520, 100, 20), (540, 100, 20), (560, 100, 20), (580, 100, 20), (600, 100, 20), (620, 100, 20), (0, 120, 20), (20, 120, 20), (40, 120, 20), (60, 120, 20), (80, 120, 20), (100, 120, 20), (120, 120, 20), (140, 120, 20), (160, 120, 20), (180, 120, 20), (200, 120, 20), (220, 120, 20), (240, 120, 20), (260, 120, 20), (280, 120, 20), (300, 120, 20), (320, 120, 20), (340, 120, 20), (360, 120, 20), (380, 120, 20), (400, 120, 20), (420, 120, 20), (440, 120, 20), (460, 120, 20), (480, 120, 20), (500, 120, 20), (520, 120, 20), (540, 120, 20), (560, 120, 20), (580, 120, 20), (600, 120, 20), (620, 120, 20), (0, 140, 20), (20, 140, 20), (40, 140, 20), (60, 140, 20), (80, 140, 20), (100, 140, 20), (120, 140, 20), (140, 140, 20), (160, 140, 20), (180, 140, 20), (200, 140, 20), (220, 140, 20), (240, 140, 20), (260, 140, 20), (280, 140, 20), (300, 140, 20), (320, 140, 20), (340, 140, 20), (360, 140, 20), (380, 140, 20), (400, 140, 20), (420, 140, 20), (440, 140, 20), (460, 140, 20), (480, 140, 20), (500, 140, 20), (520, 140, 20), (540, 140, 20), (560, 140, 20), (580, 140, 20), (600, 140, 20), (620, 140, 20), (0, 160, 20), (20, 160, 20), (40, 160, 20), (60, 160, 20), (80, 160, 20), (100, 160, 20), (120, 160, 20), (140, 160, 20), (160, 160, 20), (180, 160, 20), (200, 160, 20), (220, 160, 20), (240, 160, 20), (260, 160, 20), (280, 160, 20), (300, 160, 20), (320, 160, 20), (340, 160, 20), (360, 160, 20), (380, 160, 20), (400, 160, 20), (420, 160, 20), (440, 160, 20), (460, 160, 20), (480, 160, 20), (500, 160, 20), (520, 160, 20), (540, 160, 20), (560, 160, 20), (580, 160, 20), (600, 160, 20), (620, 160, 20), (0, 180, 20), (20, 180, 20), (40, 180, 20), (60, 180, 20), (80, 180, 20), (100, 180, 20), (120, 180, 20), (140, 180, 20), (160, 180, 20), (180, 180, 20), (200, 180, 20), (220, 180, 20), (240, 180, 20), (260, 180, 20), (280, 180, 20), (300, 180, 20), (320, 180, 20), (340, 180, 20), (360, 180, 20), (380, 180, 20), (400, 180, 20), (420, 180, 20), (440, 180, 20), (460, 180, 20), (480, 180, 20), (500, 180, 20), (520, 180, 20), (540, 180, 20), (560, 180, 20), (580, 180, 20), (600, 180, 20), (620, 180, 20), (0, 200, 20), (20, 200, 20), (40, 200, 20), (60, 200, 20), (80, 200, 20), (100, 200, 20), (120, 200, 20), (140, 200, 20), (160, 200, 20), (180, 200, 20), (200, 200, 20), (220, 200, 20), (240, 200, 20), (260, 200, 20), (280, 200, 20), (300, 200, 20), (320, 200, 20), (340, 200, 20), (360, 200, 20), (380, 200, 20), (400, 200, 20), (420, 200, 20), (440, 200, 20), (460, 200, 20), (480, 200, 20), (500, 200, 20), (520, 200, 20), (540, 200, 20), (560, 200, 20), (580, 200, 20), (600, 200, 20), (620, 200, 20), (0, 220, 20), (20, 220, 20), (40, 220, 20), (60, 220, 20), (80, 220, 20), (100, 220, 20), (120, 220, 20), (140, 220, 20), (160, 220, 20), (180, 220, 20), (200, 220, 20), (220, 220, 20), (240, 220, 20), (260, 220, 20), (280, 220, 20), (300, 220, 20), (320, 220, 20), (340, 220, 20), (360, 220, 20), (380, 220, 20), (400, 220, 20), (420, 220, 20), (440, 220, 20), (460, 220, 20), (480, 220, 20), (500, 220, 20), (520, 220, 20), (540, 220, 20), (560, 220, 20), (580, 220, 20), (600, 220, 20), (620, 220, 20), (0, 240, 20), (20, 240, 20), (40, 240, 20), (60, 240, 20), (80, 240, 20), (100, 240, 20), (120, 240, 20), (140, 240, 20), (160, 240, 20), (180, 240, 20), (200, 240, 20), (220, 240, 20), (240, 240, 20), (260, 240, 20), (280, 240, 20), (300, 240, 20), (320, 240, 20), (340, 240, 20), (360, 240, 20), (380, 240, 20), (400, 240, 20), (420, 240, 20), (440, 240, 20), (460, 240, 20), (480, 240, 20), (500, 240, 20), (520, 240, 20), (540, 240, 20), (560, 240, 20), (580, 240, 20), (600, 240, 20), (620, 240, 20), (0, 260, 20), (20, 260, 20), (40, 260, 20), (60, 260, 20), (80, 260, 20), (100, 260, 20), (120, 260, 20), (140, 260, 20), (160, 260, 20), (180, 260, 20), (200, 260, 20), (220, 260, 20), (240, 260, 20), (260, 260, 20), (280, 260, 20), (300, 260, 20), (320, 260, 20), (340, 260, 20), (360, 260, 20), (380, 260, 20), (400, 260, 20), (420, 260, 20), (440, 260, 20), (460, 260, 20), (480, 260, 20), (500, 260, 20), (520, 260, 20), (540, 260, 20), (560, 260, 20), (580, 260, 20), (600, 260, 20), (620, 260, 20), (0, 280, 20), (20, 280, 20), (40, 280, 20), (60, 280, 20), (80, 280, 20), (100, 280, 20), (120, 280, 20), (140, 280, 20), (160, 280, 20), (180, 280, 20), (200, 280, 20), (220, 280, 20), (240, 280, 20), (260, 280, 20), (280, 280, 20), (300, 280, 20), (320, 280, 20), (340, 280, 20), (360, 280, 20), (380, 280, 20), (400, 280, 20), (420, 280, 20), (440, 280, 20), (460, 280, 20), (480, 280, 20), (500, 280, 20), (520, 280, 20), (540, 280, 20), (560, 280, 20), (580, 280, 20), (600, 280, 20), (620, 280, 20), (0, 300, 20), (20, 300, 20), (40, 300, 20), (60, 300, 20), (80, 300, 20), (100, 300, 20), (120, 300, 20), (140, 300, 20), (160, 300, 20), (180, 300, 20), (200, 300, 20), (220, 300, 20), (240, 300, 20), (260, 300, 20), (280, 300, 20), (300, 300, 20), (320, 300, 20), (340, 300, 20), (360, 300, 20), (380, 300, 20), (400, 300, 20), (420, 300, 20), (440, 300, 20), (460, 300, 20), (480, 300, 20), (500, 300, 20), (520, 300, 20), (540, 300, 20), (560, 300, 20), (580, 300, 20), (600, 300, 20), (620, 300, 20), (0, 320, 20), (20, 320, 20), (40, 320, 20), (60, 320, 20), (80, 320, 20), (100, 320, 20), (120, 320, 20), (140, 320, 20), (160, 320, 20), (180, 320, 20), (200, 320, 20), (220, 320, 20), (240, 320, 20), (260, 320, 20), (280, 320, 20), (300, 320, 20), (320, 320, 20), (340, 320, 20), (360, 320, 20), (380, 320, 20), (400, 320, 20), (420, 320, 20), (440, 320, 20), (460, 320, 20), (480, 320, 20), (500, 320, 20), (520, 320, 20), (540, 320, 20), (560, 320, 20), (580, 320, 20), (600, 320, 20), (620, 320, 20), (0, 340, 20), (20, 340, 20), (40, 340, 20), (60, 340, 20), (80, 340, 20), (100, 340, 20), (120, 340, 20), (140, 340, 20), (160, 340, 20), (180, 340, 20), (200, 340, 20), (220, 340, 20), (240, 340, 20), (260, 340, 20), (280, 340, 20), (300, 340, 20), (320, 340, 20), (340, 340, 20), (360, 340, 20), (380, 340, 20), (400, 340, 20), (420, 340, 20), (440, 340, 20), (460, 340, 20), (480, 340, 20), (500, 340, 20), (520, 340, 20), (540, 340, 20), (560, 340, 20), (580, 340, 20), (600, 340, 20), (620, 340, 20), (0, 360, 20), (20, 360, 20), (40, 360, 20), (60, 360, 20), (80, 360, 20), (100, 360, 20), (120, 360, 20), (140, 360, 20), (160, 360, 20), (180, 360, 20), (200, 360, 20), (220, 360, 20), (240, 360, 20), (260, 360, 20), (280, 360, 20), (300, 360, 20), (320, 360, 20), (340, 360, 20), (360, 360, 20), (380, 360, 20), (400, 360, 20), (420, 360, 20), (440, 360, 20), (460, 360, 20), (480, 360, 20), (500, 360, 20), (520, 360, 20), (540, 360, 20), (560, 360, 20), (580, 360, 20), (600, 360, 20), (620, 360, 20), (0, 380, 20), (20, 380, 20), (40, 380, 20), (60, 380, 20), (80, 380, 20), (100, 380, 20), (120, 380, 20), (140, 380, 20), (160, 380, 20), (180, 380, 20), (200, 380, 20), (220, 380, 20), (240, 380, 20), (260, 380, 20), (280, 380, 20), (300, 380, 20), (320, 380, 20), (340, 380, 20), (360, 380, 20), (380, 380, 20), (400, 380, 20), (420, 380, 20), (440, 380, 20), (460, 380, 20), (480, 380, 20), (500, 380, 20), (520, 380, 20), (540, 380, 20), (560, 380, 20), (580, 380, 20), (600, 380, 20), (620, 380, 20), (0, 400, 20), (20, 400, 20), (40, 400, 20), (60, 400, 20), (80, 400, 20), (100, 400, 20), (120, 400, 20), (140, 400, 20), (160, 400, 20), (180, 400, 20), (200, 400, 20), (220, 400, 20), (240, 400, 20), (260, 400, 20), (280, 400, 20), (300, 400, 20), (320, 400, 20), (340, 400, 20), (360, 400, 20), (380, 400, 20), (400, 400, 20), (420, 400, 20), (440, 400, 20), (460, 400, 20), (480, 400, 20), (500, 400, 20), (520, 400, 20), (540, 400, 20), (560, 400, 20), (580, 400, 20), (600, 400, 20), (620, 400, 20), (0, 420, 20), (20, 420, 20), (40, 420, 20), (60, 420, 20), (80, 420, 20), (100, 420, 20), (120, 420, 20), (140, 420, 20), (160, 420, 20), (180, 420, 20), (200, 420, 20), (220, 420, 20), (240, 420, 20), (260, 420, 20), (280, 420, 20), (300, 420, 20), (320, 420, 20), (340, 420, 20), (360, 420, 20), (380, 420, 20), (400, 420, 20), (420, 420, 20), (440, 420, 20), (460, 420, 20), (480, 420, 20), (500, 420, 20), (520, 420, 20), (540, 420, 20), (560, 420, 20), (580, 420, 20), (600, 420, 20), (620, 420, 20), (0, 440, 20), (20, 440, 20), (40, 440, 20), (60, 440, 20), (80, 440, 20), (100, 440, 20), (120, 440, 20), (140, 440, 20), (160, 440, 20), (180, 440, 20), (200, 440, 20), (220, 440, 20), (240, 440, 20), (260, 440, 20), (280, 440, 20), (300, 440, 20), (320, 440, 20), (340, 440, 20), (360, 440, 20), (380, 440, 20), (400, 440, 20), (420, 440, 20), (440, 440, 20), (460, 440, 20), (480, 440, 20), (500, 440, 20), (520, 440, 20), (540, 440, 20), (560, 440, 20), (580, 440, 20), (600, 440, 20), (620, 440, 20), (0, 460, 20), (20, 460, 20), (40, 460, 20), (60, 460, 20), (80, 460, 20), (100, 460, 20), (120, 460, 20), (140, 460, 20), (160, 460, 20), (180, 460, 20), (200, 460, 20), (220, 460, 20), (240, 460, 20), (260, 460, 20), (280, 460, 20), (300, 460, 20), (320, 460, 20), (340, 460, 20), (360, 460, 20), (380, 460, 20), (400, 460, 20), (420, 460, 20), (440, 460, 20), (460, 460, 20), (480, 460, 20), (500, 460, 20), (520, 460, 20), (540, 460, 20), (560, 460, 20), (580, 460, 20), (600, 460, 20), (620, 460, 20), (0, 480, 20), (20, 480, 20), (40, 480, 20), (60, 480, 20), (80, 480, 20), (100, 480, 20), (120, 480, 20), (140, 480, 20), (160, 480, 20), (180, 480, 20), (200, 480, 20), (220, 480, 20), (240, 480, 20), (260, 480, 20), (280, 480, 20), (300, 480, 20), (320, 480, 20), (340, 480, 20), (360, 480, 20), (380, 480, 20), (400, 480, 20), (420, 480, 20), (440, 480, 20), (460, 480, 20), (480, 480, 20), (500, 480, 20), (520, 480, 20), (540, 480, 20), (560, 480, 20), (580, 480, 20), (600, 480, 20), (620, 480, 20), (0, 500, 20), (20, 500, 20), (40, 500, 20), (60, 500, 20), (80, 500, 20), (100, 500, 20), (120, 500, 20), (140, 500, 20), (160, 500, 20), (180, 500, 20), (200, 500, 20), (220, 500, 20), (240, 500, 20), (260, 500, 20), (280, 500, 20), (300, 500, 20), (320, 500, 20), (340, 500, 20), (360, 500, 20), (380, 500, 20), (400, 500, 20), (420, 500, 20), (440, 500, 20), (460, 500, 20), (480, 500, 20), (500, 500, 20), (520, 500, 20), (540, 500, 20), (560, 500, 20), (580, 500, 20), (600, 500, 20), (620, 500, 20), (0, 520, 20), (20, 520, 20), (40, 520, 20), (60, 520, 20), (80, 520, 20), (100, 520, 20), (120, 520, 20), (140, 520, 20), (160, 520, 20), (180, 520, 20), (200, 520, 20), (220, 520, 20), (240, 520, 20), (260, 520, 20), (280, 520, 20), (300, 520, 20), (320, 520, 20), (340, 520, 20), (360, 520, 20), (380, 520, 20), (400, 520, 20), (420, 520, 20), (440, 520, 20), (460, 520, 20), (480, 520, 20), (500, 520, 20), (520, 520, 20), (540, 520, 20), (560, 520, 20), (580, 520, 20), (600, 520, 20), (620, 520, 20), (0, 540, 20), (20, 540, 20), (40, 540, 20), (60, 540, 20), (80, 540, 20), (100, 540, 20), (120, 540, 20), (140, 540, 20), (160, 540, 20), (180, 540, 20), (200, 540, 20), (220, 540, 20), (240, 540, 20), (260, 540, 20), (280, 540, 20), (300, 540, 20), (320, 540, 20), (340, 540, 20), (360, 540, 20), (380, 540, 20), (400, 540, 20), (420, 540, 20), (440, 540, 20), (460, 540, 20), (480, 540, 20), (500, 540, 20), (520, 540, 20), (540, 540, 20), (560, 540, 20), (580, 540, 20), (600, 540, 20), (620, 540, 20), (0, 560, 20), (20, 560, 20), (40, 560, 20), (60, 560, 20), (80, 560, 20), (100, 560, 20), (120, 560, 20), (140, 560, 20), (160, 560, 20), (180, 560, 20), (200, 560, 20), (220, 560, 20), (240, 560, 20), (260, 560, 20), (280, 560, 20), (300, 560, 20), (320, 560, 20), (340, 560, 20), (360, 560, 20), (380, 560, 20), (400, 560, 20), (420, 560, 20), (440, 560, 20), (460, 560, 20), (480, 560, 20), (500, 560, 20), (520, 560, 20), (540, 560, 20), (560, 560, 20), (580, 560, 20), (600, 560, 20), (620, 560, 20), (0, 580, 20), (20, 580, 20), (40, 580, 20), (60, 580, 20), (80, 580, 20), (100, 580, 20), (120, 580, 20), (140, 580, 20), (160, 580, 20), (180, 580, 20), (200, 580, 20), (220, 580, 20), (240, 580, 20), (260, 580, 20), (280, 580, 20), (300, 580, 20), (320, 580, 20), (340, 580, 20), (360, 580, 20), (380, 580, 20), (400, 580, 20), (420, 580, 20), (440, 580, 20), (460, 580, 20), (480, 580, 20), (500, 580, 20), (520, 580, 20), (540, 580, 20), (560, 580, 20), (580, 580, 20), (600, 580, 20), (620, 580, 20), (0, 600, 20), (20, 600, 20), (40, 600, 20), (60, 600, 20), (80, 600, 20), (100, 600, 20), (120, 600, 20), (140, 600, 20), (160, 600, 20), (180, 600, 20), (200, 600, 20), (220, 600, 20), (240, 600, 20), (260, 600, 20), (280, 600, 20), (300, 600, 20), (320, 600, 20), (340, 600, 20), (360, 600, 20), (380, 600, 20), (400, 600, 20), (420, 600, 20), (440, 600, 20), (460, 600, 20), (480, 600, 20), (500, 600, 20), (520, 600, 20), (540, 600, 20), (560, 600, 20), (580, 600, 20), (600, 600, 20), (620, 600, 20), (0, 620, 20), (20, 620, 20), (40, 620, 20), (60, 620, 20), (80, 620, 20), (100, 620, 20), (120, 620, 20), (140, 620, 20), (160, 620, 20), (180, 620, 20), (200, 620, 20), (220, 620, 20), (240, 620, 20), (260, 620, 20), (280, 620, 20), (300, 620, 20), (320, 620, 20), (340, 620, 20), (360, 620, 20), (380, 620, 20), (400, 620, 20), (420, 620, 20), (440, 620, 20), (460, 620, 20), (480, 620, 20), (500, 620, 20), (520, 620, 20), (540, 620, 20), (560, 620, 20), (580, 620, 20), (600, 620, 20), (620, 620, 20)] color3f[] primvars:displayColor = [(0.2784314, 0.64705884, 1)] } def ComputeNode "testDeformer" { custom token node:type = "omni.graph.examples.cpp.Deformer1" point3f[] inputs:points.connect = </defaultPrim/inputGrid.points> float inputs:multiplier = 3 float inputs:wavelength = 310 point3f[] outputs:points } def Mesh "outputGrid" { uniform bool doubleSided = 1 int[] faceVertexCounts = [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 1, 33, 0, 33, 32, 1, 2, 34, 1, 34, 33, 2, 3, 35, 2, 35, 34, 3, 4, 36, 3, 36, 35, 4, 5, 37, 4, 37, 36, 5, 6, 38, 5, 38, 37, 6, 7, 39, 6, 39, 38, 7, 8, 40, 7, 40, 39, 8, 9, 41, 8, 41, 40, 9, 10, 42, 9, 42, 41, 10, 11, 43, 10, 43, 42, 11, 12, 44, 11, 44, 43, 12, 13, 45, 12, 45, 44, 13, 14, 46, 13, 46, 45, 14, 15, 47, 14, 47, 46, 15, 16, 48, 15, 48, 47, 16, 17, 49, 16, 49, 48, 17, 18, 50, 17, 50, 49, 18, 19, 51, 18, 51, 50, 19, 20, 52, 19, 52, 51, 20, 21, 53, 20, 53, 52, 21, 22, 54, 21, 54, 53, 22, 23, 55, 22, 55, 54, 23, 24, 56, 23, 56, 55, 24, 25, 57, 24, 57, 56, 25, 26, 58, 25, 58, 57, 26, 27, 59, 26, 59, 58, 27, 28, 60, 27, 60, 59, 28, 29, 61, 28, 61, 60, 29, 30, 62, 29, 62, 61, 30, 31, 63, 30, 63, 62, 32, 33, 65, 32, 65, 64, 33, 34, 66, 33, 66, 65, 34, 35, 67, 34, 67, 66, 35, 36, 68, 35, 68, 67, 36, 37, 69, 36, 69, 68, 37, 38, 70, 37, 70, 69, 38, 39, 71, 38, 71, 70, 39, 40, 72, 39, 72, 71, 40, 41, 73, 40, 73, 72, 41, 42, 74, 41, 74, 73, 42, 43, 75, 42, 75, 74, 43, 44, 76, 43, 76, 75, 44, 45, 77, 44, 77, 76, 45, 46, 78, 45, 78, 77, 46, 47, 79, 46, 79, 78, 47, 48, 80, 47, 80, 79, 48, 49, 81, 48, 81, 80, 49, 50, 82, 49, 82, 81, 50, 51, 83, 50, 83, 82, 51, 52, 84, 51, 84, 83, 52, 53, 85, 52, 85, 84, 53, 54, 86, 53, 86, 85, 54, 55, 87, 54, 87, 86, 55, 56, 88, 55, 88, 87, 56, 57, 89, 56, 89, 88, 57, 58, 90, 57, 90, 89, 58, 59, 91, 58, 91, 90, 59, 60, 92, 59, 92, 91, 60, 61, 93, 60, 93, 92, 61, 62, 94, 61, 94, 93, 62, 63, 95, 62, 95, 94, 64, 65, 97, 64, 97, 96, 65, 66, 98, 65, 98, 97, 66, 67, 99, 66, 99, 98, 67, 68, 100, 67, 100, 99, 68, 69, 101, 68, 101, 100, 69, 70, 102, 69, 102, 101, 70, 71, 103, 70, 103, 102, 71, 72, 104, 71, 104, 103, 72, 73, 105, 72, 105, 104, 73, 74, 106, 73, 106, 105, 74, 75, 107, 74, 107, 106, 75, 76, 108, 75, 108, 107, 76, 77, 109, 76, 109, 108, 77, 78, 110, 77, 110, 109, 78, 79, 111, 78, 111, 110, 79, 80, 112, 79, 112, 111, 80, 81, 113, 80, 113, 112, 81, 82, 114, 81, 114, 113, 82, 83, 115, 82, 115, 114, 83, 84, 116, 83, 116, 115, 84, 85, 117, 84, 117, 116, 85, 86, 118, 85, 118, 117, 86, 87, 119, 86, 119, 118, 87, 88, 120, 87, 120, 119, 88, 89, 121, 88, 121, 120, 89, 90, 122, 89, 122, 121, 90, 91, 123, 90, 123, 122, 91, 92, 124, 91, 124, 123, 92, 93, 125, 92, 125, 124, 93, 94, 126, 93, 126, 125, 94, 95, 127, 94, 127, 126, 96, 97, 129, 96, 129, 128, 97, 98, 130, 97, 130, 129, 98, 99, 131, 98, 131, 130, 99, 100, 132, 99, 132, 131, 100, 101, 133, 100, 133, 132, 101, 102, 134, 101, 134, 133, 102, 103, 135, 102, 135, 134, 103, 104, 136, 103, 136, 135, 104, 105, 137, 104, 137, 136, 105, 106, 138, 105, 138, 137, 106, 107, 139, 106, 139, 138, 107, 108, 140, 107, 140, 139, 108, 109, 141, 108, 141, 140, 109, 110, 142, 109, 142, 141, 110, 111, 143, 110, 143, 142, 111, 112, 144, 111, 144, 143, 112, 113, 145, 112, 145, 144, 113, 114, 146, 113, 146, 145, 114, 115, 147, 114, 147, 146, 115, 116, 148, 115, 148, 147, 116, 117, 149, 116, 149, 148, 117, 118, 150, 117, 150, 149, 118, 119, 151, 118, 151, 150, 119, 120, 152, 119, 152, 151, 120, 121, 153, 120, 153, 152, 121, 122, 154, 121, 154, 153, 122, 123, 155, 122, 155, 154, 123, 124, 156, 123, 156, 155, 124, 125, 157, 124, 157, 156, 125, 126, 158, 125, 158, 157, 126, 127, 159, 126, 159, 158, 128, 129, 161, 128, 161, 160, 129, 130, 162, 129, 162, 161, 130, 131, 163, 130, 163, 162, 131, 132, 164, 131, 164, 163, 132, 133, 165, 132, 165, 164, 133, 134, 166, 133, 166, 165, 134, 135, 167, 134, 167, 166, 135, 136, 168, 135, 168, 167, 136, 137, 169, 136, 169, 168, 137, 138, 170, 137, 170, 169, 138, 139, 171, 138, 171, 170, 139, 140, 172, 139, 172, 171, 140, 141, 173, 140, 173, 172, 141, 142, 174, 141, 174, 173, 142, 143, 175, 142, 175, 174, 143, 144, 176, 143, 176, 175, 144, 145, 177, 144, 177, 176, 145, 146, 178, 145, 178, 177, 146, 147, 179, 146, 179, 178, 147, 148, 180, 147, 180, 179, 148, 149, 181, 148, 181, 180, 149, 150, 182, 149, 182, 181, 150, 151, 183, 150, 183, 182, 151, 152, 184, 151, 184, 183, 152, 153, 185, 152, 185, 184, 153, 154, 186, 153, 186, 185, 154, 155, 187, 154, 187, 186, 155, 156, 188, 155, 188, 187, 156, 157, 189, 156, 189, 188, 157, 158, 190, 157, 190, 189, 158, 159, 191, 158, 191, 190, 160, 161, 193, 160, 193, 192, 161, 162, 194, 161, 194, 193, 162, 163, 195, 162, 195, 194, 163, 164, 196, 163, 196, 195, 164, 165, 197, 164, 197, 196, 165, 166, 198, 165, 198, 197, 166, 167, 199, 166, 199, 198, 167, 168, 200, 167, 200, 199, 168, 169, 201, 168, 201, 200, 169, 170, 202, 169, 202, 201, 170, 171, 203, 170, 203, 202, 171, 172, 204, 171, 204, 203, 172, 173, 205, 172, 205, 204, 173, 174, 206, 173, 206, 205, 174, 175, 207, 174, 207, 206, 175, 176, 208, 175, 208, 207, 176, 177, 209, 176, 209, 208, 177, 178, 210, 177, 210, 209, 178, 179, 211, 178, 211, 210, 179, 180, 212, 179, 212, 211, 180, 181, 213, 180, 213, 212, 181, 182, 214, 181, 214, 213, 182, 183, 215, 182, 215, 214, 183, 184, 216, 183, 216, 215, 184, 185, 217, 184, 217, 216, 185, 186, 218, 185, 218, 217, 186, 187, 219, 186, 219, 218, 187, 188, 220, 187, 220, 219, 188, 189, 221, 188, 221, 220, 189, 190, 222, 189, 222, 221, 190, 191, 223, 190, 223, 222, 192, 193, 225, 192, 225, 224, 193, 194, 226, 193, 226, 225, 194, 195, 227, 194, 227, 226, 195, 196, 228, 195, 228, 227, 196, 197, 229, 196, 229, 228, 197, 198, 230, 197, 230, 229, 198, 199, 231, 198, 231, 230, 199, 200, 232, 199, 232, 231, 200, 201, 233, 200, 233, 232, 201, 202, 234, 201, 234, 233, 202, 203, 235, 202, 235, 234, 203, 204, 236, 203, 236, 235, 204, 205, 237, 204, 237, 236, 205, 206, 238, 205, 238, 237, 206, 207, 239, 206, 239, 238, 207, 208, 240, 207, 240, 239, 208, 209, 241, 208, 241, 240, 209, 210, 242, 209, 242, 241, 210, 211, 243, 210, 243, 242, 211, 212, 244, 211, 244, 243, 212, 213, 245, 212, 245, 244, 213, 214, 246, 213, 246, 245, 214, 215, 247, 214, 247, 246, 215, 216, 248, 215, 248, 247, 216, 217, 249, 216, 249, 248, 217, 218, 250, 217, 250, 249, 218, 219, 251, 218, 251, 250, 219, 220, 252, 219, 252, 251, 220, 221, 253, 220, 253, 252, 221, 222, 254, 221, 254, 253, 222, 223, 255, 222, 255, 254, 224, 225, 257, 224, 257, 256, 225, 226, 258, 225, 258, 257, 226, 227, 259, 226, 259, 258, 227, 228, 260, 227, 260, 259, 228, 229, 261, 228, 261, 260, 229, 230, 262, 229, 262, 261, 230, 231, 263, 230, 263, 262, 231, 232, 264, 231, 264, 263, 232, 233, 265, 232, 265, 264, 233, 234, 266, 233, 266, 265, 234, 235, 267, 234, 267, 266, 235, 236, 268, 235, 268, 267, 236, 237, 269, 236, 269, 268, 237, 238, 270, 237, 270, 269, 238, 239, 271, 238, 271, 270, 239, 240, 272, 239, 272, 271, 240, 241, 273, 240, 273, 272, 241, 242, 274, 241, 274, 273, 242, 243, 275, 242, 275, 274, 243, 244, 276, 243, 276, 275, 244, 245, 277, 244, 277, 276, 245, 246, 278, 245, 278, 277, 246, 247, 279, 246, 279, 278, 247, 248, 280, 247, 280, 279, 248, 249, 281, 248, 281, 280, 249, 250, 282, 249, 282, 281, 250, 251, 283, 250, 283, 282, 251, 252, 284, 251, 284, 283, 252, 253, 285, 252, 285, 284, 253, 254, 286, 253, 286, 285, 254, 255, 287, 254, 287, 286, 256, 257, 289, 256, 289, 288, 257, 258, 290, 257, 290, 289, 258, 259, 291, 258, 291, 290, 259, 260, 292, 259, 292, 291, 260, 261, 293, 260, 293, 292, 261, 262, 294, 261, 294, 293, 262, 263, 295, 262, 295, 294, 263, 264, 296, 263, 296, 295, 264, 265, 297, 264, 297, 296, 265, 266, 298, 265, 298, 297, 266, 267, 299, 266, 299, 298, 267, 268, 300, 267, 300, 299, 268, 269, 301, 268, 301, 300, 269, 270, 302, 269, 302, 301, 270, 271, 303, 270, 303, 302, 271, 272, 304, 271, 304, 303, 272, 273, 305, 272, 305, 304, 273, 274, 306, 273, 306, 305, 274, 275, 307, 274, 307, 306, 275, 276, 308, 275, 308, 307, 276, 277, 309, 276, 309, 308, 277, 278, 310, 277, 310, 309, 278, 279, 311, 278, 311, 310, 279, 280, 312, 279, 312, 311, 280, 281, 313, 280, 313, 312, 281, 282, 314, 281, 314, 313, 282, 283, 315, 282, 315, 314, 283, 284, 316, 283, 316, 315, 284, 285, 317, 284, 317, 316, 285, 286, 318, 285, 318, 317, 286, 287, 319, 286, 319, 318, 288, 289, 321, 288, 321, 320, 289, 290, 322, 289, 322, 321, 290, 291, 323, 290, 323, 322, 291, 292, 324, 291, 324, 323, 292, 293, 325, 292, 325, 324, 293, 294, 326, 293, 326, 325, 294, 295, 327, 294, 327, 326, 295, 296, 328, 295, 328, 327, 296, 297, 329, 296, 329, 328, 297, 298, 330, 297, 330, 329, 298, 299, 331, 298, 331, 330, 299, 300, 332, 299, 332, 331, 300, 301, 333, 300, 333, 332, 301, 302, 334, 301, 334, 333, 302, 303, 335, 302, 335, 334, 303, 304, 336, 303, 336, 335, 304, 305, 337, 304, 337, 336, 305, 306, 338, 305, 338, 337, 306, 307, 339, 306, 339, 338, 307, 308, 340, 307, 340, 339, 308, 309, 341, 308, 341, 340, 309, 310, 342, 309, 342, 341, 310, 311, 343, 310, 343, 342, 311, 312, 344, 311, 344, 343, 312, 313, 345, 312, 345, 344, 313, 314, 346, 313, 346, 345, 314, 315, 347, 314, 347, 346, 315, 316, 348, 315, 348, 347, 316, 317, 349, 316, 349, 348, 317, 318, 350, 317, 350, 349, 318, 319, 351, 318, 351, 350, 320, 321, 353, 320, 353, 352, 321, 322, 354, 321, 354, 353, 322, 323, 355, 322, 355, 354, 323, 324, 356, 323, 356, 355, 324, 325, 357, 324, 357, 356, 325, 326, 358, 325, 358, 357, 326, 327, 359, 326, 359, 358, 327, 328, 360, 327, 360, 359, 328, 329, 361, 328, 361, 360, 329, 330, 362, 329, 362, 361, 330, 331, 363, 330, 363, 362, 331, 332, 364, 331, 364, 363, 332, 333, 365, 332, 365, 364, 333, 334, 366, 333, 366, 365, 334, 335, 367, 334, 367, 366, 335, 336, 368, 335, 368, 367, 336, 337, 369, 336, 369, 368, 337, 338, 370, 337, 370, 369, 338, 339, 371, 338, 371, 370, 339, 340, 372, 339, 372, 371, 340, 341, 373, 340, 373, 372, 341, 342, 374, 341, 374, 373, 342, 343, 375, 342, 375, 374, 343, 344, 376, 343, 376, 375, 344, 345, 377, 344, 377, 376, 345, 346, 378, 345, 378, 377, 346, 347, 379, 346, 379, 378, 347, 348, 380, 347, 380, 379, 348, 349, 381, 348, 381, 380, 349, 350, 382, 349, 382, 381, 350, 351, 383, 350, 383, 382, 352, 353, 385, 352, 385, 384, 353, 354, 386, 353, 386, 385, 354, 355, 387, 354, 387, 386, 355, 356, 388, 355, 388, 387, 356, 357, 389, 356, 389, 388, 357, 358, 390, 357, 390, 389, 358, 359, 391, 358, 391, 390, 359, 360, 392, 359, 392, 391, 360, 361, 393, 360, 393, 392, 361, 362, 394, 361, 394, 393, 362, 363, 395, 362, 395, 394, 363, 364, 396, 363, 396, 395, 364, 365, 397, 364, 397, 396, 365, 366, 398, 365, 398, 397, 366, 367, 399, 366, 399, 398, 367, 368, 400, 367, 400, 399, 368, 369, 401, 368, 401, 400, 369, 370, 402, 369, 402, 401, 370, 371, 403, 370, 403, 402, 371, 372, 404, 371, 404, 403, 372, 373, 405, 372, 405, 404, 373, 374, 406, 373, 406, 405, 374, 375, 407, 374, 407, 406, 375, 376, 408, 375, 408, 407, 376, 377, 409, 376, 409, 408, 377, 378, 410, 377, 410, 409, 378, 379, 411, 378, 411, 410, 379, 380, 412, 379, 412, 411, 380, 381, 413, 380, 413, 412, 381, 382, 414, 381, 414, 413, 382, 383, 415, 382, 415, 414, 384, 385, 417, 384, 417, 416, 385, 386, 418, 385, 418, 417, 386, 387, 419, 386, 419, 418, 387, 388, 420, 387, 420, 419, 388, 389, 421, 388, 421, 420, 389, 390, 422, 389, 422, 421, 390, 391, 423, 390, 423, 422, 391, 392, 424, 391, 424, 423, 392, 393, 425, 392, 425, 424, 393, 394, 426, 393, 426, 425, 394, 395, 427, 394, 427, 426, 395, 396, 428, 395, 428, 427, 396, 397, 429, 396, 429, 428, 397, 398, 430, 397, 430, 429, 398, 399, 431, 398, 431, 430, 399, 400, 432, 399, 432, 431, 400, 401, 433, 400, 433, 432, 401, 402, 434, 401, 434, 433, 402, 403, 435, 402, 435, 434, 403, 404, 436, 403, 436, 435, 404, 405, 437, 404, 437, 436, 405, 406, 438, 405, 438, 437, 406, 407, 439, 406, 439, 438, 407, 408, 440, 407, 440, 439, 408, 409, 441, 408, 441, 440, 409, 410, 442, 409, 442, 441, 410, 411, 443, 410, 443, 442, 411, 412, 444, 411, 444, 443, 412, 413, 445, 412, 445, 444, 413, 414, 446, 413, 446, 445, 414, 415, 447, 414, 447, 446, 416, 417, 449, 416, 449, 448, 417, 418, 450, 417, 450, 449, 418, 419, 451, 418, 451, 450, 419, 420, 452, 419, 452, 451, 420, 421, 453, 420, 453, 452, 421, 422, 454, 421, 454, 453, 422, 423, 455, 422, 455, 454, 423, 424, 456, 423, 456, 455, 424, 425, 457, 424, 457, 456, 425, 426, 458, 425, 458, 457, 426, 427, 459, 426, 459, 458, 427, 428, 460, 427, 460, 459, 428, 429, 461, 428, 461, 460, 429, 430, 462, 429, 462, 461, 430, 431, 463, 430, 463, 462, 431, 432, 464, 431, 464, 463, 432, 433, 465, 432, 465, 464, 433, 434, 466, 433, 466, 465, 434, 435, 467, 434, 467, 466, 435, 436, 468, 435, 468, 467, 436, 437, 469, 436, 469, 468, 437, 438, 470, 437, 470, 469, 438, 439, 471, 438, 471, 470, 439, 440, 472, 439, 472, 471, 440, 441, 473, 440, 473, 472, 441, 442, 474, 441, 474, 473, 442, 443, 475, 442, 475, 474, 443, 444, 476, 443, 476, 475, 444, 445, 477, 444, 477, 476, 445, 446, 478, 445, 478, 477, 446, 447, 479, 446, 479, 478, 448, 449, 481, 448, 481, 480, 449, 450, 482, 449, 482, 481, 450, 451, 483, 450, 483, 482, 451, 452, 484, 451, 484, 483, 452, 453, 485, 452, 485, 484, 453, 454, 486, 453, 486, 485, 454, 455, 487, 454, 487, 486, 455, 456, 488, 455, 488, 487, 456, 457, 489, 456, 489, 488, 457, 458, 490, 457, 490, 489, 458, 459, 491, 458, 491, 490, 459, 460, 492, 459, 492, 491, 460, 461, 493, 460, 493, 492, 461, 462, 494, 461, 494, 493, 462, 463, 495, 462, 495, 494, 463, 464, 496, 463, 496, 495, 464, 465, 497, 464, 497, 496, 465, 466, 498, 465, 498, 497, 466, 467, 499, 466, 499, 498, 467, 468, 500, 467, 500, 499, 468, 469, 501, 468, 501, 500, 469, 470, 502, 469, 502, 501, 470, 471, 503, 470, 503, 502, 471, 472, 504, 471, 504, 503, 472, 473, 505, 472, 505, 504, 473, 474, 506, 473, 506, 505, 474, 475, 507, 474, 507, 506, 475, 476, 508, 475, 508, 507, 476, 477, 509, 476, 509, 508, 477, 478, 510, 477, 510, 509, 478, 479, 511, 478, 511, 510, 480, 481, 513, 480, 513, 512, 481, 482, 514, 481, 514, 513, 482, 483, 515, 482, 515, 514, 483, 484, 516, 483, 516, 515, 484, 485, 517, 484, 517, 516, 485, 486, 518, 485, 518, 517, 486, 487, 519, 486, 519, 518, 487, 488, 520, 487, 520, 519, 488, 489, 521, 488, 521, 520, 489, 490, 522, 489, 522, 521, 490, 491, 523, 490, 523, 522, 491, 492, 524, 491, 524, 523, 492, 493, 525, 492, 525, 524, 493, 494, 526, 493, 526, 525, 494, 495, 527, 494, 527, 526, 495, 496, 528, 495, 528, 527, 496, 497, 529, 496, 529, 528, 497, 498, 530, 497, 530, 529, 498, 499, 531, 498, 531, 530, 499, 500, 532, 499, 532, 531, 500, 501, 533, 500, 533, 532, 501, 502, 534, 501, 534, 533, 502, 503, 535, 502, 535, 534, 503, 504, 536, 503, 536, 535, 504, 505, 537, 504, 537, 536, 505, 506, 538, 505, 538, 537, 506, 507, 539, 506, 539, 538, 507, 508, 540, 507, 540, 539, 508, 509, 541, 508, 541, 540, 509, 510, 542, 509, 542, 541, 510, 511, 543, 510, 543, 542, 512, 513, 545, 512, 545, 544, 513, 514, 546, 513, 546, 545, 514, 515, 547, 514, 547, 546, 515, 516, 548, 515, 548, 547, 516, 517, 549, 516, 549, 548, 517, 518, 550, 517, 550, 549, 518, 519, 551, 518, 551, 550, 519, 520, 552, 519, 552, 551, 520, 521, 553, 520, 553, 552, 521, 522, 554, 521, 554, 553, 522, 523, 555, 522, 555, 554, 523, 524, 556, 523, 556, 555, 524, 525, 557, 524, 557, 556, 525, 526, 558, 525, 558, 557, 526, 527, 559, 526, 559, 558, 527, 528, 560, 527, 560, 559, 528, 529, 561, 528, 561, 560, 529, 530, 562, 529, 562, 561, 530, 531, 563, 530, 563, 562, 531, 532, 564, 531, 564, 563, 532, 533, 565, 532, 565, 564, 533, 534, 566, 533, 566, 565, 534, 535, 567, 534, 567, 566, 535, 536, 568, 535, 568, 567, 536, 537, 569, 536, 569, 568, 537, 538, 570, 537, 570, 569, 538, 539, 571, 538, 571, 570, 539, 540, 572, 539, 572, 571, 540, 541, 573, 540, 573, 572, 541, 542, 574, 541, 574, 573, 542, 543, 575, 542, 575, 574, 544, 545, 577, 544, 577, 576, 545, 546, 578, 545, 578, 577, 546, 547, 579, 546, 579, 578, 547, 548, 580, 547, 580, 579, 548, 549, 581, 548, 581, 580, 549, 550, 582, 549, 582, 581, 550, 551, 583, 550, 583, 582, 551, 552, 584, 551, 584, 583, 552, 553, 585, 552, 585, 584, 553, 554, 586, 553, 586, 585, 554, 555, 587, 554, 587, 586, 555, 556, 588, 555, 588, 587, 556, 557, 589, 556, 589, 588, 557, 558, 590, 557, 590, 589, 558, 559, 591, 558, 591, 590, 559, 560, 592, 559, 592, 591, 560, 561, 593, 560, 593, 592, 561, 562, 594, 561, 594, 593, 562, 563, 595, 562, 595, 594, 563, 564, 596, 563, 596, 595, 564, 565, 597, 564, 597, 596, 565, 566, 598, 565, 598, 597, 566, 567, 599, 566, 599, 598, 567, 568, 600, 567, 600, 599, 568, 569, 601, 568, 601, 600, 569, 570, 602, 569, 602, 601, 570, 571, 603, 570, 603, 602, 571, 572, 604, 571, 604, 603, 572, 573, 605, 572, 605, 604, 573, 574, 606, 573, 606, 605, 574, 575, 607, 574, 607, 606, 576, 577, 609, 576, 609, 608, 577, 578, 610, 577, 610, 609, 578, 579, 611, 578, 611, 610, 579, 580, 612, 579, 612, 611, 580, 581, 613, 580, 613, 612, 581, 582, 614, 581, 614, 613, 582, 583, 615, 582, 615, 614, 583, 584, 616, 583, 616, 615, 584, 585, 617, 584, 617, 616, 585, 586, 618, 585, 618, 617, 586, 587, 619, 586, 619, 618, 587, 588, 620, 587, 620, 619, 588, 589, 621, 588, 621, 620, 589, 590, 622, 589, 622, 621, 590, 591, 623, 590, 623, 622, 591, 592, 624, 591, 624, 623, 592, 593, 625, 592, 625, 624, 593, 594, 626, 593, 626, 625, 594, 595, 627, 594, 627, 626, 595, 596, 628, 595, 628, 627, 596, 597, 629, 596, 629, 628, 597, 598, 630, 597, 630, 629, 598, 599, 631, 598, 631, 630, 599, 600, 632, 599, 632, 631, 600, 601, 633, 600, 633, 632, 601, 602, 634, 601, 634, 633, 602, 603, 635, 602, 635, 634, 603, 604, 636, 603, 636, 635, 604, 605, 637, 604, 637, 636, 605, 606, 638, 605, 638, 637, 606, 607, 639, 606, 639, 638, 608, 609, 641, 608, 641, 640, 609, 610, 642, 609, 642, 641, 610, 611, 643, 610, 643, 642, 611, 612, 644, 611, 644, 643, 612, 613, 645, 612, 645, 644, 613, 614, 646, 613, 646, 645, 614, 615, 647, 614, 647, 646, 615, 616, 648, 615, 648, 647, 616, 617, 649, 616, 649, 648, 617, 618, 650, 617, 650, 649, 618, 619, 651, 618, 651, 650, 619, 620, 652, 619, 652, 651, 620, 621, 653, 620, 653, 652, 621, 622, 654, 621, 654, 653, 622, 623, 655, 622, 655, 654, 623, 624, 656, 623, 656, 655, 624, 625, 657, 624, 657, 656, 625, 626, 658, 625, 658, 657, 626, 627, 659, 626, 659, 658, 627, 628, 660, 627, 660, 659, 628, 629, 661, 628, 661, 660, 629, 630, 662, 629, 662, 661, 630, 631, 663, 630, 663, 662, 631, 632, 664, 631, 664, 663, 632, 633, 665, 632, 665, 664, 633, 634, 666, 633, 666, 665, 634, 635, 667, 634, 667, 666, 635, 636, 668, 635, 668, 667, 636, 637, 669, 636, 669, 668, 637, 638, 670, 637, 670, 669, 638, 639, 671, 638, 671, 670, 640, 641, 673, 640, 673, 672, 641, 642, 674, 641, 674, 673, 642, 643, 675, 642, 675, 674, 643, 644, 676, 643, 676, 675, 644, 645, 677, 644, 677, 676, 645, 646, 678, 645, 678, 677, 646, 647, 679, 646, 679, 678, 647, 648, 680, 647, 680, 679, 648, 649, 681, 648, 681, 680, 649, 650, 682, 649, 682, 681, 650, 651, 683, 650, 683, 682, 651, 652, 684, 651, 684, 683, 652, 653, 685, 652, 685, 684, 653, 654, 686, 653, 686, 685, 654, 655, 687, 654, 687, 686, 655, 656, 688, 655, 688, 687, 656, 657, 689, 656, 689, 688, 657, 658, 690, 657, 690, 689, 658, 659, 691, 658, 691, 690, 659, 660, 692, 659, 692, 691, 660, 661, 693, 660, 693, 692, 661, 662, 694, 661, 694, 693, 662, 663, 695, 662, 695, 694, 663, 664, 696, 663, 696, 695, 664, 665, 697, 664, 697, 696, 665, 666, 698, 665, 698, 697, 666, 667, 699, 666, 699, 698, 667, 668, 700, 667, 700, 699, 668, 669, 701, 668, 701, 700, 669, 670, 702, 669, 702, 701, 670, 671, 703, 670, 703, 702, 672, 673, 705, 672, 705, 704, 673, 674, 706, 673, 706, 705, 674, 675, 707, 674, 707, 706, 675, 676, 708, 675, 708, 707, 676, 677, 709, 676, 709, 708, 677, 678, 710, 677, 710, 709, 678, 679, 711, 678, 711, 710, 679, 680, 712, 679, 712, 711, 680, 681, 713, 680, 713, 712, 681, 682, 714, 681, 714, 713, 682, 683, 715, 682, 715, 714, 683, 684, 716, 683, 716, 715, 684, 685, 717, 684, 717, 716, 685, 686, 718, 685, 718, 717, 686, 687, 719, 686, 719, 718, 687, 688, 720, 687, 720, 719, 688, 689, 721, 688, 721, 720, 689, 690, 722, 689, 722, 721, 690, 691, 723, 690, 723, 722, 691, 692, 724, 691, 724, 723, 692, 693, 725, 692, 725, 724, 693, 694, 726, 693, 726, 725, 694, 695, 727, 694, 727, 726, 695, 696, 728, 695, 728, 727, 696, 697, 729, 696, 729, 728, 697, 698, 730, 697, 730, 729, 698, 699, 731, 698, 731, 730, 699, 700, 732, 699, 732, 731, 700, 701, 733, 700, 733, 732, 701, 702, 734, 701, 734, 733, 702, 703, 735, 702, 735, 734, 704, 705, 737, 704, 737, 736, 705, 706, 738, 705, 738, 737, 706, 707, 739, 706, 739, 738, 707, 708, 740, 707, 740, 739, 708, 709, 741, 708, 741, 740, 709, 710, 742, 709, 742, 741, 710, 711, 743, 710, 743, 742, 711, 712, 744, 711, 744, 743, 712, 713, 745, 712, 745, 744, 713, 714, 746, 713, 746, 745, 714, 715, 747, 714, 747, 746, 715, 716, 748, 715, 748, 747, 716, 717, 749, 716, 749, 748, 717, 718, 750, 717, 750, 749, 718, 719, 751, 718, 751, 750, 719, 720, 752, 719, 752, 751, 720, 721, 753, 720, 753, 752, 721, 722, 754, 721, 754, 753, 722, 723, 755, 722, 755, 754, 723, 724, 756, 723, 756, 755, 724, 725, 757, 724, 757, 756, 725, 726, 758, 725, 758, 757, 726, 727, 759, 726, 759, 758, 727, 728, 760, 727, 760, 759, 728, 729, 761, 728, 761, 760, 729, 730, 762, 729, 762, 761, 730, 731, 763, 730, 763, 762, 731, 732, 764, 731, 764, 763, 732, 733, 765, 732, 765, 764, 733, 734, 766, 733, 766, 765, 734, 735, 767, 734, 767, 766, 736, 737, 769, 736, 769, 768, 737, 738, 770, 737, 770, 769, 738, 739, 771, 738, 771, 770, 739, 740, 772, 739, 772, 771, 740, 741, 773, 740, 773, 772, 741, 742, 774, 741, 774, 773, 742, 743, 775, 742, 775, 774, 743, 744, 776, 743, 776, 775, 744, 745, 777, 744, 777, 776, 745, 746, 778, 745, 778, 777, 746, 747, 779, 746, 779, 778, 747, 748, 780, 747, 780, 779, 748, 749, 781, 748, 781, 780, 749, 750, 782, 749, 782, 781, 750, 751, 783, 750, 783, 782, 751, 752, 784, 751, 784, 783, 752, 753, 785, 752, 785, 784, 753, 754, 786, 753, 786, 785, 754, 755, 787, 754, 787, 786, 755, 756, 788, 755, 788, 787, 756, 757, 789, 756, 789, 788, 757, 758, 790, 757, 790, 789, 758, 759, 791, 758, 791, 790, 759, 760, 792, 759, 792, 791, 760, 761, 793, 760, 793, 792, 761, 762, 794, 761, 794, 793, 762, 763, 795, 762, 795, 794, 763, 764, 796, 763, 796, 795, 764, 765, 797, 764, 797, 796, 765, 766, 798, 765, 798, 797, 766, 767, 799, 766, 799, 798, 768, 769, 801, 768, 801, 800, 769, 770, 802, 769, 802, 801, 770, 771, 803, 770, 803, 802, 771, 772, 804, 771, 804, 803, 772, 773, 805, 772, 805, 804, 773, 774, 806, 773, 806, 805, 774, 775, 807, 774, 807, 806, 775, 776, 808, 775, 808, 807, 776, 777, 809, 776, 809, 808, 777, 778, 810, 777, 810, 809, 778, 779, 811, 778, 811, 810, 779, 780, 812, 779, 812, 811, 780, 781, 813, 780, 813, 812, 781, 782, 814, 781, 814, 813, 782, 783, 815, 782, 815, 814, 783, 784, 816, 783, 816, 815, 784, 785, 817, 784, 817, 816, 785, 786, 818, 785, 818, 817, 786, 787, 819, 786, 819, 818, 787, 788, 820, 787, 820, 819, 788, 789, 821, 788, 821, 820, 789, 790, 822, 789, 822, 821, 790, 791, 823, 790, 823, 822, 791, 792, 824, 791, 824, 823, 792, 793, 825, 792, 825, 824, 793, 794, 826, 793, 826, 825, 794, 795, 827, 794, 827, 826, 795, 796, 828, 795, 828, 827, 796, 797, 829, 796, 829, 828, 797, 798, 830, 797, 830, 829, 798, 799, 831, 798, 831, 830, 800, 801, 833, 800, 833, 832, 801, 802, 834, 801, 834, 833, 802, 803, 835, 802, 835, 834, 803, 804, 836, 803, 836, 835, 804, 805, 837, 804, 837, 836, 805, 806, 838, 805, 838, 837, 806, 807, 839, 806, 839, 838, 807, 808, 840, 807, 840, 839, 808, 809, 841, 808, 841, 840, 809, 810, 842, 809, 842, 841, 810, 811, 843, 810, 843, 842, 811, 812, 844, 811, 844, 843, 812, 813, 845, 812, 845, 844, 813, 814, 846, 813, 846, 845, 814, 815, 847, 814, 847, 846, 815, 816, 848, 815, 848, 847, 816, 817, 849, 816, 849, 848, 817, 818, 850, 817, 850, 849, 818, 819, 851, 818, 851, 850, 819, 820, 852, 819, 852, 851, 820, 821, 853, 820, 853, 852, 821, 822, 854, 821, 854, 853, 822, 823, 855, 822, 855, 854, 823, 824, 856, 823, 856, 855, 824, 825, 857, 824, 857, 856, 825, 826, 858, 825, 858, 857, 826, 827, 859, 826, 859, 858, 827, 828, 860, 827, 860, 859, 828, 829, 861, 828, 861, 860, 829, 830, 862, 829, 862, 861, 830, 831, 863, 830, 863, 862, 832, 833, 865, 832, 865, 864, 833, 834, 866, 833, 866, 865, 834, 835, 867, 834, 867, 866, 835, 836, 868, 835, 868, 867, 836, 837, 869, 836, 869, 868, 837, 838, 870, 837, 870, 869, 838, 839, 871, 838, 871, 870, 839, 840, 872, 839, 872, 871, 840, 841, 873, 840, 873, 872, 841, 842, 874, 841, 874, 873, 842, 843, 875, 842, 875, 874, 843, 844, 876, 843, 876, 875, 844, 845, 877, 844, 877, 876, 845, 846, 878, 845, 878, 877, 846, 847, 879, 846, 879, 878, 847, 848, 880, 847, 880, 879, 848, 849, 881, 848, 881, 880, 849, 850, 882, 849, 882, 881, 850, 851, 883, 850, 883, 882, 851, 852, 884, 851, 884, 883, 852, 853, 885, 852, 885, 884, 853, 854, 886, 853, 886, 885, 854, 855, 887, 854, 887, 886, 855, 856, 888, 855, 888, 887, 856, 857, 889, 856, 889, 888, 857, 858, 890, 857, 890, 889, 858, 859, 891, 858, 891, 890, 859, 860, 892, 859, 892, 891, 860, 861, 893, 860, 893, 892, 861, 862, 894, 861, 894, 893, 862, 863, 895, 862, 895, 894, 864, 865, 897, 864, 897, 896, 865, 866, 898, 865, 898, 897, 866, 867, 899, 866, 899, 898, 867, 868, 900, 867, 900, 899, 868, 869, 901, 868, 901, 900, 869, 870, 902, 869, 902, 901, 870, 871, 903, 870, 903, 902, 871, 872, 904, 871, 904, 903, 872, 873, 905, 872, 905, 904, 873, 874, 906, 873, 906, 905, 874, 875, 907, 874, 907, 906, 875, 876, 908, 875, 908, 907, 876, 877, 909, 876, 909, 908, 877, 878, 910, 877, 910, 909, 878, 879, 911, 878, 911, 910, 879, 880, 912, 879, 912, 911, 880, 881, 913, 880, 913, 912, 881, 882, 914, 881, 914, 913, 882, 883, 915, 882, 915, 914, 883, 884, 916, 883, 916, 915, 884, 885, 917, 884, 917, 916, 885, 886, 918, 885, 918, 917, 886, 887, 919, 886, 919, 918, 887, 888, 920, 887, 920, 919, 888, 889, 921, 888, 921, 920, 889, 890, 922, 889, 922, 921, 890, 891, 923, 890, 923, 922, 891, 892, 924, 891, 924, 923, 892, 893, 925, 892, 925, 924, 893, 894, 926, 893, 926, 925, 894, 895, 927, 894, 927, 926, 896, 897, 929, 896, 929, 928, 897, 898, 930, 897, 930, 929, 898, 899, 931, 898, 931, 930, 899, 900, 932, 899, 932, 931, 900, 901, 933, 900, 933, 932, 901, 902, 934, 901, 934, 933, 902, 903, 935, 902, 935, 934, 903, 904, 936, 903, 936, 935, 904, 905, 937, 904, 937, 936, 905, 906, 938, 905, 938, 937, 906, 907, 939, 906, 939, 938, 907, 908, 940, 907, 940, 939, 908, 909, 941, 908, 941, 940, 909, 910, 942, 909, 942, 941, 910, 911, 943, 910, 943, 942, 911, 912, 944, 911, 944, 943, 912, 913, 945, 912, 945, 944, 913, 914, 946, 913, 946, 945, 914, 915, 947, 914, 947, 946, 915, 916, 948, 915, 948, 947, 916, 917, 949, 916, 949, 948, 917, 918, 950, 917, 950, 949, 918, 919, 951, 918, 951, 950, 919, 920, 952, 919, 952, 951, 920, 921, 953, 920, 953, 952, 921, 922, 954, 921, 954, 953, 922, 923, 955, 922, 955, 954, 923, 924, 956, 923, 956, 955, 924, 925, 957, 924, 957, 956, 925, 926, 958, 925, 958, 957, 926, 927, 959, 926, 959, 958, 928, 929, 961, 928, 961, 960, 929, 930, 962, 929, 962, 961, 930, 931, 963, 930, 963, 962, 931, 932, 964, 931, 964, 963, 932, 933, 965, 932, 965, 964, 933, 934, 966, 933, 966, 965, 934, 935, 967, 934, 967, 966, 935, 936, 968, 935, 968, 967, 936, 937, 969, 936, 969, 968, 937, 938, 970, 937, 970, 969, 938, 939, 971, 938, 971, 970, 939, 940, 972, 939, 972, 971, 940, 941, 973, 940, 973, 972, 941, 942, 974, 941, 974, 973, 942, 943, 975, 942, 975, 974, 943, 944, 976, 943, 976, 975, 944, 945, 977, 944, 977, 976, 945, 946, 978, 945, 978, 977, 946, 947, 979, 946, 979, 978, 947, 948, 980, 947, 980, 979, 948, 949, 981, 948, 981, 980, 949, 950, 982, 949, 982, 981, 950, 951, 983, 950, 983, 982, 951, 952, 984, 951, 984, 983, 952, 953, 985, 952, 985, 984, 953, 954, 986, 953, 986, 985, 954, 955, 987, 954, 987, 986, 955, 956, 988, 955, 988, 987, 956, 957, 989, 956, 989, 988, 957, 958, 990, 957, 990, 989, 958, 959, 991, 958, 991, 990, 960, 961, 993, 960, 993, 992, 961, 962, 994, 961, 994, 993, 962, 963, 995, 962, 995, 994, 963, 964, 996, 963, 996, 995, 964, 965, 997, 964, 997, 996, 965, 966, 998, 965, 998, 997, 966, 967, 999, 966, 999, 998, 967, 968, 1000, 967, 1000, 999, 968, 969, 1001, 968, 1001, 1000, 969, 970, 1002, 969, 1002, 1001, 970, 971, 1003, 970, 1003, 1002, 971, 972, 1004, 971, 1004, 1003, 972, 973, 1005, 972, 1005, 1004, 973, 974, 1006, 973, 1006, 1005, 974, 975, 1007, 974, 1007, 1006, 975, 976, 1008, 975, 1008, 1007, 976, 977, 1009, 976, 1009, 1008, 977, 978, 1010, 977, 1010, 1009, 978, 979, 1011, 978, 1011, 1010, 979, 980, 1012, 979, 1012, 1011, 980, 981, 1013, 980, 1013, 1012, 981, 982, 1014, 981, 1014, 1013, 982, 983, 1015, 982, 1015, 1014, 983, 984, 1016, 983, 1016, 1015, 984, 985, 1017, 984, 1017, 1016, 985, 986, 1018, 985, 1018, 1017, 986, 987, 1019, 986, 1019, 1018, 987, 988, 1020, 987, 1020, 1019, 988, 989, 1021, 988, 1021, 1020, 989, 990, 1022, 989, 1022, 1021, 990, 991, 1023, 990, 1023, 1022] color3f[] primvars:displayColor = [(0.784314, 0.64705884, 0.1)] point3f[] points = [(0, 0, 20), (20, 0, 20), (40, 0, 20), (60, 0, 20), (80, 0, 20), (100, 0, 20), (120, 0, 20), (140, 0, 20), (160, 0, 20), (180, 0, 20), (200, 0, 20), (220, 0, 20), (240, 0, 20), (260, 0, 20), (280, 0, 20), (300, 0, 20), (320, 0, 20), (340, 0, 20), (360, 0, 20), (380, 0, 20), (400, 0, 20), (420, 0, 20), (440, 0, 20), (460, 0, 20), (480, 0, 20), (500, 0, 20), (520, 0, 20), (540, 0, 20), (560, 0, 20), (580, 0, 20), (600, 0, 20), (620, 0, 20), (0, 20, 20), (20, 20, 20), (40, 20, 20), (60, 20, 20), (80, 20, 20), (100, 20, 20), (120, 20, 20), (140, 20, 20), (160, 20, 20), (180, 20, 20), (200, 20, 20), (220, 20, 20), (240, 20, 20), (260, 20, 20), (280, 20, 20), (300, 20, 20), (320, 20, 20), (340, 20, 20), (360, 20, 20), (380, 20, 20), (400, 20, 20), (420, 20, 20), (440, 20, 20), (460, 20, 20), (480, 20, 20), (500, 20, 20), (520, 20, 20), (540, 20, 20), (560, 20, 20), (580, 20, 20), (600, 20, 20), (620, 20, 20), (0, 40, 20), (20, 40, 20), (40, 40, 20), (60, 40, 20), (80, 40, 20), (100, 40, 20), (120, 40, 20), (140, 40, 20), (160, 40, 20), (180, 40, 20), (200, 40, 20), (220, 40, 20), (240, 40, 20), (260, 40, 20), (280, 40, 20), (300, 40, 20), (320, 40, 20), (340, 40, 20), (360, 40, 20), (380, 40, 20), (400, 40, 20), (420, 40, 20), (440, 40, 20), (460, 40, 20), (480, 40, 20), (500, 40, 20), (520, 40, 20), (540, 40, 20), (560, 40, 20), (580, 40, 20), (600, 40, 20), (620, 40, 20), (0, 60, 20), (20, 60, 20), (40, 60, 20), (60, 60, 20), (80, 60, 20), (100, 60, 20), (120, 60, 20), (140, 60, 20), (160, 60, 20), (180, 60, 20), (200, 60, 20), (220, 60, 20), (240, 60, 20), (260, 60, 20), (280, 60, 20), (300, 60, 20), (320, 60, 20), (340, 60, 20), (360, 60, 20), (380, 60, 20), (400, 60, 20), (420, 60, 20), (440, 60, 20), (460, 60, 20), (480, 60, 20), (500, 60, 20), (520, 60, 20), (540, 60, 20), (560, 60, 20), (580, 60, 20), (600, 60, 20), (620, 60, 20), (0, 80, 20), (20, 80, 20), (40, 80, 20), (60, 80, 20), (80, 80, 20), (100, 80, 20), (120, 80, 20), (140, 80, 20), (160, 80, 20), (180, 80, 20), (200, 80, 20), (220, 80, 20), (240, 80, 20), (260, 80, 20), (280, 80, 20), (300, 80, 20), (320, 80, 20), (340, 80, 20), (360, 80, 20), (380, 80, 20), (400, 80, 20), (420, 80, 20), (440, 80, 20), (460, 80, 20), (480, 80, 20), (500, 80, 20), (520, 80, 20), (540, 80, 20), (560, 80, 20), (580, 80, 20), (600, 80, 20), (620, 80, 20), (0, 100, 20), (20, 100, 20), (40, 100, 20), (60, 100, 20), (80, 100, 20), (100, 100, 20), (120, 100, 20), (140, 100, 20), (160, 100, 20), (180, 100, 20), (200, 100, 20), (220, 100, 20), (240, 100, 20), (260, 100, 20), (280, 100, 20), (300, 100, 20), (320, 100, 20), (340, 100, 20), (360, 100, 20), (380, 100, 20), (400, 100, 20), (420, 100, 20), (440, 100, 20), (460, 100, 20), (480, 100, 20), (500, 100, 20), (520, 100, 20), (540, 100, 20), (560, 100, 20), (580, 100, 20), (600, 100, 20), (620, 100, 20), (0, 120, 20), (20, 120, 20), (40, 120, 20), (60, 120, 20), (80, 120, 20), (100, 120, 20), (120, 120, 20), (140, 120, 20), (160, 120, 20), (180, 120, 20), (200, 120, 20), (220, 120, 20), (240, 120, 20), (260, 120, 20), (280, 120, 20), (300, 120, 20), (320, 120, 20), (340, 120, 20), (360, 120, 20), (380, 120, 20), (400, 120, 20), (420, 120, 20), (440, 120, 20), (460, 120, 20), (480, 120, 20), (500, 120, 20), (520, 120, 20), (540, 120, 20), (560, 120, 20), (580, 120, 20), (600, 120, 20), (620, 120, 20), (0, 140, 20), (20, 140, 20), (40, 140, 20), (60, 140, 20), (80, 140, 20), (100, 140, 20), (120, 140, 20), (140, 140, 20), (160, 140, 20), (180, 140, 20), (200, 140, 20), (220, 140, 20), (240, 140, 20), (260, 140, 20), (280, 140, 20), (300, 140, 20), (320, 140, 20), (340, 140, 20), (360, 140, 20), (380, 140, 20), (400, 140, 20), (420, 140, 20), (440, 140, 20), (460, 140, 20), (480, 140, 20), (500, 140, 20), (520, 140, 20), (540, 140, 20), (560, 140, 20), (580, 140, 20), (600, 140, 20), (620, 140, 20), (0, 160, 20), (20, 160, 20), (40, 160, 20), (60, 160, 20), (80, 160, 20), (100, 160, 20), (120, 160, 20), (140, 160, 20), (160, 160, 20), (180, 160, 20), (200, 160, 20), (220, 160, 20), (240, 160, 20), (260, 160, 20), (280, 160, 20), (300, 160, 20), (320, 160, 20), (340, 160, 20), (360, 160, 20), (380, 160, 20), (400, 160, 20), (420, 160, 20), (440, 160, 20), (460, 160, 20), (480, 160, 20), (500, 160, 20), (520, 160, 20), (540, 160, 20), (560, 160, 20), (580, 160, 20), (600, 160, 20), (620, 160, 20), (0, 180, 20), (20, 180, 20), (40, 180, 20), (60, 180, 20), (80, 180, 20), (100, 180, 20), (120, 180, 20), (140, 180, 20), (160, 180, 20), (180, 180, 20), (200, 180, 20), (220, 180, 20), (240, 180, 20), (260, 180, 20), (280, 180, 20), (300, 180, 20), (320, 180, 20), (340, 180, 20), (360, 180, 20), (380, 180, 20), (400, 180, 20), (420, 180, 20), (440, 180, 20), (460, 180, 20), (480, 180, 20), (500, 180, 20), (520, 180, 20), (540, 180, 20), (560, 180, 20), (580, 180, 20), (600, 180, 20), (620, 180, 20), (0, 200, 20), (20, 200, 20), (40, 200, 20), (60, 200, 20), (80, 200, 20), (100, 200, 20), (120, 200, 20), (140, 200, 20), (160, 200, 20), (180, 200, 20), (200, 200, 20), (220, 200, 20), (240, 200, 20), (260, 200, 20), (280, 200, 20), (300, 200, 20), (320, 200, 20), (340, 200, 20), (360, 200, 20), (380, 200, 20), (400, 200, 20), (420, 200, 20), (440, 200, 20), (460, 200, 20), (480, 200, 20), (500, 200, 20), (520, 200, 20), (540, 200, 20), (560, 200, 20), (580, 200, 20), (600, 200, 20), (620, 200, 20), (0, 220, 20), (20, 220, 20), (40, 220, 20), (60, 220, 20), (80, 220, 20), (100, 220, 20), (120, 220, 20), (140, 220, 20), (160, 220, 20), (180, 220, 20), (200, 220, 20), (220, 220, 20), (240, 220, 20), (260, 220, 20), (280, 220, 20), (300, 220, 20), (320, 220, 20), (340, 220, 20), (360, 220, 20), (380, 220, 20), (400, 220, 20), (420, 220, 20), (440, 220, 20), (460, 220, 20), (480, 220, 20), (500, 220, 20), (520, 220, 20), (540, 220, 20), (560, 220, 20), (580, 220, 20), (600, 220, 20), (620, 220, 20), (0, 240, 20), (20, 240, 20), (40, 240, 20), (60, 240, 20), (80, 240, 20), (100, 240, 20), (120, 240, 20), (140, 240, 20), (160, 240, 20), (180, 240, 20), (200, 240, 20), (220, 240, 20), (240, 240, 20), (260, 240, 20), (280, 240, 20), (300, 240, 20), (320, 240, 20), (340, 240, 20), (360, 240, 20), (380, 240, 20), (400, 240, 20), (420, 240, 20), (440, 240, 20), (460, 240, 20), (480, 240, 20), (500, 240, 20), (520, 240, 20), (540, 240, 20), (560, 240, 20), (580, 240, 20), (600, 240, 20), (620, 240, 20), (0, 260, 20), (20, 260, 20), (40, 260, 20), (60, 260, 20), (80, 260, 20), (100, 260, 20), (120, 260, 20), (140, 260, 20), (160, 260, 20), (180, 260, 20), (200, 260, 20), (220, 260, 20), (240, 260, 20), (260, 260, 20), (280, 260, 20), (300, 260, 20), (320, 260, 20), (340, 260, 20), (360, 260, 20), (380, 260, 20), (400, 260, 20), (420, 260, 20), (440, 260, 20), (460, 260, 20), (480, 260, 20), (500, 260, 20), (520, 260, 20), (540, 260, 20), (560, 260, 20), (580, 260, 20), (600, 260, 20), (620, 260, 20), (0, 280, 20), (20, 280, 20), (40, 280, 20), (60, 280, 20), (80, 280, 20), (100, 280, 20), (120, 280, 20), (140, 280, 20), (160, 280, 20), (180, 280, 20), (200, 280, 20), (220, 280, 20), (240, 280, 20), (260, 280, 20), (280, 280, 20), (300, 280, 20), (320, 280, 20), (340, 280, 20), (360, 280, 20), (380, 280, 20), (400, 280, 20), (420, 280, 20), (440, 280, 20), (460, 280, 20), (480, 280, 20), (500, 280, 20), (520, 280, 20), (540, 280, 20), (560, 280, 20), (580, 280, 20), (600, 280, 20), (620, 280, 20), (0, 300, 20), (20, 300, 20), (40, 300, 20), (60, 300, 20), (80, 300, 20), (100, 300, 20), (120, 300, 20), (140, 300, 20), (160, 300, 20), (180, 300, 20), (200, 300, 20), (220, 300, 20), (240, 300, 20), (260, 300, 20), (280, 300, 20), (300, 300, 20), (320, 300, 20), (340, 300, 20), (360, 300, 20), (380, 300, 20), (400, 300, 20), (420, 300, 20), (440, 300, 20), (460, 300, 20), (480, 300, 20), (500, 300, 20), (520, 300, 20), (540, 300, 20), (560, 300, 20), (580, 300, 20), (600, 300, 20), (620, 300, 20), (0, 320, 20), (20, 320, 20), (40, 320, 20), (60, 320, 20), (80, 320, 20), (100, 320, 20), (120, 320, 20), (140, 320, 20), (160, 320, 20), (180, 320, 20), (200, 320, 20), (220, 320, 20), (240, 320, 20), (260, 320, 20), (280, 320, 20), (300, 320, 20), (320, 320, 20), (340, 320, 20), (360, 320, 20), (380, 320, 20), (400, 320, 20), (420, 320, 20), (440, 320, 20), (460, 320, 20), (480, 320, 20), (500, 320, 20), (520, 320, 20), (540, 320, 20), (560, 320, 20), (580, 320, 20), (600, 320, 20), (620, 320, 20), (0, 340, 20), (20, 340, 20), (40, 340, 20), (60, 340, 20), (80, 340, 20), (100, 340, 20), (120, 340, 20), (140, 340, 20), (160, 340, 20), (180, 340, 20), (200, 340, 20), (220, 340, 20), (240, 340, 20), (260, 340, 20), (280, 340, 20), (300, 340, 20), (320, 340, 20), (340, 340, 20), (360, 340, 20), (380, 340, 20), (400, 340, 20), (420, 340, 20), (440, 340, 20), (460, 340, 20), (480, 340, 20), (500, 340, 20), (520, 340, 20), (540, 340, 20), (560, 340, 20), (580, 340, 20), (600, 340, 20), (620, 340, 20), (0, 360, 20), (20, 360, 20), (40, 360, 20), (60, 360, 20), (80, 360, 20), (100, 360, 20), (120, 360, 20), (140, 360, 20), (160, 360, 20), (180, 360, 20), (200, 360, 20), (220, 360, 20), (240, 360, 20), (260, 360, 20), (280, 360, 20), (300, 360, 20), (320, 360, 20), (340, 360, 20), (360, 360, 20), (380, 360, 20), (400, 360, 20), (420, 360, 20), (440, 360, 20), (460, 360, 20), (480, 360, 20), (500, 360, 20), (520, 360, 20), (540, 360, 20), (560, 360, 20), (580, 360, 20), (600, 360, 20), (620, 360, 20), (0, 380, 20), (20, 380, 20), (40, 380, 20), (60, 380, 20), (80, 380, 20), (100, 380, 20), (120, 380, 20), (140, 380, 20), (160, 380, 20), (180, 380, 20), (200, 380, 20), (220, 380, 20), (240, 380, 20), (260, 380, 20), (280, 380, 20), (300, 380, 20), (320, 380, 20), (340, 380, 20), (360, 380, 20), (380, 380, 20), (400, 380, 20), (420, 380, 20), (440, 380, 20), (460, 380, 20), (480, 380, 20), (500, 380, 20), (520, 380, 20), (540, 380, 20), (560, 380, 20), (580, 380, 20), (600, 380, 20), (620, 380, 20), (0, 400, 20), (20, 400, 20), (40, 400, 20), (60, 400, 20), (80, 400, 20), (100, 400, 20), (120, 400, 20), (140, 400, 20), (160, 400, 20), (180, 400, 20), (200, 400, 20), (220, 400, 20), (240, 400, 20), (260, 400, 20), (280, 400, 20), (300, 400, 20), (320, 400, 20), (340, 400, 20), (360, 400, 20), (380, 400, 20), (400, 400, 20), (420, 400, 20), (440, 400, 20), (460, 400, 20), (480, 400, 20), (500, 400, 20), (520, 400, 20), (540, 400, 20), (560, 400, 20), (580, 400, 20), (600, 400, 20), (620, 400, 20), (0, 420, 20), (20, 420, 20), (40, 420, 20), (60, 420, 20), (80, 420, 20), (100, 420, 20), (120, 420, 20), (140, 420, 20), (160, 420, 20), (180, 420, 20), (200, 420, 20), (220, 420, 20), (240, 420, 20), (260, 420, 20), (280, 420, 20), (300, 420, 20), (320, 420, 20), (340, 420, 20), (360, 420, 20), (380, 420, 20), (400, 420, 20), (420, 420, 20), (440, 420, 20), (460, 420, 20), (480, 420, 20), (500, 420, 20), (520, 420, 20), (540, 420, 20), (560, 420, 20), (580, 420, 20), (600, 420, 20), (620, 420, 20), (0, 440, 20), (20, 440, 20), (40, 440, 20), (60, 440, 20), (80, 440, 20), (100, 440, 20), (120, 440, 20), (140, 440, 20), (160, 440, 20), (180, 440, 20), (200, 440, 20), (220, 440, 20), (240, 440, 20), (260, 440, 20), (280, 440, 20), (300, 440, 20), (320, 440, 20), (340, 440, 20), (360, 440, 20), (380, 440, 20), (400, 440, 20), (420, 440, 20), (440, 440, 20), (460, 440, 20), (480, 440, 20), (500, 440, 20), (520, 440, 20), (540, 440, 20), (560, 440, 20), (580, 440, 20), (600, 440, 20), (620, 440, 20), (0, 460, 20), (20, 460, 20), (40, 460, 20), (60, 460, 20), (80, 460, 20), (100, 460, 20), (120, 460, 20), (140, 460, 20), (160, 460, 20), (180, 460, 20), (200, 460, 20), (220, 460, 20), (240, 460, 20), (260, 460, 20), (280, 460, 20), (300, 460, 20), (320, 460, 20), (340, 460, 20), (360, 460, 20), (380, 460, 20), (400, 460, 20), (420, 460, 20), (440, 460, 20), (460, 460, 20), (480, 460, 20), (500, 460, 20), (520, 460, 20), (540, 460, 20), (560, 460, 20), (580, 460, 20), (600, 460, 20), (620, 460, 20), (0, 480, 20), (20, 480, 20), (40, 480, 20), (60, 480, 20), (80, 480, 20), (100, 480, 20), (120, 480, 20), (140, 480, 20), (160, 480, 20), (180, 480, 20), (200, 480, 20), (220, 480, 20), (240, 480, 20), (260, 480, 20), (280, 480, 20), (300, 480, 20), (320, 480, 20), (340, 480, 20), (360, 480, 20), (380, 480, 20), (400, 480, 20), (420, 480, 20), (440, 480, 20), (460, 480, 20), (480, 480, 20), (500, 480, 20), (520, 480, 20), (540, 480, 20), (560, 480, 20), (580, 480, 20), (600, 480, 20), (620, 480, 20), (0, 500, 20), (20, 500, 20), (40, 500, 20), (60, 500, 20), (80, 500, 20), (100, 500, 20), (120, 500, 20), (140, 500, 20), (160, 500, 20), (180, 500, 20), (200, 500, 20), (220, 500, 20), (240, 500, 20), (260, 500, 20), (280, 500, 20), (300, 500, 20), (320, 500, 20), (340, 500, 20), (360, 500, 20), (380, 500, 20), (400, 500, 20), (420, 500, 20), (440, 500, 20), (460, 500, 20), (480, 500, 20), (500, 500, 20), (520, 500, 20), (540, 500, 20), (560, 500, 20), (580, 500, 20), (600, 500, 20), (620, 500, 20), (0, 520, 20), (20, 520, 20), (40, 520, 20), (60, 520, 20), (80, 520, 20), (100, 520, 20), (120, 520, 20), (140, 520, 20), (160, 520, 20), (180, 520, 20), (200, 520, 20), (220, 520, 20), (240, 520, 20), (260, 520, 20), (280, 520, 20), (300, 520, 20), (320, 520, 20), (340, 520, 20), (360, 520, 20), (380, 520, 20), (400, 520, 20), (420, 520, 20), (440, 520, 20), (460, 520, 20), (480, 520, 20), (500, 520, 20), (520, 520, 20), (540, 520, 20), (560, 520, 20), (580, 520, 20), (600, 520, 20), (620, 520, 20), (0, 540, 20), (20, 540, 20), (40, 540, 20), (60, 540, 20), (80, 540, 20), (100, 540, 20), (120, 540, 20), (140, 540, 20), (160, 540, 20), (180, 540, 20), (200, 540, 20), (220, 540, 20), (240, 540, 20), (260, 540, 20), (280, 540, 20), (300, 540, 20), (320, 540, 20), (340, 540, 20), (360, 540, 20), (380, 540, 20), (400, 540, 20), (420, 540, 20), (440, 540, 20), (460, 540, 20), (480, 540, 20), (500, 540, 20), (520, 540, 20), (540, 540, 20), (560, 540, 20), (580, 540, 20), (600, 540, 20), (620, 540, 20), (0, 560, 20), (20, 560, 20), (40, 560, 20), (60, 560, 20), (80, 560, 20), (100, 560, 20), (120, 560, 20), (140, 560, 20), (160, 560, 20), (180, 560, 20), (200, 560, 20), (220, 560, 20), (240, 560, 20), (260, 560, 20), (280, 560, 20), (300, 560, 20), (320, 560, 20), (340, 560, 20), (360, 560, 20), (380, 560, 20), (400, 560, 20), (420, 560, 20), (440, 560, 20), (460, 560, 20), (480, 560, 20), (500, 560, 20), (520, 560, 20), (540, 560, 20), (560, 560, 20), (580, 560, 20), (600, 560, 20), (620, 560, 20), (0, 580, 20), (20, 580, 20), (40, 580, 20), (60, 580, 20), (80, 580, 20), (100, 580, 20), (120, 580, 20), (140, 580, 20), (160, 580, 20), (180, 580, 20), (200, 580, 20), (220, 580, 20), (240, 580, 20), (260, 580, 20), (280, 580, 20), (300, 580, 20), (320, 580, 20), (340, 580, 20), (360, 580, 20), (380, 580, 20), (400, 580, 20), (420, 580, 20), (440, 580, 20), (460, 580, 20), (480, 580, 20), (500, 580, 20), (520, 580, 20), (540, 580, 20), (560, 580, 20), (580, 580, 20), (600, 580, 20), (620, 580, 20), (0, 600, 20), (20, 600, 20), (40, 600, 20), (60, 600, 20), (80, 600, 20), (100, 600, 20), (120, 600, 20), (140, 600, 20), (160, 600, 20), (180, 600, 20), (200, 600, 20), (220, 600, 20), (240, 600, 20), (260, 600, 20), (280, 600, 20), (300, 600, 20), (320, 600, 20), (340, 600, 20), (360, 600, 20), (380, 600, 20), (400, 600, 20), (420, 600, 20), (440, 600, 20), (460, 600, 20), (480, 600, 20), (500, 600, 20), (520, 600, 20), (540, 600, 20), (560, 600, 20), (580, 600, 20), (600, 600, 20), (620, 600, 20), (0, 620, 20), (20, 620, 20), (40, 620, 20), (60, 620, 20), (80, 620, 20), (100, 620, 20), (120, 620, 20), (140, 620, 20), (160, 620, 20), (180, 620, 20), (200, 620, 20), (220, 620, 20), (240, 620, 20), (260, 620, 20), (280, 620, 20), (300, 620, 20), (320, 620, 20), (340, 620, 20), (360, 620, 20), (380, 620, 20), (400, 620, 20), (420, 620, 20), (440, 620, 20), (460, 620, 20), (480, 620, 20), (500, 620, 20), (520, 620, 20), (540, 620, 20), (560, 620, 20), (580, 620, 20), (600, 620, 20), (620, 620, 20)] point3f[] points.connect = </defaultPrim/testDeformer.outputs:points> } }
omniverse-code/kit/exts/omni.graph/data/TestDynamicScheduling.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double radius = 500 double3 target = (0, 0, 0) } dictionary Perspective = { double3 position = (500.0000000000001, 500.0000000000001, 499.9999999999998) double3 target = (0, 0, 0) } dictionary Right = { double radius = 500 double3 target = (0, 0, 0) } dictionary Top = { double radius = 500 double3 target = (0, 0, 0) } string boundCamera = "/OmniverseKit_Persp" } dictionary renderSettings = { float "rtx:post:lensDistortion:cameraFocalLength" = 18.147562 } } defaultPrim = "World" endTimeCode = 100 metersPerUnit = 0.009999999776482582 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Y" ) def Xform "World" { def DistantLight "defaultLight" ( prepend apiSchemas = ["ShapingAPI"] ) { float angle = 1 float intensity = 3000 float shaping:cone:angle = 180 float shaping:cone:softness float shaping:focus color3f shaping:focusTint asset shaping:ies:file float3 xformOp:rotateXYZ = (315, 0, 0) double3 xformOp:scale = (1, 1, 1) float3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def ComputeNode "dynamic_switch" { custom int inputs:left_value = -1 custom int inputs:right_value = 1 custom int inputs:switch = 0 custom token node:type = "omni.graph.examples.python.DynamicSwitch" custom int node:typeVersion = 1 custom int outputs:left_out custom int outputs:right_out } def ComputeGraphSettings "computegraphSettings" { custom token evaluator:type = "push" } def ComputeNode "IntCounter_01" { custom int inputs:increment prepend int inputs:increment.connect = </World/dynamic_switch.outputs:left_out> custom bool inputs:reset = false custom token node:type = "omni.graph.examples.python.IntCounter" custom int node:typeVersion = 1 custom int outputs:count = 0 } def ComputeNode "IntCounter_02" { custom int inputs:increment prepend int inputs:increment.connect = </World/dynamic_switch.outputs:right_out> custom bool inputs:reset = false custom token node:type = "omni.graph.examples.python.IntCounter" custom int node:typeVersion = 1 custom int outputs:count = 0 } }
omniverse-code/kit/exts/omni.graph/data/ExampleSmoothNeighbors.usda
#usda 1.0 ( doc = """Smooth Neighbors Example""" ) def Xform "defaultPrim" { def Mesh "inputMesh" { uniform bool doubleSided = 1 uniform token orientation = "leftHanded" int[] faceVertexCounts = [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4] int[] faceVertexIndices = [0, 1, 25, 24, 1, 2, 26, 25, 2, 3, 27, 26, 3, 4, 28, 27, 4, 5, 29, 28, 5, 6, 30, 29, 6, 7, 31, 30, 7, 8, 32, 31, 8, 9, 33, 32, 9, 10, 34, 33, 10, 11, 35, 34, 11, 12, 36, 35, 12, 13, 37, 36, 13, 14, 38, 37, 14, 15, 39, 38, 15, 16, 40, 39, 16, 17, 41, 40, 17, 18, 42, 41, 18, 19, 43, 42, 19, 20, 44, 43, 20, 21, 45, 44, 21, 22, 46, 45, 22, 23, 47, 46, 23, 0, 24, 47, 24, 25, 49, 48, 25, 26, 50, 49, 26, 27, 51, 50, 27, 28, 52, 51, 28, 29, 53, 52, 29, 30, 54, 53, 30, 31, 55, 54, 31, 32, 56, 55, 32, 33, 57, 56, 33, 34, 58, 57, 34, 35, 59, 58, 35, 36, 60, 59, 36, 37, 61, 60, 37, 38, 62, 61, 38, 39, 63, 62, 39, 40, 64, 63, 40, 41, 65, 64, 41, 42, 66, 65, 42, 43, 67, 66, 43, 44, 68, 67, 44, 45, 69, 68, 45, 46, 70, 69, 46, 47, 71, 70, 47, 24, 48, 71, 48, 49, 73, 72, 49, 50, 74, 73, 50, 51, 75, 74, 51, 52, 76, 75, 52, 53, 77, 76, 53, 54, 78, 77, 54, 55, 79, 78, 55, 56, 80, 79, 56, 57, 81, 80, 57, 58, 82, 81, 58, 59, 83, 82, 59, 60, 84, 83, 60, 61, 85, 84, 61, 62, 86, 85, 62, 63, 87, 86, 63, 64, 88, 87, 64, 65, 89, 88, 65, 66, 90, 89, 66, 67, 91, 90, 67, 68, 92, 91, 68, 69, 93, 92, 69, 70, 94, 93, 70, 71, 95, 94, 71, 48, 72, 95, 72, 73, 97, 96, 73, 74, 98, 97, 74, 75, 99, 98, 75, 76, 100, 99, 76, 77, 101, 100, 77, 78, 102, 101, 78, 79, 103, 102, 79, 80, 104, 103, 80, 81, 105, 104, 81, 82, 106, 105, 82, 83, 107, 106, 83, 84, 108, 107, 84, 85, 109, 108, 85, 86, 110, 109, 86, 87, 111, 110, 87, 88, 112, 111, 88, 89, 113, 112, 89, 90, 114, 113, 90, 91, 115, 114, 91, 92, 116, 115, 92, 93, 117, 116, 93, 94, 118, 117, 94, 95, 119, 118, 95, 72, 96, 119, 96, 97, 121, 120, 97, 98, 122, 121, 98, 99, 123, 122, 99, 100, 124, 123, 100, 101, 125, 124, 101, 102, 126, 125, 102, 103, 127, 126, 103, 104, 128, 127, 104, 105, 129, 128, 105, 106, 130, 129, 106, 107, 131, 130, 107, 108, 132, 131, 108, 109, 133, 132, 109, 110, 134, 133, 110, 111, 135, 134, 111, 112, 136, 135, 112, 113, 137, 136, 113, 114, 138, 137, 114, 115, 139, 138, 115, 116, 140, 139, 116, 117, 141, 140, 117, 118, 142, 141, 118, 119, 143, 142, 119, 96, 120, 143, 120, 121, 145, 144, 121, 122, 146, 145, 122, 123, 147, 146, 123, 124, 148, 147, 124, 125, 149, 148, 125, 126, 150, 149, 126, 127, 151, 150, 127, 128, 152, 151, 128, 129, 153, 152, 129, 130, 154, 153, 130, 131, 155, 154, 131, 132, 156, 155, 132, 133, 157, 156, 133, 134, 158, 157, 134, 135, 159, 158, 135, 136, 160, 159, 136, 137, 161, 160, 137, 138, 162, 161, 138, 139, 163, 162, 139, 140, 164, 163, 140, 141, 165, 164, 141, 142, 166, 165, 142, 143, 167, 166, 143, 120, 144, 167, 144, 145, 169, 168, 145, 146, 170, 169, 146, 147, 171, 170, 147, 148, 172, 171, 148, 149, 173, 172, 149, 150, 174, 173, 150, 151, 175, 174, 151, 152, 176, 175, 152, 153, 177, 176, 153, 154, 178, 177, 154, 155, 179, 178, 155, 156, 180, 179, 156, 157, 181, 180, 157, 158, 182, 181, 158, 159, 183, 182, 159, 160, 184, 183, 160, 161, 185, 184, 161, 162, 186, 185, 162, 163, 187, 186, 163, 164, 188, 187, 164, 165, 189, 188, 165, 166, 190, 189, 166, 167, 191, 190, 167, 144, 168, 191, 168, 169, 193, 192, 169, 170, 194, 193, 170, 171, 195, 194, 171, 172, 196, 195, 172, 173, 197, 196, 173, 174, 198, 197, 174, 175, 199, 198, 175, 176, 200, 199, 176, 177, 201, 200, 177, 178, 202, 201, 178, 179, 203, 202, 179, 180, 204, 203, 180, 181, 205, 204, 181, 182, 206, 205, 182, 183, 207, 206, 183, 184, 208, 207, 184, 185, 209, 208, 185, 186, 210, 209, 186, 187, 211, 210, 187, 188, 212, 211, 188, 189, 213, 212, 189, 190, 214, 213, 190, 191, 215, 214, 191, 168, 192, 215, 192, 193, 217, 216, 193, 194, 218, 217, 194, 195, 219, 218, 195, 196, 220, 219, 196, 197, 221, 220, 197, 198, 222, 221, 198, 199, 223, 222, 199, 200, 224, 223, 200, 201, 225, 224, 201, 202, 226, 225, 202, 203, 227, 226, 203, 204, 228, 227, 204, 205, 229, 228, 205, 206, 230, 229, 206, 207, 231, 230, 207, 208, 232, 231, 208, 209, 233, 232, 209, 210, 234, 233, 210, 211, 235, 234, 211, 212, 236, 235, 212, 213, 237, 236, 213, 214, 238, 237, 214, 215, 239, 238, 215, 192, 216, 239, 216, 217, 241, 240, 217, 218, 242, 241, 218, 219, 243, 242, 219, 220, 244, 243, 220, 221, 245, 244, 221, 222, 246, 245, 222, 223, 247, 246, 223, 224, 248, 247, 224, 225, 249, 248, 225, 226, 250, 249, 226, 227, 251, 250, 227, 228, 252, 251, 228, 229, 253, 252, 229, 230, 254, 253, 230, 231, 255, 254, 231, 232, 256, 255, 232, 233, 257, 256, 233, 234, 258, 257, 234, 235, 259, 258, 235, 236, 260, 259, 236, 237, 261, 260, 237, 238, 262, 261, 238, 239, 263, 262, 239, 216, 240, 263, 240, 241, 265, 264, 241, 242, 266, 265, 242, 243, 267, 266, 243, 244, 268, 267, 244, 245, 269, 268, 245, 246, 270, 269, 246, 247, 271, 270, 247, 248, 272, 271, 248, 249, 273, 272, 249, 250, 274, 273, 250, 251, 275, 274, 251, 252, 276, 275, 252, 253, 277, 276, 253, 254, 278, 277, 254, 255, 279, 278, 255, 256, 280, 279, 256, 257, 281, 280, 257, 258, 282, 281, 258, 259, 283, 282, 259, 260, 284, 283, 260, 261, 285, 284, 261, 262, 286, 285, 262, 263, 287, 286, 263, 240, 264, 287, 264, 265, 1, 0, 265, 266, 2, 1, 266, 267, 3, 2, 267, 268, 4, 3, 268, 269, 5, 4, 269, 270, 6, 5, 270, 271, 7, 6, 271, 272, 8, 7, 272, 273, 9, 8, 273, 274, 10, 9, 274, 275, 11, 10, 275, 276, 12, 11, 276, 277, 13, 12, 277, 278, 14, 13, 278, 279, 15, 14, 279, 280, 16, 15, 280, 281, 17, 16, 281, 282, 18, 17, 282, 283, 19, 18, 283, 284, 20, 19, 284, 285, 21, 20, 285, 286, 22, 21, 286, 287, 23, 22, 287, 264, 0, 23] point3f[] points = [(0.97050416, -1.8522897e-8, -7.4398014e-7), (0.8998362, -2.981267e-8, -0.2411111), (0.81444633, -3.4340196e-8, -0.47022152), (0.7022718, -4.0764245e-8, -0.7022728), (0.49256894, -3.563111e-8, -0.8531556), (0.20206214, -4.424456e-8, -0.7541078), (-3.392996e-7, -5.506345e-8, -0.73848087), (-0.18312414, -6.190622e-8, -0.6834275), (-0.4162395, -4.3369354e-8, -0.7209473), (-0.56745434, -3.9517744e-8, -0.5674537), (-0.7728556, -3.6266357e-8, -0.44620785), (-0.84129727, -3.9482813e-8, -0.22542453), (-0.81495696, -4.8194195e-8, 3.2137774e-7), (-0.7717826, -4.9103875e-8, 0.20679879), (-0.83776796, -2.973064e-8, 0.48368588), (-0.66617185, -2.907549e-8, 0.66617215), (-0.5135956, -2.01344e-8, 0.889574), (-0.28336185, -9.216164e-9, 1.0575213), (7.824221e-8, -1.8498554e-8, 1.032391), (0.20894371, -4.650221e-8, 0.7797885), (0.38899264, -4.6353847e-8, 0.6737551), (0.6296708, -3.6004447e-8, 0.6296708), (0.8312789, -3.031326e-8, 0.47993913), (0.84160167, -3.9433793e-8, 0.22550648), (0.94494945, -0.25695702, -7.1507975e-7), (0.82770586, -0.20606586, -0.22178379), (0.7470953, -0.2093994, -0.4313363), (0.56555176, -0.17306547, -0.56555253), (0.40630868, -0.18046786, -0.70374817), (0.19068699, -0.13662055, -0.71165496), (-3.468576e-7, -0.123366185, -0.71382844), (-0.21277674, -0.18595135, -0.7940923), (-0.36293048, -0.13032088, -0.62861353), (-0.56428736, -0.17203133, -0.5642867), (-0.7272702, -0.19616719, -0.41988915), (-0.7424705, -0.15506065, -0.19894403), (-0.7792275, -0.16116765, 3.0701995e-7), (-0.7953733, -0.1867179, 0.21311992), (-0.7395816, -0.20438446, 0.42699793), (-0.58006716, -0.18493062, 0.5800674), (-0.42763516, -0.2051215, 0.7406861), (-0.24608256, -0.26033318, 0.91839314), (7.129205e-8, -0.23970771, 0.91510695), (0.21293509, -0.18630566, 0.79468447), (0.37175494, -0.14052248, 0.64389855), (0.5252397, -0.1401128, 0.52523977), (0.70573527, -0.18179429, 0.40745646), (0.79806083, -0.18832609, 0.21383975), (0.7327533, -0.4032062, -5.5836097e-7), (0.6411103, -0.2835098, -0.1717855), (0.5598231, -0.2535139, -0.3232145), (0.4558603, -0.25048962, -0.45586085), (0.32691967, -0.26636627, -0.5662422), (0.17071481, -0.2763417, -0.6371176), (-3.190812e-7, -0.31673354, -0.68288594), (-0.1777686, -0.3235972, -0.6634404), (-0.3396296, -0.3104438, -0.5882552), (-0.46880496, -0.2822327, -0.46880442), (-0.55540216, -0.2446611, -0.32066122), (-0.6273006, -0.25871795, -0.16808441), (-0.6867149, -0.32337314, 2.698141e-7), (-0.64231604, -0.28567424, 0.17210831), (-0.63289595, -0.39982843, 0.36540288), (-0.5031697, -0.3665072, 0.50316995), (-0.35457632, -0.3622817, 0.61414444), (-0.17861491, -0.3292697, 0.6666003), (5.6358544e-8, -0.3778693, 0.7181419), (0.18119448, -0.34655172, 0.6762269), (0.31350997, -0.21985891, 0.54301524), (0.45801198, -0.25576565, 0.458012), (0.5834088, -0.30073947, 0.3368312), (0.6965863, -0.3831015, 0.18664974), (0.5, -0.3749513, -3.9236255e-7), (0.48296282, -0.3201675, -0.1294099), (0.43301255, -0.32024008, -0.2500003), (0.35355318, -0.30096743, -0.35355362), (0.24999975, -0.38416377, -0.43301284), (0.12940927, -0.33489373, -0.48296297), (-2.3269597e-7, -0.275708, -0.5), (-0.12940972, -0.29333386, -0.48296285), (-0.25000015, -0.3833181, -0.4330126), (-0.3535536, -0.25990367, -0.3535532), (-0.4330128, -0.3263056, -0.24999979), (-0.48296297, -0.2622081, -0.12940931), (-0.5, -0.2999028, 1.9799047e-7), (-0.48296288, -0.3708786, 0.12940969), (-0.43301263, -0.30637124, 0.25000012), (-0.3535533, -0.33240142, 0.35355347), (-0.24999993, -0.31268266, 0.43301275), (-0.12940946, -0.37772256, 0.48296294), (3.8388897e-8, -0.37115917, 0.5), (0.12940954, -0.30406165, 0.4829629), (0.24999999, -0.35989282, 0.43301272), (0.35355338, -0.37419042, 0.35355338), (0.4330127, -0.33014822, 0.25), (0.4829629, -0.3433216, 0.12940952), (0.35381475, -0.25309253, -2.7633706e-7), (0.3803145, -0.18387625, -0.10190529), (0.31425807, -0.23738314, -0.18143725), (0.25796598, -0.23401013, -0.25796634), (0.19701658, -0.18335088, -0.3412432), (0.092984386, -0.24364191, -0.34702313), (-1.4007735e-7, -0.3439054, -0.30144447), (-0.07317194, -0.3763846, -0.273081), (-0.13952962, -0.3827229, -0.2416722), (-0.22926097, -0.30440485, -0.22926071), (-0.3125841, -0.24073535, -0.1804703), (-0.35070145, -0.23703854, -0.093970016), (-0.33392128, -0.28758886, 1.3165652e-7), (-0.3205363, -0.29119167, 0.08588756), (-0.2846268, -0.29671434, 0.16432947), (-0.23731123, -0.28466254, 0.23731135), (-0.15698007, -0.32220244, 0.27189755), (-0.06783574, -0.41213557, 0.25316656), (2.428194e-8, -0.33286187, 0.3078131), (0.07859287, -0.34006447, 0.29331252), (0.15304446, -0.33585164, 0.2650808), (0.2382118, -0.2824542, 0.2382118), (0.30171332, -0.26250184, 0.17419429), (0.3420214, -0.2526211, 0.09164438), (0.3067763, -0.111456364, -2.116256e-7), (0.26513037, -0.13012217, -0.07104169), (0.19594762, -0.1579953, -0.11313057), (0.16188246, -0.15644875, -0.16188268), (0.13089125, -0.1374632, -0.22671062), (0.0658264, -0.1417686, -0.24566793), (-1.1354091e-7, -0.14280356, -0.2525436), (-0.06713514, -0.13884634, -0.25055134), (-0.13667634, -0.13077572, -0.2367302), (-0.16761702, -0.15176128, -0.16761686), (-0.17551056, -0.17163572, -0.10133095), (-0.182231, -0.17972945, -0.04882857), (-0.16107897, -0.19567128, 6.320042e-8), (-0.083557725, -0.2387758, 0.022389257), (-0.057671607, -0.25028515, 0.033296738), (-0.0338161, -0.26113456, 0.033816107), (-0.056501776, -0.22345947, 0.09786399), (-0.041336283, -0.19646187, 0.15426919), (1.9125682e-8, -0.17444608, 0.19779998), (0.059776615, -0.1552797, 0.22308934), (0.1153924, -0.15538041, 0.19986555), (0.2066333, -0.119868025, 0.20663328), (0.2788876, -0.10263858, 0.16101584), (0.3297861, -0.091432065, 0.08836591), (0.22708227, -8.127138e-8, -1.3865296e-7), (0.23268159, -7.916795e-8, -0.062347032), (0.17054984, -9.1401816e-8, -0.09846715), (0.1384356, -9.3241944e-8, -0.13843578), (0.08542441, -1.00964655e-7, -0.14795965), (0.042767975, -1.03041174e-7, -0.15961257), (-9.4368175e-8, -9.1687454e-8, -0.19851825), (-0.04868895, -9.407485e-8, -0.18170929), (-0.10766323, -8.851461e-8, -0.18647805), (-0.1588782, -8.3955186e-8, -0.15887806), (-0.1582843, -9.6340315e-8, -0.09138538), (-0.18976234, -9.529666e-8, -0.050846577), (-0.18282917, -9.7611185e-8, 7.243153e-8), (-0.15686764, -1.0138851e-7, 0.042032614), (-0.11561557, -1.10637494e-7, 0.06675072), (-0.06453572, -1.2330898e-7, 0.06453575), (-0.078305684, -1.0495003e-7, 0.13562948), (-0.041448023, -1.0349385e-7, 0.1546862), (1.9083291e-8, -9.501588e-8, 0.18725342), (0.046904765, -9.6796775e-8, 0.17505094), (0.0405785, -1.265107e-7, 0.070284024), (0.08561424, -1.14896835e-7, 0.08561424), (0.14434096, -1.0213428e-7, 0.083335295), (0.19944929, -8.7677535e-8, 0.053442266), (0.1858016, 0.18138102, -1.3514084e-7), (0.24340093, 0.14312492, -0.065219276), (0.21502846, 0.1452599, -0.12414694), (0.15974124, 0.15819883, -0.15974145), (0.11409531, 0.15687953, -0.19761914), (0.044077665, 0.1903392, -0.16450042), (-7.9732416e-8, 0.19049728, -0.17002985), (-0.04798761, 0.1816076, -0.17909189), (-0.092074305, 0.18233652, -0.15947723), (-0.14095154, 0.17355828, -0.1409514), (-0.15176645, 0.18748301, -0.0876223), (-0.22217119, 0.1558289, -0.05953049), (-0.19546062, 0.175798, 7.3040944e-8), (-0.16550788, 0.18973632, 0.04434776), (-0.13977596, 0.19548579, 0.08069974), (-0.11710597, 0.19305034, 0.117106035), (-0.07823958, 0.19832972, 0.13551499), (-0.051162936, 0.17451604, 0.19094276), (1.8703522e-8, 0.14608154, 0.2468721), (0.06476426, 0.14414069, 0.2417035), (0.11842948, 0.15186924, 0.2051259), (0.19513544, 0.12926652, 0.19513544), (0.24336308, 0.12634856, 0.14050573), (0.20492193, 0.16615087, 0.054908663), (0.3138855, 0.32233158, -2.3942454e-7), (0.33670384, 0.26216686, -0.09021979), (0.25138643, 0.36327142, -0.14513825), (0.21657611, 0.33551112, -0.2165764), (0.16469416, 0.29544833, -0.28525904), (0.08230128, 0.31521702, -0.3071532), (-1.4606854e-7, 0.32125762, -0.31450483), (-0.094685026, 0.2322497, -0.35336876), (-0.17314929, 0.26612604, -0.2999031), (-0.18312544, 0.41754347, -0.18312523), (-0.2642505, 0.33751395, -0.15256491), (-0.3387608, 0.25847438, -0.09077053), (-0.35052797, 0.2587917, 1.3070606e-7), (-0.30158022, 0.32522172, 0.08080828), (-0.2975748, 0.2707881, 0.171805), (-0.24434862, 0.2674043, 0.24434873), (-0.15063895, 0.34419367, 0.26091442), (-0.065336406, 0.42888027, 0.24383888), (2.5774927e-8, 0.22968735, 0.36731195), (0.09578778, 0.22486052, 0.35748482), (0.17418274, 0.26254147, 0.3016934), (0.26735467, 0.21098629, 0.26735467), (0.3421609, 0.18151294, 0.19754668), (0.31354564, 0.3037411, 0.0840143), (0.49999985, 0.27117717, -3.756191e-7), (0.48296264, 0.289989, -0.12940983), (0.43301234, 0.41820732, -0.25000018), (0.35355297, 0.49697092, -0.3535534), (0.24999963, 0.3823889, -0.43301263), (0.12940921, 0.45658085, -0.4829627), (-2.3247048e-7, 0.40213946, -0.49999976), (-0.12940966, 0.36918262, -0.48296264), (-0.25000006, 0.29098648, -0.43301246), (-0.35355344, 0.3454119, -0.35355306), (-0.4330126, 0.37719148, -0.24999967), (-0.48296276, 0.35982683, -0.12940925), (-0.49999976, 0.40742877, 1.949006e-7), (-0.4829626, 0.43228176, 0.12940963), (-0.43301246, 0.36856022, 0.25), (-0.35355318, 0.29783037, 0.35355335), (-0.24999984, 0.31288677, 0.43301257), (-0.12940942, 0.25735793, 0.4829628), (4.1450335e-8, 0.23318693, 0.49999988), (0.12940949, 0.25128344, 0.48296276), (0.24999993, 0.19749138, 0.43301263), (0.3535533, 0.20732407, 0.3535533), (0.4330126, 0.1759611, 0.24999993), (0.4829628, 0.18025093, 0.12940949), (0.6979104, 0.34278733, -5.438864e-7), (0.6775413, 0.34891218, -0.1815472), (0.5974202, 0.3287957, -0.34492126), (0.5035267, 0.36738375, -0.50352734), (0.3636073, 0.39360362, -0.6297871), (0.17908573, 0.3324265, -0.6683585), (-2.9634816e-7, 0.22896558, -0.6322714), (-0.15616065, 0.1788273, -0.5827986), (-0.31606352, 0.22871453, -0.54743767), (-0.4350159, 0.19937135, -0.43501538), (-0.5729653, 0.27982843, -0.33080128), (-0.61576104, 0.2380021, -0.16499238), (-0.7324337, 0.40265256, 2.8777586e-7), (-0.6843217, 0.36108434, 0.18336369), (-0.5895902, 0.3131173, 0.3404003), (-0.44295153, 0.21883312, 0.44295174), (-0.33186483, 0.28351617, 0.5748069), (-0.17681481, 0.31720978, 0.65988225), (5.2848513e-8, 0.30137905, 0.674031), (0.17176695, 0.28338906, 0.64104295), (0.320252, 0.24324147, 0.55469286), (0.48510966, 0.3222184, 0.48510966), (0.5765089, 0.2869241, 0.33284754), (0.5992999, 0.20845085, 0.16058195), (0.94027144, 0.25425342, -7.130584e-7), (0.85137665, 0.2202308, -0.22812636), (0.8179285, 0.25667608, -0.47223195), (0.66799134, 0.25680336, -0.6679922), (0.40766677, 0.18203813, -0.7061005), (0.21541403, 0.19184309, -0.8039378), (-2.9665634e-7, 0.09592005, -0.6663445), (-0.16388868, 0.076771565, -0.61164), (-0.36175692, 0.12896442, -0.6265809), (-0.5530889, 0.16287757, -0.5530883), (-0.6485151, 0.14360383, -0.37441996), (-0.803161, 0.19137827, -0.21520598), (-0.79750234, 0.17173098, 3.1250565e-7), (-0.74504334, 0.15660053, 0.19963403), (-0.7232319, 0.1934724, 0.4175584), (-0.5483897, 0.15903668, 0.54839), (-0.4600036, 0.24254058, 0.79674995), (-0.23364605, 0.23255944, 0.8719794), (7.1697386e-8, 0.24786966, 0.9292271), (0.21392845, 0.18852435, 0.7983917), (0.3889495, 0.16040008, 0.6736804), (0.62327474, 0.22025013, 0.62327474), (0.73486555, 0.20123704, 0.42427486), (0.78852546, 0.18262036, 0.21128477)] ( interpolation = "vertex" ) } def ComputeGraph "graph" { def ComputeGraphSettings "computegraphSettings" { custom token evaluator:type = "dirty_push" } def ComputeNode "arrayLength" { custom token node:type = "omni.graph.nodes.ArrayLength" custom int node:typeVersion = 1 custom rel inputs:input = [</defaultPrim/inputMesh>] custom token inputs:nameOfAttribute = "points" custom int outputs:length } def ComputeNode "adjacency" { custom token node:type = "omni.graph.examples.cpp.Adjacency" custom int node:typeVersion = 1 custom rel inputs:mesh = [</defaultPrim/inputMesh>] custom token inputs:nameOfVertexIndicesInputAttribute = "faceVertexIndices" custom token inputs:nameOfVertexCountsInputAttribute = "faceVertexCounts" custom bool inputs:treatEdgesAsOneWay = false custom bool inputs:treatFacesAsCurves = false custom bool inputs:removeDuplicates = true custom bool inputs:computeNeighbors = true custom token inputs:nameOfNeighborsOutputAttribute = "neighbors" custom bool inputs:computeNeighborCounts = false # This attribute shouldn't be needed, since computeNeighborCounts is false. #token inputs:nameOfNeighborCountsOutputAttribute = "neighborCounts" custom bool inputs:computeNeighborStarts = true custom token inputs:nameOfNeighborStartsOutputAttribute = "neighborStarts" custom bool inputs:computeDistances = false # These attributes shouldn't be needed, since computeDistances is false. #token inputs:nameOfDistancesOutputAttribute = "distances" #token inputs:nameOfPositionsInputAttribute = "points" int inputs:pointCount.connect = </defaultPrim/graph/arrayLength.outputs:length> def Output "outputs_mesh" { } } def ComputeNode "smooth" { custom token node:type = "omni.graph.examples.cpp.Smooth" custom int node:typeVersion = 1 custom rel inputs:mesh = [</defaultPrim/graph/adjacency/outputs_mesh>] custom token inputs:nameOfAttributeToSmooth = "points" custom token inputs:nameOfNeighborsInputAttribute = "neighbors" custom token inputs:nameOfNeighborStartsInputAttribute = "neighborStarts" custom int inputs:iterations = 5 custom bool inputs:useGPU = false def Output "outputs_mesh" { } } def ComputeNode "extract" { custom token node:type = "omni.graph.examples.cpp.ExtractFloat3Array" custom int node:typeVersion = 1 custom rel inputs:input = [</defaultPrim/graph/smooth/outputs_mesh>] custom token inputs:nameOfAttribute = "points" custom float3[] outputs:output } } def Mesh "outputMesh" { uniform bool doubleSided = 1 uniform token orientation = "leftHanded" point3f[] points.connect = </defaultPrim/graph/extract.outputs:output> int[] faceVertexCounts.connect = </defaultPrim/inputMesh.faceVertexCounts> int[] faceVertexIndices.connect = </defaultPrim/inputMesh.faceVertexIndices> } }
omniverse-code/kit/exts/omni.graph/data/ExampleTwoDeformers_push_pull.usda
#usda 1.0 ( doc = """Generated from Composed Stage of root layer """ ) def Xform "defaultPrim" { def Mesh "inputGrid" { uniform bool doubleSided = 1 int[] faceVertexCounts = [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 1, 33, 0, 33, 32, 1, 2, 34, 1, 34, 33, 2, 3, 35, 2, 35, 34, 3, 4, 36, 3, 36, 35, 4, 5, 37, 4, 37, 36, 5, 6, 38, 5, 38, 37, 6, 7, 39, 6, 39, 38, 7, 8, 40, 7, 40, 39, 8, 9, 41, 8, 41, 40, 9, 10, 42, 9, 42, 41, 10, 11, 43, 10, 43, 42, 11, 12, 44, 11, 44, 43, 12, 13, 45, 12, 45, 44, 13, 14, 46, 13, 46, 45, 14, 15, 47, 14, 47, 46, 15, 16, 48, 15, 48, 47, 16, 17, 49, 16, 49, 48, 17, 18, 50, 17, 50, 49, 18, 19, 51, 18, 51, 50, 19, 20, 52, 19, 52, 51, 20, 21, 53, 20, 53, 52, 21, 22, 54, 21, 54, 53, 22, 23, 55, 22, 55, 54, 23, 24, 56, 23, 56, 55, 24, 25, 57, 24, 57, 56, 25, 26, 58, 25, 58, 57, 26, 27, 59, 26, 59, 58, 27, 28, 60, 27, 60, 59, 28, 29, 61, 28, 61, 60, 29, 30, 62, 29, 62, 61, 30, 31, 63, 30, 63, 62, 32, 33, 65, 32, 65, 64, 33, 34, 66, 33, 66, 65, 34, 35, 67, 34, 67, 66, 35, 36, 68, 35, 68, 67, 36, 37, 69, 36, 69, 68, 37, 38, 70, 37, 70, 69, 38, 39, 71, 38, 71, 70, 39, 40, 72, 39, 72, 71, 40, 41, 73, 40, 73, 72, 41, 42, 74, 41, 74, 73, 42, 43, 75, 42, 75, 74, 43, 44, 76, 43, 76, 75, 44, 45, 77, 44, 77, 76, 45, 46, 78, 45, 78, 77, 46, 47, 79, 46, 79, 78, 47, 48, 80, 47, 80, 79, 48, 49, 81, 48, 81, 80, 49, 50, 82, 49, 82, 81, 50, 51, 83, 50, 83, 82, 51, 52, 84, 51, 84, 83, 52, 53, 85, 52, 85, 84, 53, 54, 86, 53, 86, 85, 54, 55, 87, 54, 87, 86, 55, 56, 88, 55, 88, 87, 56, 57, 89, 56, 89, 88, 57, 58, 90, 57, 90, 89, 58, 59, 91, 58, 91, 90, 59, 60, 92, 59, 92, 91, 60, 61, 93, 60, 93, 92, 61, 62, 94, 61, 94, 93, 62, 63, 95, 62, 95, 94, 64, 65, 97, 64, 97, 96, 65, 66, 98, 65, 98, 97, 66, 67, 99, 66, 99, 98, 67, 68, 100, 67, 100, 99, 68, 69, 101, 68, 101, 100, 69, 70, 102, 69, 102, 101, 70, 71, 103, 70, 103, 102, 71, 72, 104, 71, 104, 103, 72, 73, 105, 72, 105, 104, 73, 74, 106, 73, 106, 105, 74, 75, 107, 74, 107, 106, 75, 76, 108, 75, 108, 107, 76, 77, 109, 76, 109, 108, 77, 78, 110, 77, 110, 109, 78, 79, 111, 78, 111, 110, 79, 80, 112, 79, 112, 111, 80, 81, 113, 80, 113, 112, 81, 82, 114, 81, 114, 113, 82, 83, 115, 82, 115, 114, 83, 84, 116, 83, 116, 115, 84, 85, 117, 84, 117, 116, 85, 86, 118, 85, 118, 117, 86, 87, 119, 86, 119, 118, 87, 88, 120, 87, 120, 119, 88, 89, 121, 88, 121, 120, 89, 90, 122, 89, 122, 121, 90, 91, 123, 90, 123, 122, 91, 92, 124, 91, 124, 123, 92, 93, 125, 92, 125, 124, 93, 94, 126, 93, 126, 125, 94, 95, 127, 94, 127, 126, 96, 97, 129, 96, 129, 128, 97, 98, 130, 97, 130, 129, 98, 99, 131, 98, 131, 130, 99, 100, 132, 99, 132, 131, 100, 101, 133, 100, 133, 132, 101, 102, 134, 101, 134, 133, 102, 103, 135, 102, 135, 134, 103, 104, 136, 103, 136, 135, 104, 105, 137, 104, 137, 136, 105, 106, 138, 105, 138, 137, 106, 107, 139, 106, 139, 138, 107, 108, 140, 107, 140, 139, 108, 109, 141, 108, 141, 140, 109, 110, 142, 109, 142, 141, 110, 111, 143, 110, 143, 142, 111, 112, 144, 111, 144, 143, 112, 113, 145, 112, 145, 144, 113, 114, 146, 113, 146, 145, 114, 115, 147, 114, 147, 146, 115, 116, 148, 115, 148, 147, 116, 117, 149, 116, 149, 148, 117, 118, 150, 117, 150, 149, 118, 119, 151, 118, 151, 150, 119, 120, 152, 119, 152, 151, 120, 121, 153, 120, 153, 152, 121, 122, 154, 121, 154, 153, 122, 123, 155, 122, 155, 154, 123, 124, 156, 123, 156, 155, 124, 125, 157, 124, 157, 156, 125, 126, 158, 125, 158, 157, 126, 127, 159, 126, 159, 158, 128, 129, 161, 128, 161, 160, 129, 130, 162, 129, 162, 161, 130, 131, 163, 130, 163, 162, 131, 132, 164, 131, 164, 163, 132, 133, 165, 132, 165, 164, 133, 134, 166, 133, 166, 165, 134, 135, 167, 134, 167, 166, 135, 136, 168, 135, 168, 167, 136, 137, 169, 136, 169, 168, 137, 138, 170, 137, 170, 169, 138, 139, 171, 138, 171, 170, 139, 140, 172, 139, 172, 171, 140, 141, 173, 140, 173, 172, 141, 142, 174, 141, 174, 173, 142, 143, 175, 142, 175, 174, 143, 144, 176, 143, 176, 175, 144, 145, 177, 144, 177, 176, 145, 146, 178, 145, 178, 177, 146, 147, 179, 146, 179, 178, 147, 148, 180, 147, 180, 179, 148, 149, 181, 148, 181, 180, 149, 150, 182, 149, 182, 181, 150, 151, 183, 150, 183, 182, 151, 152, 184, 151, 184, 183, 152, 153, 185, 152, 185, 184, 153, 154, 186, 153, 186, 185, 154, 155, 187, 154, 187, 186, 155, 156, 188, 155, 188, 187, 156, 157, 189, 156, 189, 188, 157, 158, 190, 157, 190, 189, 158, 159, 191, 158, 191, 190, 160, 161, 193, 160, 193, 192, 161, 162, 194, 161, 194, 193, 162, 163, 195, 162, 195, 194, 163, 164, 196, 163, 196, 195, 164, 165, 197, 164, 197, 196, 165, 166, 198, 165, 198, 197, 166, 167, 199, 166, 199, 198, 167, 168, 200, 167, 200, 199, 168, 169, 201, 168, 201, 200, 169, 170, 202, 169, 202, 201, 170, 171, 203, 170, 203, 202, 171, 172, 204, 171, 204, 203, 172, 173, 205, 172, 205, 204, 173, 174, 206, 173, 206, 205, 174, 175, 207, 174, 207, 206, 175, 176, 208, 175, 208, 207, 176, 177, 209, 176, 209, 208, 177, 178, 210, 177, 210, 209, 178, 179, 211, 178, 211, 210, 179, 180, 212, 179, 212, 211, 180, 181, 213, 180, 213, 212, 181, 182, 214, 181, 214, 213, 182, 183, 215, 182, 215, 214, 183, 184, 216, 183, 216, 215, 184, 185, 217, 184, 217, 216, 185, 186, 218, 185, 218, 217, 186, 187, 219, 186, 219, 218, 187, 188, 220, 187, 220, 219, 188, 189, 221, 188, 221, 220, 189, 190, 222, 189, 222, 221, 190, 191, 223, 190, 223, 222, 192, 193, 225, 192, 225, 224, 193, 194, 226, 193, 226, 225, 194, 195, 227, 194, 227, 226, 195, 196, 228, 195, 228, 227, 196, 197, 229, 196, 229, 228, 197, 198, 230, 197, 230, 229, 198, 199, 231, 198, 231, 230, 199, 200, 232, 199, 232, 231, 200, 201, 233, 200, 233, 232, 201, 202, 234, 201, 234, 233, 202, 203, 235, 202, 235, 234, 203, 204, 236, 203, 236, 235, 204, 205, 237, 204, 237, 236, 205, 206, 238, 205, 238, 237, 206, 207, 239, 206, 239, 238, 207, 208, 240, 207, 240, 239, 208, 209, 241, 208, 241, 240, 209, 210, 242, 209, 242, 241, 210, 211, 243, 210, 243, 242, 211, 212, 244, 211, 244, 243, 212, 213, 245, 212, 245, 244, 213, 214, 246, 213, 246, 245, 214, 215, 247, 214, 247, 246, 215, 216, 248, 215, 248, 247, 216, 217, 249, 216, 249, 248, 217, 218, 250, 217, 250, 249, 218, 219, 251, 218, 251, 250, 219, 220, 252, 219, 252, 251, 220, 221, 253, 220, 253, 252, 221, 222, 254, 221, 254, 253, 222, 223, 255, 222, 255, 254, 224, 225, 257, 224, 257, 256, 225, 226, 258, 225, 258, 257, 226, 227, 259, 226, 259, 258, 227, 228, 260, 227, 260, 259, 228, 229, 261, 228, 261, 260, 229, 230, 262, 229, 262, 261, 230, 231, 263, 230, 263, 262, 231, 232, 264, 231, 264, 263, 232, 233, 265, 232, 265, 264, 233, 234, 266, 233, 266, 265, 234, 235, 267, 234, 267, 266, 235, 236, 268, 235, 268, 267, 236, 237, 269, 236, 269, 268, 237, 238, 270, 237, 270, 269, 238, 239, 271, 238, 271, 270, 239, 240, 272, 239, 272, 271, 240, 241, 273, 240, 273, 272, 241, 242, 274, 241, 274, 273, 242, 243, 275, 242, 275, 274, 243, 244, 276, 243, 276, 275, 244, 245, 277, 244, 277, 276, 245, 246, 278, 245, 278, 277, 246, 247, 279, 246, 279, 278, 247, 248, 280, 247, 280, 279, 248, 249, 281, 248, 281, 280, 249, 250, 282, 249, 282, 281, 250, 251, 283, 250, 283, 282, 251, 252, 284, 251, 284, 283, 252, 253, 285, 252, 285, 284, 253, 254, 286, 253, 286, 285, 254, 255, 287, 254, 287, 286, 256, 257, 289, 256, 289, 288, 257, 258, 290, 257, 290, 289, 258, 259, 291, 258, 291, 290, 259, 260, 292, 259, 292, 291, 260, 261, 293, 260, 293, 292, 261, 262, 294, 261, 294, 293, 262, 263, 295, 262, 295, 294, 263, 264, 296, 263, 296, 295, 264, 265, 297, 264, 297, 296, 265, 266, 298, 265, 298, 297, 266, 267, 299, 266, 299, 298, 267, 268, 300, 267, 300, 299, 268, 269, 301, 268, 301, 300, 269, 270, 302, 269, 302, 301, 270, 271, 303, 270, 303, 302, 271, 272, 304, 271, 304, 303, 272, 273, 305, 272, 305, 304, 273, 274, 306, 273, 306, 305, 274, 275, 307, 274, 307, 306, 275, 276, 308, 275, 308, 307, 276, 277, 309, 276, 309, 308, 277, 278, 310, 277, 310, 309, 278, 279, 311, 278, 311, 310, 279, 280, 312, 279, 312, 311, 280, 281, 313, 280, 313, 312, 281, 282, 314, 281, 314, 313, 282, 283, 315, 282, 315, 314, 283, 284, 316, 283, 316, 315, 284, 285, 317, 284, 317, 316, 285, 286, 318, 285, 318, 317, 286, 287, 319, 286, 319, 318, 288, 289, 321, 288, 321, 320, 289, 290, 322, 289, 322, 321, 290, 291, 323, 290, 323, 322, 291, 292, 324, 291, 324, 323, 292, 293, 325, 292, 325, 324, 293, 294, 326, 293, 326, 325, 294, 295, 327, 294, 327, 326, 295, 296, 328, 295, 328, 327, 296, 297, 329, 296, 329, 328, 297, 298, 330, 297, 330, 329, 298, 299, 331, 298, 331, 330, 299, 300, 332, 299, 332, 331, 300, 301, 333, 300, 333, 332, 301, 302, 334, 301, 334, 333, 302, 303, 335, 302, 335, 334, 303, 304, 336, 303, 336, 335, 304, 305, 337, 304, 337, 336, 305, 306, 338, 305, 338, 337, 306, 307, 339, 306, 339, 338, 307, 308, 340, 307, 340, 339, 308, 309, 341, 308, 341, 340, 309, 310, 342, 309, 342, 341, 310, 311, 343, 310, 343, 342, 311, 312, 344, 311, 344, 343, 312, 313, 345, 312, 345, 344, 313, 314, 346, 313, 346, 345, 314, 315, 347, 314, 347, 346, 315, 316, 348, 315, 348, 347, 316, 317, 349, 316, 349, 348, 317, 318, 350, 317, 350, 349, 318, 319, 351, 318, 351, 350, 320, 321, 353, 320, 353, 352, 321, 322, 354, 321, 354, 353, 322, 323, 355, 322, 355, 354, 323, 324, 356, 323, 356, 355, 324, 325, 357, 324, 357, 356, 325, 326, 358, 325, 358, 357, 326, 327, 359, 326, 359, 358, 327, 328, 360, 327, 360, 359, 328, 329, 361, 328, 361, 360, 329, 330, 362, 329, 362, 361, 330, 331, 363, 330, 363, 362, 331, 332, 364, 331, 364, 363, 332, 333, 365, 332, 365, 364, 333, 334, 366, 333, 366, 365, 334, 335, 367, 334, 367, 366, 335, 336, 368, 335, 368, 367, 336, 337, 369, 336, 369, 368, 337, 338, 370, 337, 370, 369, 338, 339, 371, 338, 371, 370, 339, 340, 372, 339, 372, 371, 340, 341, 373, 340, 373, 372, 341, 342, 374, 341, 374, 373, 342, 343, 375, 342, 375, 374, 343, 344, 376, 343, 376, 375, 344, 345, 377, 344, 377, 376, 345, 346, 378, 345, 378, 377, 346, 347, 379, 346, 379, 378, 347, 348, 380, 347, 380, 379, 348, 349, 381, 348, 381, 380, 349, 350, 382, 349, 382, 381, 350, 351, 383, 350, 383, 382, 352, 353, 385, 352, 385, 384, 353, 354, 386, 353, 386, 385, 354, 355, 387, 354, 387, 386, 355, 356, 388, 355, 388, 387, 356, 357, 389, 356, 389, 388, 357, 358, 390, 357, 390, 389, 358, 359, 391, 358, 391, 390, 359, 360, 392, 359, 392, 391, 360, 361, 393, 360, 393, 392, 361, 362, 394, 361, 394, 393, 362, 363, 395, 362, 395, 394, 363, 364, 396, 363, 396, 395, 364, 365, 397, 364, 397, 396, 365, 366, 398, 365, 398, 397, 366, 367, 399, 366, 399, 398, 367, 368, 400, 367, 400, 399, 368, 369, 401, 368, 401, 400, 369, 370, 402, 369, 402, 401, 370, 371, 403, 370, 403, 402, 371, 372, 404, 371, 404, 403, 372, 373, 405, 372, 405, 404, 373, 374, 406, 373, 406, 405, 374, 375, 407, 374, 407, 406, 375, 376, 408, 375, 408, 407, 376, 377, 409, 376, 409, 408, 377, 378, 410, 377, 410, 409, 378, 379, 411, 378, 411, 410, 379, 380, 412, 379, 412, 411, 380, 381, 413, 380, 413, 412, 381, 382, 414, 381, 414, 413, 382, 383, 415, 382, 415, 414, 384, 385, 417, 384, 417, 416, 385, 386, 418, 385, 418, 417, 386, 387, 419, 386, 419, 418, 387, 388, 420, 387, 420, 419, 388, 389, 421, 388, 421, 420, 389, 390, 422, 389, 422, 421, 390, 391, 423, 390, 423, 422, 391, 392, 424, 391, 424, 423, 392, 393, 425, 392, 425, 424, 393, 394, 426, 393, 426, 425, 394, 395, 427, 394, 427, 426, 395, 396, 428, 395, 428, 427, 396, 397, 429, 396, 429, 428, 397, 398, 430, 397, 430, 429, 398, 399, 431, 398, 431, 430, 399, 400, 432, 399, 432, 431, 400, 401, 433, 400, 433, 432, 401, 402, 434, 401, 434, 433, 402, 403, 435, 402, 435, 434, 403, 404, 436, 403, 436, 435, 404, 405, 437, 404, 437, 436, 405, 406, 438, 405, 438, 437, 406, 407, 439, 406, 439, 438, 407, 408, 440, 407, 440, 439, 408, 409, 441, 408, 441, 440, 409, 410, 442, 409, 442, 441, 410, 411, 443, 410, 443, 442, 411, 412, 444, 411, 444, 443, 412, 413, 445, 412, 445, 444, 413, 414, 446, 413, 446, 445, 414, 415, 447, 414, 447, 446, 416, 417, 449, 416, 449, 448, 417, 418, 450, 417, 450, 449, 418, 419, 451, 418, 451, 450, 419, 420, 452, 419, 452, 451, 420, 421, 453, 420, 453, 452, 421, 422, 454, 421, 454, 453, 422, 423, 455, 422, 455, 454, 423, 424, 456, 423, 456, 455, 424, 425, 457, 424, 457, 456, 425, 426, 458, 425, 458, 457, 426, 427, 459, 426, 459, 458, 427, 428, 460, 427, 460, 459, 428, 429, 461, 428, 461, 460, 429, 430, 462, 429, 462, 461, 430, 431, 463, 430, 463, 462, 431, 432, 464, 431, 464, 463, 432, 433, 465, 432, 465, 464, 433, 434, 466, 433, 466, 465, 434, 435, 467, 434, 467, 466, 435, 436, 468, 435, 468, 467, 436, 437, 469, 436, 469, 468, 437, 438, 470, 437, 470, 469, 438, 439, 471, 438, 471, 470, 439, 440, 472, 439, 472, 471, 440, 441, 473, 440, 473, 472, 441, 442, 474, 441, 474, 473, 442, 443, 475, 442, 475, 474, 443, 444, 476, 443, 476, 475, 444, 445, 477, 444, 477, 476, 445, 446, 478, 445, 478, 477, 446, 447, 479, 446, 479, 478, 448, 449, 481, 448, 481, 480, 449, 450, 482, 449, 482, 481, 450, 451, 483, 450, 483, 482, 451, 452, 484, 451, 484, 483, 452, 453, 485, 452, 485, 484, 453, 454, 486, 453, 486, 485, 454, 455, 487, 454, 487, 486, 455, 456, 488, 455, 488, 487, 456, 457, 489, 456, 489, 488, 457, 458, 490, 457, 490, 489, 458, 459, 491, 458, 491, 490, 459, 460, 492, 459, 492, 491, 460, 461, 493, 460, 493, 492, 461, 462, 494, 461, 494, 493, 462, 463, 495, 462, 495, 494, 463, 464, 496, 463, 496, 495, 464, 465, 497, 464, 497, 496, 465, 466, 498, 465, 498, 497, 466, 467, 499, 466, 499, 498, 467, 468, 500, 467, 500, 499, 468, 469, 501, 468, 501, 500, 469, 470, 502, 469, 502, 501, 470, 471, 503, 470, 503, 502, 471, 472, 504, 471, 504, 503, 472, 473, 505, 472, 505, 504, 473, 474, 506, 473, 506, 505, 474, 475, 507, 474, 507, 506, 475, 476, 508, 475, 508, 507, 476, 477, 509, 476, 509, 508, 477, 478, 510, 477, 510, 509, 478, 479, 511, 478, 511, 510, 480, 481, 513, 480, 513, 512, 481, 482, 514, 481, 514, 513, 482, 483, 515, 482, 515, 514, 483, 484, 516, 483, 516, 515, 484, 485, 517, 484, 517, 516, 485, 486, 518, 485, 518, 517, 486, 487, 519, 486, 519, 518, 487, 488, 520, 487, 520, 519, 488, 489, 521, 488, 521, 520, 489, 490, 522, 489, 522, 521, 490, 491, 523, 490, 523, 522, 491, 492, 524, 491, 524, 523, 492, 493, 525, 492, 525, 524, 493, 494, 526, 493, 526, 525, 494, 495, 527, 494, 527, 526, 495, 496, 528, 495, 528, 527, 496, 497, 529, 496, 529, 528, 497, 498, 530, 497, 530, 529, 498, 499, 531, 498, 531, 530, 499, 500, 532, 499, 532, 531, 500, 501, 533, 500, 533, 532, 501, 502, 534, 501, 534, 533, 502, 503, 535, 502, 535, 534, 503, 504, 536, 503, 536, 535, 504, 505, 537, 504, 537, 536, 505, 506, 538, 505, 538, 537, 506, 507, 539, 506, 539, 538, 507, 508, 540, 507, 540, 539, 508, 509, 541, 508, 541, 540, 509, 510, 542, 509, 542, 541, 510, 511, 543, 510, 543, 542, 512, 513, 545, 512, 545, 544, 513, 514, 546, 513, 546, 545, 514, 515, 547, 514, 547, 546, 515, 516, 548, 515, 548, 547, 516, 517, 549, 516, 549, 548, 517, 518, 550, 517, 550, 549, 518, 519, 551, 518, 551, 550, 519, 520, 552, 519, 552, 551, 520, 521, 553, 520, 553, 552, 521, 522, 554, 521, 554, 553, 522, 523, 555, 522, 555, 554, 523, 524, 556, 523, 556, 555, 524, 525, 557, 524, 557, 556, 525, 526, 558, 525, 558, 557, 526, 527, 559, 526, 559, 558, 527, 528, 560, 527, 560, 559, 528, 529, 561, 528, 561, 560, 529, 530, 562, 529, 562, 561, 530, 531, 563, 530, 563, 562, 531, 532, 564, 531, 564, 563, 532, 533, 565, 532, 565, 564, 533, 534, 566, 533, 566, 565, 534, 535, 567, 534, 567, 566, 535, 536, 568, 535, 568, 567, 536, 537, 569, 536, 569, 568, 537, 538, 570, 537, 570, 569, 538, 539, 571, 538, 571, 570, 539, 540, 572, 539, 572, 571, 540, 541, 573, 540, 573, 572, 541, 542, 574, 541, 574, 573, 542, 543, 575, 542, 575, 574, 544, 545, 577, 544, 577, 576, 545, 546, 578, 545, 578, 577, 546, 547, 579, 546, 579, 578, 547, 548, 580, 547, 580, 579, 548, 549, 581, 548, 581, 580, 549, 550, 582, 549, 582, 581, 550, 551, 583, 550, 583, 582, 551, 552, 584, 551, 584, 583, 552, 553, 585, 552, 585, 584, 553, 554, 586, 553, 586, 585, 554, 555, 587, 554, 587, 586, 555, 556, 588, 555, 588, 587, 556, 557, 589, 556, 589, 588, 557, 558, 590, 557, 590, 589, 558, 559, 591, 558, 591, 590, 559, 560, 592, 559, 592, 591, 560, 561, 593, 560, 593, 592, 561, 562, 594, 561, 594, 593, 562, 563, 595, 562, 595, 594, 563, 564, 596, 563, 596, 595, 564, 565, 597, 564, 597, 596, 565, 566, 598, 565, 598, 597, 566, 567, 599, 566, 599, 598, 567, 568, 600, 567, 600, 599, 568, 569, 601, 568, 601, 600, 569, 570, 602, 569, 602, 601, 570, 571, 603, 570, 603, 602, 571, 572, 604, 571, 604, 603, 572, 573, 605, 572, 605, 604, 573, 574, 606, 573, 606, 605, 574, 575, 607, 574, 607, 606, 576, 577, 609, 576, 609, 608, 577, 578, 610, 577, 610, 609, 578, 579, 611, 578, 611, 610, 579, 580, 612, 579, 612, 611, 580, 581, 613, 580, 613, 612, 581, 582, 614, 581, 614, 613, 582, 583, 615, 582, 615, 614, 583, 584, 616, 583, 616, 615, 584, 585, 617, 584, 617, 616, 585, 586, 618, 585, 618, 617, 586, 587, 619, 586, 619, 618, 587, 588, 620, 587, 620, 619, 588, 589, 621, 588, 621, 620, 589, 590, 622, 589, 622, 621, 590, 591, 623, 590, 623, 622, 591, 592, 624, 591, 624, 623, 592, 593, 625, 592, 625, 624, 593, 594, 626, 593, 626, 625, 594, 595, 627, 594, 627, 626, 595, 596, 628, 595, 628, 627, 596, 597, 629, 596, 629, 628, 597, 598, 630, 597, 630, 629, 598, 599, 631, 598, 631, 630, 599, 600, 632, 599, 632, 631, 600, 601, 633, 600, 633, 632, 601, 602, 634, 601, 634, 633, 602, 603, 635, 602, 635, 634, 603, 604, 636, 603, 636, 635, 604, 605, 637, 604, 637, 636, 605, 606, 638, 605, 638, 637, 606, 607, 639, 606, 639, 638, 608, 609, 641, 608, 641, 640, 609, 610, 642, 609, 642, 641, 610, 611, 643, 610, 643, 642, 611, 612, 644, 611, 644, 643, 612, 613, 645, 612, 645, 644, 613, 614, 646, 613, 646, 645, 614, 615, 647, 614, 647, 646, 615, 616, 648, 615, 648, 647, 616, 617, 649, 616, 649, 648, 617, 618, 650, 617, 650, 649, 618, 619, 651, 618, 651, 650, 619, 620, 652, 619, 652, 651, 620, 621, 653, 620, 653, 652, 621, 622, 654, 621, 654, 653, 622, 623, 655, 622, 655, 654, 623, 624, 656, 623, 656, 655, 624, 625, 657, 624, 657, 656, 625, 626, 658, 625, 658, 657, 626, 627, 659, 626, 659, 658, 627, 628, 660, 627, 660, 659, 628, 629, 661, 628, 661, 660, 629, 630, 662, 629, 662, 661, 630, 631, 663, 630, 663, 662, 631, 632, 664, 631, 664, 663, 632, 633, 665, 632, 665, 664, 633, 634, 666, 633, 666, 665, 634, 635, 667, 634, 667, 666, 635, 636, 668, 635, 668, 667, 636, 637, 669, 636, 669, 668, 637, 638, 670, 637, 670, 669, 638, 639, 671, 638, 671, 670, 640, 641, 673, 640, 673, 672, 641, 642, 674, 641, 674, 673, 642, 643, 675, 642, 675, 674, 643, 644, 676, 643, 676, 675, 644, 645, 677, 644, 677, 676, 645, 646, 678, 645, 678, 677, 646, 647, 679, 646, 679, 678, 647, 648, 680, 647, 680, 679, 648, 649, 681, 648, 681, 680, 649, 650, 682, 649, 682, 681, 650, 651, 683, 650, 683, 682, 651, 652, 684, 651, 684, 683, 652, 653, 685, 652, 685, 684, 653, 654, 686, 653, 686, 685, 654, 655, 687, 654, 687, 686, 655, 656, 688, 655, 688, 687, 656, 657, 689, 656, 689, 688, 657, 658, 690, 657, 690, 689, 658, 659, 691, 658, 691, 690, 659, 660, 692, 659, 692, 691, 660, 661, 693, 660, 693, 692, 661, 662, 694, 661, 694, 693, 662, 663, 695, 662, 695, 694, 663, 664, 696, 663, 696, 695, 664, 665, 697, 664, 697, 696, 665, 666, 698, 665, 698, 697, 666, 667, 699, 666, 699, 698, 667, 668, 700, 667, 700, 699, 668, 669, 701, 668, 701, 700, 669, 670, 702, 669, 702, 701, 670, 671, 703, 670, 703, 702, 672, 673, 705, 672, 705, 704, 673, 674, 706, 673, 706, 705, 674, 675, 707, 674, 707, 706, 675, 676, 708, 675, 708, 707, 676, 677, 709, 676, 709, 708, 677, 678, 710, 677, 710, 709, 678, 679, 711, 678, 711, 710, 679, 680, 712, 679, 712, 711, 680, 681, 713, 680, 713, 712, 681, 682, 714, 681, 714, 713, 682, 683, 715, 682, 715, 714, 683, 684, 716, 683, 716, 715, 684, 685, 717, 684, 717, 716, 685, 686, 718, 685, 718, 717, 686, 687, 719, 686, 719, 718, 687, 688, 720, 687, 720, 719, 688, 689, 721, 688, 721, 720, 689, 690, 722, 689, 722, 721, 690, 691, 723, 690, 723, 722, 691, 692, 724, 691, 724, 723, 692, 693, 725, 692, 725, 724, 693, 694, 726, 693, 726, 725, 694, 695, 727, 694, 727, 726, 695, 696, 728, 695, 728, 727, 696, 697, 729, 696, 729, 728, 697, 698, 730, 697, 730, 729, 698, 699, 731, 698, 731, 730, 699, 700, 732, 699, 732, 731, 700, 701, 733, 700, 733, 732, 701, 702, 734, 701, 734, 733, 702, 703, 735, 702, 735, 734, 704, 705, 737, 704, 737, 736, 705, 706, 738, 705, 738, 737, 706, 707, 739, 706, 739, 738, 707, 708, 740, 707, 740, 739, 708, 709, 741, 708, 741, 740, 709, 710, 742, 709, 742, 741, 710, 711, 743, 710, 743, 742, 711, 712, 744, 711, 744, 743, 712, 713, 745, 712, 745, 744, 713, 714, 746, 713, 746, 745, 714, 715, 747, 714, 747, 746, 715, 716, 748, 715, 748, 747, 716, 717, 749, 716, 749, 748, 717, 718, 750, 717, 750, 749, 718, 719, 751, 718, 751, 750, 719, 720, 752, 719, 752, 751, 720, 721, 753, 720, 753, 752, 721, 722, 754, 721, 754, 753, 722, 723, 755, 722, 755, 754, 723, 724, 756, 723, 756, 755, 724, 725, 757, 724, 757, 756, 725, 726, 758, 725, 758, 757, 726, 727, 759, 726, 759, 758, 727, 728, 760, 727, 760, 759, 728, 729, 761, 728, 761, 760, 729, 730, 762, 729, 762, 761, 730, 731, 763, 730, 763, 762, 731, 732, 764, 731, 764, 763, 732, 733, 765, 732, 765, 764, 733, 734, 766, 733, 766, 765, 734, 735, 767, 734, 767, 766, 736, 737, 769, 736, 769, 768, 737, 738, 770, 737, 770, 769, 738, 739, 771, 738, 771, 770, 739, 740, 772, 739, 772, 771, 740, 741, 773, 740, 773, 772, 741, 742, 774, 741, 774, 773, 742, 743, 775, 742, 775, 774, 743, 744, 776, 743, 776, 775, 744, 745, 777, 744, 777, 776, 745, 746, 778, 745, 778, 777, 746, 747, 779, 746, 779, 778, 747, 748, 780, 747, 780, 779, 748, 749, 781, 748, 781, 780, 749, 750, 782, 749, 782, 781, 750, 751, 783, 750, 783, 782, 751, 752, 784, 751, 784, 783, 752, 753, 785, 752, 785, 784, 753, 754, 786, 753, 786, 785, 754, 755, 787, 754, 787, 786, 755, 756, 788, 755, 788, 787, 756, 757, 789, 756, 789, 788, 757, 758, 790, 757, 790, 789, 758, 759, 791, 758, 791, 790, 759, 760, 792, 759, 792, 791, 760, 761, 793, 760, 793, 792, 761, 762, 794, 761, 794, 793, 762, 763, 795, 762, 795, 794, 763, 764, 796, 763, 796, 795, 764, 765, 797, 764, 797, 796, 765, 766, 798, 765, 798, 797, 766, 767, 799, 766, 799, 798, 768, 769, 801, 768, 801, 800, 769, 770, 802, 769, 802, 801, 770, 771, 803, 770, 803, 802, 771, 772, 804, 771, 804, 803, 772, 773, 805, 772, 805, 804, 773, 774, 806, 773, 806, 805, 774, 775, 807, 774, 807, 806, 775, 776, 808, 775, 808, 807, 776, 777, 809, 776, 809, 808, 777, 778, 810, 777, 810, 809, 778, 779, 811, 778, 811, 810, 779, 780, 812, 779, 812, 811, 780, 781, 813, 780, 813, 812, 781, 782, 814, 781, 814, 813, 782, 783, 815, 782, 815, 814, 783, 784, 816, 783, 816, 815, 784, 785, 817, 784, 817, 816, 785, 786, 818, 785, 818, 817, 786, 787, 819, 786, 819, 818, 787, 788, 820, 787, 820, 819, 788, 789, 821, 788, 821, 820, 789, 790, 822, 789, 822, 821, 790, 791, 823, 790, 823, 822, 791, 792, 824, 791, 824, 823, 792, 793, 825, 792, 825, 824, 793, 794, 826, 793, 826, 825, 794, 795, 827, 794, 827, 826, 795, 796, 828, 795, 828, 827, 796, 797, 829, 796, 829, 828, 797, 798, 830, 797, 830, 829, 798, 799, 831, 798, 831, 830, 800, 801, 833, 800, 833, 832, 801, 802, 834, 801, 834, 833, 802, 803, 835, 802, 835, 834, 803, 804, 836, 803, 836, 835, 804, 805, 837, 804, 837, 836, 805, 806, 838, 805, 838, 837, 806, 807, 839, 806, 839, 838, 807, 808, 840, 807, 840, 839, 808, 809, 841, 808, 841, 840, 809, 810, 842, 809, 842, 841, 810, 811, 843, 810, 843, 842, 811, 812, 844, 811, 844, 843, 812, 813, 845, 812, 845, 844, 813, 814, 846, 813, 846, 845, 814, 815, 847, 814, 847, 846, 815, 816, 848, 815, 848, 847, 816, 817, 849, 816, 849, 848, 817, 818, 850, 817, 850, 849, 818, 819, 851, 818, 851, 850, 819, 820, 852, 819, 852, 851, 820, 821, 853, 820, 853, 852, 821, 822, 854, 821, 854, 853, 822, 823, 855, 822, 855, 854, 823, 824, 856, 823, 856, 855, 824, 825, 857, 824, 857, 856, 825, 826, 858, 825, 858, 857, 826, 827, 859, 826, 859, 858, 827, 828, 860, 827, 860, 859, 828, 829, 861, 828, 861, 860, 829, 830, 862, 829, 862, 861, 830, 831, 863, 830, 863, 862, 832, 833, 865, 832, 865, 864, 833, 834, 866, 833, 866, 865, 834, 835, 867, 834, 867, 866, 835, 836, 868, 835, 868, 867, 836, 837, 869, 836, 869, 868, 837, 838, 870, 837, 870, 869, 838, 839, 871, 838, 871, 870, 839, 840, 872, 839, 872, 871, 840, 841, 873, 840, 873, 872, 841, 842, 874, 841, 874, 873, 842, 843, 875, 842, 875, 874, 843, 844, 876, 843, 876, 875, 844, 845, 877, 844, 877, 876, 845, 846, 878, 845, 878, 877, 846, 847, 879, 846, 879, 878, 847, 848, 880, 847, 880, 879, 848, 849, 881, 848, 881, 880, 849, 850, 882, 849, 882, 881, 850, 851, 883, 850, 883, 882, 851, 852, 884, 851, 884, 883, 852, 853, 885, 852, 885, 884, 853, 854, 886, 853, 886, 885, 854, 855, 887, 854, 887, 886, 855, 856, 888, 855, 888, 887, 856, 857, 889, 856, 889, 888, 857, 858, 890, 857, 890, 889, 858, 859, 891, 858, 891, 890, 859, 860, 892, 859, 892, 891, 860, 861, 893, 860, 893, 892, 861, 862, 894, 861, 894, 893, 862, 863, 895, 862, 895, 894, 864, 865, 897, 864, 897, 896, 865, 866, 898, 865, 898, 897, 866, 867, 899, 866, 899, 898, 867, 868, 900, 867, 900, 899, 868, 869, 901, 868, 901, 900, 869, 870, 902, 869, 902, 901, 870, 871, 903, 870, 903, 902, 871, 872, 904, 871, 904, 903, 872, 873, 905, 872, 905, 904, 873, 874, 906, 873, 906, 905, 874, 875, 907, 874, 907, 906, 875, 876, 908, 875, 908, 907, 876, 877, 909, 876, 909, 908, 877, 878, 910, 877, 910, 909, 878, 879, 911, 878, 911, 910, 879, 880, 912, 879, 912, 911, 880, 881, 913, 880, 913, 912, 881, 882, 914, 881, 914, 913, 882, 883, 915, 882, 915, 914, 883, 884, 916, 883, 916, 915, 884, 885, 917, 884, 917, 916, 885, 886, 918, 885, 918, 917, 886, 887, 919, 886, 919, 918, 887, 888, 920, 887, 920, 919, 888, 889, 921, 888, 921, 920, 889, 890, 922, 889, 922, 921, 890, 891, 923, 890, 923, 922, 891, 892, 924, 891, 924, 923, 892, 893, 925, 892, 925, 924, 893, 894, 926, 893, 926, 925, 894, 895, 927, 894, 927, 926, 896, 897, 929, 896, 929, 928, 897, 898, 930, 897, 930, 929, 898, 899, 931, 898, 931, 930, 899, 900, 932, 899, 932, 931, 900, 901, 933, 900, 933, 932, 901, 902, 934, 901, 934, 933, 902, 903, 935, 902, 935, 934, 903, 904, 936, 903, 936, 935, 904, 905, 937, 904, 937, 936, 905, 906, 938, 905, 938, 937, 906, 907, 939, 906, 939, 938, 907, 908, 940, 907, 940, 939, 908, 909, 941, 908, 941, 940, 909, 910, 942, 909, 942, 941, 910, 911, 943, 910, 943, 942, 911, 912, 944, 911, 944, 943, 912, 913, 945, 912, 945, 944, 913, 914, 946, 913, 946, 945, 914, 915, 947, 914, 947, 946, 915, 916, 948, 915, 948, 947, 916, 917, 949, 916, 949, 948, 917, 918, 950, 917, 950, 949, 918, 919, 951, 918, 951, 950, 919, 920, 952, 919, 952, 951, 920, 921, 953, 920, 953, 952, 921, 922, 954, 921, 954, 953, 922, 923, 955, 922, 955, 954, 923, 924, 956, 923, 956, 955, 924, 925, 957, 924, 957, 956, 925, 926, 958, 925, 958, 957, 926, 927, 959, 926, 959, 958, 928, 929, 961, 928, 961, 960, 929, 930, 962, 929, 962, 961, 930, 931, 963, 930, 963, 962, 931, 932, 964, 931, 964, 963, 932, 933, 965, 932, 965, 964, 933, 934, 966, 933, 966, 965, 934, 935, 967, 934, 967, 966, 935, 936, 968, 935, 968, 967, 936, 937, 969, 936, 969, 968, 937, 938, 970, 937, 970, 969, 938, 939, 971, 938, 971, 970, 939, 940, 972, 939, 972, 971, 940, 941, 973, 940, 973, 972, 941, 942, 974, 941, 974, 973, 942, 943, 975, 942, 975, 974, 943, 944, 976, 943, 976, 975, 944, 945, 977, 944, 977, 976, 945, 946, 978, 945, 978, 977, 946, 947, 979, 946, 979, 978, 947, 948, 980, 947, 980, 979, 948, 949, 981, 948, 981, 980, 949, 950, 982, 949, 982, 981, 950, 951, 983, 950, 983, 982, 951, 952, 984, 951, 984, 983, 952, 953, 985, 952, 985, 984, 953, 954, 986, 953, 986, 985, 954, 955, 987, 954, 987, 986, 955, 956, 988, 955, 988, 987, 956, 957, 989, 956, 989, 988, 957, 958, 990, 957, 990, 989, 958, 959, 991, 958, 991, 990, 960, 961, 993, 960, 993, 992, 961, 962, 994, 961, 994, 993, 962, 963, 995, 962, 995, 994, 963, 964, 996, 963, 996, 995, 964, 965, 997, 964, 997, 996, 965, 966, 998, 965, 998, 997, 966, 967, 999, 966, 999, 998, 967, 968, 1000, 967, 1000, 999, 968, 969, 1001, 968, 1001, 1000, 969, 970, 1002, 969, 1002, 1001, 970, 971, 1003, 970, 1003, 1002, 971, 972, 1004, 971, 1004, 1003, 972, 973, 1005, 972, 1005, 1004, 973, 974, 1006, 973, 1006, 1005, 974, 975, 1007, 974, 1007, 1006, 975, 976, 1008, 975, 1008, 1007, 976, 977, 1009, 976, 1009, 1008, 977, 978, 1010, 977, 1010, 1009, 978, 979, 1011, 978, 1011, 1010, 979, 980, 1012, 979, 1012, 1011, 980, 981, 1013, 980, 1013, 1012, 981, 982, 1014, 981, 1014, 1013, 982, 983, 1015, 982, 1015, 1014, 983, 984, 1016, 983, 1016, 1015, 984, 985, 1017, 984, 1017, 1016, 985, 986, 1018, 985, 1018, 1017, 986, 987, 1019, 986, 1019, 1018, 987, 988, 1020, 987, 1020, 1019, 988, 989, 1021, 988, 1021, 1020, 989, 990, 1022, 989, 1022, 1021, 990, 991, 1023, 990, 1023, 1022] point3f[] points = [(0, 0, 20), (20, 0, 20), (40, 0, 20), (60, 0, 20), (80, 0, 20), (100, 0, 20), (120, 0, 20), (140, 0, 20), (160, 0, 20), (180, 0, 20), (200, 0, 20), (220, 0, 20), (240, 0, 20), (260, 0, 20), (280, 0, 20), (300, 0, 20), (320, 0, 20), (340, 0, 20), (360, 0, 20), (380, 0, 20), (400, 0, 20), (420, 0, 20), (440, 0, 20), (460, 0, 20), (480, 0, 20), (500, 0, 20), (520, 0, 20), (540, 0, 20), (560, 0, 20), (580, 0, 20), (600, 0, 20), (620, 0, 20), (0, 20, 20), (20, 20, 20), (40, 20, 20), (60, 20, 20), (80, 20, 20), (100, 20, 20), (120, 20, 20), (140, 20, 20), (160, 20, 20), (180, 20, 20), (200, 20, 20), (220, 20, 20), (240, 20, 20), (260, 20, 20), (280, 20, 20), (300, 20, 20), (320, 20, 20), (340, 20, 20), (360, 20, 20), (380, 20, 20), (400, 20, 20), (420, 20, 20), (440, 20, 20), (460, 20, 20), (480, 20, 20), (500, 20, 20), (520, 20, 20), (540, 20, 20), (560, 20, 20), (580, 20, 20), (600, 20, 20), (620, 20, 20), (0, 40, 20), (20, 40, 20), (40, 40, 20), (60, 40, 20), (80, 40, 20), (100, 40, 20), (120, 40, 20), (140, 40, 20), (160, 40, 20), (180, 40, 20), (200, 40, 20), (220, 40, 20), (240, 40, 20), (260, 40, 20), (280, 40, 20), (300, 40, 20), (320, 40, 20), (340, 40, 20), (360, 40, 20), (380, 40, 20), (400, 40, 20), (420, 40, 20), (440, 40, 20), (460, 40, 20), (480, 40, 20), (500, 40, 20), (520, 40, 20), (540, 40, 20), (560, 40, 20), (580, 40, 20), (600, 40, 20), (620, 40, 20), (0, 60, 20), (20, 60, 20), (40, 60, 20), (60, 60, 20), (80, 60, 20), (100, 60, 20), (120, 60, 20), (140, 60, 20), (160, 60, 20), (180, 60, 20), (200, 60, 20), (220, 60, 20), (240, 60, 20), (260, 60, 20), (280, 60, 20), (300, 60, 20), (320, 60, 20), (340, 60, 20), (360, 60, 20), (380, 60, 20), (400, 60, 20), (420, 60, 20), (440, 60, 20), (460, 60, 20), (480, 60, 20), (500, 60, 20), (520, 60, 20), (540, 60, 20), (560, 60, 20), (580, 60, 20), (600, 60, 20), (620, 60, 20), (0, 80, 20), (20, 80, 20), (40, 80, 20), (60, 80, 20), (80, 80, 20), (100, 80, 20), (120, 80, 20), (140, 80, 20), (160, 80, 20), (180, 80, 20), (200, 80, 20), (220, 80, 20), (240, 80, 20), (260, 80, 20), (280, 80, 20), (300, 80, 20), (320, 80, 20), (340, 80, 20), (360, 80, 20), (380, 80, 20), (400, 80, 20), (420, 80, 20), (440, 80, 20), (460, 80, 20), (480, 80, 20), (500, 80, 20), (520, 80, 20), (540, 80, 20), (560, 80, 20), (580, 80, 20), (600, 80, 20), (620, 80, 20), (0, 100, 20), (20, 100, 20), (40, 100, 20), (60, 100, 20), (80, 100, 20), (100, 100, 20), (120, 100, 20), (140, 100, 20), (160, 100, 20), (180, 100, 20), (200, 100, 20), (220, 100, 20), (240, 100, 20), (260, 100, 20), (280, 100, 20), (300, 100, 20), (320, 100, 20), (340, 100, 20), (360, 100, 20), (380, 100, 20), (400, 100, 20), (420, 100, 20), (440, 100, 20), (460, 100, 20), (480, 100, 20), (500, 100, 20), (520, 100, 20), (540, 100, 20), (560, 100, 20), (580, 100, 20), (600, 100, 20), (620, 100, 20), (0, 120, 20), (20, 120, 20), (40, 120, 20), (60, 120, 20), (80, 120, 20), (100, 120, 20), (120, 120, 20), (140, 120, 20), (160, 120, 20), (180, 120, 20), (200, 120, 20), (220, 120, 20), (240, 120, 20), (260, 120, 20), (280, 120, 20), (300, 120, 20), (320, 120, 20), (340, 120, 20), (360, 120, 20), (380, 120, 20), (400, 120, 20), (420, 120, 20), (440, 120, 20), (460, 120, 20), (480, 120, 20), (500, 120, 20), (520, 120, 20), (540, 120, 20), (560, 120, 20), (580, 120, 20), (600, 120, 20), (620, 120, 20), (0, 140, 20), (20, 140, 20), (40, 140, 20), (60, 140, 20), (80, 140, 20), (100, 140, 20), (120, 140, 20), (140, 140, 20), (160, 140, 20), (180, 140, 20), (200, 140, 20), (220, 140, 20), (240, 140, 20), (260, 140, 20), (280, 140, 20), (300, 140, 20), (320, 140, 20), (340, 140, 20), (360, 140, 20), (380, 140, 20), (400, 140, 20), (420, 140, 20), (440, 140, 20), (460, 140, 20), (480, 140, 20), (500, 140, 20), (520, 140, 20), (540, 140, 20), (560, 140, 20), (580, 140, 20), (600, 140, 20), (620, 140, 20), (0, 160, 20), (20, 160, 20), (40, 160, 20), (60, 160, 20), (80, 160, 20), (100, 160, 20), (120, 160, 20), (140, 160, 20), (160, 160, 20), (180, 160, 20), (200, 160, 20), (220, 160, 20), (240, 160, 20), (260, 160, 20), (280, 160, 20), (300, 160, 20), (320, 160, 20), (340, 160, 20), (360, 160, 20), (380, 160, 20), (400, 160, 20), (420, 160, 20), (440, 160, 20), (460, 160, 20), (480, 160, 20), (500, 160, 20), (520, 160, 20), (540, 160, 20), (560, 160, 20), (580, 160, 20), (600, 160, 20), (620, 160, 20), (0, 180, 20), (20, 180, 20), (40, 180, 20), (60, 180, 20), (80, 180, 20), (100, 180, 20), (120, 180, 20), (140, 180, 20), (160, 180, 20), (180, 180, 20), (200, 180, 20), (220, 180, 20), (240, 180, 20), (260, 180, 20), (280, 180, 20), (300, 180, 20), (320, 180, 20), (340, 180, 20), (360, 180, 20), (380, 180, 20), (400, 180, 20), (420, 180, 20), (440, 180, 20), (460, 180, 20), (480, 180, 20), (500, 180, 20), (520, 180, 20), (540, 180, 20), (560, 180, 20), (580, 180, 20), (600, 180, 20), (620, 180, 20), (0, 200, 20), (20, 200, 20), (40, 200, 20), (60, 200, 20), (80, 200, 20), (100, 200, 20), (120, 200, 20), (140, 200, 20), (160, 200, 20), (180, 200, 20), (200, 200, 20), (220, 200, 20), (240, 200, 20), (260, 200, 20), (280, 200, 20), (300, 200, 20), (320, 200, 20), (340, 200, 20), (360, 200, 20), (380, 200, 20), (400, 200, 20), (420, 200, 20), (440, 200, 20), (460, 200, 20), (480, 200, 20), (500, 200, 20), (520, 200, 20), (540, 200, 20), (560, 200, 20), (580, 200, 20), (600, 200, 20), (620, 200, 20), (0, 220, 20), (20, 220, 20), (40, 220, 20), (60, 220, 20), (80, 220, 20), (100, 220, 20), (120, 220, 20), (140, 220, 20), (160, 220, 20), (180, 220, 20), (200, 220, 20), (220, 220, 20), (240, 220, 20), (260, 220, 20), (280, 220, 20), (300, 220, 20), (320, 220, 20), (340, 220, 20), (360, 220, 20), (380, 220, 20), (400, 220, 20), (420, 220, 20), (440, 220, 20), (460, 220, 20), (480, 220, 20), (500, 220, 20), (520, 220, 20), (540, 220, 20), (560, 220, 20), (580, 220, 20), (600, 220, 20), (620, 220, 20), (0, 240, 20), (20, 240, 20), (40, 240, 20), (60, 240, 20), (80, 240, 20), (100, 240, 20), (120, 240, 20), (140, 240, 20), (160, 240, 20), (180, 240, 20), (200, 240, 20), (220, 240, 20), (240, 240, 20), (260, 240, 20), (280, 240, 20), (300, 240, 20), (320, 240, 20), (340, 240, 20), (360, 240, 20), (380, 240, 20), (400, 240, 20), (420, 240, 20), (440, 240, 20), (460, 240, 20), (480, 240, 20), (500, 240, 20), (520, 240, 20), (540, 240, 20), (560, 240, 20), (580, 240, 20), (600, 240, 20), (620, 240, 20), (0, 260, 20), (20, 260, 20), (40, 260, 20), (60, 260, 20), (80, 260, 20), (100, 260, 20), (120, 260, 20), (140, 260, 20), (160, 260, 20), (180, 260, 20), (200, 260, 20), (220, 260, 20), (240, 260, 20), (260, 260, 20), (280, 260, 20), (300, 260, 20), (320, 260, 20), (340, 260, 20), (360, 260, 20), (380, 260, 20), (400, 260, 20), (420, 260, 20), (440, 260, 20), (460, 260, 20), (480, 260, 20), (500, 260, 20), (520, 260, 20), (540, 260, 20), (560, 260, 20), (580, 260, 20), (600, 260, 20), (620, 260, 20), (0, 280, 20), (20, 280, 20), (40, 280, 20), (60, 280, 20), (80, 280, 20), (100, 280, 20), (120, 280, 20), (140, 280, 20), (160, 280, 20), (180, 280, 20), (200, 280, 20), (220, 280, 20), (240, 280, 20), (260, 280, 20), (280, 280, 20), (300, 280, 20), (320, 280, 20), (340, 280, 20), (360, 280, 20), (380, 280, 20), (400, 280, 20), (420, 280, 20), (440, 280, 20), (460, 280, 20), (480, 280, 20), (500, 280, 20), (520, 280, 20), (540, 280, 20), (560, 280, 20), (580, 280, 20), (600, 280, 20), (620, 280, 20), (0, 300, 20), (20, 300, 20), (40, 300, 20), (60, 300, 20), (80, 300, 20), (100, 300, 20), (120, 300, 20), (140, 300, 20), (160, 300, 20), (180, 300, 20), (200, 300, 20), (220, 300, 20), (240, 300, 20), (260, 300, 20), (280, 300, 20), (300, 300, 20), (320, 300, 20), (340, 300, 20), (360, 300, 20), (380, 300, 20), (400, 300, 20), (420, 300, 20), (440, 300, 20), (460, 300, 20), (480, 300, 20), (500, 300, 20), (520, 300, 20), (540, 300, 20), (560, 300, 20), (580, 300, 20), (600, 300, 20), (620, 300, 20), (0, 320, 20), (20, 320, 20), (40, 320, 20), (60, 320, 20), (80, 320, 20), (100, 320, 20), (120, 320, 20), (140, 320, 20), (160, 320, 20), (180, 320, 20), (200, 320, 20), (220, 320, 20), (240, 320, 20), (260, 320, 20), (280, 320, 20), (300, 320, 20), (320, 320, 20), (340, 320, 20), (360, 320, 20), (380, 320, 20), (400, 320, 20), (420, 320, 20), (440, 320, 20), (460, 320, 20), (480, 320, 20), (500, 320, 20), (520, 320, 20), (540, 320, 20), (560, 320, 20), (580, 320, 20), (600, 320, 20), (620, 320, 20), (0, 340, 20), (20, 340, 20), (40, 340, 20), (60, 340, 20), (80, 340, 20), (100, 340, 20), (120, 340, 20), (140, 340, 20), (160, 340, 20), (180, 340, 20), (200, 340, 20), (220, 340, 20), (240, 340, 20), (260, 340, 20), (280, 340, 20), (300, 340, 20), (320, 340, 20), (340, 340, 20), (360, 340, 20), (380, 340, 20), (400, 340, 20), (420, 340, 20), (440, 340, 20), (460, 340, 20), (480, 340, 20), (500, 340, 20), (520, 340, 20), (540, 340, 20), (560, 340, 20), (580, 340, 20), (600, 340, 20), (620, 340, 20), (0, 360, 20), (20, 360, 20), (40, 360, 20), (60, 360, 20), (80, 360, 20), (100, 360, 20), (120, 360, 20), (140, 360, 20), (160, 360, 20), (180, 360, 20), (200, 360, 20), (220, 360, 20), (240, 360, 20), (260, 360, 20), (280, 360, 20), (300, 360, 20), (320, 360, 20), (340, 360, 20), (360, 360, 20), (380, 360, 20), (400, 360, 20), (420, 360, 20), (440, 360, 20), (460, 360, 20), (480, 360, 20), (500, 360, 20), (520, 360, 20), (540, 360, 20), (560, 360, 20), (580, 360, 20), (600, 360, 20), (620, 360, 20), (0, 380, 20), (20, 380, 20), (40, 380, 20), (60, 380, 20), (80, 380, 20), (100, 380, 20), (120, 380, 20), (140, 380, 20), (160, 380, 20), (180, 380, 20), (200, 380, 20), (220, 380, 20), (240, 380, 20), (260, 380, 20), (280, 380, 20), (300, 380, 20), (320, 380, 20), (340, 380, 20), (360, 380, 20), (380, 380, 20), (400, 380, 20), (420, 380, 20), (440, 380, 20), (460, 380, 20), (480, 380, 20), (500, 380, 20), (520, 380, 20), (540, 380, 20), (560, 380, 20), (580, 380, 20), (600, 380, 20), (620, 380, 20), (0, 400, 20), (20, 400, 20), (40, 400, 20), (60, 400, 20), (80, 400, 20), (100, 400, 20), (120, 400, 20), (140, 400, 20), (160, 400, 20), (180, 400, 20), (200, 400, 20), (220, 400, 20), (240, 400, 20), (260, 400, 20), (280, 400, 20), (300, 400, 20), (320, 400, 20), (340, 400, 20), (360, 400, 20), (380, 400, 20), (400, 400, 20), (420, 400, 20), (440, 400, 20), (460, 400, 20), (480, 400, 20), (500, 400, 20), (520, 400, 20), (540, 400, 20), (560, 400, 20), (580, 400, 20), (600, 400, 20), (620, 400, 20), (0, 420, 20), (20, 420, 20), (40, 420, 20), (60, 420, 20), (80, 420, 20), (100, 420, 20), (120, 420, 20), (140, 420, 20), (160, 420, 20), (180, 420, 20), (200, 420, 20), (220, 420, 20), (240, 420, 20), (260, 420, 20), (280, 420, 20), (300, 420, 20), (320, 420, 20), (340, 420, 20), (360, 420, 20), (380, 420, 20), (400, 420, 20), (420, 420, 20), (440, 420, 20), (460, 420, 20), (480, 420, 20), (500, 420, 20), (520, 420, 20), (540, 420, 20), (560, 420, 20), (580, 420, 20), (600, 420, 20), (620, 420, 20), (0, 440, 20), (20, 440, 20), (40, 440, 20), (60, 440, 20), (80, 440, 20), (100, 440, 20), (120, 440, 20), (140, 440, 20), (160, 440, 20), (180, 440, 20), (200, 440, 20), (220, 440, 20), (240, 440, 20), (260, 440, 20), (280, 440, 20), (300, 440, 20), (320, 440, 20), (340, 440, 20), (360, 440, 20), (380, 440, 20), (400, 440, 20), (420, 440, 20), (440, 440, 20), (460, 440, 20), (480, 440, 20), (500, 440, 20), (520, 440, 20), (540, 440, 20), (560, 440, 20), (580, 440, 20), (600, 440, 20), (620, 440, 20), (0, 460, 20), (20, 460, 20), (40, 460, 20), (60, 460, 20), (80, 460, 20), (100, 460, 20), (120, 460, 20), (140, 460, 20), (160, 460, 20), (180, 460, 20), (200, 460, 20), (220, 460, 20), (240, 460, 20), (260, 460, 20), (280, 460, 20), (300, 460, 20), (320, 460, 20), (340, 460, 20), (360, 460, 20), (380, 460, 20), (400, 460, 20), (420, 460, 20), (440, 460, 20), (460, 460, 20), (480, 460, 20), (500, 460, 20), (520, 460, 20), (540, 460, 20), (560, 460, 20), (580, 460, 20), (600, 460, 20), (620, 460, 20), (0, 480, 20), (20, 480, 20), (40, 480, 20), (60, 480, 20), (80, 480, 20), (100, 480, 20), (120, 480, 20), (140, 480, 20), (160, 480, 20), (180, 480, 20), (200, 480, 20), (220, 480, 20), (240, 480, 20), (260, 480, 20), (280, 480, 20), (300, 480, 20), (320, 480, 20), (340, 480, 20), (360, 480, 20), (380, 480, 20), (400, 480, 20), (420, 480, 20), (440, 480, 20), (460, 480, 20), (480, 480, 20), (500, 480, 20), (520, 480, 20), (540, 480, 20), (560, 480, 20), (580, 480, 20), (600, 480, 20), (620, 480, 20), (0, 500, 20), (20, 500, 20), (40, 500, 20), (60, 500, 20), (80, 500, 20), (100, 500, 20), (120, 500, 20), (140, 500, 20), (160, 500, 20), (180, 500, 20), (200, 500, 20), (220, 500, 20), (240, 500, 20), (260, 500, 20), (280, 500, 20), (300, 500, 20), (320, 500, 20), (340, 500, 20), (360, 500, 20), (380, 500, 20), (400, 500, 20), (420, 500, 20), (440, 500, 20), (460, 500, 20), (480, 500, 20), (500, 500, 20), (520, 500, 20), (540, 500, 20), (560, 500, 20), (580, 500, 20), (600, 500, 20), (620, 500, 20), (0, 520, 20), (20, 520, 20), (40, 520, 20), (60, 520, 20), (80, 520, 20), (100, 520, 20), (120, 520, 20), (140, 520, 20), (160, 520, 20), (180, 520, 20), (200, 520, 20), (220, 520, 20), (240, 520, 20), (260, 520, 20), (280, 520, 20), (300, 520, 20), (320, 520, 20), (340, 520, 20), (360, 520, 20), (380, 520, 20), (400, 520, 20), (420, 520, 20), (440, 520, 20), (460, 520, 20), (480, 520, 20), (500, 520, 20), (520, 520, 20), (540, 520, 20), (560, 520, 20), (580, 520, 20), (600, 520, 20), (620, 520, 20), (0, 540, 20), (20, 540, 20), (40, 540, 20), (60, 540, 20), (80, 540, 20), (100, 540, 20), (120, 540, 20), (140, 540, 20), (160, 540, 20), (180, 540, 20), (200, 540, 20), (220, 540, 20), (240, 540, 20), (260, 540, 20), (280, 540, 20), (300, 540, 20), (320, 540, 20), (340, 540, 20), (360, 540, 20), (380, 540, 20), (400, 540, 20), (420, 540, 20), (440, 540, 20), (460, 540, 20), (480, 540, 20), (500, 540, 20), (520, 540, 20), (540, 540, 20), (560, 540, 20), (580, 540, 20), (600, 540, 20), (620, 540, 20), (0, 560, 20), (20, 560, 20), (40, 560, 20), (60, 560, 20), (80, 560, 20), (100, 560, 20), (120, 560, 20), (140, 560, 20), (160, 560, 20), (180, 560, 20), (200, 560, 20), (220, 560, 20), (240, 560, 20), (260, 560, 20), (280, 560, 20), (300, 560, 20), (320, 560, 20), (340, 560, 20), (360, 560, 20), (380, 560, 20), (400, 560, 20), (420, 560, 20), (440, 560, 20), (460, 560, 20), (480, 560, 20), (500, 560, 20), (520, 560, 20), (540, 560, 20), (560, 560, 20), (580, 560, 20), (600, 560, 20), (620, 560, 20), (0, 580, 20), (20, 580, 20), (40, 580, 20), (60, 580, 20), (80, 580, 20), (100, 580, 20), (120, 580, 20), (140, 580, 20), (160, 580, 20), (180, 580, 20), (200, 580, 20), (220, 580, 20), (240, 580, 20), (260, 580, 20), (280, 580, 20), (300, 580, 20), (320, 580, 20), (340, 580, 20), (360, 580, 20), (380, 580, 20), (400, 580, 20), (420, 580, 20), (440, 580, 20), (460, 580, 20), (480, 580, 20), (500, 580, 20), (520, 580, 20), (540, 580, 20), (560, 580, 20), (580, 580, 20), (600, 580, 20), (620, 580, 20), (0, 600, 20), (20, 600, 20), (40, 600, 20), (60, 600, 20), (80, 600, 20), (100, 600, 20), (120, 600, 20), (140, 600, 20), (160, 600, 20), (180, 600, 20), (200, 600, 20), (220, 600, 20), (240, 600, 20), (260, 600, 20), (280, 600, 20), (300, 600, 20), (320, 600, 20), (340, 600, 20), (360, 600, 20), (380, 600, 20), (400, 600, 20), (420, 600, 20), (440, 600, 20), (460, 600, 20), (480, 600, 20), (500, 600, 20), (520, 600, 20), (540, 600, 20), (560, 600, 20), (580, 600, 20), (600, 600, 20), (620, 600, 20), (0, 620, 20), (20, 620, 20), (40, 620, 20), (60, 620, 20), (80, 620, 20), (100, 620, 20), (120, 620, 20), (140, 620, 20), (160, 620, 20), (180, 620, 20), (200, 620, 20), (220, 620, 20), (240, 620, 20), (260, 620, 20), (280, 620, 20), (300, 620, 20), (320, 620, 20), (340, 620, 20), (360, 620, 20), (380, 620, 20), (400, 620, 20), (420, 620, 20), (440, 620, 20), (460, 620, 20), (480, 620, 20), (500, 620, 20), (520, 620, 20), (540, 620, 20), (560, 620, 20), (580, 620, 20), (600, 620, 20), (620, 620, 20)] color3f[] primvars:displayColor = [(0.2784314, 0.64705884, 1)] } def ComputeGraph "innerPullGraph" { custom token graph:name = "pullgraph" def ComputeNode "deformer1" { custom token node:type = "omni.graph.examples.cpp.Deformer1" point3f[] inputs:points.connect = </defaultPrim/inputGrid.points> float inputs:multiplier = 3 point3f[] outputs:points } def ComputeNode "deformer2" { custom token node:type = "omni.graph.examples.cpp.Deformer2" point3f[] inputs:points.connect = </defaultPrim/innerPullGraph/deformer1.outputs:points> float inputs:threshold = 10 point3f[] outputs:points } def ComputeGraphSettings "computegraphSettings" { custom token evaluator:type = "dirty_push" } } def Mesh "outputGrid" { uniform bool doubleSided = 1 int[] faceVertexCounts = [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 1, 33, 0, 33, 32, 1, 2, 34, 1, 34, 33, 2, 3, 35, 2, 35, 34, 3, 4, 36, 3, 36, 35, 4, 5, 37, 4, 37, 36, 5, 6, 38, 5, 38, 37, 6, 7, 39, 6, 39, 38, 7, 8, 40, 7, 40, 39, 8, 9, 41, 8, 41, 40, 9, 10, 42, 9, 42, 41, 10, 11, 43, 10, 43, 42, 11, 12, 44, 11, 44, 43, 12, 13, 45, 12, 45, 44, 13, 14, 46, 13, 46, 45, 14, 15, 47, 14, 47, 46, 15, 16, 48, 15, 48, 47, 16, 17, 49, 16, 49, 48, 17, 18, 50, 17, 50, 49, 18, 19, 51, 18, 51, 50, 19, 20, 52, 19, 52, 51, 20, 21, 53, 20, 53, 52, 21, 22, 54, 21, 54, 53, 22, 23, 55, 22, 55, 54, 23, 24, 56, 23, 56, 55, 24, 25, 57, 24, 57, 56, 25, 26, 58, 25, 58, 57, 26, 27, 59, 26, 59, 58, 27, 28, 60, 27, 60, 59, 28, 29, 61, 28, 61, 60, 29, 30, 62, 29, 62, 61, 30, 31, 63, 30, 63, 62, 32, 33, 65, 32, 65, 64, 33, 34, 66, 33, 66, 65, 34, 35, 67, 34, 67, 66, 35, 36, 68, 35, 68, 67, 36, 37, 69, 36, 69, 68, 37, 38, 70, 37, 70, 69, 38, 39, 71, 38, 71, 70, 39, 40, 72, 39, 72, 71, 40, 41, 73, 40, 73, 72, 41, 42, 74, 41, 74, 73, 42, 43, 75, 42, 75, 74, 43, 44, 76, 43, 76, 75, 44, 45, 77, 44, 77, 76, 45, 46, 78, 45, 78, 77, 46, 47, 79, 46, 79, 78, 47, 48, 80, 47, 80, 79, 48, 49, 81, 48, 81, 80, 49, 50, 82, 49, 82, 81, 50, 51, 83, 50, 83, 82, 51, 52, 84, 51, 84, 83, 52, 53, 85, 52, 85, 84, 53, 54, 86, 53, 86, 85, 54, 55, 87, 54, 87, 86, 55, 56, 88, 55, 88, 87, 56, 57, 89, 56, 89, 88, 57, 58, 90, 57, 90, 89, 58, 59, 91, 58, 91, 90, 59, 60, 92, 59, 92, 91, 60, 61, 93, 60, 93, 92, 61, 62, 94, 61, 94, 93, 62, 63, 95, 62, 95, 94, 64, 65, 97, 64, 97, 96, 65, 66, 98, 65, 98, 97, 66, 67, 99, 66, 99, 98, 67, 68, 100, 67, 100, 99, 68, 69, 101, 68, 101, 100, 69, 70, 102, 69, 102, 101, 70, 71, 103, 70, 103, 102, 71, 72, 104, 71, 104, 103, 72, 73, 105, 72, 105, 104, 73, 74, 106, 73, 106, 105, 74, 75, 107, 74, 107, 106, 75, 76, 108, 75, 108, 107, 76, 77, 109, 76, 109, 108, 77, 78, 110, 77, 110, 109, 78, 79, 111, 78, 111, 110, 79, 80, 112, 79, 112, 111, 80, 81, 113, 80, 113, 112, 81, 82, 114, 81, 114, 113, 82, 83, 115, 82, 115, 114, 83, 84, 116, 83, 116, 115, 84, 85, 117, 84, 117, 116, 85, 86, 118, 85, 118, 117, 86, 87, 119, 86, 119, 118, 87, 88, 120, 87, 120, 119, 88, 89, 121, 88, 121, 120, 89, 90, 122, 89, 122, 121, 90, 91, 123, 90, 123, 122, 91, 92, 124, 91, 124, 123, 92, 93, 125, 92, 125, 124, 93, 94, 126, 93, 126, 125, 94, 95, 127, 94, 127, 126, 96, 97, 129, 96, 129, 128, 97, 98, 130, 97, 130, 129, 98, 99, 131, 98, 131, 130, 99, 100, 132, 99, 132, 131, 100, 101, 133, 100, 133, 132, 101, 102, 134, 101, 134, 133, 102, 103, 135, 102, 135, 134, 103, 104, 136, 103, 136, 135, 104, 105, 137, 104, 137, 136, 105, 106, 138, 105, 138, 137, 106, 107, 139, 106, 139, 138, 107, 108, 140, 107, 140, 139, 108, 109, 141, 108, 141, 140, 109, 110, 142, 109, 142, 141, 110, 111, 143, 110, 143, 142, 111, 112, 144, 111, 144, 143, 112, 113, 145, 112, 145, 144, 113, 114, 146, 113, 146, 145, 114, 115, 147, 114, 147, 146, 115, 116, 148, 115, 148, 147, 116, 117, 149, 116, 149, 148, 117, 118, 150, 117, 150, 149, 118, 119, 151, 118, 151, 150, 119, 120, 152, 119, 152, 151, 120, 121, 153, 120, 153, 152, 121, 122, 154, 121, 154, 153, 122, 123, 155, 122, 155, 154, 123, 124, 156, 123, 156, 155, 124, 125, 157, 124, 157, 156, 125, 126, 158, 125, 158, 157, 126, 127, 159, 126, 159, 158, 128, 129, 161, 128, 161, 160, 129, 130, 162, 129, 162, 161, 130, 131, 163, 130, 163, 162, 131, 132, 164, 131, 164, 163, 132, 133, 165, 132, 165, 164, 133, 134, 166, 133, 166, 165, 134, 135, 167, 134, 167, 166, 135, 136, 168, 135, 168, 167, 136, 137, 169, 136, 169, 168, 137, 138, 170, 137, 170, 169, 138, 139, 171, 138, 171, 170, 139, 140, 172, 139, 172, 171, 140, 141, 173, 140, 173, 172, 141, 142, 174, 141, 174, 173, 142, 143, 175, 142, 175, 174, 143, 144, 176, 143, 176, 175, 144, 145, 177, 144, 177, 176, 145, 146, 178, 145, 178, 177, 146, 147, 179, 146, 179, 178, 147, 148, 180, 147, 180, 179, 148, 149, 181, 148, 181, 180, 149, 150, 182, 149, 182, 181, 150, 151, 183, 150, 183, 182, 151, 152, 184, 151, 184, 183, 152, 153, 185, 152, 185, 184, 153, 154, 186, 153, 186, 185, 154, 155, 187, 154, 187, 186, 155, 156, 188, 155, 188, 187, 156, 157, 189, 156, 189, 188, 157, 158, 190, 157, 190, 189, 158, 159, 191, 158, 191, 190, 160, 161, 193, 160, 193, 192, 161, 162, 194, 161, 194, 193, 162, 163, 195, 162, 195, 194, 163, 164, 196, 163, 196, 195, 164, 165, 197, 164, 197, 196, 165, 166, 198, 165, 198, 197, 166, 167, 199, 166, 199, 198, 167, 168, 200, 167, 200, 199, 168, 169, 201, 168, 201, 200, 169, 170, 202, 169, 202, 201, 170, 171, 203, 170, 203, 202, 171, 172, 204, 171, 204, 203, 172, 173, 205, 172, 205, 204, 173, 174, 206, 173, 206, 205, 174, 175, 207, 174, 207, 206, 175, 176, 208, 175, 208, 207, 176, 177, 209, 176, 209, 208, 177, 178, 210, 177, 210, 209, 178, 179, 211, 178, 211, 210, 179, 180, 212, 179, 212, 211, 180, 181, 213, 180, 213, 212, 181, 182, 214, 181, 214, 213, 182, 183, 215, 182, 215, 214, 183, 184, 216, 183, 216, 215, 184, 185, 217, 184, 217, 216, 185, 186, 218, 185, 218, 217, 186, 187, 219, 186, 219, 218, 187, 188, 220, 187, 220, 219, 188, 189, 221, 188, 221, 220, 189, 190, 222, 189, 222, 221, 190, 191, 223, 190, 223, 222, 192, 193, 225, 192, 225, 224, 193, 194, 226, 193, 226, 225, 194, 195, 227, 194, 227, 226, 195, 196, 228, 195, 228, 227, 196, 197, 229, 196, 229, 228, 197, 198, 230, 197, 230, 229, 198, 199, 231, 198, 231, 230, 199, 200, 232, 199, 232, 231, 200, 201, 233, 200, 233, 232, 201, 202, 234, 201, 234, 233, 202, 203, 235, 202, 235, 234, 203, 204, 236, 203, 236, 235, 204, 205, 237, 204, 237, 236, 205, 206, 238, 205, 238, 237, 206, 207, 239, 206, 239, 238, 207, 208, 240, 207, 240, 239, 208, 209, 241, 208, 241, 240, 209, 210, 242, 209, 242, 241, 210, 211, 243, 210, 243, 242, 211, 212, 244, 211, 244, 243, 212, 213, 245, 212, 245, 244, 213, 214, 246, 213, 246, 245, 214, 215, 247, 214, 247, 246, 215, 216, 248, 215, 248, 247, 216, 217, 249, 216, 249, 248, 217, 218, 250, 217, 250, 249, 218, 219, 251, 218, 251, 250, 219, 220, 252, 219, 252, 251, 220, 221, 253, 220, 253, 252, 221, 222, 254, 221, 254, 253, 222, 223, 255, 222, 255, 254, 224, 225, 257, 224, 257, 256, 225, 226, 258, 225, 258, 257, 226, 227, 259, 226, 259, 258, 227, 228, 260, 227, 260, 259, 228, 229, 261, 228, 261, 260, 229, 230, 262, 229, 262, 261, 230, 231, 263, 230, 263, 262, 231, 232, 264, 231, 264, 263, 232, 233, 265, 232, 265, 264, 233, 234, 266, 233, 266, 265, 234, 235, 267, 234, 267, 266, 235, 236, 268, 235, 268, 267, 236, 237, 269, 236, 269, 268, 237, 238, 270, 237, 270, 269, 238, 239, 271, 238, 271, 270, 239, 240, 272, 239, 272, 271, 240, 241, 273, 240, 273, 272, 241, 242, 274, 241, 274, 273, 242, 243, 275, 242, 275, 274, 243, 244, 276, 243, 276, 275, 244, 245, 277, 244, 277, 276, 245, 246, 278, 245, 278, 277, 246, 247, 279, 246, 279, 278, 247, 248, 280, 247, 280, 279, 248, 249, 281, 248, 281, 280, 249, 250, 282, 249, 282, 281, 250, 251, 283, 250, 283, 282, 251, 252, 284, 251, 284, 283, 252, 253, 285, 252, 285, 284, 253, 254, 286, 253, 286, 285, 254, 255, 287, 254, 287, 286, 256, 257, 289, 256, 289, 288, 257, 258, 290, 257, 290, 289, 258, 259, 291, 258, 291, 290, 259, 260, 292, 259, 292, 291, 260, 261, 293, 260, 293, 292, 261, 262, 294, 261, 294, 293, 262, 263, 295, 262, 295, 294, 263, 264, 296, 263, 296, 295, 264, 265, 297, 264, 297, 296, 265, 266, 298, 265, 298, 297, 266, 267, 299, 266, 299, 298, 267, 268, 300, 267, 300, 299, 268, 269, 301, 268, 301, 300, 269, 270, 302, 269, 302, 301, 270, 271, 303, 270, 303, 302, 271, 272, 304, 271, 304, 303, 272, 273, 305, 272, 305, 304, 273, 274, 306, 273, 306, 305, 274, 275, 307, 274, 307, 306, 275, 276, 308, 275, 308, 307, 276, 277, 309, 276, 309, 308, 277, 278, 310, 277, 310, 309, 278, 279, 311, 278, 311, 310, 279, 280, 312, 279, 312, 311, 280, 281, 313, 280, 313, 312, 281, 282, 314, 281, 314, 313, 282, 283, 315, 282, 315, 314, 283, 284, 316, 283, 316, 315, 284, 285, 317, 284, 317, 316, 285, 286, 318, 285, 318, 317, 286, 287, 319, 286, 319, 318, 288, 289, 321, 288, 321, 320, 289, 290, 322, 289, 322, 321, 290, 291, 323, 290, 323, 322, 291, 292, 324, 291, 324, 323, 292, 293, 325, 292, 325, 324, 293, 294, 326, 293, 326, 325, 294, 295, 327, 294, 327, 326, 295, 296, 328, 295, 328, 327, 296, 297, 329, 296, 329, 328, 297, 298, 330, 297, 330, 329, 298, 299, 331, 298, 331, 330, 299, 300, 332, 299, 332, 331, 300, 301, 333, 300, 333, 332, 301, 302, 334, 301, 334, 333, 302, 303, 335, 302, 335, 334, 303, 304, 336, 303, 336, 335, 304, 305, 337, 304, 337, 336, 305, 306, 338, 305, 338, 337, 306, 307, 339, 306, 339, 338, 307, 308, 340, 307, 340, 339, 308, 309, 341, 308, 341, 340, 309, 310, 342, 309, 342, 341, 310, 311, 343, 310, 343, 342, 311, 312, 344, 311, 344, 343, 312, 313, 345, 312, 345, 344, 313, 314, 346, 313, 346, 345, 314, 315, 347, 314, 347, 346, 315, 316, 348, 315, 348, 347, 316, 317, 349, 316, 349, 348, 317, 318, 350, 317, 350, 349, 318, 319, 351, 318, 351, 350, 320, 321, 353, 320, 353, 352, 321, 322, 354, 321, 354, 353, 322, 323, 355, 322, 355, 354, 323, 324, 356, 323, 356, 355, 324, 325, 357, 324, 357, 356, 325, 326, 358, 325, 358, 357, 326, 327, 359, 326, 359, 358, 327, 328, 360, 327, 360, 359, 328, 329, 361, 328, 361, 360, 329, 330, 362, 329, 362, 361, 330, 331, 363, 330, 363, 362, 331, 332, 364, 331, 364, 363, 332, 333, 365, 332, 365, 364, 333, 334, 366, 333, 366, 365, 334, 335, 367, 334, 367, 366, 335, 336, 368, 335, 368, 367, 336, 337, 369, 336, 369, 368, 337, 338, 370, 337, 370, 369, 338, 339, 371, 338, 371, 370, 339, 340, 372, 339, 372, 371, 340, 341, 373, 340, 373, 372, 341, 342, 374, 341, 374, 373, 342, 343, 375, 342, 375, 374, 343, 344, 376, 343, 376, 375, 344, 345, 377, 344, 377, 376, 345, 346, 378, 345, 378, 377, 346, 347, 379, 346, 379, 378, 347, 348, 380, 347, 380, 379, 348, 349, 381, 348, 381, 380, 349, 350, 382, 349, 382, 381, 350, 351, 383, 350, 383, 382, 352, 353, 385, 352, 385, 384, 353, 354, 386, 353, 386, 385, 354, 355, 387, 354, 387, 386, 355, 356, 388, 355, 388, 387, 356, 357, 389, 356, 389, 388, 357, 358, 390, 357, 390, 389, 358, 359, 391, 358, 391, 390, 359, 360, 392, 359, 392, 391, 360, 361, 393, 360, 393, 392, 361, 362, 394, 361, 394, 393, 362, 363, 395, 362, 395, 394, 363, 364, 396, 363, 396, 395, 364, 365, 397, 364, 397, 396, 365, 366, 398, 365, 398, 397, 366, 367, 399, 366, 399, 398, 367, 368, 400, 367, 400, 399, 368, 369, 401, 368, 401, 400, 369, 370, 402, 369, 402, 401, 370, 371, 403, 370, 403, 402, 371, 372, 404, 371, 404, 403, 372, 373, 405, 372, 405, 404, 373, 374, 406, 373, 406, 405, 374, 375, 407, 374, 407, 406, 375, 376, 408, 375, 408, 407, 376, 377, 409, 376, 409, 408, 377, 378, 410, 377, 410, 409, 378, 379, 411, 378, 411, 410, 379, 380, 412, 379, 412, 411, 380, 381, 413, 380, 413, 412, 381, 382, 414, 381, 414, 413, 382, 383, 415, 382, 415, 414, 384, 385, 417, 384, 417, 416, 385, 386, 418, 385, 418, 417, 386, 387, 419, 386, 419, 418, 387, 388, 420, 387, 420, 419, 388, 389, 421, 388, 421, 420, 389, 390, 422, 389, 422, 421, 390, 391, 423, 390, 423, 422, 391, 392, 424, 391, 424, 423, 392, 393, 425, 392, 425, 424, 393, 394, 426, 393, 426, 425, 394, 395, 427, 394, 427, 426, 395, 396, 428, 395, 428, 427, 396, 397, 429, 396, 429, 428, 397, 398, 430, 397, 430, 429, 398, 399, 431, 398, 431, 430, 399, 400, 432, 399, 432, 431, 400, 401, 433, 400, 433, 432, 401, 402, 434, 401, 434, 433, 402, 403, 435, 402, 435, 434, 403, 404, 436, 403, 436, 435, 404, 405, 437, 404, 437, 436, 405, 406, 438, 405, 438, 437, 406, 407, 439, 406, 439, 438, 407, 408, 440, 407, 440, 439, 408, 409, 441, 408, 441, 440, 409, 410, 442, 409, 442, 441, 410, 411, 443, 410, 443, 442, 411, 412, 444, 411, 444, 443, 412, 413, 445, 412, 445, 444, 413, 414, 446, 413, 446, 445, 414, 415, 447, 414, 447, 446, 416, 417, 449, 416, 449, 448, 417, 418, 450, 417, 450, 449, 418, 419, 451, 418, 451, 450, 419, 420, 452, 419, 452, 451, 420, 421, 453, 420, 453, 452, 421, 422, 454, 421, 454, 453, 422, 423, 455, 422, 455, 454, 423, 424, 456, 423, 456, 455, 424, 425, 457, 424, 457, 456, 425, 426, 458, 425, 458, 457, 426, 427, 459, 426, 459, 458, 427, 428, 460, 427, 460, 459, 428, 429, 461, 428, 461, 460, 429, 430, 462, 429, 462, 461, 430, 431, 463, 430, 463, 462, 431, 432, 464, 431, 464, 463, 432, 433, 465, 432, 465, 464, 433, 434, 466, 433, 466, 465, 434, 435, 467, 434, 467, 466, 435, 436, 468, 435, 468, 467, 436, 437, 469, 436, 469, 468, 437, 438, 470, 437, 470, 469, 438, 439, 471, 438, 471, 470, 439, 440, 472, 439, 472, 471, 440, 441, 473, 440, 473, 472, 441, 442, 474, 441, 474, 473, 442, 443, 475, 442, 475, 474, 443, 444, 476, 443, 476, 475, 444, 445, 477, 444, 477, 476, 445, 446, 478, 445, 478, 477, 446, 447, 479, 446, 479, 478, 448, 449, 481, 448, 481, 480, 449, 450, 482, 449, 482, 481, 450, 451, 483, 450, 483, 482, 451, 452, 484, 451, 484, 483, 452, 453, 485, 452, 485, 484, 453, 454, 486, 453, 486, 485, 454, 455, 487, 454, 487, 486, 455, 456, 488, 455, 488, 487, 456, 457, 489, 456, 489, 488, 457, 458, 490, 457, 490, 489, 458, 459, 491, 458, 491, 490, 459, 460, 492, 459, 492, 491, 460, 461, 493, 460, 493, 492, 461, 462, 494, 461, 494, 493, 462, 463, 495, 462, 495, 494, 463, 464, 496, 463, 496, 495, 464, 465, 497, 464, 497, 496, 465, 466, 498, 465, 498, 497, 466, 467, 499, 466, 499, 498, 467, 468, 500, 467, 500, 499, 468, 469, 501, 468, 501, 500, 469, 470, 502, 469, 502, 501, 470, 471, 503, 470, 503, 502, 471, 472, 504, 471, 504, 503, 472, 473, 505, 472, 505, 504, 473, 474, 506, 473, 506, 505, 474, 475, 507, 474, 507, 506, 475, 476, 508, 475, 508, 507, 476, 477, 509, 476, 509, 508, 477, 478, 510, 477, 510, 509, 478, 479, 511, 478, 511, 510, 480, 481, 513, 480, 513, 512, 481, 482, 514, 481, 514, 513, 482, 483, 515, 482, 515, 514, 483, 484, 516, 483, 516, 515, 484, 485, 517, 484, 517, 516, 485, 486, 518, 485, 518, 517, 486, 487, 519, 486, 519, 518, 487, 488, 520, 487, 520, 519, 488, 489, 521, 488, 521, 520, 489, 490, 522, 489, 522, 521, 490, 491, 523, 490, 523, 522, 491, 492, 524, 491, 524, 523, 492, 493, 525, 492, 525, 524, 493, 494, 526, 493, 526, 525, 494, 495, 527, 494, 527, 526, 495, 496, 528, 495, 528, 527, 496, 497, 529, 496, 529, 528, 497, 498, 530, 497, 530, 529, 498, 499, 531, 498, 531, 530, 499, 500, 532, 499, 532, 531, 500, 501, 533, 500, 533, 532, 501, 502, 534, 501, 534, 533, 502, 503, 535, 502, 535, 534, 503, 504, 536, 503, 536, 535, 504, 505, 537, 504, 537, 536, 505, 506, 538, 505, 538, 537, 506, 507, 539, 506, 539, 538, 507, 508, 540, 507, 540, 539, 508, 509, 541, 508, 541, 540, 509, 510, 542, 509, 542, 541, 510, 511, 543, 510, 543, 542, 512, 513, 545, 512, 545, 544, 513, 514, 546, 513, 546, 545, 514, 515, 547, 514, 547, 546, 515, 516, 548, 515, 548, 547, 516, 517, 549, 516, 549, 548, 517, 518, 550, 517, 550, 549, 518, 519, 551, 518, 551, 550, 519, 520, 552, 519, 552, 551, 520, 521, 553, 520, 553, 552, 521, 522, 554, 521, 554, 553, 522, 523, 555, 522, 555, 554, 523, 524, 556, 523, 556, 555, 524, 525, 557, 524, 557, 556, 525, 526, 558, 525, 558, 557, 526, 527, 559, 526, 559, 558, 527, 528, 560, 527, 560, 559, 528, 529, 561, 528, 561, 560, 529, 530, 562, 529, 562, 561, 530, 531, 563, 530, 563, 562, 531, 532, 564, 531, 564, 563, 532, 533, 565, 532, 565, 564, 533, 534, 566, 533, 566, 565, 534, 535, 567, 534, 567, 566, 535, 536, 568, 535, 568, 567, 536, 537, 569, 536, 569, 568, 537, 538, 570, 537, 570, 569, 538, 539, 571, 538, 571, 570, 539, 540, 572, 539, 572, 571, 540, 541, 573, 540, 573, 572, 541, 542, 574, 541, 574, 573, 542, 543, 575, 542, 575, 574, 544, 545, 577, 544, 577, 576, 545, 546, 578, 545, 578, 577, 546, 547, 579, 546, 579, 578, 547, 548, 580, 547, 580, 579, 548, 549, 581, 548, 581, 580, 549, 550, 582, 549, 582, 581, 550, 551, 583, 550, 583, 582, 551, 552, 584, 551, 584, 583, 552, 553, 585, 552, 585, 584, 553, 554, 586, 553, 586, 585, 554, 555, 587, 554, 587, 586, 555, 556, 588, 555, 588, 587, 556, 557, 589, 556, 589, 588, 557, 558, 590, 557, 590, 589, 558, 559, 591, 558, 591, 590, 559, 560, 592, 559, 592, 591, 560, 561, 593, 560, 593, 592, 561, 562, 594, 561, 594, 593, 562, 563, 595, 562, 595, 594, 563, 564, 596, 563, 596, 595, 564, 565, 597, 564, 597, 596, 565, 566, 598, 565, 598, 597, 566, 567, 599, 566, 599, 598, 567, 568, 600, 567, 600, 599, 568, 569, 601, 568, 601, 600, 569, 570, 602, 569, 602, 601, 570, 571, 603, 570, 603, 602, 571, 572, 604, 571, 604, 603, 572, 573, 605, 572, 605, 604, 573, 574, 606, 573, 606, 605, 574, 575, 607, 574, 607, 606, 576, 577, 609, 576, 609, 608, 577, 578, 610, 577, 610, 609, 578, 579, 611, 578, 611, 610, 579, 580, 612, 579, 612, 611, 580, 581, 613, 580, 613, 612, 581, 582, 614, 581, 614, 613, 582, 583, 615, 582, 615, 614, 583, 584, 616, 583, 616, 615, 584, 585, 617, 584, 617, 616, 585, 586, 618, 585, 618, 617, 586, 587, 619, 586, 619, 618, 587, 588, 620, 587, 620, 619, 588, 589, 621, 588, 621, 620, 589, 590, 622, 589, 622, 621, 590, 591, 623, 590, 623, 622, 591, 592, 624, 591, 624, 623, 592, 593, 625, 592, 625, 624, 593, 594, 626, 593, 626, 625, 594, 595, 627, 594, 627, 626, 595, 596, 628, 595, 628, 627, 596, 597, 629, 596, 629, 628, 597, 598, 630, 597, 630, 629, 598, 599, 631, 598, 631, 630, 599, 600, 632, 599, 632, 631, 600, 601, 633, 600, 633, 632, 601, 602, 634, 601, 634, 633, 602, 603, 635, 602, 635, 634, 603, 604, 636, 603, 636, 635, 604, 605, 637, 604, 637, 636, 605, 606, 638, 605, 638, 637, 606, 607, 639, 606, 639, 638, 608, 609, 641, 608, 641, 640, 609, 610, 642, 609, 642, 641, 610, 611, 643, 610, 643, 642, 611, 612, 644, 611, 644, 643, 612, 613, 645, 612, 645, 644, 613, 614, 646, 613, 646, 645, 614, 615, 647, 614, 647, 646, 615, 616, 648, 615, 648, 647, 616, 617, 649, 616, 649, 648, 617, 618, 650, 617, 650, 649, 618, 619, 651, 618, 651, 650, 619, 620, 652, 619, 652, 651, 620, 621, 653, 620, 653, 652, 621, 622, 654, 621, 654, 653, 622, 623, 655, 622, 655, 654, 623, 624, 656, 623, 656, 655, 624, 625, 657, 624, 657, 656, 625, 626, 658, 625, 658, 657, 626, 627, 659, 626, 659, 658, 627, 628, 660, 627, 660, 659, 628, 629, 661, 628, 661, 660, 629, 630, 662, 629, 662, 661, 630, 631, 663, 630, 663, 662, 631, 632, 664, 631, 664, 663, 632, 633, 665, 632, 665, 664, 633, 634, 666, 633, 666, 665, 634, 635, 667, 634, 667, 666, 635, 636, 668, 635, 668, 667, 636, 637, 669, 636, 669, 668, 637, 638, 670, 637, 670, 669, 638, 639, 671, 638, 671, 670, 640, 641, 673, 640, 673, 672, 641, 642, 674, 641, 674, 673, 642, 643, 675, 642, 675, 674, 643, 644, 676, 643, 676, 675, 644, 645, 677, 644, 677, 676, 645, 646, 678, 645, 678, 677, 646, 647, 679, 646, 679, 678, 647, 648, 680, 647, 680, 679, 648, 649, 681, 648, 681, 680, 649, 650, 682, 649, 682, 681, 650, 651, 683, 650, 683, 682, 651, 652, 684, 651, 684, 683, 652, 653, 685, 652, 685, 684, 653, 654, 686, 653, 686, 685, 654, 655, 687, 654, 687, 686, 655, 656, 688, 655, 688, 687, 656, 657, 689, 656, 689, 688, 657, 658, 690, 657, 690, 689, 658, 659, 691, 658, 691, 690, 659, 660, 692, 659, 692, 691, 660, 661, 693, 660, 693, 692, 661, 662, 694, 661, 694, 693, 662, 663, 695, 662, 695, 694, 663, 664, 696, 663, 696, 695, 664, 665, 697, 664, 697, 696, 665, 666, 698, 665, 698, 697, 666, 667, 699, 666, 699, 698, 667, 668, 700, 667, 700, 699, 668, 669, 701, 668, 701, 700, 669, 670, 702, 669, 702, 701, 670, 671, 703, 670, 703, 702, 672, 673, 705, 672, 705, 704, 673, 674, 706, 673, 706, 705, 674, 675, 707, 674, 707, 706, 675, 676, 708, 675, 708, 707, 676, 677, 709, 676, 709, 708, 677, 678, 710, 677, 710, 709, 678, 679, 711, 678, 711, 710, 679, 680, 712, 679, 712, 711, 680, 681, 713, 680, 713, 712, 681, 682, 714, 681, 714, 713, 682, 683, 715, 682, 715, 714, 683, 684, 716, 683, 716, 715, 684, 685, 717, 684, 717, 716, 685, 686, 718, 685, 718, 717, 686, 687, 719, 686, 719, 718, 687, 688, 720, 687, 720, 719, 688, 689, 721, 688, 721, 720, 689, 690, 722, 689, 722, 721, 690, 691, 723, 690, 723, 722, 691, 692, 724, 691, 724, 723, 692, 693, 725, 692, 725, 724, 693, 694, 726, 693, 726, 725, 694, 695, 727, 694, 727, 726, 695, 696, 728, 695, 728, 727, 696, 697, 729, 696, 729, 728, 697, 698, 730, 697, 730, 729, 698, 699, 731, 698, 731, 730, 699, 700, 732, 699, 732, 731, 700, 701, 733, 700, 733, 732, 701, 702, 734, 701, 734, 733, 702, 703, 735, 702, 735, 734, 704, 705, 737, 704, 737, 736, 705, 706, 738, 705, 738, 737, 706, 707, 739, 706, 739, 738, 707, 708, 740, 707, 740, 739, 708, 709, 741, 708, 741, 740, 709, 710, 742, 709, 742, 741, 710, 711, 743, 710, 743, 742, 711, 712, 744, 711, 744, 743, 712, 713, 745, 712, 745, 744, 713, 714, 746, 713, 746, 745, 714, 715, 747, 714, 747, 746, 715, 716, 748, 715, 748, 747, 716, 717, 749, 716, 749, 748, 717, 718, 750, 717, 750, 749, 718, 719, 751, 718, 751, 750, 719, 720, 752, 719, 752, 751, 720, 721, 753, 720, 753, 752, 721, 722, 754, 721, 754, 753, 722, 723, 755, 722, 755, 754, 723, 724, 756, 723, 756, 755, 724, 725, 757, 724, 757, 756, 725, 726, 758, 725, 758, 757, 726, 727, 759, 726, 759, 758, 727, 728, 760, 727, 760, 759, 728, 729, 761, 728, 761, 760, 729, 730, 762, 729, 762, 761, 730, 731, 763, 730, 763, 762, 731, 732, 764, 731, 764, 763, 732, 733, 765, 732, 765, 764, 733, 734, 766, 733, 766, 765, 734, 735, 767, 734, 767, 766, 736, 737, 769, 736, 769, 768, 737, 738, 770, 737, 770, 769, 738, 739, 771, 738, 771, 770, 739, 740, 772, 739, 772, 771, 740, 741, 773, 740, 773, 772, 741, 742, 774, 741, 774, 773, 742, 743, 775, 742, 775, 774, 743, 744, 776, 743, 776, 775, 744, 745, 777, 744, 777, 776, 745, 746, 778, 745, 778, 777, 746, 747, 779, 746, 779, 778, 747, 748, 780, 747, 780, 779, 748, 749, 781, 748, 781, 780, 749, 750, 782, 749, 782, 781, 750, 751, 783, 750, 783, 782, 751, 752, 784, 751, 784, 783, 752, 753, 785, 752, 785, 784, 753, 754, 786, 753, 786, 785, 754, 755, 787, 754, 787, 786, 755, 756, 788, 755, 788, 787, 756, 757, 789, 756, 789, 788, 757, 758, 790, 757, 790, 789, 758, 759, 791, 758, 791, 790, 759, 760, 792, 759, 792, 791, 760, 761, 793, 760, 793, 792, 761, 762, 794, 761, 794, 793, 762, 763, 795, 762, 795, 794, 763, 764, 796, 763, 796, 795, 764, 765, 797, 764, 797, 796, 765, 766, 798, 765, 798, 797, 766, 767, 799, 766, 799, 798, 768, 769, 801, 768, 801, 800, 769, 770, 802, 769, 802, 801, 770, 771, 803, 770, 803, 802, 771, 772, 804, 771, 804, 803, 772, 773, 805, 772, 805, 804, 773, 774, 806, 773, 806, 805, 774, 775, 807, 774, 807, 806, 775, 776, 808, 775, 808, 807, 776, 777, 809, 776, 809, 808, 777, 778, 810, 777, 810, 809, 778, 779, 811, 778, 811, 810, 779, 780, 812, 779, 812, 811, 780, 781, 813, 780, 813, 812, 781, 782, 814, 781, 814, 813, 782, 783, 815, 782, 815, 814, 783, 784, 816, 783, 816, 815, 784, 785, 817, 784, 817, 816, 785, 786, 818, 785, 818, 817, 786, 787, 819, 786, 819, 818, 787, 788, 820, 787, 820, 819, 788, 789, 821, 788, 821, 820, 789, 790, 822, 789, 822, 821, 790, 791, 823, 790, 823, 822, 791, 792, 824, 791, 824, 823, 792, 793, 825, 792, 825, 824, 793, 794, 826, 793, 826, 825, 794, 795, 827, 794, 827, 826, 795, 796, 828, 795, 828, 827, 796, 797, 829, 796, 829, 828, 797, 798, 830, 797, 830, 829, 798, 799, 831, 798, 831, 830, 800, 801, 833, 800, 833, 832, 801, 802, 834, 801, 834, 833, 802, 803, 835, 802, 835, 834, 803, 804, 836, 803, 836, 835, 804, 805, 837, 804, 837, 836, 805, 806, 838, 805, 838, 837, 806, 807, 839, 806, 839, 838, 807, 808, 840, 807, 840, 839, 808, 809, 841, 808, 841, 840, 809, 810, 842, 809, 842, 841, 810, 811, 843, 810, 843, 842, 811, 812, 844, 811, 844, 843, 812, 813, 845, 812, 845, 844, 813, 814, 846, 813, 846, 845, 814, 815, 847, 814, 847, 846, 815, 816, 848, 815, 848, 847, 816, 817, 849, 816, 849, 848, 817, 818, 850, 817, 850, 849, 818, 819, 851, 818, 851, 850, 819, 820, 852, 819, 852, 851, 820, 821, 853, 820, 853, 852, 821, 822, 854, 821, 854, 853, 822, 823, 855, 822, 855, 854, 823, 824, 856, 823, 856, 855, 824, 825, 857, 824, 857, 856, 825, 826, 858, 825, 858, 857, 826, 827, 859, 826, 859, 858, 827, 828, 860, 827, 860, 859, 828, 829, 861, 828, 861, 860, 829, 830, 862, 829, 862, 861, 830, 831, 863, 830, 863, 862, 832, 833, 865, 832, 865, 864, 833, 834, 866, 833, 866, 865, 834, 835, 867, 834, 867, 866, 835, 836, 868, 835, 868, 867, 836, 837, 869, 836, 869, 868, 837, 838, 870, 837, 870, 869, 838, 839, 871, 838, 871, 870, 839, 840, 872, 839, 872, 871, 840, 841, 873, 840, 873, 872, 841, 842, 874, 841, 874, 873, 842, 843, 875, 842, 875, 874, 843, 844, 876, 843, 876, 875, 844, 845, 877, 844, 877, 876, 845, 846, 878, 845, 878, 877, 846, 847, 879, 846, 879, 878, 847, 848, 880, 847, 880, 879, 848, 849, 881, 848, 881, 880, 849, 850, 882, 849, 882, 881, 850, 851, 883, 850, 883, 882, 851, 852, 884, 851, 884, 883, 852, 853, 885, 852, 885, 884, 853, 854, 886, 853, 886, 885, 854, 855, 887, 854, 887, 886, 855, 856, 888, 855, 888, 887, 856, 857, 889, 856, 889, 888, 857, 858, 890, 857, 890, 889, 858, 859, 891, 858, 891, 890, 859, 860, 892, 859, 892, 891, 860, 861, 893, 860, 893, 892, 861, 862, 894, 861, 894, 893, 862, 863, 895, 862, 895, 894, 864, 865, 897, 864, 897, 896, 865, 866, 898, 865, 898, 897, 866, 867, 899, 866, 899, 898, 867, 868, 900, 867, 900, 899, 868, 869, 901, 868, 901, 900, 869, 870, 902, 869, 902, 901, 870, 871, 903, 870, 903, 902, 871, 872, 904, 871, 904, 903, 872, 873, 905, 872, 905, 904, 873, 874, 906, 873, 906, 905, 874, 875, 907, 874, 907, 906, 875, 876, 908, 875, 908, 907, 876, 877, 909, 876, 909, 908, 877, 878, 910, 877, 910, 909, 878, 879, 911, 878, 911, 910, 879, 880, 912, 879, 912, 911, 880, 881, 913, 880, 913, 912, 881, 882, 914, 881, 914, 913, 882, 883, 915, 882, 915, 914, 883, 884, 916, 883, 916, 915, 884, 885, 917, 884, 917, 916, 885, 886, 918, 885, 918, 917, 886, 887, 919, 886, 919, 918, 887, 888, 920, 887, 920, 919, 888, 889, 921, 888, 921, 920, 889, 890, 922, 889, 922, 921, 890, 891, 923, 890, 923, 922, 891, 892, 924, 891, 924, 923, 892, 893, 925, 892, 925, 924, 893, 894, 926, 893, 926, 925, 894, 895, 927, 894, 927, 926, 896, 897, 929, 896, 929, 928, 897, 898, 930, 897, 930, 929, 898, 899, 931, 898, 931, 930, 899, 900, 932, 899, 932, 931, 900, 901, 933, 900, 933, 932, 901, 902, 934, 901, 934, 933, 902, 903, 935, 902, 935, 934, 903, 904, 936, 903, 936, 935, 904, 905, 937, 904, 937, 936, 905, 906, 938, 905, 938, 937, 906, 907, 939, 906, 939, 938, 907, 908, 940, 907, 940, 939, 908, 909, 941, 908, 941, 940, 909, 910, 942, 909, 942, 941, 910, 911, 943, 910, 943, 942, 911, 912, 944, 911, 944, 943, 912, 913, 945, 912, 945, 944, 913, 914, 946, 913, 946, 945, 914, 915, 947, 914, 947, 946, 915, 916, 948, 915, 948, 947, 916, 917, 949, 916, 949, 948, 917, 918, 950, 917, 950, 949, 918, 919, 951, 918, 951, 950, 919, 920, 952, 919, 952, 951, 920, 921, 953, 920, 953, 952, 921, 922, 954, 921, 954, 953, 922, 923, 955, 922, 955, 954, 923, 924, 956, 923, 956, 955, 924, 925, 957, 924, 957, 956, 925, 926, 958, 925, 958, 957, 926, 927, 959, 926, 959, 958, 928, 929, 961, 928, 961, 960, 929, 930, 962, 929, 962, 961, 930, 931, 963, 930, 963, 962, 931, 932, 964, 931, 964, 963, 932, 933, 965, 932, 965, 964, 933, 934, 966, 933, 966, 965, 934, 935, 967, 934, 967, 966, 935, 936, 968, 935, 968, 967, 936, 937, 969, 936, 969, 968, 937, 938, 970, 937, 970, 969, 938, 939, 971, 938, 971, 970, 939, 940, 972, 939, 972, 971, 940, 941, 973, 940, 973, 972, 941, 942, 974, 941, 974, 973, 942, 943, 975, 942, 975, 974, 943, 944, 976, 943, 976, 975, 944, 945, 977, 944, 977, 976, 945, 946, 978, 945, 978, 977, 946, 947, 979, 946, 979, 978, 947, 948, 980, 947, 980, 979, 948, 949, 981, 948, 981, 980, 949, 950, 982, 949, 982, 981, 950, 951, 983, 950, 983, 982, 951, 952, 984, 951, 984, 983, 952, 953, 985, 952, 985, 984, 953, 954, 986, 953, 986, 985, 954, 955, 987, 954, 987, 986, 955, 956, 988, 955, 988, 987, 956, 957, 989, 956, 989, 988, 957, 958, 990, 957, 990, 989, 958, 959, 991, 958, 991, 990, 960, 961, 993, 960, 993, 992, 961, 962, 994, 961, 994, 993, 962, 963, 995, 962, 995, 994, 963, 964, 996, 963, 996, 995, 964, 965, 997, 964, 997, 996, 965, 966, 998, 965, 998, 997, 966, 967, 999, 966, 999, 998, 967, 968, 1000, 967, 1000, 999, 968, 969, 1001, 968, 1001, 1000, 969, 970, 1002, 969, 1002, 1001, 970, 971, 1003, 970, 1003, 1002, 971, 972, 1004, 971, 1004, 1003, 972, 973, 1005, 972, 1005, 1004, 973, 974, 1006, 973, 1006, 1005, 974, 975, 1007, 974, 1007, 1006, 975, 976, 1008, 975, 1008, 1007, 976, 977, 1009, 976, 1009, 1008, 977, 978, 1010, 977, 1010, 1009, 978, 979, 1011, 978, 1011, 1010, 979, 980, 1012, 979, 1012, 1011, 980, 981, 1013, 980, 1013, 1012, 981, 982, 1014, 981, 1014, 1013, 982, 983, 1015, 982, 1015, 1014, 983, 984, 1016, 983, 1016, 1015, 984, 985, 1017, 984, 1017, 1016, 985, 986, 1018, 985, 1018, 1017, 986, 987, 1019, 986, 1019, 1018, 987, 988, 1020, 987, 1020, 1019, 988, 989, 1021, 988, 1021, 1020, 989, 990, 1022, 989, 1022, 1021, 990, 991, 1023, 990, 1023, 1022] color3f[] primvars:displayColor = [(0.784314, 0.64705884, 0.1)] point3f[] points = [(0, 0, 20), (20, 0, 20), (40, 0, 20), (60, 0, 20), (80, 0, 20), (100, 0, 20), (120, 0, 20), (140, 0, 20), (160, 0, 20), (180, 0, 20), (200, 0, 20), (220, 0, 20), (240, 0, 20), (260, 0, 20), (280, 0, 20), (300, 0, 20), (320, 0, 20), (340, 0, 20), (360, 0, 20), (380, 0, 20), (400, 0, 20), (420, 0, 20), (440, 0, 20), (460, 0, 20), (480, 0, 20), (500, 0, 20), (520, 0, 20), (540, 0, 20), (560, 0, 20), (580, 0, 20), (600, 0, 20), (620, 0, 20), (0, 20, 20), (20, 20, 20), (40, 20, 20), (60, 20, 20), (80, 20, 20), (100, 20, 20), (120, 20, 20), (140, 20, 20), (160, 20, 20), (180, 20, 20), (200, 20, 20), (220, 20, 20), (240, 20, 20), (260, 20, 20), (280, 20, 20), (300, 20, 20), (320, 20, 20), (340, 20, 20), (360, 20, 20), (380, 20, 20), (400, 20, 20), (420, 20, 20), (440, 20, 20), (460, 20, 20), (480, 20, 20), (500, 20, 20), (520, 20, 20), (540, 20, 20), (560, 20, 20), (580, 20, 20), (600, 20, 20), (620, 20, 20), (0, 40, 20), (20, 40, 20), (40, 40, 20), (60, 40, 20), (80, 40, 20), (100, 40, 20), (120, 40, 20), (140, 40, 20), (160, 40, 20), (180, 40, 20), (200, 40, 20), (220, 40, 20), (240, 40, 20), (260, 40, 20), (280, 40, 20), (300, 40, 20), (320, 40, 20), (340, 40, 20), (360, 40, 20), (380, 40, 20), (400, 40, 20), (420, 40, 20), (440, 40, 20), (460, 40, 20), (480, 40, 20), (500, 40, 20), (520, 40, 20), (540, 40, 20), (560, 40, 20), (580, 40, 20), (600, 40, 20), (620, 40, 20), (0, 60, 20), (20, 60, 20), (40, 60, 20), (60, 60, 20), (80, 60, 20), (100, 60, 20), (120, 60, 20), (140, 60, 20), (160, 60, 20), (180, 60, 20), (200, 60, 20), (220, 60, 20), (240, 60, 20), (260, 60, 20), (280, 60, 20), (300, 60, 20), (320, 60, 20), (340, 60, 20), (360, 60, 20), (380, 60, 20), (400, 60, 20), (420, 60, 20), (440, 60, 20), (460, 60, 20), (480, 60, 20), (500, 60, 20), (520, 60, 20), (540, 60, 20), (560, 60, 20), (580, 60, 20), (600, 60, 20), (620, 60, 20), (0, 80, 20), (20, 80, 20), (40, 80, 20), (60, 80, 20), (80, 80, 20), (100, 80, 20), (120, 80, 20), (140, 80, 20), (160, 80, 20), (180, 80, 20), (200, 80, 20), (220, 80, 20), (240, 80, 20), (260, 80, 20), (280, 80, 20), (300, 80, 20), (320, 80, 20), (340, 80, 20), (360, 80, 20), (380, 80, 20), (400, 80, 20), (420, 80, 20), (440, 80, 20), (460, 80, 20), (480, 80, 20), (500, 80, 20), (520, 80, 20), (540, 80, 20), (560, 80, 20), (580, 80, 20), (600, 80, 20), (620, 80, 20), (0, 100, 20), (20, 100, 20), (40, 100, 20), (60, 100, 20), (80, 100, 20), (100, 100, 20), (120, 100, 20), (140, 100, 20), (160, 100, 20), (180, 100, 20), (200, 100, 20), (220, 100, 20), (240, 100, 20), (260, 100, 20), (280, 100, 20), (300, 100, 20), (320, 100, 20), (340, 100, 20), (360, 100, 20), (380, 100, 20), (400, 100, 20), (420, 100, 20), (440, 100, 20), (460, 100, 20), (480, 100, 20), (500, 100, 20), (520, 100, 20), (540, 100, 20), (560, 100, 20), (580, 100, 20), (600, 100, 20), (620, 100, 20), (0, 120, 20), (20, 120, 20), (40, 120, 20), (60, 120, 20), (80, 120, 20), (100, 120, 20), (120, 120, 20), (140, 120, 20), (160, 120, 20), (180, 120, 20), (200, 120, 20), (220, 120, 20), (240, 120, 20), (260, 120, 20), (280, 120, 20), (300, 120, 20), (320, 120, 20), (340, 120, 20), (360, 120, 20), (380, 120, 20), (400, 120, 20), (420, 120, 20), (440, 120, 20), (460, 120, 20), (480, 120, 20), (500, 120, 20), (520, 120, 20), (540, 120, 20), (560, 120, 20), (580, 120, 20), (600, 120, 20), (620, 120, 20), (0, 140, 20), (20, 140, 20), (40, 140, 20), (60, 140, 20), (80, 140, 20), (100, 140, 20), (120, 140, 20), (140, 140, 20), (160, 140, 20), (180, 140, 20), (200, 140, 20), (220, 140, 20), (240, 140, 20), (260, 140, 20), (280, 140, 20), (300, 140, 20), (320, 140, 20), (340, 140, 20), (360, 140, 20), (380, 140, 20), (400, 140, 20), (420, 140, 20), (440, 140, 20), (460, 140, 20), (480, 140, 20), (500, 140, 20), (520, 140, 20), (540, 140, 20), (560, 140, 20), (580, 140, 20), (600, 140, 20), (620, 140, 20), (0, 160, 20), (20, 160, 20), (40, 160, 20), (60, 160, 20), (80, 160, 20), (100, 160, 20), (120, 160, 20), (140, 160, 20), (160, 160, 20), (180, 160, 20), (200, 160, 20), (220, 160, 20), (240, 160, 20), (260, 160, 20), (280, 160, 20), (300, 160, 20), (320, 160, 20), (340, 160, 20), (360, 160, 20), (380, 160, 20), (400, 160, 20), (420, 160, 20), (440, 160, 20), (460, 160, 20), (480, 160, 20), (500, 160, 20), (520, 160, 20), (540, 160, 20), (560, 160, 20), (580, 160, 20), (600, 160, 20), (620, 160, 20), (0, 180, 20), (20, 180, 20), (40, 180, 20), (60, 180, 20), (80, 180, 20), (100, 180, 20), (120, 180, 20), (140, 180, 20), (160, 180, 20), (180, 180, 20), (200, 180, 20), (220, 180, 20), (240, 180, 20), (260, 180, 20), (280, 180, 20), (300, 180, 20), (320, 180, 20), (340, 180, 20), (360, 180, 20), (380, 180, 20), (400, 180, 20), (420, 180, 20), (440, 180, 20), (460, 180, 20), (480, 180, 20), (500, 180, 20), (520, 180, 20), (540, 180, 20), (560, 180, 20), (580, 180, 20), (600, 180, 20), (620, 180, 20), (0, 200, 20), (20, 200, 20), (40, 200, 20), (60, 200, 20), (80, 200, 20), (100, 200, 20), (120, 200, 20), (140, 200, 20), (160, 200, 20), (180, 200, 20), (200, 200, 20), (220, 200, 20), (240, 200, 20), (260, 200, 20), (280, 200, 20), (300, 200, 20), (320, 200, 20), (340, 200, 20), (360, 200, 20), (380, 200, 20), (400, 200, 20), (420, 200, 20), (440, 200, 20), (460, 200, 20), (480, 200, 20), (500, 200, 20), (520, 200, 20), (540, 200, 20), (560, 200, 20), (580, 200, 20), (600, 200, 20), (620, 200, 20), (0, 220, 20), (20, 220, 20), (40, 220, 20), (60, 220, 20), (80, 220, 20), (100, 220, 20), (120, 220, 20), (140, 220, 20), (160, 220, 20), (180, 220, 20), (200, 220, 20), (220, 220, 20), (240, 220, 20), (260, 220, 20), (280, 220, 20), (300, 220, 20), (320, 220, 20), (340, 220, 20), (360, 220, 20), (380, 220, 20), (400, 220, 20), (420, 220, 20), (440, 220, 20), (460, 220, 20), (480, 220, 20), (500, 220, 20), (520, 220, 20), (540, 220, 20), (560, 220, 20), (580, 220, 20), (600, 220, 20), (620, 220, 20), (0, 240, 20), (20, 240, 20), (40, 240, 20), (60, 240, 20), (80, 240, 20), (100, 240, 20), (120, 240, 20), (140, 240, 20), (160, 240, 20), (180, 240, 20), (200, 240, 20), (220, 240, 20), (240, 240, 20), (260, 240, 20), (280, 240, 20), (300, 240, 20), (320, 240, 20), (340, 240, 20), (360, 240, 20), (380, 240, 20), (400, 240, 20), (420, 240, 20), (440, 240, 20), (460, 240, 20), (480, 240, 20), (500, 240, 20), (520, 240, 20), (540, 240, 20), (560, 240, 20), (580, 240, 20), (600, 240, 20), (620, 240, 20), (0, 260, 20), (20, 260, 20), (40, 260, 20), (60, 260, 20), (80, 260, 20), (100, 260, 20), (120, 260, 20), (140, 260, 20), (160, 260, 20), (180, 260, 20), (200, 260, 20), (220, 260, 20), (240, 260, 20), (260, 260, 20), (280, 260, 20), (300, 260, 20), (320, 260, 20), (340, 260, 20), (360, 260, 20), (380, 260, 20), (400, 260, 20), (420, 260, 20), (440, 260, 20), (460, 260, 20), (480, 260, 20), (500, 260, 20), (520, 260, 20), (540, 260, 20), (560, 260, 20), (580, 260, 20), (600, 260, 20), (620, 260, 20), (0, 280, 20), (20, 280, 20), (40, 280, 20), (60, 280, 20), (80, 280, 20), (100, 280, 20), (120, 280, 20), (140, 280, 20), (160, 280, 20), (180, 280, 20), (200, 280, 20), (220, 280, 20), (240, 280, 20), (260, 280, 20), (280, 280, 20), (300, 280, 20), (320, 280, 20), (340, 280, 20), (360, 280, 20), (380, 280, 20), (400, 280, 20), (420, 280, 20), (440, 280, 20), (460, 280, 20), (480, 280, 20), (500, 280, 20), (520, 280, 20), (540, 280, 20), (560, 280, 20), (580, 280, 20), (600, 280, 20), (620, 280, 20), (0, 300, 20), (20, 300, 20), (40, 300, 20), (60, 300, 20), (80, 300, 20), (100, 300, 20), (120, 300, 20), (140, 300, 20), (160, 300, 20), (180, 300, 20), (200, 300, 20), (220, 300, 20), (240, 300, 20), (260, 300, 20), (280, 300, 20), (300, 300, 20), (320, 300, 20), (340, 300, 20), (360, 300, 20), (380, 300, 20), (400, 300, 20), (420, 300, 20), (440, 300, 20), (460, 300, 20), (480, 300, 20), (500, 300, 20), (520, 300, 20), (540, 300, 20), (560, 300, 20), (580, 300, 20), (600, 300, 20), (620, 300, 20), (0, 320, 20), (20, 320, 20), (40, 320, 20), (60, 320, 20), (80, 320, 20), (100, 320, 20), (120, 320, 20), (140, 320, 20), (160, 320, 20), (180, 320, 20), (200, 320, 20), (220, 320, 20), (240, 320, 20), (260, 320, 20), (280, 320, 20), (300, 320, 20), (320, 320, 20), (340, 320, 20), (360, 320, 20), (380, 320, 20), (400, 320, 20), (420, 320, 20), (440, 320, 20), (460, 320, 20), (480, 320, 20), (500, 320, 20), (520, 320, 20), (540, 320, 20), (560, 320, 20), (580, 320, 20), (600, 320, 20), (620, 320, 20), (0, 340, 20), (20, 340, 20), (40, 340, 20), (60, 340, 20), (80, 340, 20), (100, 340, 20), (120, 340, 20), (140, 340, 20), (160, 340, 20), (180, 340, 20), (200, 340, 20), (220, 340, 20), (240, 340, 20), (260, 340, 20), (280, 340, 20), (300, 340, 20), (320, 340, 20), (340, 340, 20), (360, 340, 20), (380, 340, 20), (400, 340, 20), (420, 340, 20), (440, 340, 20), (460, 340, 20), (480, 340, 20), (500, 340, 20), (520, 340, 20), (540, 340, 20), (560, 340, 20), (580, 340, 20), (600, 340, 20), (620, 340, 20), (0, 360, 20), (20, 360, 20), (40, 360, 20), (60, 360, 20), (80, 360, 20), (100, 360, 20), (120, 360, 20), (140, 360, 20), (160, 360, 20), (180, 360, 20), (200, 360, 20), (220, 360, 20), (240, 360, 20), (260, 360, 20), (280, 360, 20), (300, 360, 20), (320, 360, 20), (340, 360, 20), (360, 360, 20), (380, 360, 20), (400, 360, 20), (420, 360, 20), (440, 360, 20), (460, 360, 20), (480, 360, 20), (500, 360, 20), (520, 360, 20), (540, 360, 20), (560, 360, 20), (580, 360, 20), (600, 360, 20), (620, 360, 20), (0, 380, 20), (20, 380, 20), (40, 380, 20), (60, 380, 20), (80, 380, 20), (100, 380, 20), (120, 380, 20), (140, 380, 20), (160, 380, 20), (180, 380, 20), (200, 380, 20), (220, 380, 20), (240, 380, 20), (260, 380, 20), (280, 380, 20), (300, 380, 20), (320, 380, 20), (340, 380, 20), (360, 380, 20), (380, 380, 20), (400, 380, 20), (420, 380, 20), (440, 380, 20), (460, 380, 20), (480, 380, 20), (500, 380, 20), (520, 380, 20), (540, 380, 20), (560, 380, 20), (580, 380, 20), (600, 380, 20), (620, 380, 20), (0, 400, 20), (20, 400, 20), (40, 400, 20), (60, 400, 20), (80, 400, 20), (100, 400, 20), (120, 400, 20), (140, 400, 20), (160, 400, 20), (180, 400, 20), (200, 400, 20), (220, 400, 20), (240, 400, 20), (260, 400, 20), (280, 400, 20), (300, 400, 20), (320, 400, 20), (340, 400, 20), (360, 400, 20), (380, 400, 20), (400, 400, 20), (420, 400, 20), (440, 400, 20), (460, 400, 20), (480, 400, 20), (500, 400, 20), (520, 400, 20), (540, 400, 20), (560, 400, 20), (580, 400, 20), (600, 400, 20), (620, 400, 20), (0, 420, 20), (20, 420, 20), (40, 420, 20), (60, 420, 20), (80, 420, 20), (100, 420, 20), (120, 420, 20), (140, 420, 20), (160, 420, 20), (180, 420, 20), (200, 420, 20), (220, 420, 20), (240, 420, 20), (260, 420, 20), (280, 420, 20), (300, 420, 20), (320, 420, 20), (340, 420, 20), (360, 420, 20), (380, 420, 20), (400, 420, 20), (420, 420, 20), (440, 420, 20), (460, 420, 20), (480, 420, 20), (500, 420, 20), (520, 420, 20), (540, 420, 20), (560, 420, 20), (580, 420, 20), (600, 420, 20), (620, 420, 20), (0, 440, 20), (20, 440, 20), (40, 440, 20), (60, 440, 20), (80, 440, 20), (100, 440, 20), (120, 440, 20), (140, 440, 20), (160, 440, 20), (180, 440, 20), (200, 440, 20), (220, 440, 20), (240, 440, 20), (260, 440, 20), (280, 440, 20), (300, 440, 20), (320, 440, 20), (340, 440, 20), (360, 440, 20), (380, 440, 20), (400, 440, 20), (420, 440, 20), (440, 440, 20), (460, 440, 20), (480, 440, 20), (500, 440, 20), (520, 440, 20), (540, 440, 20), (560, 440, 20), (580, 440, 20), (600, 440, 20), (620, 440, 20), (0, 460, 20), (20, 460, 20), (40, 460, 20), (60, 460, 20), (80, 460, 20), (100, 460, 20), (120, 460, 20), (140, 460, 20), (160, 460, 20), (180, 460, 20), (200, 460, 20), (220, 460, 20), (240, 460, 20), (260, 460, 20), (280, 460, 20), (300, 460, 20), (320, 460, 20), (340, 460, 20), (360, 460, 20), (380, 460, 20), (400, 460, 20), (420, 460, 20), (440, 460, 20), (460, 460, 20), (480, 460, 20), (500, 460, 20), (520, 460, 20), (540, 460, 20), (560, 460, 20), (580, 460, 20), (600, 460, 20), (620, 460, 20), (0, 480, 20), (20, 480, 20), (40, 480, 20), (60, 480, 20), (80, 480, 20), (100, 480, 20), (120, 480, 20), (140, 480, 20), (160, 480, 20), (180, 480, 20), (200, 480, 20), (220, 480, 20), (240, 480, 20), (260, 480, 20), (280, 480, 20), (300, 480, 20), (320, 480, 20), (340, 480, 20), (360, 480, 20), (380, 480, 20), (400, 480, 20), (420, 480, 20), (440, 480, 20), (460, 480, 20), (480, 480, 20), (500, 480, 20), (520, 480, 20), (540, 480, 20), (560, 480, 20), (580, 480, 20), (600, 480, 20), (620, 480, 20), (0, 500, 20), (20, 500, 20), (40, 500, 20), (60, 500, 20), (80, 500, 20), (100, 500, 20), (120, 500, 20), (140, 500, 20), (160, 500, 20), (180, 500, 20), (200, 500, 20), (220, 500, 20), (240, 500, 20), (260, 500, 20), (280, 500, 20), (300, 500, 20), (320, 500, 20), (340, 500, 20), (360, 500, 20), (380, 500, 20), (400, 500, 20), (420, 500, 20), (440, 500, 20), (460, 500, 20), (480, 500, 20), (500, 500, 20), (520, 500, 20), (540, 500, 20), (560, 500, 20), (580, 500, 20), (600, 500, 20), (620, 500, 20), (0, 520, 20), (20, 520, 20), (40, 520, 20), (60, 520, 20), (80, 520, 20), (100, 520, 20), (120, 520, 20), (140, 520, 20), (160, 520, 20), (180, 520, 20), (200, 520, 20), (220, 520, 20), (240, 520, 20), (260, 520, 20), (280, 520, 20), (300, 520, 20), (320, 520, 20), (340, 520, 20), (360, 520, 20), (380, 520, 20), (400, 520, 20), (420, 520, 20), (440, 520, 20), (460, 520, 20), (480, 520, 20), (500, 520, 20), (520, 520, 20), (540, 520, 20), (560, 520, 20), (580, 520, 20), (600, 520, 20), (620, 520, 20), (0, 540, 20), (20, 540, 20), (40, 540, 20), (60, 540, 20), (80, 540, 20), (100, 540, 20), (120, 540, 20), (140, 540, 20), (160, 540, 20), (180, 540, 20), (200, 540, 20), (220, 540, 20), (240, 540, 20), (260, 540, 20), (280, 540, 20), (300, 540, 20), (320, 540, 20), (340, 540, 20), (360, 540, 20), (380, 540, 20), (400, 540, 20), (420, 540, 20), (440, 540, 20), (460, 540, 20), (480, 540, 20), (500, 540, 20), (520, 540, 20), (540, 540, 20), (560, 540, 20), (580, 540, 20), (600, 540, 20), (620, 540, 20), (0, 560, 20), (20, 560, 20), (40, 560, 20), (60, 560, 20), (80, 560, 20), (100, 560, 20), (120, 560, 20), (140, 560, 20), (160, 560, 20), (180, 560, 20), (200, 560, 20), (220, 560, 20), (240, 560, 20), (260, 560, 20), (280, 560, 20), (300, 560, 20), (320, 560, 20), (340, 560, 20), (360, 560, 20), (380, 560, 20), (400, 560, 20), (420, 560, 20), (440, 560, 20), (460, 560, 20), (480, 560, 20), (500, 560, 20), (520, 560, 20), (540, 560, 20), (560, 560, 20), (580, 560, 20), (600, 560, 20), (620, 560, 20), (0, 580, 20), (20, 580, 20), (40, 580, 20), (60, 580, 20), (80, 580, 20), (100, 580, 20), (120, 580, 20), (140, 580, 20), (160, 580, 20), (180, 580, 20), (200, 580, 20), (220, 580, 20), (240, 580, 20), (260, 580, 20), (280, 580, 20), (300, 580, 20), (320, 580, 20), (340, 580, 20), (360, 580, 20), (380, 580, 20), (400, 580, 20), (420, 580, 20), (440, 580, 20), (460, 580, 20), (480, 580, 20), (500, 580, 20), (520, 580, 20), (540, 580, 20), (560, 580, 20), (580, 580, 20), (600, 580, 20), (620, 580, 20), (0, 600, 20), (20, 600, 20), (40, 600, 20), (60, 600, 20), (80, 600, 20), (100, 600, 20), (120, 600, 20), (140, 600, 20), (160, 600, 20), (180, 600, 20), (200, 600, 20), (220, 600, 20), (240, 600, 20), (260, 600, 20), (280, 600, 20), (300, 600, 20), (320, 600, 20), (340, 600, 20), (360, 600, 20), (380, 600, 20), (400, 600, 20), (420, 600, 20), (440, 600, 20), (460, 600, 20), (480, 600, 20), (500, 600, 20), (520, 600, 20), (540, 600, 20), (560, 600, 20), (580, 600, 20), (600, 600, 20), (620, 600, 20), (0, 620, 20), (20, 620, 20), (40, 620, 20), (60, 620, 20), (80, 620, 20), (100, 620, 20), (120, 620, 20), (140, 620, 20), (160, 620, 20), (180, 620, 20), (200, 620, 20), (220, 620, 20), (240, 620, 20), (260, 620, 20), (280, 620, 20), (300, 620, 20), (320, 620, 20), (340, 620, 20), (360, 620, 20), (380, 620, 20), (400, 620, 20), (420, 620, 20), (440, 620, 20), (460, 620, 20), (480, 620, 20), (500, 620, 20), (520, 620, 20), (540, 620, 20), (560, 620, 20), (580, 620, 20), (600, 620, 20), (620, 620, 20)] point3f[] points.connect = </defaultPrim/innerPullGraph/deformer2.outputs:points> } }
omniverse-code/kit/exts/omni.graph/data/ExampleGridPrimDeformer.usda
#usda 1.0 ( doc = """Generated from Composed Stage of root layer """ ) def Xform "defaultPrim" { def Mesh "inputGrid" { uniform bool doubleSided = 1 int[] faceVertexCounts = [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 1, 33, 0, 33, 32, 1, 2, 34, 1, 34, 33, 2, 3, 35, 2, 35, 34, 3, 4, 36, 3, 36, 35, 4, 5, 37, 4, 37, 36, 5, 6, 38, 5, 38, 37, 6, 7, 39, 6, 39, 38, 7, 8, 40, 7, 40, 39, 8, 9, 41, 8, 41, 40, 9, 10, 42, 9, 42, 41, 10, 11, 43, 10, 43, 42, 11, 12, 44, 11, 44, 43, 12, 13, 45, 12, 45, 44, 13, 14, 46, 13, 46, 45, 14, 15, 47, 14, 47, 46, 15, 16, 48, 15, 48, 47, 16, 17, 49, 16, 49, 48, 17, 18, 50, 17, 50, 49, 18, 19, 51, 18, 51, 50, 19, 20, 52, 19, 52, 51, 20, 21, 53, 20, 53, 52, 21, 22, 54, 21, 54, 53, 22, 23, 55, 22, 55, 54, 23, 24, 56, 23, 56, 55, 24, 25, 57, 24, 57, 56, 25, 26, 58, 25, 58, 57, 26, 27, 59, 26, 59, 58, 27, 28, 60, 27, 60, 59, 28, 29, 61, 28, 61, 60, 29, 30, 62, 29, 62, 61, 30, 31, 63, 30, 63, 62, 32, 33, 65, 32, 65, 64, 33, 34, 66, 33, 66, 65, 34, 35, 67, 34, 67, 66, 35, 36, 68, 35, 68, 67, 36, 37, 69, 36, 69, 68, 37, 38, 70, 37, 70, 69, 38, 39, 71, 38, 71, 70, 39, 40, 72, 39, 72, 71, 40, 41, 73, 40, 73, 72, 41, 42, 74, 41, 74, 73, 42, 43, 75, 42, 75, 74, 43, 44, 76, 43, 76, 75, 44, 45, 77, 44, 77, 76, 45, 46, 78, 45, 78, 77, 46, 47, 79, 46, 79, 78, 47, 48, 80, 47, 80, 79, 48, 49, 81, 48, 81, 80, 49, 50, 82, 49, 82, 81, 50, 51, 83, 50, 83, 82, 51, 52, 84, 51, 84, 83, 52, 53, 85, 52, 85, 84, 53, 54, 86, 53, 86, 85, 54, 55, 87, 54, 87, 86, 55, 56, 88, 55, 88, 87, 56, 57, 89, 56, 89, 88, 57, 58, 90, 57, 90, 89, 58, 59, 91, 58, 91, 90, 59, 60, 92, 59, 92, 91, 60, 61, 93, 60, 93, 92, 61, 62, 94, 61, 94, 93, 62, 63, 95, 62, 95, 94, 64, 65, 97, 64, 97, 96, 65, 66, 98, 65, 98, 97, 66, 67, 99, 66, 99, 98, 67, 68, 100, 67, 100, 99, 68, 69, 101, 68, 101, 100, 69, 70, 102, 69, 102, 101, 70, 71, 103, 70, 103, 102, 71, 72, 104, 71, 104, 103, 72, 73, 105, 72, 105, 104, 73, 74, 106, 73, 106, 105, 74, 75, 107, 74, 107, 106, 75, 76, 108, 75, 108, 107, 76, 77, 109, 76, 109, 108, 77, 78, 110, 77, 110, 109, 78, 79, 111, 78, 111, 110, 79, 80, 112, 79, 112, 111, 80, 81, 113, 80, 113, 112, 81, 82, 114, 81, 114, 113, 82, 83, 115, 82, 115, 114, 83, 84, 116, 83, 116, 115, 84, 85, 117, 84, 117, 116, 85, 86, 118, 85, 118, 117, 86, 87, 119, 86, 119, 118, 87, 88, 120, 87, 120, 119, 88, 89, 121, 88, 121, 120, 89, 90, 122, 89, 122, 121, 90, 91, 123, 90, 123, 122, 91, 92, 124, 91, 124, 123, 92, 93, 125, 92, 125, 124, 93, 94, 126, 93, 126, 125, 94, 95, 127, 94, 127, 126, 96, 97, 129, 96, 129, 128, 97, 98, 130, 97, 130, 129, 98, 99, 131, 98, 131, 130, 99, 100, 132, 99, 132, 131, 100, 101, 133, 100, 133, 132, 101, 102, 134, 101, 134, 133, 102, 103, 135, 102, 135, 134, 103, 104, 136, 103, 136, 135, 104, 105, 137, 104, 137, 136, 105, 106, 138, 105, 138, 137, 106, 107, 139, 106, 139, 138, 107, 108, 140, 107, 140, 139, 108, 109, 141, 108, 141, 140, 109, 110, 142, 109, 142, 141, 110, 111, 143, 110, 143, 142, 111, 112, 144, 111, 144, 143, 112, 113, 145, 112, 145, 144, 113, 114, 146, 113, 146, 145, 114, 115, 147, 114, 147, 146, 115, 116, 148, 115, 148, 147, 116, 117, 149, 116, 149, 148, 117, 118, 150, 117, 150, 149, 118, 119, 151, 118, 151, 150, 119, 120, 152, 119, 152, 151, 120, 121, 153, 120, 153, 152, 121, 122, 154, 121, 154, 153, 122, 123, 155, 122, 155, 154, 123, 124, 156, 123, 156, 155, 124, 125, 157, 124, 157, 156, 125, 126, 158, 125, 158, 157, 126, 127, 159, 126, 159, 158, 128, 129, 161, 128, 161, 160, 129, 130, 162, 129, 162, 161, 130, 131, 163, 130, 163, 162, 131, 132, 164, 131, 164, 163, 132, 133, 165, 132, 165, 164, 133, 134, 166, 133, 166, 165, 134, 135, 167, 134, 167, 166, 135, 136, 168, 135, 168, 167, 136, 137, 169, 136, 169, 168, 137, 138, 170, 137, 170, 169, 138, 139, 171, 138, 171, 170, 139, 140, 172, 139, 172, 171, 140, 141, 173, 140, 173, 172, 141, 142, 174, 141, 174, 173, 142, 143, 175, 142, 175, 174, 143, 144, 176, 143, 176, 175, 144, 145, 177, 144, 177, 176, 145, 146, 178, 145, 178, 177, 146, 147, 179, 146, 179, 178, 147, 148, 180, 147, 180, 179, 148, 149, 181, 148, 181, 180, 149, 150, 182, 149, 182, 181, 150, 151, 183, 150, 183, 182, 151, 152, 184, 151, 184, 183, 152, 153, 185, 152, 185, 184, 153, 154, 186, 153, 186, 185, 154, 155, 187, 154, 187, 186, 155, 156, 188, 155, 188, 187, 156, 157, 189, 156, 189, 188, 157, 158, 190, 157, 190, 189, 158, 159, 191, 158, 191, 190, 160, 161, 193, 160, 193, 192, 161, 162, 194, 161, 194, 193, 162, 163, 195, 162, 195, 194, 163, 164, 196, 163, 196, 195, 164, 165, 197, 164, 197, 196, 165, 166, 198, 165, 198, 197, 166, 167, 199, 166, 199, 198, 167, 168, 200, 167, 200, 199, 168, 169, 201, 168, 201, 200, 169, 170, 202, 169, 202, 201, 170, 171, 203, 170, 203, 202, 171, 172, 204, 171, 204, 203, 172, 173, 205, 172, 205, 204, 173, 174, 206, 173, 206, 205, 174, 175, 207, 174, 207, 206, 175, 176, 208, 175, 208, 207, 176, 177, 209, 176, 209, 208, 177, 178, 210, 177, 210, 209, 178, 179, 211, 178, 211, 210, 179, 180, 212, 179, 212, 211, 180, 181, 213, 180, 213, 212, 181, 182, 214, 181, 214, 213, 182, 183, 215, 182, 215, 214, 183, 184, 216, 183, 216, 215, 184, 185, 217, 184, 217, 216, 185, 186, 218, 185, 218, 217, 186, 187, 219, 186, 219, 218, 187, 188, 220, 187, 220, 219, 188, 189, 221, 188, 221, 220, 189, 190, 222, 189, 222, 221, 190, 191, 223, 190, 223, 222, 192, 193, 225, 192, 225, 224, 193, 194, 226, 193, 226, 225, 194, 195, 227, 194, 227, 226, 195, 196, 228, 195, 228, 227, 196, 197, 229, 196, 229, 228, 197, 198, 230, 197, 230, 229, 198, 199, 231, 198, 231, 230, 199, 200, 232, 199, 232, 231, 200, 201, 233, 200, 233, 232, 201, 202, 234, 201, 234, 233, 202, 203, 235, 202, 235, 234, 203, 204, 236, 203, 236, 235, 204, 205, 237, 204, 237, 236, 205, 206, 238, 205, 238, 237, 206, 207, 239, 206, 239, 238, 207, 208, 240, 207, 240, 239, 208, 209, 241, 208, 241, 240, 209, 210, 242, 209, 242, 241, 210, 211, 243, 210, 243, 242, 211, 212, 244, 211, 244, 243, 212, 213, 245, 212, 245, 244, 213, 214, 246, 213, 246, 245, 214, 215, 247, 214, 247, 246, 215, 216, 248, 215, 248, 247, 216, 217, 249, 216, 249, 248, 217, 218, 250, 217, 250, 249, 218, 219, 251, 218, 251, 250, 219, 220, 252, 219, 252, 251, 220, 221, 253, 220, 253, 252, 221, 222, 254, 221, 254, 253, 222, 223, 255, 222, 255, 254, 224, 225, 257, 224, 257, 256, 225, 226, 258, 225, 258, 257, 226, 227, 259, 226, 259, 258, 227, 228, 260, 227, 260, 259, 228, 229, 261, 228, 261, 260, 229, 230, 262, 229, 262, 261, 230, 231, 263, 230, 263, 262, 231, 232, 264, 231, 264, 263, 232, 233, 265, 232, 265, 264, 233, 234, 266, 233, 266, 265, 234, 235, 267, 234, 267, 266, 235, 236, 268, 235, 268, 267, 236, 237, 269, 236, 269, 268, 237, 238, 270, 237, 270, 269, 238, 239, 271, 238, 271, 270, 239, 240, 272, 239, 272, 271, 240, 241, 273, 240, 273, 272, 241, 242, 274, 241, 274, 273, 242, 243, 275, 242, 275, 274, 243, 244, 276, 243, 276, 275, 244, 245, 277, 244, 277, 276, 245, 246, 278, 245, 278, 277, 246, 247, 279, 246, 279, 278, 247, 248, 280, 247, 280, 279, 248, 249, 281, 248, 281, 280, 249, 250, 282, 249, 282, 281, 250, 251, 283, 250, 283, 282, 251, 252, 284, 251, 284, 283, 252, 253, 285, 252, 285, 284, 253, 254, 286, 253, 286, 285, 254, 255, 287, 254, 287, 286, 256, 257, 289, 256, 289, 288, 257, 258, 290, 257, 290, 289, 258, 259, 291, 258, 291, 290, 259, 260, 292, 259, 292, 291, 260, 261, 293, 260, 293, 292, 261, 262, 294, 261, 294, 293, 262, 263, 295, 262, 295, 294, 263, 264, 296, 263, 296, 295, 264, 265, 297, 264, 297, 296, 265, 266, 298, 265, 298, 297, 266, 267, 299, 266, 299, 298, 267, 268, 300, 267, 300, 299, 268, 269, 301, 268, 301, 300, 269, 270, 302, 269, 302, 301, 270, 271, 303, 270, 303, 302, 271, 272, 304, 271, 304, 303, 272, 273, 305, 272, 305, 304, 273, 274, 306, 273, 306, 305, 274, 275, 307, 274, 307, 306, 275, 276, 308, 275, 308, 307, 276, 277, 309, 276, 309, 308, 277, 278, 310, 277, 310, 309, 278, 279, 311, 278, 311, 310, 279, 280, 312, 279, 312, 311, 280, 281, 313, 280, 313, 312, 281, 282, 314, 281, 314, 313, 282, 283, 315, 282, 315, 314, 283, 284, 316, 283, 316, 315, 284, 285, 317, 284, 317, 316, 285, 286, 318, 285, 318, 317, 286, 287, 319, 286, 319, 318, 288, 289, 321, 288, 321, 320, 289, 290, 322, 289, 322, 321, 290, 291, 323, 290, 323, 322, 291, 292, 324, 291, 324, 323, 292, 293, 325, 292, 325, 324, 293, 294, 326, 293, 326, 325, 294, 295, 327, 294, 327, 326, 295, 296, 328, 295, 328, 327, 296, 297, 329, 296, 329, 328, 297, 298, 330, 297, 330, 329, 298, 299, 331, 298, 331, 330, 299, 300, 332, 299, 332, 331, 300, 301, 333, 300, 333, 332, 301, 302, 334, 301, 334, 333, 302, 303, 335, 302, 335, 334, 303, 304, 336, 303, 336, 335, 304, 305, 337, 304, 337, 336, 305, 306, 338, 305, 338, 337, 306, 307, 339, 306, 339, 338, 307, 308, 340, 307, 340, 339, 308, 309, 341, 308, 341, 340, 309, 310, 342, 309, 342, 341, 310, 311, 343, 310, 343, 342, 311, 312, 344, 311, 344, 343, 312, 313, 345, 312, 345, 344, 313, 314, 346, 313, 346, 345, 314, 315, 347, 314, 347, 346, 315, 316, 348, 315, 348, 347, 316, 317, 349, 316, 349, 348, 317, 318, 350, 317, 350, 349, 318, 319, 351, 318, 351, 350, 320, 321, 353, 320, 353, 352, 321, 322, 354, 321, 354, 353, 322, 323, 355, 322, 355, 354, 323, 324, 356, 323, 356, 355, 324, 325, 357, 324, 357, 356, 325, 326, 358, 325, 358, 357, 326, 327, 359, 326, 359, 358, 327, 328, 360, 327, 360, 359, 328, 329, 361, 328, 361, 360, 329, 330, 362, 329, 362, 361, 330, 331, 363, 330, 363, 362, 331, 332, 364, 331, 364, 363, 332, 333, 365, 332, 365, 364, 333, 334, 366, 333, 366, 365, 334, 335, 367, 334, 367, 366, 335, 336, 368, 335, 368, 367, 336, 337, 369, 336, 369, 368, 337, 338, 370, 337, 370, 369, 338, 339, 371, 338, 371, 370, 339, 340, 372, 339, 372, 371, 340, 341, 373, 340, 373, 372, 341, 342, 374, 341, 374, 373, 342, 343, 375, 342, 375, 374, 343, 344, 376, 343, 376, 375, 344, 345, 377, 344, 377, 376, 345, 346, 378, 345, 378, 377, 346, 347, 379, 346, 379, 378, 347, 348, 380, 347, 380, 379, 348, 349, 381, 348, 381, 380, 349, 350, 382, 349, 382, 381, 350, 351, 383, 350, 383, 382, 352, 353, 385, 352, 385, 384, 353, 354, 386, 353, 386, 385, 354, 355, 387, 354, 387, 386, 355, 356, 388, 355, 388, 387, 356, 357, 389, 356, 389, 388, 357, 358, 390, 357, 390, 389, 358, 359, 391, 358, 391, 390, 359, 360, 392, 359, 392, 391, 360, 361, 393, 360, 393, 392, 361, 362, 394, 361, 394, 393, 362, 363, 395, 362, 395, 394, 363, 364, 396, 363, 396, 395, 364, 365, 397, 364, 397, 396, 365, 366, 398, 365, 398, 397, 366, 367, 399, 366, 399, 398, 367, 368, 400, 367, 400, 399, 368, 369, 401, 368, 401, 400, 369, 370, 402, 369, 402, 401, 370, 371, 403, 370, 403, 402, 371, 372, 404, 371, 404, 403, 372, 373, 405, 372, 405, 404, 373, 374, 406, 373, 406, 405, 374, 375, 407, 374, 407, 406, 375, 376, 408, 375, 408, 407, 376, 377, 409, 376, 409, 408, 377, 378, 410, 377, 410, 409, 378, 379, 411, 378, 411, 410, 379, 380, 412, 379, 412, 411, 380, 381, 413, 380, 413, 412, 381, 382, 414, 381, 414, 413, 382, 383, 415, 382, 415, 414, 384, 385, 417, 384, 417, 416, 385, 386, 418, 385, 418, 417, 386, 387, 419, 386, 419, 418, 387, 388, 420, 387, 420, 419, 388, 389, 421, 388, 421, 420, 389, 390, 422, 389, 422, 421, 390, 391, 423, 390, 423, 422, 391, 392, 424, 391, 424, 423, 392, 393, 425, 392, 425, 424, 393, 394, 426, 393, 426, 425, 394, 395, 427, 394, 427, 426, 395, 396, 428, 395, 428, 427, 396, 397, 429, 396, 429, 428, 397, 398, 430, 397, 430, 429, 398, 399, 431, 398, 431, 430, 399, 400, 432, 399, 432, 431, 400, 401, 433, 400, 433, 432, 401, 402, 434, 401, 434, 433, 402, 403, 435, 402, 435, 434, 403, 404, 436, 403, 436, 435, 404, 405, 437, 404, 437, 436, 405, 406, 438, 405, 438, 437, 406, 407, 439, 406, 439, 438, 407, 408, 440, 407, 440, 439, 408, 409, 441, 408, 441, 440, 409, 410, 442, 409, 442, 441, 410, 411, 443, 410, 443, 442, 411, 412, 444, 411, 444, 443, 412, 413, 445, 412, 445, 444, 413, 414, 446, 413, 446, 445, 414, 415, 447, 414, 447, 446, 416, 417, 449, 416, 449, 448, 417, 418, 450, 417, 450, 449, 418, 419, 451, 418, 451, 450, 419, 420, 452, 419, 452, 451, 420, 421, 453, 420, 453, 452, 421, 422, 454, 421, 454, 453, 422, 423, 455, 422, 455, 454, 423, 424, 456, 423, 456, 455, 424, 425, 457, 424, 457, 456, 425, 426, 458, 425, 458, 457, 426, 427, 459, 426, 459, 458, 427, 428, 460, 427, 460, 459, 428, 429, 461, 428, 461, 460, 429, 430, 462, 429, 462, 461, 430, 431, 463, 430, 463, 462, 431, 432, 464, 431, 464, 463, 432, 433, 465, 432, 465, 464, 433, 434, 466, 433, 466, 465, 434, 435, 467, 434, 467, 466, 435, 436, 468, 435, 468, 467, 436, 437, 469, 436, 469, 468, 437, 438, 470, 437, 470, 469, 438, 439, 471, 438, 471, 470, 439, 440, 472, 439, 472, 471, 440, 441, 473, 440, 473, 472, 441, 442, 474, 441, 474, 473, 442, 443, 475, 442, 475, 474, 443, 444, 476, 443, 476, 475, 444, 445, 477, 444, 477, 476, 445, 446, 478, 445, 478, 477, 446, 447, 479, 446, 479, 478, 448, 449, 481, 448, 481, 480, 449, 450, 482, 449, 482, 481, 450, 451, 483, 450, 483, 482, 451, 452, 484, 451, 484, 483, 452, 453, 485, 452, 485, 484, 453, 454, 486, 453, 486, 485, 454, 455, 487, 454, 487, 486, 455, 456, 488, 455, 488, 487, 456, 457, 489, 456, 489, 488, 457, 458, 490, 457, 490, 489, 458, 459, 491, 458, 491, 490, 459, 460, 492, 459, 492, 491, 460, 461, 493, 460, 493, 492, 461, 462, 494, 461, 494, 493, 462, 463, 495, 462, 495, 494, 463, 464, 496, 463, 496, 495, 464, 465, 497, 464, 497, 496, 465, 466, 498, 465, 498, 497, 466, 467, 499, 466, 499, 498, 467, 468, 500, 467, 500, 499, 468, 469, 501, 468, 501, 500, 469, 470, 502, 469, 502, 501, 470, 471, 503, 470, 503, 502, 471, 472, 504, 471, 504, 503, 472, 473, 505, 472, 505, 504, 473, 474, 506, 473, 506, 505, 474, 475, 507, 474, 507, 506, 475, 476, 508, 475, 508, 507, 476, 477, 509, 476, 509, 508, 477, 478, 510, 477, 510, 509, 478, 479, 511, 478, 511, 510, 480, 481, 513, 480, 513, 512, 481, 482, 514, 481, 514, 513, 482, 483, 515, 482, 515, 514, 483, 484, 516, 483, 516, 515, 484, 485, 517, 484, 517, 516, 485, 486, 518, 485, 518, 517, 486, 487, 519, 486, 519, 518, 487, 488, 520, 487, 520, 519, 488, 489, 521, 488, 521, 520, 489, 490, 522, 489, 522, 521, 490, 491, 523, 490, 523, 522, 491, 492, 524, 491, 524, 523, 492, 493, 525, 492, 525, 524, 493, 494, 526, 493, 526, 525, 494, 495, 527, 494, 527, 526, 495, 496, 528, 495, 528, 527, 496, 497, 529, 496, 529, 528, 497, 498, 530, 497, 530, 529, 498, 499, 531, 498, 531, 530, 499, 500, 532, 499, 532, 531, 500, 501, 533, 500, 533, 532, 501, 502, 534, 501, 534, 533, 502, 503, 535, 502, 535, 534, 503, 504, 536, 503, 536, 535, 504, 505, 537, 504, 537, 536, 505, 506, 538, 505, 538, 537, 506, 507, 539, 506, 539, 538, 507, 508, 540, 507, 540, 539, 508, 509, 541, 508, 541, 540, 509, 510, 542, 509, 542, 541, 510, 511, 543, 510, 543, 542, 512, 513, 545, 512, 545, 544, 513, 514, 546, 513, 546, 545, 514, 515, 547, 514, 547, 546, 515, 516, 548, 515, 548, 547, 516, 517, 549, 516, 549, 548, 517, 518, 550, 517, 550, 549, 518, 519, 551, 518, 551, 550, 519, 520, 552, 519, 552, 551, 520, 521, 553, 520, 553, 552, 521, 522, 554, 521, 554, 553, 522, 523, 555, 522, 555, 554, 523, 524, 556, 523, 556, 555, 524, 525, 557, 524, 557, 556, 525, 526, 558, 525, 558, 557, 526, 527, 559, 526, 559, 558, 527, 528, 560, 527, 560, 559, 528, 529, 561, 528, 561, 560, 529, 530, 562, 529, 562, 561, 530, 531, 563, 530, 563, 562, 531, 532, 564, 531, 564, 563, 532, 533, 565, 532, 565, 564, 533, 534, 566, 533, 566, 565, 534, 535, 567, 534, 567, 566, 535, 536, 568, 535, 568, 567, 536, 537, 569, 536, 569, 568, 537, 538, 570, 537, 570, 569, 538, 539, 571, 538, 571, 570, 539, 540, 572, 539, 572, 571, 540, 541, 573, 540, 573, 572, 541, 542, 574, 541, 574, 573, 542, 543, 575, 542, 575, 574, 544, 545, 577, 544, 577, 576, 545, 546, 578, 545, 578, 577, 546, 547, 579, 546, 579, 578, 547, 548, 580, 547, 580, 579, 548, 549, 581, 548, 581, 580, 549, 550, 582, 549, 582, 581, 550, 551, 583, 550, 583, 582, 551, 552, 584, 551, 584, 583, 552, 553, 585, 552, 585, 584, 553, 554, 586, 553, 586, 585, 554, 555, 587, 554, 587, 586, 555, 556, 588, 555, 588, 587, 556, 557, 589, 556, 589, 588, 557, 558, 590, 557, 590, 589, 558, 559, 591, 558, 591, 590, 559, 560, 592, 559, 592, 591, 560, 561, 593, 560, 593, 592, 561, 562, 594, 561, 594, 593, 562, 563, 595, 562, 595, 594, 563, 564, 596, 563, 596, 595, 564, 565, 597, 564, 597, 596, 565, 566, 598, 565, 598, 597, 566, 567, 599, 566, 599, 598, 567, 568, 600, 567, 600, 599, 568, 569, 601, 568, 601, 600, 569, 570, 602, 569, 602, 601, 570, 571, 603, 570, 603, 602, 571, 572, 604, 571, 604, 603, 572, 573, 605, 572, 605, 604, 573, 574, 606, 573, 606, 605, 574, 575, 607, 574, 607, 606, 576, 577, 609, 576, 609, 608, 577, 578, 610, 577, 610, 609, 578, 579, 611, 578, 611, 610, 579, 580, 612, 579, 612, 611, 580, 581, 613, 580, 613, 612, 581, 582, 614, 581, 614, 613, 582, 583, 615, 582, 615, 614, 583, 584, 616, 583, 616, 615, 584, 585, 617, 584, 617, 616, 585, 586, 618, 585, 618, 617, 586, 587, 619, 586, 619, 618, 587, 588, 620, 587, 620, 619, 588, 589, 621, 588, 621, 620, 589, 590, 622, 589, 622, 621, 590, 591, 623, 590, 623, 622, 591, 592, 624, 591, 624, 623, 592, 593, 625, 592, 625, 624, 593, 594, 626, 593, 626, 625, 594, 595, 627, 594, 627, 626, 595, 596, 628, 595, 628, 627, 596, 597, 629, 596, 629, 628, 597, 598, 630, 597, 630, 629, 598, 599, 631, 598, 631, 630, 599, 600, 632, 599, 632, 631, 600, 601, 633, 600, 633, 632, 601, 602, 634, 601, 634, 633, 602, 603, 635, 602, 635, 634, 603, 604, 636, 603, 636, 635, 604, 605, 637, 604, 637, 636, 605, 606, 638, 605, 638, 637, 606, 607, 639, 606, 639, 638, 608, 609, 641, 608, 641, 640, 609, 610, 642, 609, 642, 641, 610, 611, 643, 610, 643, 642, 611, 612, 644, 611, 644, 643, 612, 613, 645, 612, 645, 644, 613, 614, 646, 613, 646, 645, 614, 615, 647, 614, 647, 646, 615, 616, 648, 615, 648, 647, 616, 617, 649, 616, 649, 648, 617, 618, 650, 617, 650, 649, 618, 619, 651, 618, 651, 650, 619, 620, 652, 619, 652, 651, 620, 621, 653, 620, 653, 652, 621, 622, 654, 621, 654, 653, 622, 623, 655, 622, 655, 654, 623, 624, 656, 623, 656, 655, 624, 625, 657, 624, 657, 656, 625, 626, 658, 625, 658, 657, 626, 627, 659, 626, 659, 658, 627, 628, 660, 627, 660, 659, 628, 629, 661, 628, 661, 660, 629, 630, 662, 629, 662, 661, 630, 631, 663, 630, 663, 662, 631, 632, 664, 631, 664, 663, 632, 633, 665, 632, 665, 664, 633, 634, 666, 633, 666, 665, 634, 635, 667, 634, 667, 666, 635, 636, 668, 635, 668, 667, 636, 637, 669, 636, 669, 668, 637, 638, 670, 637, 670, 669, 638, 639, 671, 638, 671, 670, 640, 641, 673, 640, 673, 672, 641, 642, 674, 641, 674, 673, 642, 643, 675, 642, 675, 674, 643, 644, 676, 643, 676, 675, 644, 645, 677, 644, 677, 676, 645, 646, 678, 645, 678, 677, 646, 647, 679, 646, 679, 678, 647, 648, 680, 647, 680, 679, 648, 649, 681, 648, 681, 680, 649, 650, 682, 649, 682, 681, 650, 651, 683, 650, 683, 682, 651, 652, 684, 651, 684, 683, 652, 653, 685, 652, 685, 684, 653, 654, 686, 653, 686, 685, 654, 655, 687, 654, 687, 686, 655, 656, 688, 655, 688, 687, 656, 657, 689, 656, 689, 688, 657, 658, 690, 657, 690, 689, 658, 659, 691, 658, 691, 690, 659, 660, 692, 659, 692, 691, 660, 661, 693, 660, 693, 692, 661, 662, 694, 661, 694, 693, 662, 663, 695, 662, 695, 694, 663, 664, 696, 663, 696, 695, 664, 665, 697, 664, 697, 696, 665, 666, 698, 665, 698, 697, 666, 667, 699, 666, 699, 698, 667, 668, 700, 667, 700, 699, 668, 669, 701, 668, 701, 700, 669, 670, 702, 669, 702, 701, 670, 671, 703, 670, 703, 702, 672, 673, 705, 672, 705, 704, 673, 674, 706, 673, 706, 705, 674, 675, 707, 674, 707, 706, 675, 676, 708, 675, 708, 707, 676, 677, 709, 676, 709, 708, 677, 678, 710, 677, 710, 709, 678, 679, 711, 678, 711, 710, 679, 680, 712, 679, 712, 711, 680, 681, 713, 680, 713, 712, 681, 682, 714, 681, 714, 713, 682, 683, 715, 682, 715, 714, 683, 684, 716, 683, 716, 715, 684, 685, 717, 684, 717, 716, 685, 686, 718, 685, 718, 717, 686, 687, 719, 686, 719, 718, 687, 688, 720, 687, 720, 719, 688, 689, 721, 688, 721, 720, 689, 690, 722, 689, 722, 721, 690, 691, 723, 690, 723, 722, 691, 692, 724, 691, 724, 723, 692, 693, 725, 692, 725, 724, 693, 694, 726, 693, 726, 725, 694, 695, 727, 694, 727, 726, 695, 696, 728, 695, 728, 727, 696, 697, 729, 696, 729, 728, 697, 698, 730, 697, 730, 729, 698, 699, 731, 698, 731, 730, 699, 700, 732, 699, 732, 731, 700, 701, 733, 700, 733, 732, 701, 702, 734, 701, 734, 733, 702, 703, 735, 702, 735, 734, 704, 705, 737, 704, 737, 736, 705, 706, 738, 705, 738, 737, 706, 707, 739, 706, 739, 738, 707, 708, 740, 707, 740, 739, 708, 709, 741, 708, 741, 740, 709, 710, 742, 709, 742, 741, 710, 711, 743, 710, 743, 742, 711, 712, 744, 711, 744, 743, 712, 713, 745, 712, 745, 744, 713, 714, 746, 713, 746, 745, 714, 715, 747, 714, 747, 746, 715, 716, 748, 715, 748, 747, 716, 717, 749, 716, 749, 748, 717, 718, 750, 717, 750, 749, 718, 719, 751, 718, 751, 750, 719, 720, 752, 719, 752, 751, 720, 721, 753, 720, 753, 752, 721, 722, 754, 721, 754, 753, 722, 723, 755, 722, 755, 754, 723, 724, 756, 723, 756, 755, 724, 725, 757, 724, 757, 756, 725, 726, 758, 725, 758, 757, 726, 727, 759, 726, 759, 758, 727, 728, 760, 727, 760, 759, 728, 729, 761, 728, 761, 760, 729, 730, 762, 729, 762, 761, 730, 731, 763, 730, 763, 762, 731, 732, 764, 731, 764, 763, 732, 733, 765, 732, 765, 764, 733, 734, 766, 733, 766, 765, 734, 735, 767, 734, 767, 766, 736, 737, 769, 736, 769, 768, 737, 738, 770, 737, 770, 769, 738, 739, 771, 738, 771, 770, 739, 740, 772, 739, 772, 771, 740, 741, 773, 740, 773, 772, 741, 742, 774, 741, 774, 773, 742, 743, 775, 742, 775, 774, 743, 744, 776, 743, 776, 775, 744, 745, 777, 744, 777, 776, 745, 746, 778, 745, 778, 777, 746, 747, 779, 746, 779, 778, 747, 748, 780, 747, 780, 779, 748, 749, 781, 748, 781, 780, 749, 750, 782, 749, 782, 781, 750, 751, 783, 750, 783, 782, 751, 752, 784, 751, 784, 783, 752, 753, 785, 752, 785, 784, 753, 754, 786, 753, 786, 785, 754, 755, 787, 754, 787, 786, 755, 756, 788, 755, 788, 787, 756, 757, 789, 756, 789, 788, 757, 758, 790, 757, 790, 789, 758, 759, 791, 758, 791, 790, 759, 760, 792, 759, 792, 791, 760, 761, 793, 760, 793, 792, 761, 762, 794, 761, 794, 793, 762, 763, 795, 762, 795, 794, 763, 764, 796, 763, 796, 795, 764, 765, 797, 764, 797, 796, 765, 766, 798, 765, 798, 797, 766, 767, 799, 766, 799, 798, 768, 769, 801, 768, 801, 800, 769, 770, 802, 769, 802, 801, 770, 771, 803, 770, 803, 802, 771, 772, 804, 771, 804, 803, 772, 773, 805, 772, 805, 804, 773, 774, 806, 773, 806, 805, 774, 775, 807, 774, 807, 806, 775, 776, 808, 775, 808, 807, 776, 777, 809, 776, 809, 808, 777, 778, 810, 777, 810, 809, 778, 779, 811, 778, 811, 810, 779, 780, 812, 779, 812, 811, 780, 781, 813, 780, 813, 812, 781, 782, 814, 781, 814, 813, 782, 783, 815, 782, 815, 814, 783, 784, 816, 783, 816, 815, 784, 785, 817, 784, 817, 816, 785, 786, 818, 785, 818, 817, 786, 787, 819, 786, 819, 818, 787, 788, 820, 787, 820, 819, 788, 789, 821, 788, 821, 820, 789, 790, 822, 789, 822, 821, 790, 791, 823, 790, 823, 822, 791, 792, 824, 791, 824, 823, 792, 793, 825, 792, 825, 824, 793, 794, 826, 793, 826, 825, 794, 795, 827, 794, 827, 826, 795, 796, 828, 795, 828, 827, 796, 797, 829, 796, 829, 828, 797, 798, 830, 797, 830, 829, 798, 799, 831, 798, 831, 830, 800, 801, 833, 800, 833, 832, 801, 802, 834, 801, 834, 833, 802, 803, 835, 802, 835, 834, 803, 804, 836, 803, 836, 835, 804, 805, 837, 804, 837, 836, 805, 806, 838, 805, 838, 837, 806, 807, 839, 806, 839, 838, 807, 808, 840, 807, 840, 839, 808, 809, 841, 808, 841, 840, 809, 810, 842, 809, 842, 841, 810, 811, 843, 810, 843, 842, 811, 812, 844, 811, 844, 843, 812, 813, 845, 812, 845, 844, 813, 814, 846, 813, 846, 845, 814, 815, 847, 814, 847, 846, 815, 816, 848, 815, 848, 847, 816, 817, 849, 816, 849, 848, 817, 818, 850, 817, 850, 849, 818, 819, 851, 818, 851, 850, 819, 820, 852, 819, 852, 851, 820, 821, 853, 820, 853, 852, 821, 822, 854, 821, 854, 853, 822, 823, 855, 822, 855, 854, 823, 824, 856, 823, 856, 855, 824, 825, 857, 824, 857, 856, 825, 826, 858, 825, 858, 857, 826, 827, 859, 826, 859, 858, 827, 828, 860, 827, 860, 859, 828, 829, 861, 828, 861, 860, 829, 830, 862, 829, 862, 861, 830, 831, 863, 830, 863, 862, 832, 833, 865, 832, 865, 864, 833, 834, 866, 833, 866, 865, 834, 835, 867, 834, 867, 866, 835, 836, 868, 835, 868, 867, 836, 837, 869, 836, 869, 868, 837, 838, 870, 837, 870, 869, 838, 839, 871, 838, 871, 870, 839, 840, 872, 839, 872, 871, 840, 841, 873, 840, 873, 872, 841, 842, 874, 841, 874, 873, 842, 843, 875, 842, 875, 874, 843, 844, 876, 843, 876, 875, 844, 845, 877, 844, 877, 876, 845, 846, 878, 845, 878, 877, 846, 847, 879, 846, 879, 878, 847, 848, 880, 847, 880, 879, 848, 849, 881, 848, 881, 880, 849, 850, 882, 849, 882, 881, 850, 851, 883, 850, 883, 882, 851, 852, 884, 851, 884, 883, 852, 853, 885, 852, 885, 884, 853, 854, 886, 853, 886, 885, 854, 855, 887, 854, 887, 886, 855, 856, 888, 855, 888, 887, 856, 857, 889, 856, 889, 888, 857, 858, 890, 857, 890, 889, 858, 859, 891, 858, 891, 890, 859, 860, 892, 859, 892, 891, 860, 861, 893, 860, 893, 892, 861, 862, 894, 861, 894, 893, 862, 863, 895, 862, 895, 894, 864, 865, 897, 864, 897, 896, 865, 866, 898, 865, 898, 897, 866, 867, 899, 866, 899, 898, 867, 868, 900, 867, 900, 899, 868, 869, 901, 868, 901, 900, 869, 870, 902, 869, 902, 901, 870, 871, 903, 870, 903, 902, 871, 872, 904, 871, 904, 903, 872, 873, 905, 872, 905, 904, 873, 874, 906, 873, 906, 905, 874, 875, 907, 874, 907, 906, 875, 876, 908, 875, 908, 907, 876, 877, 909, 876, 909, 908, 877, 878, 910, 877, 910, 909, 878, 879, 911, 878, 911, 910, 879, 880, 912, 879, 912, 911, 880, 881, 913, 880, 913, 912, 881, 882, 914, 881, 914, 913, 882, 883, 915, 882, 915, 914, 883, 884, 916, 883, 916, 915, 884, 885, 917, 884, 917, 916, 885, 886, 918, 885, 918, 917, 886, 887, 919, 886, 919, 918, 887, 888, 920, 887, 920, 919, 888, 889, 921, 888, 921, 920, 889, 890, 922, 889, 922, 921, 890, 891, 923, 890, 923, 922, 891, 892, 924, 891, 924, 923, 892, 893, 925, 892, 925, 924, 893, 894, 926, 893, 926, 925, 894, 895, 927, 894, 927, 926, 896, 897, 929, 896, 929, 928, 897, 898, 930, 897, 930, 929, 898, 899, 931, 898, 931, 930, 899, 900, 932, 899, 932, 931, 900, 901, 933, 900, 933, 932, 901, 902, 934, 901, 934, 933, 902, 903, 935, 902, 935, 934, 903, 904, 936, 903, 936, 935, 904, 905, 937, 904, 937, 936, 905, 906, 938, 905, 938, 937, 906, 907, 939, 906, 939, 938, 907, 908, 940, 907, 940, 939, 908, 909, 941, 908, 941, 940, 909, 910, 942, 909, 942, 941, 910, 911, 943, 910, 943, 942, 911, 912, 944, 911, 944, 943, 912, 913, 945, 912, 945, 944, 913, 914, 946, 913, 946, 945, 914, 915, 947, 914, 947, 946, 915, 916, 948, 915, 948, 947, 916, 917, 949, 916, 949, 948, 917, 918, 950, 917, 950, 949, 918, 919, 951, 918, 951, 950, 919, 920, 952, 919, 952, 951, 920, 921, 953, 920, 953, 952, 921, 922, 954, 921, 954, 953, 922, 923, 955, 922, 955, 954, 923, 924, 956, 923, 956, 955, 924, 925, 957, 924, 957, 956, 925, 926, 958, 925, 958, 957, 926, 927, 959, 926, 959, 958, 928, 929, 961, 928, 961, 960, 929, 930, 962, 929, 962, 961, 930, 931, 963, 930, 963, 962, 931, 932, 964, 931, 964, 963, 932, 933, 965, 932, 965, 964, 933, 934, 966, 933, 966, 965, 934, 935, 967, 934, 967, 966, 935, 936, 968, 935, 968, 967, 936, 937, 969, 936, 969, 968, 937, 938, 970, 937, 970, 969, 938, 939, 971, 938, 971, 970, 939, 940, 972, 939, 972, 971, 940, 941, 973, 940, 973, 972, 941, 942, 974, 941, 974, 973, 942, 943, 975, 942, 975, 974, 943, 944, 976, 943, 976, 975, 944, 945, 977, 944, 977, 976, 945, 946, 978, 945, 978, 977, 946, 947, 979, 946, 979, 978, 947, 948, 980, 947, 980, 979, 948, 949, 981, 948, 981, 980, 949, 950, 982, 949, 982, 981, 950, 951, 983, 950, 983, 982, 951, 952, 984, 951, 984, 983, 952, 953, 985, 952, 985, 984, 953, 954, 986, 953, 986, 985, 954, 955, 987, 954, 987, 986, 955, 956, 988, 955, 988, 987, 956, 957, 989, 956, 989, 988, 957, 958, 990, 957, 990, 989, 958, 959, 991, 958, 991, 990, 960, 961, 993, 960, 993, 992, 961, 962, 994, 961, 994, 993, 962, 963, 995, 962, 995, 994, 963, 964, 996, 963, 996, 995, 964, 965, 997, 964, 997, 996, 965, 966, 998, 965, 998, 997, 966, 967, 999, 966, 999, 998, 967, 968, 1000, 967, 1000, 999, 968, 969, 1001, 968, 1001, 1000, 969, 970, 1002, 969, 1002, 1001, 970, 971, 1003, 970, 1003, 1002, 971, 972, 1004, 971, 1004, 1003, 972, 973, 1005, 972, 1005, 1004, 973, 974, 1006, 973, 1006, 1005, 974, 975, 1007, 974, 1007, 1006, 975, 976, 1008, 975, 1008, 1007, 976, 977, 1009, 976, 1009, 1008, 977, 978, 1010, 977, 1010, 1009, 978, 979, 1011, 978, 1011, 1010, 979, 980, 1012, 979, 1012, 1011, 980, 981, 1013, 980, 1013, 1012, 981, 982, 1014, 981, 1014, 1013, 982, 983, 1015, 982, 1015, 1014, 983, 984, 1016, 983, 1016, 1015, 984, 985, 1017, 984, 1017, 1016, 985, 986, 1018, 985, 1018, 1017, 986, 987, 1019, 986, 1019, 1018, 987, 988, 1020, 987, 1020, 1019, 988, 989, 1021, 988, 1021, 1020, 989, 990, 1022, 989, 1022, 1021, 990, 991, 1023, 990, 1023, 1022] point3f[] points = [(0, 0, 20), (20, 0, 20), (40, 0, 20), (60, 0, 20), (80, 0, 20), (100, 0, 20), (120, 0, 20), (140, 0, 20), (160, 0, 20), (180, 0, 20), (200, 0, 20), (220, 0, 20), (240, 0, 20), (260, 0, 20), (280, 0, 20), (300, 0, 20), (320, 0, 20), (340, 0, 20), (360, 0, 20), (380, 0, 20), (400, 0, 20), (420, 0, 20), (440, 0, 20), (460, 0, 20), (480, 0, 20), (500, 0, 20), (520, 0, 20), (540, 0, 20), (560, 0, 20), (580, 0, 20), (600, 0, 20), (620, 0, 20), (0, 20, 20), (20, 20, 20), (40, 20, 20), (60, 20, 20), (80, 20, 20), (100, 20, 20), (120, 20, 20), (140, 20, 20), (160, 20, 20), (180, 20, 20), (200, 20, 20), (220, 20, 20), (240, 20, 20), (260, 20, 20), (280, 20, 20), (300, 20, 20), (320, 20, 20), (340, 20, 20), (360, 20, 20), (380, 20, 20), (400, 20, 20), (420, 20, 20), (440, 20, 20), (460, 20, 20), (480, 20, 20), (500, 20, 20), (520, 20, 20), (540, 20, 20), (560, 20, 20), (580, 20, 20), (600, 20, 20), (620, 20, 20), (0, 40, 20), (20, 40, 20), (40, 40, 20), (60, 40, 20), (80, 40, 20), (100, 40, 20), (120, 40, 20), (140, 40, 20), (160, 40, 20), (180, 40, 20), (200, 40, 20), (220, 40, 20), (240, 40, 20), (260, 40, 20), (280, 40, 20), (300, 40, 20), (320, 40, 20), (340, 40, 20), (360, 40, 20), (380, 40, 20), (400, 40, 20), (420, 40, 20), (440, 40, 20), (460, 40, 20), (480, 40, 20), (500, 40, 20), (520, 40, 20), (540, 40, 20), (560, 40, 20), (580, 40, 20), (600, 40, 20), (620, 40, 20), (0, 60, 20), (20, 60, 20), (40, 60, 20), (60, 60, 20), (80, 60, 20), (100, 60, 20), (120, 60, 20), (140, 60, 20), (160, 60, 20), (180, 60, 20), (200, 60, 20), (220, 60, 20), (240, 60, 20), (260, 60, 20), (280, 60, 20), (300, 60, 20), (320, 60, 20), (340, 60, 20), (360, 60, 20), (380, 60, 20), (400, 60, 20), (420, 60, 20), (440, 60, 20), (460, 60, 20), (480, 60, 20), (500, 60, 20), (520, 60, 20), (540, 60, 20), (560, 60, 20), (580, 60, 20), (600, 60, 20), (620, 60, 20), (0, 80, 20), (20, 80, 20), (40, 80, 20), (60, 80, 20), (80, 80, 20), (100, 80, 20), (120, 80, 20), (140, 80, 20), (160, 80, 20), (180, 80, 20), (200, 80, 20), (220, 80, 20), (240, 80, 20), (260, 80, 20), (280, 80, 20), (300, 80, 20), (320, 80, 20), (340, 80, 20), (360, 80, 20), (380, 80, 20), (400, 80, 20), (420, 80, 20), (440, 80, 20), (460, 80, 20), (480, 80, 20), (500, 80, 20), (520, 80, 20), (540, 80, 20), (560, 80, 20), (580, 80, 20), (600, 80, 20), (620, 80, 20), (0, 100, 20), (20, 100, 20), (40, 100, 20), (60, 100, 20), (80, 100, 20), (100, 100, 20), (120, 100, 20), (140, 100, 20), (160, 100, 20), (180, 100, 20), (200, 100, 20), (220, 100, 20), (240, 100, 20), (260, 100, 20), (280, 100, 20), (300, 100, 20), (320, 100, 20), (340, 100, 20), (360, 100, 20), (380, 100, 20), (400, 100, 20), (420, 100, 20), (440, 100, 20), (460, 100, 20), (480, 100, 20), (500, 100, 20), (520, 100, 20), (540, 100, 20), (560, 100, 20), (580, 100, 20), (600, 100, 20), (620, 100, 20), (0, 120, 20), (20, 120, 20), (40, 120, 20), (60, 120, 20), (80, 120, 20), (100, 120, 20), (120, 120, 20), (140, 120, 20), (160, 120, 20), (180, 120, 20), (200, 120, 20), (220, 120, 20), (240, 120, 20), (260, 120, 20), (280, 120, 20), (300, 120, 20), (320, 120, 20), (340, 120, 20), (360, 120, 20), (380, 120, 20), (400, 120, 20), (420, 120, 20), (440, 120, 20), (460, 120, 20), (480, 120, 20), (500, 120, 20), (520, 120, 20), (540, 120, 20), (560, 120, 20), (580, 120, 20), (600, 120, 20), (620, 120, 20), (0, 140, 20), (20, 140, 20), (40, 140, 20), (60, 140, 20), (80, 140, 20), (100, 140, 20), (120, 140, 20), (140, 140, 20), (160, 140, 20), (180, 140, 20), (200, 140, 20), (220, 140, 20), (240, 140, 20), (260, 140, 20), (280, 140, 20), (300, 140, 20), (320, 140, 20), (340, 140, 20), (360, 140, 20), (380, 140, 20), (400, 140, 20), (420, 140, 20), (440, 140, 20), (460, 140, 20), (480, 140, 20), (500, 140, 20), (520, 140, 20), (540, 140, 20), (560, 140, 20), (580, 140, 20), (600, 140, 20), (620, 140, 20), (0, 160, 20), (20, 160, 20), (40, 160, 20), (60, 160, 20), (80, 160, 20), (100, 160, 20), (120, 160, 20), (140, 160, 20), (160, 160, 20), (180, 160, 20), (200, 160, 20), (220, 160, 20), (240, 160, 20), (260, 160, 20), (280, 160, 20), (300, 160, 20), (320, 160, 20), (340, 160, 20), (360, 160, 20), (380, 160, 20), (400, 160, 20), (420, 160, 20), (440, 160, 20), (460, 160, 20), (480, 160, 20), (500, 160, 20), (520, 160, 20), (540, 160, 20), (560, 160, 20), (580, 160, 20), (600, 160, 20), (620, 160, 20), (0, 180, 20), (20, 180, 20), (40, 180, 20), (60, 180, 20), (80, 180, 20), (100, 180, 20), (120, 180, 20), (140, 180, 20), (160, 180, 20), (180, 180, 20), (200, 180, 20), (220, 180, 20), (240, 180, 20), (260, 180, 20), (280, 180, 20), (300, 180, 20), (320, 180, 20), (340, 180, 20), (360, 180, 20), (380, 180, 20), (400, 180, 20), (420, 180, 20), (440, 180, 20), (460, 180, 20), (480, 180, 20), (500, 180, 20), (520, 180, 20), (540, 180, 20), (560, 180, 20), (580, 180, 20), (600, 180, 20), (620, 180, 20), (0, 200, 20), (20, 200, 20), (40, 200, 20), (60, 200, 20), (80, 200, 20), (100, 200, 20), (120, 200, 20), (140, 200, 20), (160, 200, 20), (180, 200, 20), (200, 200, 20), (220, 200, 20), (240, 200, 20), (260, 200, 20), (280, 200, 20), (300, 200, 20), (320, 200, 20), (340, 200, 20), (360, 200, 20), (380, 200, 20), (400, 200, 20), (420, 200, 20), (440, 200, 20), (460, 200, 20), (480, 200, 20), (500, 200, 20), (520, 200, 20), (540, 200, 20), (560, 200, 20), (580, 200, 20), (600, 200, 20), (620, 200, 20), (0, 220, 20), (20, 220, 20), (40, 220, 20), (60, 220, 20), (80, 220, 20), (100, 220, 20), (120, 220, 20), (140, 220, 20), (160, 220, 20), (180, 220, 20), (200, 220, 20), (220, 220, 20), (240, 220, 20), (260, 220, 20), (280, 220, 20), (300, 220, 20), (320, 220, 20), (340, 220, 20), (360, 220, 20), (380, 220, 20), (400, 220, 20), (420, 220, 20), (440, 220, 20), (460, 220, 20), (480, 220, 20), (500, 220, 20), (520, 220, 20), (540, 220, 20), (560, 220, 20), (580, 220, 20), (600, 220, 20), (620, 220, 20), (0, 240, 20), (20, 240, 20), (40, 240, 20), (60, 240, 20), (80, 240, 20), (100, 240, 20), (120, 240, 20), (140, 240, 20), (160, 240, 20), (180, 240, 20), (200, 240, 20), (220, 240, 20), (240, 240, 20), (260, 240, 20), (280, 240, 20), (300, 240, 20), (320, 240, 20), (340, 240, 20), (360, 240, 20), (380, 240, 20), (400, 240, 20), (420, 240, 20), (440, 240, 20), (460, 240, 20), (480, 240, 20), (500, 240, 20), (520, 240, 20), (540, 240, 20), (560, 240, 20), (580, 240, 20), (600, 240, 20), (620, 240, 20), (0, 260, 20), (20, 260, 20), (40, 260, 20), (60, 260, 20), (80, 260, 20), (100, 260, 20), (120, 260, 20), (140, 260, 20), (160, 260, 20), (180, 260, 20), (200, 260, 20), (220, 260, 20), (240, 260, 20), (260, 260, 20), (280, 260, 20), (300, 260, 20), (320, 260, 20), (340, 260, 20), (360, 260, 20), (380, 260, 20), (400, 260, 20), (420, 260, 20), (440, 260, 20), (460, 260, 20), (480, 260, 20), (500, 260, 20), (520, 260, 20), (540, 260, 20), (560, 260, 20), (580, 260, 20), (600, 260, 20), (620, 260, 20), (0, 280, 20), (20, 280, 20), (40, 280, 20), (60, 280, 20), (80, 280, 20), (100, 280, 20), (120, 280, 20), (140, 280, 20), (160, 280, 20), (180, 280, 20), (200, 280, 20), (220, 280, 20), (240, 280, 20), (260, 280, 20), (280, 280, 20), (300, 280, 20), (320, 280, 20), (340, 280, 20), (360, 280, 20), (380, 280, 20), (400, 280, 20), (420, 280, 20), (440, 280, 20), (460, 280, 20), (480, 280, 20), (500, 280, 20), (520, 280, 20), (540, 280, 20), (560, 280, 20), (580, 280, 20), (600, 280, 20), (620, 280, 20), (0, 300, 20), (20, 300, 20), (40, 300, 20), (60, 300, 20), (80, 300, 20), (100, 300, 20), (120, 300, 20), (140, 300, 20), (160, 300, 20), (180, 300, 20), (200, 300, 20), (220, 300, 20), (240, 300, 20), (260, 300, 20), (280, 300, 20), (300, 300, 20), (320, 300, 20), (340, 300, 20), (360, 300, 20), (380, 300, 20), (400, 300, 20), (420, 300, 20), (440, 300, 20), (460, 300, 20), (480, 300, 20), (500, 300, 20), (520, 300, 20), (540, 300, 20), (560, 300, 20), (580, 300, 20), (600, 300, 20), (620, 300, 20), (0, 320, 20), (20, 320, 20), (40, 320, 20), (60, 320, 20), (80, 320, 20), (100, 320, 20), (120, 320, 20), (140, 320, 20), (160, 320, 20), (180, 320, 20), (200, 320, 20), (220, 320, 20), (240, 320, 20), (260, 320, 20), (280, 320, 20), (300, 320, 20), (320, 320, 20), (340, 320, 20), (360, 320, 20), (380, 320, 20), (400, 320, 20), (420, 320, 20), (440, 320, 20), (460, 320, 20), (480, 320, 20), (500, 320, 20), (520, 320, 20), (540, 320, 20), (560, 320, 20), (580, 320, 20), (600, 320, 20), (620, 320, 20), (0, 340, 20), (20, 340, 20), (40, 340, 20), (60, 340, 20), (80, 340, 20), (100, 340, 20), (120, 340, 20), (140, 340, 20), (160, 340, 20), (180, 340, 20), (200, 340, 20), (220, 340, 20), (240, 340, 20), (260, 340, 20), (280, 340, 20), (300, 340, 20), (320, 340, 20), (340, 340, 20), (360, 340, 20), (380, 340, 20), (400, 340, 20), (420, 340, 20), (440, 340, 20), (460, 340, 20), (480, 340, 20), (500, 340, 20), (520, 340, 20), (540, 340, 20), (560, 340, 20), (580, 340, 20), (600, 340, 20), (620, 340, 20), (0, 360, 20), (20, 360, 20), (40, 360, 20), (60, 360, 20), (80, 360, 20), (100, 360, 20), (120, 360, 20), (140, 360, 20), (160, 360, 20), (180, 360, 20), (200, 360, 20), (220, 360, 20), (240, 360, 20), (260, 360, 20), (280, 360, 20), (300, 360, 20), (320, 360, 20), (340, 360, 20), (360, 360, 20), (380, 360, 20), (400, 360, 20), (420, 360, 20), (440, 360, 20), (460, 360, 20), (480, 360, 20), (500, 360, 20), (520, 360, 20), (540, 360, 20), (560, 360, 20), (580, 360, 20), (600, 360, 20), (620, 360, 20), (0, 380, 20), (20, 380, 20), (40, 380, 20), (60, 380, 20), (80, 380, 20), (100, 380, 20), (120, 380, 20), (140, 380, 20), (160, 380, 20), (180, 380, 20), (200, 380, 20), (220, 380, 20), (240, 380, 20), (260, 380, 20), (280, 380, 20), (300, 380, 20), (320, 380, 20), (340, 380, 20), (360, 380, 20), (380, 380, 20), (400, 380, 20), (420, 380, 20), (440, 380, 20), (460, 380, 20), (480, 380, 20), (500, 380, 20), (520, 380, 20), (540, 380, 20), (560, 380, 20), (580, 380, 20), (600, 380, 20), (620, 380, 20), (0, 400, 20), (20, 400, 20), (40, 400, 20), (60, 400, 20), (80, 400, 20), (100, 400, 20), (120, 400, 20), (140, 400, 20), (160, 400, 20), (180, 400, 20), (200, 400, 20), (220, 400, 20), (240, 400, 20), (260, 400, 20), (280, 400, 20), (300, 400, 20), (320, 400, 20), (340, 400, 20), (360, 400, 20), (380, 400, 20), (400, 400, 20), (420, 400, 20), (440, 400, 20), (460, 400, 20), (480, 400, 20), (500, 400, 20), (520, 400, 20), (540, 400, 20), (560, 400, 20), (580, 400, 20), (600, 400, 20), (620, 400, 20), (0, 420, 20), (20, 420, 20), (40, 420, 20), (60, 420, 20), (80, 420, 20), (100, 420, 20), (120, 420, 20), (140, 420, 20), (160, 420, 20), (180, 420, 20), (200, 420, 20), (220, 420, 20), (240, 420, 20), (260, 420, 20), (280, 420, 20), (300, 420, 20), (320, 420, 20), (340, 420, 20), (360, 420, 20), (380, 420, 20), (400, 420, 20), (420, 420, 20), (440, 420, 20), (460, 420, 20), (480, 420, 20), (500, 420, 20), (520, 420, 20), (540, 420, 20), (560, 420, 20), (580, 420, 20), (600, 420, 20), (620, 420, 20), (0, 440, 20), (20, 440, 20), (40, 440, 20), (60, 440, 20), (80, 440, 20), (100, 440, 20), (120, 440, 20), (140, 440, 20), (160, 440, 20), (180, 440, 20), (200, 440, 20), (220, 440, 20), (240, 440, 20), (260, 440, 20), (280, 440, 20), (300, 440, 20), (320, 440, 20), (340, 440, 20), (360, 440, 20), (380, 440, 20), (400, 440, 20), (420, 440, 20), (440, 440, 20), (460, 440, 20), (480, 440, 20), (500, 440, 20), (520, 440, 20), (540, 440, 20), (560, 440, 20), (580, 440, 20), (600, 440, 20), (620, 440, 20), (0, 460, 20), (20, 460, 20), (40, 460, 20), (60, 460, 20), (80, 460, 20), (100, 460, 20), (120, 460, 20), (140, 460, 20), (160, 460, 20), (180, 460, 20), (200, 460, 20), (220, 460, 20), (240, 460, 20), (260, 460, 20), (280, 460, 20), (300, 460, 20), (320, 460, 20), (340, 460, 20), (360, 460, 20), (380, 460, 20), (400, 460, 20), (420, 460, 20), (440, 460, 20), (460, 460, 20), (480, 460, 20), (500, 460, 20), (520, 460, 20), (540, 460, 20), (560, 460, 20), (580, 460, 20), (600, 460, 20), (620, 460, 20), (0, 480, 20), (20, 480, 20), (40, 480, 20), (60, 480, 20), (80, 480, 20), (100, 480, 20), (120, 480, 20), (140, 480, 20), (160, 480, 20), (180, 480, 20), (200, 480, 20), (220, 480, 20), (240, 480, 20), (260, 480, 20), (280, 480, 20), (300, 480, 20), (320, 480, 20), (340, 480, 20), (360, 480, 20), (380, 480, 20), (400, 480, 20), (420, 480, 20), (440, 480, 20), (460, 480, 20), (480, 480, 20), (500, 480, 20), (520, 480, 20), (540, 480, 20), (560, 480, 20), (580, 480, 20), (600, 480, 20), (620, 480, 20), (0, 500, 20), (20, 500, 20), (40, 500, 20), (60, 500, 20), (80, 500, 20), (100, 500, 20), (120, 500, 20), (140, 500, 20), (160, 500, 20), (180, 500, 20), (200, 500, 20), (220, 500, 20), (240, 500, 20), (260, 500, 20), (280, 500, 20), (300, 500, 20), (320, 500, 20), (340, 500, 20), (360, 500, 20), (380, 500, 20), (400, 500, 20), (420, 500, 20), (440, 500, 20), (460, 500, 20), (480, 500, 20), (500, 500, 20), (520, 500, 20), (540, 500, 20), (560, 500, 20), (580, 500, 20), (600, 500, 20), (620, 500, 20), (0, 520, 20), (20, 520, 20), (40, 520, 20), (60, 520, 20), (80, 520, 20), (100, 520, 20), (120, 520, 20), (140, 520, 20), (160, 520, 20), (180, 520, 20), (200, 520, 20), (220, 520, 20), (240, 520, 20), (260, 520, 20), (280, 520, 20), (300, 520, 20), (320, 520, 20), (340, 520, 20), (360, 520, 20), (380, 520, 20), (400, 520, 20), (420, 520, 20), (440, 520, 20), (460, 520, 20), (480, 520, 20), (500, 520, 20), (520, 520, 20), (540, 520, 20), (560, 520, 20), (580, 520, 20), (600, 520, 20), (620, 520, 20), (0, 540, 20), (20, 540, 20), (40, 540, 20), (60, 540, 20), (80, 540, 20), (100, 540, 20), (120, 540, 20), (140, 540, 20), (160, 540, 20), (180, 540, 20), (200, 540, 20), (220, 540, 20), (240, 540, 20), (260, 540, 20), (280, 540, 20), (300, 540, 20), (320, 540, 20), (340, 540, 20), (360, 540, 20), (380, 540, 20), (400, 540, 20), (420, 540, 20), (440, 540, 20), (460, 540, 20), (480, 540, 20), (500, 540, 20), (520, 540, 20), (540, 540, 20), (560, 540, 20), (580, 540, 20), (600, 540, 20), (620, 540, 20), (0, 560, 20), (20, 560, 20), (40, 560, 20), (60, 560, 20), (80, 560, 20), (100, 560, 20), (120, 560, 20), (140, 560, 20), (160, 560, 20), (180, 560, 20), (200, 560, 20), (220, 560, 20), (240, 560, 20), (260, 560, 20), (280, 560, 20), (300, 560, 20), (320, 560, 20), (340, 560, 20), (360, 560, 20), (380, 560, 20), (400, 560, 20), (420, 560, 20), (440, 560, 20), (460, 560, 20), (480, 560, 20), (500, 560, 20), (520, 560, 20), (540, 560, 20), (560, 560, 20), (580, 560, 20), (600, 560, 20), (620, 560, 20), (0, 580, 20), (20, 580, 20), (40, 580, 20), (60, 580, 20), (80, 580, 20), (100, 580, 20), (120, 580, 20), (140, 580, 20), (160, 580, 20), (180, 580, 20), (200, 580, 20), (220, 580, 20), (240, 580, 20), (260, 580, 20), (280, 580, 20), (300, 580, 20), (320, 580, 20), (340, 580, 20), (360, 580, 20), (380, 580, 20), (400, 580, 20), (420, 580, 20), (440, 580, 20), (460, 580, 20), (480, 580, 20), (500, 580, 20), (520, 580, 20), (540, 580, 20), (560, 580, 20), (580, 580, 20), (600, 580, 20), (620, 580, 20), (0, 600, 20), (20, 600, 20), (40, 600, 20), (60, 600, 20), (80, 600, 20), (100, 600, 20), (120, 600, 20), (140, 600, 20), (160, 600, 20), (180, 600, 20), (200, 600, 20), (220, 600, 20), (240, 600, 20), (260, 600, 20), (280, 600, 20), (300, 600, 20), (320, 600, 20), (340, 600, 20), (360, 600, 20), (380, 600, 20), (400, 600, 20), (420, 600, 20), (440, 600, 20), (460, 600, 20), (480, 600, 20), (500, 600, 20), (520, 600, 20), (540, 600, 20), (560, 600, 20), (580, 600, 20), (600, 600, 20), (620, 600, 20), (0, 620, 20), (20, 620, 20), (40, 620, 20), (60, 620, 20), (80, 620, 20), (100, 620, 20), (120, 620, 20), (140, 620, 20), (160, 620, 20), (180, 620, 20), (200, 620, 20), (220, 620, 20), (240, 620, 20), (260, 620, 20), (280, 620, 20), (300, 620, 20), (320, 620, 20), (340, 620, 20), (360, 620, 20), (380, 620, 20), (400, 620, 20), (420, 620, 20), (440, 620, 20), (460, 620, 20), (480, 620, 20), (500, 620, 20), (520, 620, 20), (540, 620, 20), (560, 620, 20), (580, 620, 20), (600, 620, 20), (620, 620, 20)] color3f[] primvars:displayColor = [(0.2784314, 0.64705884, 1)] } def ComputeNode "testDeformer" { rel inputMesh = </defaultPrim/inputGrid> custom token node:type = "omni.graph.examples.cpp.PrimDeformer1" float multiplier = 3 float wavelength = 310 def Output "outputMesh" { int[] faceVertexCounts int[] faceVertexIndices point3f[] points } } def Mesh "outputGrid" { int[] faceVertexCounts.connect = </defaultPrim/testDeformer/outputMesh.faceVertexCounts> int[] faceVertexIndices.connect = </defaultPrim/testDeformer/outputMesh.faceVertexIndices> point3f[] points.connect = </defaultPrim/testDeformer/outputMesh.points> uniform bool doubleSided = 1 color3f[] primvars:displayColor = [(0.784314, 0.64705884, 0.1)] } }
omniverse-code/kit/exts/omni.graph/data/ExampleThreeDeformersTruePull.usda
#usda 1.0 ( doc = """Generated from Composed Stage of root layer """ ) def Xform "defaultPrim" { def Mesh "inputGrid" { uniform bool doubleSided = 1 int[] faceVertexCounts = [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 1, 33, 0, 33, 32, 1, 2, 34, 1, 34, 33, 2, 3, 35, 2, 35, 34, 3, 4, 36, 3, 36, 35, 4, 5, 37, 4, 37, 36, 5, 6, 38, 5, 38, 37, 6, 7, 39, 6, 39, 38, 7, 8, 40, 7, 40, 39, 8, 9, 41, 8, 41, 40, 9, 10, 42, 9, 42, 41, 10, 11, 43, 10, 43, 42, 11, 12, 44, 11, 44, 43, 12, 13, 45, 12, 45, 44, 13, 14, 46, 13, 46, 45, 14, 15, 47, 14, 47, 46, 15, 16, 48, 15, 48, 47, 16, 17, 49, 16, 49, 48, 17, 18, 50, 17, 50, 49, 18, 19, 51, 18, 51, 50, 19, 20, 52, 19, 52, 51, 20, 21, 53, 20, 53, 52, 21, 22, 54, 21, 54, 53, 22, 23, 55, 22, 55, 54, 23, 24, 56, 23, 56, 55, 24, 25, 57, 24, 57, 56, 25, 26, 58, 25, 58, 57, 26, 27, 59, 26, 59, 58, 27, 28, 60, 27, 60, 59, 28, 29, 61, 28, 61, 60, 29, 30, 62, 29, 62, 61, 30, 31, 63, 30, 63, 62, 32, 33, 65, 32, 65, 64, 33, 34, 66, 33, 66, 65, 34, 35, 67, 34, 67, 66, 35, 36, 68, 35, 68, 67, 36, 37, 69, 36, 69, 68, 37, 38, 70, 37, 70, 69, 38, 39, 71, 38, 71, 70, 39, 40, 72, 39, 72, 71, 40, 41, 73, 40, 73, 72, 41, 42, 74, 41, 74, 73, 42, 43, 75, 42, 75, 74, 43, 44, 76, 43, 76, 75, 44, 45, 77, 44, 77, 76, 45, 46, 78, 45, 78, 77, 46, 47, 79, 46, 79, 78, 47, 48, 80, 47, 80, 79, 48, 49, 81, 48, 81, 80, 49, 50, 82, 49, 82, 81, 50, 51, 83, 50, 83, 82, 51, 52, 84, 51, 84, 83, 52, 53, 85, 52, 85, 84, 53, 54, 86, 53, 86, 85, 54, 55, 87, 54, 87, 86, 55, 56, 88, 55, 88, 87, 56, 57, 89, 56, 89, 88, 57, 58, 90, 57, 90, 89, 58, 59, 91, 58, 91, 90, 59, 60, 92, 59, 92, 91, 60, 61, 93, 60, 93, 92, 61, 62, 94, 61, 94, 93, 62, 63, 95, 62, 95, 94, 64, 65, 97, 64, 97, 96, 65, 66, 98, 65, 98, 97, 66, 67, 99, 66, 99, 98, 67, 68, 100, 67, 100, 99, 68, 69, 101, 68, 101, 100, 69, 70, 102, 69, 102, 101, 70, 71, 103, 70, 103, 102, 71, 72, 104, 71, 104, 103, 72, 73, 105, 72, 105, 104, 73, 74, 106, 73, 106, 105, 74, 75, 107, 74, 107, 106, 75, 76, 108, 75, 108, 107, 76, 77, 109, 76, 109, 108, 77, 78, 110, 77, 110, 109, 78, 79, 111, 78, 111, 110, 79, 80, 112, 79, 112, 111, 80, 81, 113, 80, 113, 112, 81, 82, 114, 81, 114, 113, 82, 83, 115, 82, 115, 114, 83, 84, 116, 83, 116, 115, 84, 85, 117, 84, 117, 116, 85, 86, 118, 85, 118, 117, 86, 87, 119, 86, 119, 118, 87, 88, 120, 87, 120, 119, 88, 89, 121, 88, 121, 120, 89, 90, 122, 89, 122, 121, 90, 91, 123, 90, 123, 122, 91, 92, 124, 91, 124, 123, 92, 93, 125, 92, 125, 124, 93, 94, 126, 93, 126, 125, 94, 95, 127, 94, 127, 126, 96, 97, 129, 96, 129, 128, 97, 98, 130, 97, 130, 129, 98, 99, 131, 98, 131, 130, 99, 100, 132, 99, 132, 131, 100, 101, 133, 100, 133, 132, 101, 102, 134, 101, 134, 133, 102, 103, 135, 102, 135, 134, 103, 104, 136, 103, 136, 135, 104, 105, 137, 104, 137, 136, 105, 106, 138, 105, 138, 137, 106, 107, 139, 106, 139, 138, 107, 108, 140, 107, 140, 139, 108, 109, 141, 108, 141, 140, 109, 110, 142, 109, 142, 141, 110, 111, 143, 110, 143, 142, 111, 112, 144, 111, 144, 143, 112, 113, 145, 112, 145, 144, 113, 114, 146, 113, 146, 145, 114, 115, 147, 114, 147, 146, 115, 116, 148, 115, 148, 147, 116, 117, 149, 116, 149, 148, 117, 118, 150, 117, 150, 149, 118, 119, 151, 118, 151, 150, 119, 120, 152, 119, 152, 151, 120, 121, 153, 120, 153, 152, 121, 122, 154, 121, 154, 153, 122, 123, 155, 122, 155, 154, 123, 124, 156, 123, 156, 155, 124, 125, 157, 124, 157, 156, 125, 126, 158, 125, 158, 157, 126, 127, 159, 126, 159, 158, 128, 129, 161, 128, 161, 160, 129, 130, 162, 129, 162, 161, 130, 131, 163, 130, 163, 162, 131, 132, 164, 131, 164, 163, 132, 133, 165, 132, 165, 164, 133, 134, 166, 133, 166, 165, 134, 135, 167, 134, 167, 166, 135, 136, 168, 135, 168, 167, 136, 137, 169, 136, 169, 168, 137, 138, 170, 137, 170, 169, 138, 139, 171, 138, 171, 170, 139, 140, 172, 139, 172, 171, 140, 141, 173, 140, 173, 172, 141, 142, 174, 141, 174, 173, 142, 143, 175, 142, 175, 174, 143, 144, 176, 143, 176, 175, 144, 145, 177, 144, 177, 176, 145, 146, 178, 145, 178, 177, 146, 147, 179, 146, 179, 178, 147, 148, 180, 147, 180, 179, 148, 149, 181, 148, 181, 180, 149, 150, 182, 149, 182, 181, 150, 151, 183, 150, 183, 182, 151, 152, 184, 151, 184, 183, 152, 153, 185, 152, 185, 184, 153, 154, 186, 153, 186, 185, 154, 155, 187, 154, 187, 186, 155, 156, 188, 155, 188, 187, 156, 157, 189, 156, 189, 188, 157, 158, 190, 157, 190, 189, 158, 159, 191, 158, 191, 190, 160, 161, 193, 160, 193, 192, 161, 162, 194, 161, 194, 193, 162, 163, 195, 162, 195, 194, 163, 164, 196, 163, 196, 195, 164, 165, 197, 164, 197, 196, 165, 166, 198, 165, 198, 197, 166, 167, 199, 166, 199, 198, 167, 168, 200, 167, 200, 199, 168, 169, 201, 168, 201, 200, 169, 170, 202, 169, 202, 201, 170, 171, 203, 170, 203, 202, 171, 172, 204, 171, 204, 203, 172, 173, 205, 172, 205, 204, 173, 174, 206, 173, 206, 205, 174, 175, 207, 174, 207, 206, 175, 176, 208, 175, 208, 207, 176, 177, 209, 176, 209, 208, 177, 178, 210, 177, 210, 209, 178, 179, 211, 178, 211, 210, 179, 180, 212, 179, 212, 211, 180, 181, 213, 180, 213, 212, 181, 182, 214, 181, 214, 213, 182, 183, 215, 182, 215, 214, 183, 184, 216, 183, 216, 215, 184, 185, 217, 184, 217, 216, 185, 186, 218, 185, 218, 217, 186, 187, 219, 186, 219, 218, 187, 188, 220, 187, 220, 219, 188, 189, 221, 188, 221, 220, 189, 190, 222, 189, 222, 221, 190, 191, 223, 190, 223, 222, 192, 193, 225, 192, 225, 224, 193, 194, 226, 193, 226, 225, 194, 195, 227, 194, 227, 226, 195, 196, 228, 195, 228, 227, 196, 197, 229, 196, 229, 228, 197, 198, 230, 197, 230, 229, 198, 199, 231, 198, 231, 230, 199, 200, 232, 199, 232, 231, 200, 201, 233, 200, 233, 232, 201, 202, 234, 201, 234, 233, 202, 203, 235, 202, 235, 234, 203, 204, 236, 203, 236, 235, 204, 205, 237, 204, 237, 236, 205, 206, 238, 205, 238, 237, 206, 207, 239, 206, 239, 238, 207, 208, 240, 207, 240, 239, 208, 209, 241, 208, 241, 240, 209, 210, 242, 209, 242, 241, 210, 211, 243, 210, 243, 242, 211, 212, 244, 211, 244, 243, 212, 213, 245, 212, 245, 244, 213, 214, 246, 213, 246, 245, 214, 215, 247, 214, 247, 246, 215, 216, 248, 215, 248, 247, 216, 217, 249, 216, 249, 248, 217, 218, 250, 217, 250, 249, 218, 219, 251, 218, 251, 250, 219, 220, 252, 219, 252, 251, 220, 221, 253, 220, 253, 252, 221, 222, 254, 221, 254, 253, 222, 223, 255, 222, 255, 254, 224, 225, 257, 224, 257, 256, 225, 226, 258, 225, 258, 257, 226, 227, 259, 226, 259, 258, 227, 228, 260, 227, 260, 259, 228, 229, 261, 228, 261, 260, 229, 230, 262, 229, 262, 261, 230, 231, 263, 230, 263, 262, 231, 232, 264, 231, 264, 263, 232, 233, 265, 232, 265, 264, 233, 234, 266, 233, 266, 265, 234, 235, 267, 234, 267, 266, 235, 236, 268, 235, 268, 267, 236, 237, 269, 236, 269, 268, 237, 238, 270, 237, 270, 269, 238, 239, 271, 238, 271, 270, 239, 240, 272, 239, 272, 271, 240, 241, 273, 240, 273, 272, 241, 242, 274, 241, 274, 273, 242, 243, 275, 242, 275, 274, 243, 244, 276, 243, 276, 275, 244, 245, 277, 244, 277, 276, 245, 246, 278, 245, 278, 277, 246, 247, 279, 246, 279, 278, 247, 248, 280, 247, 280, 279, 248, 249, 281, 248, 281, 280, 249, 250, 282, 249, 282, 281, 250, 251, 283, 250, 283, 282, 251, 252, 284, 251, 284, 283, 252, 253, 285, 252, 285, 284, 253, 254, 286, 253, 286, 285, 254, 255, 287, 254, 287, 286, 256, 257, 289, 256, 289, 288, 257, 258, 290, 257, 290, 289, 258, 259, 291, 258, 291, 290, 259, 260, 292, 259, 292, 291, 260, 261, 293, 260, 293, 292, 261, 262, 294, 261, 294, 293, 262, 263, 295, 262, 295, 294, 263, 264, 296, 263, 296, 295, 264, 265, 297, 264, 297, 296, 265, 266, 298, 265, 298, 297, 266, 267, 299, 266, 299, 298, 267, 268, 300, 267, 300, 299, 268, 269, 301, 268, 301, 300, 269, 270, 302, 269, 302, 301, 270, 271, 303, 270, 303, 302, 271, 272, 304, 271, 304, 303, 272, 273, 305, 272, 305, 304, 273, 274, 306, 273, 306, 305, 274, 275, 307, 274, 307, 306, 275, 276, 308, 275, 308, 307, 276, 277, 309, 276, 309, 308, 277, 278, 310, 277, 310, 309, 278, 279, 311, 278, 311, 310, 279, 280, 312, 279, 312, 311, 280, 281, 313, 280, 313, 312, 281, 282, 314, 281, 314, 313, 282, 283, 315, 282, 315, 314, 283, 284, 316, 283, 316, 315, 284, 285, 317, 284, 317, 316, 285, 286, 318, 285, 318, 317, 286, 287, 319, 286, 319, 318, 288, 289, 321, 288, 321, 320, 289, 290, 322, 289, 322, 321, 290, 291, 323, 290, 323, 322, 291, 292, 324, 291, 324, 323, 292, 293, 325, 292, 325, 324, 293, 294, 326, 293, 326, 325, 294, 295, 327, 294, 327, 326, 295, 296, 328, 295, 328, 327, 296, 297, 329, 296, 329, 328, 297, 298, 330, 297, 330, 329, 298, 299, 331, 298, 331, 330, 299, 300, 332, 299, 332, 331, 300, 301, 333, 300, 333, 332, 301, 302, 334, 301, 334, 333, 302, 303, 335, 302, 335, 334, 303, 304, 336, 303, 336, 335, 304, 305, 337, 304, 337, 336, 305, 306, 338, 305, 338, 337, 306, 307, 339, 306, 339, 338, 307, 308, 340, 307, 340, 339, 308, 309, 341, 308, 341, 340, 309, 310, 342, 309, 342, 341, 310, 311, 343, 310, 343, 342, 311, 312, 344, 311, 344, 343, 312, 313, 345, 312, 345, 344, 313, 314, 346, 313, 346, 345, 314, 315, 347, 314, 347, 346, 315, 316, 348, 315, 348, 347, 316, 317, 349, 316, 349, 348, 317, 318, 350, 317, 350, 349, 318, 319, 351, 318, 351, 350, 320, 321, 353, 320, 353, 352, 321, 322, 354, 321, 354, 353, 322, 323, 355, 322, 355, 354, 323, 324, 356, 323, 356, 355, 324, 325, 357, 324, 357, 356, 325, 326, 358, 325, 358, 357, 326, 327, 359, 326, 359, 358, 327, 328, 360, 327, 360, 359, 328, 329, 361, 328, 361, 360, 329, 330, 362, 329, 362, 361, 330, 331, 363, 330, 363, 362, 331, 332, 364, 331, 364, 363, 332, 333, 365, 332, 365, 364, 333, 334, 366, 333, 366, 365, 334, 335, 367, 334, 367, 366, 335, 336, 368, 335, 368, 367, 336, 337, 369, 336, 369, 368, 337, 338, 370, 337, 370, 369, 338, 339, 371, 338, 371, 370, 339, 340, 372, 339, 372, 371, 340, 341, 373, 340, 373, 372, 341, 342, 374, 341, 374, 373, 342, 343, 375, 342, 375, 374, 343, 344, 376, 343, 376, 375, 344, 345, 377, 344, 377, 376, 345, 346, 378, 345, 378, 377, 346, 347, 379, 346, 379, 378, 347, 348, 380, 347, 380, 379, 348, 349, 381, 348, 381, 380, 349, 350, 382, 349, 382, 381, 350, 351, 383, 350, 383, 382, 352, 353, 385, 352, 385, 384, 353, 354, 386, 353, 386, 385, 354, 355, 387, 354, 387, 386, 355, 356, 388, 355, 388, 387, 356, 357, 389, 356, 389, 388, 357, 358, 390, 357, 390, 389, 358, 359, 391, 358, 391, 390, 359, 360, 392, 359, 392, 391, 360, 361, 393, 360, 393, 392, 361, 362, 394, 361, 394, 393, 362, 363, 395, 362, 395, 394, 363, 364, 396, 363, 396, 395, 364, 365, 397, 364, 397, 396, 365, 366, 398, 365, 398, 397, 366, 367, 399, 366, 399, 398, 367, 368, 400, 367, 400, 399, 368, 369, 401, 368, 401, 400, 369, 370, 402, 369, 402, 401, 370, 371, 403, 370, 403, 402, 371, 372, 404, 371, 404, 403, 372, 373, 405, 372, 405, 404, 373, 374, 406, 373, 406, 405, 374, 375, 407, 374, 407, 406, 375, 376, 408, 375, 408, 407, 376, 377, 409, 376, 409, 408, 377, 378, 410, 377, 410, 409, 378, 379, 411, 378, 411, 410, 379, 380, 412, 379, 412, 411, 380, 381, 413, 380, 413, 412, 381, 382, 414, 381, 414, 413, 382, 383, 415, 382, 415, 414, 384, 385, 417, 384, 417, 416, 385, 386, 418, 385, 418, 417, 386, 387, 419, 386, 419, 418, 387, 388, 420, 387, 420, 419, 388, 389, 421, 388, 421, 420, 389, 390, 422, 389, 422, 421, 390, 391, 423, 390, 423, 422, 391, 392, 424, 391, 424, 423, 392, 393, 425, 392, 425, 424, 393, 394, 426, 393, 426, 425, 394, 395, 427, 394, 427, 426, 395, 396, 428, 395, 428, 427, 396, 397, 429, 396, 429, 428, 397, 398, 430, 397, 430, 429, 398, 399, 431, 398, 431, 430, 399, 400, 432, 399, 432, 431, 400, 401, 433, 400, 433, 432, 401, 402, 434, 401, 434, 433, 402, 403, 435, 402, 435, 434, 403, 404, 436, 403, 436, 435, 404, 405, 437, 404, 437, 436, 405, 406, 438, 405, 438, 437, 406, 407, 439, 406, 439, 438, 407, 408, 440, 407, 440, 439, 408, 409, 441, 408, 441, 440, 409, 410, 442, 409, 442, 441, 410, 411, 443, 410, 443, 442, 411, 412, 444, 411, 444, 443, 412, 413, 445, 412, 445, 444, 413, 414, 446, 413, 446, 445, 414, 415, 447, 414, 447, 446, 416, 417, 449, 416, 449, 448, 417, 418, 450, 417, 450, 449, 418, 419, 451, 418, 451, 450, 419, 420, 452, 419, 452, 451, 420, 421, 453, 420, 453, 452, 421, 422, 454, 421, 454, 453, 422, 423, 455, 422, 455, 454, 423, 424, 456, 423, 456, 455, 424, 425, 457, 424, 457, 456, 425, 426, 458, 425, 458, 457, 426, 427, 459, 426, 459, 458, 427, 428, 460, 427, 460, 459, 428, 429, 461, 428, 461, 460, 429, 430, 462, 429, 462, 461, 430, 431, 463, 430, 463, 462, 431, 432, 464, 431, 464, 463, 432, 433, 465, 432, 465, 464, 433, 434, 466, 433, 466, 465, 434, 435, 467, 434, 467, 466, 435, 436, 468, 435, 468, 467, 436, 437, 469, 436, 469, 468, 437, 438, 470, 437, 470, 469, 438, 439, 471, 438, 471, 470, 439, 440, 472, 439, 472, 471, 440, 441, 473, 440, 473, 472, 441, 442, 474, 441, 474, 473, 442, 443, 475, 442, 475, 474, 443, 444, 476, 443, 476, 475, 444, 445, 477, 444, 477, 476, 445, 446, 478, 445, 478, 477, 446, 447, 479, 446, 479, 478, 448, 449, 481, 448, 481, 480, 449, 450, 482, 449, 482, 481, 450, 451, 483, 450, 483, 482, 451, 452, 484, 451, 484, 483, 452, 453, 485, 452, 485, 484, 453, 454, 486, 453, 486, 485, 454, 455, 487, 454, 487, 486, 455, 456, 488, 455, 488, 487, 456, 457, 489, 456, 489, 488, 457, 458, 490, 457, 490, 489, 458, 459, 491, 458, 491, 490, 459, 460, 492, 459, 492, 491, 460, 461, 493, 460, 493, 492, 461, 462, 494, 461, 494, 493, 462, 463, 495, 462, 495, 494, 463, 464, 496, 463, 496, 495, 464, 465, 497, 464, 497, 496, 465, 466, 498, 465, 498, 497, 466, 467, 499, 466, 499, 498, 467, 468, 500, 467, 500, 499, 468, 469, 501, 468, 501, 500, 469, 470, 502, 469, 502, 501, 470, 471, 503, 470, 503, 502, 471, 472, 504, 471, 504, 503, 472, 473, 505, 472, 505, 504, 473, 474, 506, 473, 506, 505, 474, 475, 507, 474, 507, 506, 475, 476, 508, 475, 508, 507, 476, 477, 509, 476, 509, 508, 477, 478, 510, 477, 510, 509, 478, 479, 511, 478, 511, 510, 480, 481, 513, 480, 513, 512, 481, 482, 514, 481, 514, 513, 482, 483, 515, 482, 515, 514, 483, 484, 516, 483, 516, 515, 484, 485, 517, 484, 517, 516, 485, 486, 518, 485, 518, 517, 486, 487, 519, 486, 519, 518, 487, 488, 520, 487, 520, 519, 488, 489, 521, 488, 521, 520, 489, 490, 522, 489, 522, 521, 490, 491, 523, 490, 523, 522, 491, 492, 524, 491, 524, 523, 492, 493, 525, 492, 525, 524, 493, 494, 526, 493, 526, 525, 494, 495, 527, 494, 527, 526, 495, 496, 528, 495, 528, 527, 496, 497, 529, 496, 529, 528, 497, 498, 530, 497, 530, 529, 498, 499, 531, 498, 531, 530, 499, 500, 532, 499, 532, 531, 500, 501, 533, 500, 533, 532, 501, 502, 534, 501, 534, 533, 502, 503, 535, 502, 535, 534, 503, 504, 536, 503, 536, 535, 504, 505, 537, 504, 537, 536, 505, 506, 538, 505, 538, 537, 506, 507, 539, 506, 539, 538, 507, 508, 540, 507, 540, 539, 508, 509, 541, 508, 541, 540, 509, 510, 542, 509, 542, 541, 510, 511, 543, 510, 543, 542, 512, 513, 545, 512, 545, 544, 513, 514, 546, 513, 546, 545, 514, 515, 547, 514, 547, 546, 515, 516, 548, 515, 548, 547, 516, 517, 549, 516, 549, 548, 517, 518, 550, 517, 550, 549, 518, 519, 551, 518, 551, 550, 519, 520, 552, 519, 552, 551, 520, 521, 553, 520, 553, 552, 521, 522, 554, 521, 554, 553, 522, 523, 555, 522, 555, 554, 523, 524, 556, 523, 556, 555, 524, 525, 557, 524, 557, 556, 525, 526, 558, 525, 558, 557, 526, 527, 559, 526, 559, 558, 527, 528, 560, 527, 560, 559, 528, 529, 561, 528, 561, 560, 529, 530, 562, 529, 562, 561, 530, 531, 563, 530, 563, 562, 531, 532, 564, 531, 564, 563, 532, 533, 565, 532, 565, 564, 533, 534, 566, 533, 566, 565, 534, 535, 567, 534, 567, 566, 535, 536, 568, 535, 568, 567, 536, 537, 569, 536, 569, 568, 537, 538, 570, 537, 570, 569, 538, 539, 571, 538, 571, 570, 539, 540, 572, 539, 572, 571, 540, 541, 573, 540, 573, 572, 541, 542, 574, 541, 574, 573, 542, 543, 575, 542, 575, 574, 544, 545, 577, 544, 577, 576, 545, 546, 578, 545, 578, 577, 546, 547, 579, 546, 579, 578, 547, 548, 580, 547, 580, 579, 548, 549, 581, 548, 581, 580, 549, 550, 582, 549, 582, 581, 550, 551, 583, 550, 583, 582, 551, 552, 584, 551, 584, 583, 552, 553, 585, 552, 585, 584, 553, 554, 586, 553, 586, 585, 554, 555, 587, 554, 587, 586, 555, 556, 588, 555, 588, 587, 556, 557, 589, 556, 589, 588, 557, 558, 590, 557, 590, 589, 558, 559, 591, 558, 591, 590, 559, 560, 592, 559, 592, 591, 560, 561, 593, 560, 593, 592, 561, 562, 594, 561, 594, 593, 562, 563, 595, 562, 595, 594, 563, 564, 596, 563, 596, 595, 564, 565, 597, 564, 597, 596, 565, 566, 598, 565, 598, 597, 566, 567, 599, 566, 599, 598, 567, 568, 600, 567, 600, 599, 568, 569, 601, 568, 601, 600, 569, 570, 602, 569, 602, 601, 570, 571, 603, 570, 603, 602, 571, 572, 604, 571, 604, 603, 572, 573, 605, 572, 605, 604, 573, 574, 606, 573, 606, 605, 574, 575, 607, 574, 607, 606, 576, 577, 609, 576, 609, 608, 577, 578, 610, 577, 610, 609, 578, 579, 611, 578, 611, 610, 579, 580, 612, 579, 612, 611, 580, 581, 613, 580, 613, 612, 581, 582, 614, 581, 614, 613, 582, 583, 615, 582, 615, 614, 583, 584, 616, 583, 616, 615, 584, 585, 617, 584, 617, 616, 585, 586, 618, 585, 618, 617, 586, 587, 619, 586, 619, 618, 587, 588, 620, 587, 620, 619, 588, 589, 621, 588, 621, 620, 589, 590, 622, 589, 622, 621, 590, 591, 623, 590, 623, 622, 591, 592, 624, 591, 624, 623, 592, 593, 625, 592, 625, 624, 593, 594, 626, 593, 626, 625, 594, 595, 627, 594, 627, 626, 595, 596, 628, 595, 628, 627, 596, 597, 629, 596, 629, 628, 597, 598, 630, 597, 630, 629, 598, 599, 631, 598, 631, 630, 599, 600, 632, 599, 632, 631, 600, 601, 633, 600, 633, 632, 601, 602, 634, 601, 634, 633, 602, 603, 635, 602, 635, 634, 603, 604, 636, 603, 636, 635, 604, 605, 637, 604, 637, 636, 605, 606, 638, 605, 638, 637, 606, 607, 639, 606, 639, 638, 608, 609, 641, 608, 641, 640, 609, 610, 642, 609, 642, 641, 610, 611, 643, 610, 643, 642, 611, 612, 644, 611, 644, 643, 612, 613, 645, 612, 645, 644, 613, 614, 646, 613, 646, 645, 614, 615, 647, 614, 647, 646, 615, 616, 648, 615, 648, 647, 616, 617, 649, 616, 649, 648, 617, 618, 650, 617, 650, 649, 618, 619, 651, 618, 651, 650, 619, 620, 652, 619, 652, 651, 620, 621, 653, 620, 653, 652, 621, 622, 654, 621, 654, 653, 622, 623, 655, 622, 655, 654, 623, 624, 656, 623, 656, 655, 624, 625, 657, 624, 657, 656, 625, 626, 658, 625, 658, 657, 626, 627, 659, 626, 659, 658, 627, 628, 660, 627, 660, 659, 628, 629, 661, 628, 661, 660, 629, 630, 662, 629, 662, 661, 630, 631, 663, 630, 663, 662, 631, 632, 664, 631, 664, 663, 632, 633, 665, 632, 665, 664, 633, 634, 666, 633, 666, 665, 634, 635, 667, 634, 667, 666, 635, 636, 668, 635, 668, 667, 636, 637, 669, 636, 669, 668, 637, 638, 670, 637, 670, 669, 638, 639, 671, 638, 671, 670, 640, 641, 673, 640, 673, 672, 641, 642, 674, 641, 674, 673, 642, 643, 675, 642, 675, 674, 643, 644, 676, 643, 676, 675, 644, 645, 677, 644, 677, 676, 645, 646, 678, 645, 678, 677, 646, 647, 679, 646, 679, 678, 647, 648, 680, 647, 680, 679, 648, 649, 681, 648, 681, 680, 649, 650, 682, 649, 682, 681, 650, 651, 683, 650, 683, 682, 651, 652, 684, 651, 684, 683, 652, 653, 685, 652, 685, 684, 653, 654, 686, 653, 686, 685, 654, 655, 687, 654, 687, 686, 655, 656, 688, 655, 688, 687, 656, 657, 689, 656, 689, 688, 657, 658, 690, 657, 690, 689, 658, 659, 691, 658, 691, 690, 659, 660, 692, 659, 692, 691, 660, 661, 693, 660, 693, 692, 661, 662, 694, 661, 694, 693, 662, 663, 695, 662, 695, 694, 663, 664, 696, 663, 696, 695, 664, 665, 697, 664, 697, 696, 665, 666, 698, 665, 698, 697, 666, 667, 699, 666, 699, 698, 667, 668, 700, 667, 700, 699, 668, 669, 701, 668, 701, 700, 669, 670, 702, 669, 702, 701, 670, 671, 703, 670, 703, 702, 672, 673, 705, 672, 705, 704, 673, 674, 706, 673, 706, 705, 674, 675, 707, 674, 707, 706, 675, 676, 708, 675, 708, 707, 676, 677, 709, 676, 709, 708, 677, 678, 710, 677, 710, 709, 678, 679, 711, 678, 711, 710, 679, 680, 712, 679, 712, 711, 680, 681, 713, 680, 713, 712, 681, 682, 714, 681, 714, 713, 682, 683, 715, 682, 715, 714, 683, 684, 716, 683, 716, 715, 684, 685, 717, 684, 717, 716, 685, 686, 718, 685, 718, 717, 686, 687, 719, 686, 719, 718, 687, 688, 720, 687, 720, 719, 688, 689, 721, 688, 721, 720, 689, 690, 722, 689, 722, 721, 690, 691, 723, 690, 723, 722, 691, 692, 724, 691, 724, 723, 692, 693, 725, 692, 725, 724, 693, 694, 726, 693, 726, 725, 694, 695, 727, 694, 727, 726, 695, 696, 728, 695, 728, 727, 696, 697, 729, 696, 729, 728, 697, 698, 730, 697, 730, 729, 698, 699, 731, 698, 731, 730, 699, 700, 732, 699, 732, 731, 700, 701, 733, 700, 733, 732, 701, 702, 734, 701, 734, 733, 702, 703, 735, 702, 735, 734, 704, 705, 737, 704, 737, 736, 705, 706, 738, 705, 738, 737, 706, 707, 739, 706, 739, 738, 707, 708, 740, 707, 740, 739, 708, 709, 741, 708, 741, 740, 709, 710, 742, 709, 742, 741, 710, 711, 743, 710, 743, 742, 711, 712, 744, 711, 744, 743, 712, 713, 745, 712, 745, 744, 713, 714, 746, 713, 746, 745, 714, 715, 747, 714, 747, 746, 715, 716, 748, 715, 748, 747, 716, 717, 749, 716, 749, 748, 717, 718, 750, 717, 750, 749, 718, 719, 751, 718, 751, 750, 719, 720, 752, 719, 752, 751, 720, 721, 753, 720, 753, 752, 721, 722, 754, 721, 754, 753, 722, 723, 755, 722, 755, 754, 723, 724, 756, 723, 756, 755, 724, 725, 757, 724, 757, 756, 725, 726, 758, 725, 758, 757, 726, 727, 759, 726, 759, 758, 727, 728, 760, 727, 760, 759, 728, 729, 761, 728, 761, 760, 729, 730, 762, 729, 762, 761, 730, 731, 763, 730, 763, 762, 731, 732, 764, 731, 764, 763, 732, 733, 765, 732, 765, 764, 733, 734, 766, 733, 766, 765, 734, 735, 767, 734, 767, 766, 736, 737, 769, 736, 769, 768, 737, 738, 770, 737, 770, 769, 738, 739, 771, 738, 771, 770, 739, 740, 772, 739, 772, 771, 740, 741, 773, 740, 773, 772, 741, 742, 774, 741, 774, 773, 742, 743, 775, 742, 775, 774, 743, 744, 776, 743, 776, 775, 744, 745, 777, 744, 777, 776, 745, 746, 778, 745, 778, 777, 746, 747, 779, 746, 779, 778, 747, 748, 780, 747, 780, 779, 748, 749, 781, 748, 781, 780, 749, 750, 782, 749, 782, 781, 750, 751, 783, 750, 783, 782, 751, 752, 784, 751, 784, 783, 752, 753, 785, 752, 785, 784, 753, 754, 786, 753, 786, 785, 754, 755, 787, 754, 787, 786, 755, 756, 788, 755, 788, 787, 756, 757, 789, 756, 789, 788, 757, 758, 790, 757, 790, 789, 758, 759, 791, 758, 791, 790, 759, 760, 792, 759, 792, 791, 760, 761, 793, 760, 793, 792, 761, 762, 794, 761, 794, 793, 762, 763, 795, 762, 795, 794, 763, 764, 796, 763, 796, 795, 764, 765, 797, 764, 797, 796, 765, 766, 798, 765, 798, 797, 766, 767, 799, 766, 799, 798, 768, 769, 801, 768, 801, 800, 769, 770, 802, 769, 802, 801, 770, 771, 803, 770, 803, 802, 771, 772, 804, 771, 804, 803, 772, 773, 805, 772, 805, 804, 773, 774, 806, 773, 806, 805, 774, 775, 807, 774, 807, 806, 775, 776, 808, 775, 808, 807, 776, 777, 809, 776, 809, 808, 777, 778, 810, 777, 810, 809, 778, 779, 811, 778, 811, 810, 779, 780, 812, 779, 812, 811, 780, 781, 813, 780, 813, 812, 781, 782, 814, 781, 814, 813, 782, 783, 815, 782, 815, 814, 783, 784, 816, 783, 816, 815, 784, 785, 817, 784, 817, 816, 785, 786, 818, 785, 818, 817, 786, 787, 819, 786, 819, 818, 787, 788, 820, 787, 820, 819, 788, 789, 821, 788, 821, 820, 789, 790, 822, 789, 822, 821, 790, 791, 823, 790, 823, 822, 791, 792, 824, 791, 824, 823, 792, 793, 825, 792, 825, 824, 793, 794, 826, 793, 826, 825, 794, 795, 827, 794, 827, 826, 795, 796, 828, 795, 828, 827, 796, 797, 829, 796, 829, 828, 797, 798, 830, 797, 830, 829, 798, 799, 831, 798, 831, 830, 800, 801, 833, 800, 833, 832, 801, 802, 834, 801, 834, 833, 802, 803, 835, 802, 835, 834, 803, 804, 836, 803, 836, 835, 804, 805, 837, 804, 837, 836, 805, 806, 838, 805, 838, 837, 806, 807, 839, 806, 839, 838, 807, 808, 840, 807, 840, 839, 808, 809, 841, 808, 841, 840, 809, 810, 842, 809, 842, 841, 810, 811, 843, 810, 843, 842, 811, 812, 844, 811, 844, 843, 812, 813, 845, 812, 845, 844, 813, 814, 846, 813, 846, 845, 814, 815, 847, 814, 847, 846, 815, 816, 848, 815, 848, 847, 816, 817, 849, 816, 849, 848, 817, 818, 850, 817, 850, 849, 818, 819, 851, 818, 851, 850, 819, 820, 852, 819, 852, 851, 820, 821, 853, 820, 853, 852, 821, 822, 854, 821, 854, 853, 822, 823, 855, 822, 855, 854, 823, 824, 856, 823, 856, 855, 824, 825, 857, 824, 857, 856, 825, 826, 858, 825, 858, 857, 826, 827, 859, 826, 859, 858, 827, 828, 860, 827, 860, 859, 828, 829, 861, 828, 861, 860, 829, 830, 862, 829, 862, 861, 830, 831, 863, 830, 863, 862, 832, 833, 865, 832, 865, 864, 833, 834, 866, 833, 866, 865, 834, 835, 867, 834, 867, 866, 835, 836, 868, 835, 868, 867, 836, 837, 869, 836, 869, 868, 837, 838, 870, 837, 870, 869, 838, 839, 871, 838, 871, 870, 839, 840, 872, 839, 872, 871, 840, 841, 873, 840, 873, 872, 841, 842, 874, 841, 874, 873, 842, 843, 875, 842, 875, 874, 843, 844, 876, 843, 876, 875, 844, 845, 877, 844, 877, 876, 845, 846, 878, 845, 878, 877, 846, 847, 879, 846, 879, 878, 847, 848, 880, 847, 880, 879, 848, 849, 881, 848, 881, 880, 849, 850, 882, 849, 882, 881, 850, 851, 883, 850, 883, 882, 851, 852, 884, 851, 884, 883, 852, 853, 885, 852, 885, 884, 853, 854, 886, 853, 886, 885, 854, 855, 887, 854, 887, 886, 855, 856, 888, 855, 888, 887, 856, 857, 889, 856, 889, 888, 857, 858, 890, 857, 890, 889, 858, 859, 891, 858, 891, 890, 859, 860, 892, 859, 892, 891, 860, 861, 893, 860, 893, 892, 861, 862, 894, 861, 894, 893, 862, 863, 895, 862, 895, 894, 864, 865, 897, 864, 897, 896, 865, 866, 898, 865, 898, 897, 866, 867, 899, 866, 899, 898, 867, 868, 900, 867, 900, 899, 868, 869, 901, 868, 901, 900, 869, 870, 902, 869, 902, 901, 870, 871, 903, 870, 903, 902, 871, 872, 904, 871, 904, 903, 872, 873, 905, 872, 905, 904, 873, 874, 906, 873, 906, 905, 874, 875, 907, 874, 907, 906, 875, 876, 908, 875, 908, 907, 876, 877, 909, 876, 909, 908, 877, 878, 910, 877, 910, 909, 878, 879, 911, 878, 911, 910, 879, 880, 912, 879, 912, 911, 880, 881, 913, 880, 913, 912, 881, 882, 914, 881, 914, 913, 882, 883, 915, 882, 915, 914, 883, 884, 916, 883, 916, 915, 884, 885, 917, 884, 917, 916, 885, 886, 918, 885, 918, 917, 886, 887, 919, 886, 919, 918, 887, 888, 920, 887, 920, 919, 888, 889, 921, 888, 921, 920, 889, 890, 922, 889, 922, 921, 890, 891, 923, 890, 923, 922, 891, 892, 924, 891, 924, 923, 892, 893, 925, 892, 925, 924, 893, 894, 926, 893, 926, 925, 894, 895, 927, 894, 927, 926, 896, 897, 929, 896, 929, 928, 897, 898, 930, 897, 930, 929, 898, 899, 931, 898, 931, 930, 899, 900, 932, 899, 932, 931, 900, 901, 933, 900, 933, 932, 901, 902, 934, 901, 934, 933, 902, 903, 935, 902, 935, 934, 903, 904, 936, 903, 936, 935, 904, 905, 937, 904, 937, 936, 905, 906, 938, 905, 938, 937, 906, 907, 939, 906, 939, 938, 907, 908, 940, 907, 940, 939, 908, 909, 941, 908, 941, 940, 909, 910, 942, 909, 942, 941, 910, 911, 943, 910, 943, 942, 911, 912, 944, 911, 944, 943, 912, 913, 945, 912, 945, 944, 913, 914, 946, 913, 946, 945, 914, 915, 947, 914, 947, 946, 915, 916, 948, 915, 948, 947, 916, 917, 949, 916, 949, 948, 917, 918, 950, 917, 950, 949, 918, 919, 951, 918, 951, 950, 919, 920, 952, 919, 952, 951, 920, 921, 953, 920, 953, 952, 921, 922, 954, 921, 954, 953, 922, 923, 955, 922, 955, 954, 923, 924, 956, 923, 956, 955, 924, 925, 957, 924, 957, 956, 925, 926, 958, 925, 958, 957, 926, 927, 959, 926, 959, 958, 928, 929, 961, 928, 961, 960, 929, 930, 962, 929, 962, 961, 930, 931, 963, 930, 963, 962, 931, 932, 964, 931, 964, 963, 932, 933, 965, 932, 965, 964, 933, 934, 966, 933, 966, 965, 934, 935, 967, 934, 967, 966, 935, 936, 968, 935, 968, 967, 936, 937, 969, 936, 969, 968, 937, 938, 970, 937, 970, 969, 938, 939, 971, 938, 971, 970, 939, 940, 972, 939, 972, 971, 940, 941, 973, 940, 973, 972, 941, 942, 974, 941, 974, 973, 942, 943, 975, 942, 975, 974, 943, 944, 976, 943, 976, 975, 944, 945, 977, 944, 977, 976, 945, 946, 978, 945, 978, 977, 946, 947, 979, 946, 979, 978, 947, 948, 980, 947, 980, 979, 948, 949, 981, 948, 981, 980, 949, 950, 982, 949, 982, 981, 950, 951, 983, 950, 983, 982, 951, 952, 984, 951, 984, 983, 952, 953, 985, 952, 985, 984, 953, 954, 986, 953, 986, 985, 954, 955, 987, 954, 987, 986, 955, 956, 988, 955, 988, 987, 956, 957, 989, 956, 989, 988, 957, 958, 990, 957, 990, 989, 958, 959, 991, 958, 991, 990, 960, 961, 993, 960, 993, 992, 961, 962, 994, 961, 994, 993, 962, 963, 995, 962, 995, 994, 963, 964, 996, 963, 996, 995, 964, 965, 997, 964, 997, 996, 965, 966, 998, 965, 998, 997, 966, 967, 999, 966, 999, 998, 967, 968, 1000, 967, 1000, 999, 968, 969, 1001, 968, 1001, 1000, 969, 970, 1002, 969, 1002, 1001, 970, 971, 1003, 970, 1003, 1002, 971, 972, 1004, 971, 1004, 1003, 972, 973, 1005, 972, 1005, 1004, 973, 974, 1006, 973, 1006, 1005, 974, 975, 1007, 974, 1007, 1006, 975, 976, 1008, 975, 1008, 1007, 976, 977, 1009, 976, 1009, 1008, 977, 978, 1010, 977, 1010, 1009, 978, 979, 1011, 978, 1011, 1010, 979, 980, 1012, 979, 1012, 1011, 980, 981, 1013, 980, 1013, 1012, 981, 982, 1014, 981, 1014, 1013, 982, 983, 1015, 982, 1015, 1014, 983, 984, 1016, 983, 1016, 1015, 984, 985, 1017, 984, 1017, 1016, 985, 986, 1018, 985, 1018, 1017, 986, 987, 1019, 986, 1019, 1018, 987, 988, 1020, 987, 1020, 1019, 988, 989, 1021, 988, 1021, 1020, 989, 990, 1022, 989, 1022, 1021, 990, 991, 1023, 990, 1023, 1022] point3f[] points = [(0, 0, 20), (20, 0, 20), (40, 0, 20), (60, 0, 20), (80, 0, 20), (100, 0, 20), (120, 0, 20), (140, 0, 20), (160, 0, 20), (180, 0, 20), (200, 0, 20), (220, 0, 20), (240, 0, 20), (260, 0, 20), (280, 0, 20), (300, 0, 20), (320, 0, 20), (340, 0, 20), (360, 0, 20), (380, 0, 20), (400, 0, 20), (420, 0, 20), (440, 0, 20), (460, 0, 20), (480, 0, 20), (500, 0, 20), (520, 0, 20), (540, 0, 20), (560, 0, 20), (580, 0, 20), (600, 0, 20), (620, 0, 20), (0, 20, 20), (20, 20, 20), (40, 20, 20), (60, 20, 20), (80, 20, 20), (100, 20, 20), (120, 20, 20), (140, 20, 20), (160, 20, 20), (180, 20, 20), (200, 20, 20), (220, 20, 20), (240, 20, 20), (260, 20, 20), (280, 20, 20), (300, 20, 20), (320, 20, 20), (340, 20, 20), (360, 20, 20), (380, 20, 20), (400, 20, 20), (420, 20, 20), (440, 20, 20), (460, 20, 20), (480, 20, 20), (500, 20, 20), (520, 20, 20), (540, 20, 20), (560, 20, 20), (580, 20, 20), (600, 20, 20), (620, 20, 20), (0, 40, 20), (20, 40, 20), (40, 40, 20), (60, 40, 20), (80, 40, 20), (100, 40, 20), (120, 40, 20), (140, 40, 20), (160, 40, 20), (180, 40, 20), (200, 40, 20), (220, 40, 20), (240, 40, 20), (260, 40, 20), (280, 40, 20), (300, 40, 20), (320, 40, 20), (340, 40, 20), (360, 40, 20), (380, 40, 20), (400, 40, 20), (420, 40, 20), (440, 40, 20), (460, 40, 20), (480, 40, 20), (500, 40, 20), (520, 40, 20), (540, 40, 20), (560, 40, 20), (580, 40, 20), (600, 40, 20), (620, 40, 20), (0, 60, 20), (20, 60, 20), (40, 60, 20), (60, 60, 20), (80, 60, 20), (100, 60, 20), (120, 60, 20), (140, 60, 20), (160, 60, 20), (180, 60, 20), (200, 60, 20), (220, 60, 20), (240, 60, 20), (260, 60, 20), (280, 60, 20), (300, 60, 20), (320, 60, 20), (340, 60, 20), (360, 60, 20), (380, 60, 20), (400, 60, 20), (420, 60, 20), (440, 60, 20), (460, 60, 20), (480, 60, 20), (500, 60, 20), (520, 60, 20), (540, 60, 20), (560, 60, 20), (580, 60, 20), (600, 60, 20), (620, 60, 20), (0, 80, 20), (20, 80, 20), (40, 80, 20), (60, 80, 20), (80, 80, 20), (100, 80, 20), (120, 80, 20), (140, 80, 20), (160, 80, 20), (180, 80, 20), (200, 80, 20), (220, 80, 20), (240, 80, 20), (260, 80, 20), (280, 80, 20), (300, 80, 20), (320, 80, 20), (340, 80, 20), (360, 80, 20), (380, 80, 20), (400, 80, 20), (420, 80, 20), (440, 80, 20), (460, 80, 20), (480, 80, 20), (500, 80, 20), (520, 80, 20), (540, 80, 20), (560, 80, 20), (580, 80, 20), (600, 80, 20), (620, 80, 20), (0, 100, 20), (20, 100, 20), (40, 100, 20), (60, 100, 20), (80, 100, 20), (100, 100, 20), (120, 100, 20), (140, 100, 20), (160, 100, 20), (180, 100, 20), (200, 100, 20), (220, 100, 20), (240, 100, 20), (260, 100, 20), (280, 100, 20), (300, 100, 20), (320, 100, 20), (340, 100, 20), (360, 100, 20), (380, 100, 20), (400, 100, 20), (420, 100, 20), (440, 100, 20), (460, 100, 20), (480, 100, 20), (500, 100, 20), (520, 100, 20), (540, 100, 20), (560, 100, 20), (580, 100, 20), (600, 100, 20), (620, 100, 20), (0, 120, 20), (20, 120, 20), (40, 120, 20), (60, 120, 20), (80, 120, 20), (100, 120, 20), (120, 120, 20), (140, 120, 20), (160, 120, 20), (180, 120, 20), (200, 120, 20), (220, 120, 20), (240, 120, 20), (260, 120, 20), (280, 120, 20), (300, 120, 20), (320, 120, 20), (340, 120, 20), (360, 120, 20), (380, 120, 20), (400, 120, 20), (420, 120, 20), (440, 120, 20), (460, 120, 20), (480, 120, 20), (500, 120, 20), (520, 120, 20), (540, 120, 20), (560, 120, 20), (580, 120, 20), (600, 120, 20), (620, 120, 20), (0, 140, 20), (20, 140, 20), (40, 140, 20), (60, 140, 20), (80, 140, 20), (100, 140, 20), (120, 140, 20), (140, 140, 20), (160, 140, 20), (180, 140, 20), (200, 140, 20), (220, 140, 20), (240, 140, 20), (260, 140, 20), (280, 140, 20), (300, 140, 20), (320, 140, 20), (340, 140, 20), (360, 140, 20), (380, 140, 20), (400, 140, 20), (420, 140, 20), (440, 140, 20), (460, 140, 20), (480, 140, 20), (500, 140, 20), (520, 140, 20), (540, 140, 20), (560, 140, 20), (580, 140, 20), (600, 140, 20), (620, 140, 20), (0, 160, 20), (20, 160, 20), (40, 160, 20), (60, 160, 20), (80, 160, 20), (100, 160, 20), (120, 160, 20), (140, 160, 20), (160, 160, 20), (180, 160, 20), (200, 160, 20), (220, 160, 20), (240, 160, 20), (260, 160, 20), (280, 160, 20), (300, 160, 20), (320, 160, 20), (340, 160, 20), (360, 160, 20), (380, 160, 20), (400, 160, 20), (420, 160, 20), (440, 160, 20), (460, 160, 20), (480, 160, 20), (500, 160, 20), (520, 160, 20), (540, 160, 20), (560, 160, 20), (580, 160, 20), (600, 160, 20), (620, 160, 20), (0, 180, 20), (20, 180, 20), (40, 180, 20), (60, 180, 20), (80, 180, 20), (100, 180, 20), (120, 180, 20), (140, 180, 20), (160, 180, 20), (180, 180, 20), (200, 180, 20), (220, 180, 20), (240, 180, 20), (260, 180, 20), (280, 180, 20), (300, 180, 20), (320, 180, 20), (340, 180, 20), (360, 180, 20), (380, 180, 20), (400, 180, 20), (420, 180, 20), (440, 180, 20), (460, 180, 20), (480, 180, 20), (500, 180, 20), (520, 180, 20), (540, 180, 20), (560, 180, 20), (580, 180, 20), (600, 180, 20), (620, 180, 20), (0, 200, 20), (20, 200, 20), (40, 200, 20), (60, 200, 20), (80, 200, 20), (100, 200, 20), (120, 200, 20), (140, 200, 20), (160, 200, 20), (180, 200, 20), (200, 200, 20), (220, 200, 20), (240, 200, 20), (260, 200, 20), (280, 200, 20), (300, 200, 20), (320, 200, 20), (340, 200, 20), (360, 200, 20), (380, 200, 20), (400, 200, 20), (420, 200, 20), (440, 200, 20), (460, 200, 20), (480, 200, 20), (500, 200, 20), (520, 200, 20), (540, 200, 20), (560, 200, 20), (580, 200, 20), (600, 200, 20), (620, 200, 20), (0, 220, 20), (20, 220, 20), (40, 220, 20), (60, 220, 20), (80, 220, 20), (100, 220, 20), (120, 220, 20), (140, 220, 20), (160, 220, 20), (180, 220, 20), (200, 220, 20), (220, 220, 20), (240, 220, 20), (260, 220, 20), (280, 220, 20), (300, 220, 20), (320, 220, 20), (340, 220, 20), (360, 220, 20), (380, 220, 20), (400, 220, 20), (420, 220, 20), (440, 220, 20), (460, 220, 20), (480, 220, 20), (500, 220, 20), (520, 220, 20), (540, 220, 20), (560, 220, 20), (580, 220, 20), (600, 220, 20), (620, 220, 20), (0, 240, 20), (20, 240, 20), (40, 240, 20), (60, 240, 20), (80, 240, 20), (100, 240, 20), (120, 240, 20), (140, 240, 20), (160, 240, 20), (180, 240, 20), (200, 240, 20), (220, 240, 20), (240, 240, 20), (260, 240, 20), (280, 240, 20), (300, 240, 20), (320, 240, 20), (340, 240, 20), (360, 240, 20), (380, 240, 20), (400, 240, 20), (420, 240, 20), (440, 240, 20), (460, 240, 20), (480, 240, 20), (500, 240, 20), (520, 240, 20), (540, 240, 20), (560, 240, 20), (580, 240, 20), (600, 240, 20), (620, 240, 20), (0, 260, 20), (20, 260, 20), (40, 260, 20), (60, 260, 20), (80, 260, 20), (100, 260, 20), (120, 260, 20), (140, 260, 20), (160, 260, 20), (180, 260, 20), (200, 260, 20), (220, 260, 20), (240, 260, 20), (260, 260, 20), (280, 260, 20), (300, 260, 20), (320, 260, 20), (340, 260, 20), (360, 260, 20), (380, 260, 20), (400, 260, 20), (420, 260, 20), (440, 260, 20), (460, 260, 20), (480, 260, 20), (500, 260, 20), (520, 260, 20), (540, 260, 20), (560, 260, 20), (580, 260, 20), (600, 260, 20), (620, 260, 20), (0, 280, 20), (20, 280, 20), (40, 280, 20), (60, 280, 20), (80, 280, 20), (100, 280, 20), (120, 280, 20), (140, 280, 20), (160, 280, 20), (180, 280, 20), (200, 280, 20), (220, 280, 20), (240, 280, 20), (260, 280, 20), (280, 280, 20), (300, 280, 20), (320, 280, 20), (340, 280, 20), (360, 280, 20), (380, 280, 20), (400, 280, 20), (420, 280, 20), (440, 280, 20), (460, 280, 20), (480, 280, 20), (500, 280, 20), (520, 280, 20), (540, 280, 20), (560, 280, 20), (580, 280, 20), (600, 280, 20), (620, 280, 20), (0, 300, 20), (20, 300, 20), (40, 300, 20), (60, 300, 20), (80, 300, 20), (100, 300, 20), (120, 300, 20), (140, 300, 20), (160, 300, 20), (180, 300, 20), (200, 300, 20), (220, 300, 20), (240, 300, 20), (260, 300, 20), (280, 300, 20), (300, 300, 20), (320, 300, 20), (340, 300, 20), (360, 300, 20), (380, 300, 20), (400, 300, 20), (420, 300, 20), (440, 300, 20), (460, 300, 20), (480, 300, 20), (500, 300, 20), (520, 300, 20), (540, 300, 20), (560, 300, 20), (580, 300, 20), (600, 300, 20), (620, 300, 20), (0, 320, 20), (20, 320, 20), (40, 320, 20), (60, 320, 20), (80, 320, 20), (100, 320, 20), (120, 320, 20), (140, 320, 20), (160, 320, 20), (180, 320, 20), (200, 320, 20), (220, 320, 20), (240, 320, 20), (260, 320, 20), (280, 320, 20), (300, 320, 20), (320, 320, 20), (340, 320, 20), (360, 320, 20), (380, 320, 20), (400, 320, 20), (420, 320, 20), (440, 320, 20), (460, 320, 20), (480, 320, 20), (500, 320, 20), (520, 320, 20), (540, 320, 20), (560, 320, 20), (580, 320, 20), (600, 320, 20), (620, 320, 20), (0, 340, 20), (20, 340, 20), (40, 340, 20), (60, 340, 20), (80, 340, 20), (100, 340, 20), (120, 340, 20), (140, 340, 20), (160, 340, 20), (180, 340, 20), (200, 340, 20), (220, 340, 20), (240, 340, 20), (260, 340, 20), (280, 340, 20), (300, 340, 20), (320, 340, 20), (340, 340, 20), (360, 340, 20), (380, 340, 20), (400, 340, 20), (420, 340, 20), (440, 340, 20), (460, 340, 20), (480, 340, 20), (500, 340, 20), (520, 340, 20), (540, 340, 20), (560, 340, 20), (580, 340, 20), (600, 340, 20), (620, 340, 20), (0, 360, 20), (20, 360, 20), (40, 360, 20), (60, 360, 20), (80, 360, 20), (100, 360, 20), (120, 360, 20), (140, 360, 20), (160, 360, 20), (180, 360, 20), (200, 360, 20), (220, 360, 20), (240, 360, 20), (260, 360, 20), (280, 360, 20), (300, 360, 20), (320, 360, 20), (340, 360, 20), (360, 360, 20), (380, 360, 20), (400, 360, 20), (420, 360, 20), (440, 360, 20), (460, 360, 20), (480, 360, 20), (500, 360, 20), (520, 360, 20), (540, 360, 20), (560, 360, 20), (580, 360, 20), (600, 360, 20), (620, 360, 20), (0, 380, 20), (20, 380, 20), (40, 380, 20), (60, 380, 20), (80, 380, 20), (100, 380, 20), (120, 380, 20), (140, 380, 20), (160, 380, 20), (180, 380, 20), (200, 380, 20), (220, 380, 20), (240, 380, 20), (260, 380, 20), (280, 380, 20), (300, 380, 20), (320, 380, 20), (340, 380, 20), (360, 380, 20), (380, 380, 20), (400, 380, 20), (420, 380, 20), (440, 380, 20), (460, 380, 20), (480, 380, 20), (500, 380, 20), (520, 380, 20), (540, 380, 20), (560, 380, 20), (580, 380, 20), (600, 380, 20), (620, 380, 20), (0, 400, 20), (20, 400, 20), (40, 400, 20), (60, 400, 20), (80, 400, 20), (100, 400, 20), (120, 400, 20), (140, 400, 20), (160, 400, 20), (180, 400, 20), (200, 400, 20), (220, 400, 20), (240, 400, 20), (260, 400, 20), (280, 400, 20), (300, 400, 20), (320, 400, 20), (340, 400, 20), (360, 400, 20), (380, 400, 20), (400, 400, 20), (420, 400, 20), (440, 400, 20), (460, 400, 20), (480, 400, 20), (500, 400, 20), (520, 400, 20), (540, 400, 20), (560, 400, 20), (580, 400, 20), (600, 400, 20), (620, 400, 20), (0, 420, 20), (20, 420, 20), (40, 420, 20), (60, 420, 20), (80, 420, 20), (100, 420, 20), (120, 420, 20), (140, 420, 20), (160, 420, 20), (180, 420, 20), (200, 420, 20), (220, 420, 20), (240, 420, 20), (260, 420, 20), (280, 420, 20), (300, 420, 20), (320, 420, 20), (340, 420, 20), (360, 420, 20), (380, 420, 20), (400, 420, 20), (420, 420, 20), (440, 420, 20), (460, 420, 20), (480, 420, 20), (500, 420, 20), (520, 420, 20), (540, 420, 20), (560, 420, 20), (580, 420, 20), (600, 420, 20), (620, 420, 20), (0, 440, 20), (20, 440, 20), (40, 440, 20), (60, 440, 20), (80, 440, 20), (100, 440, 20), (120, 440, 20), (140, 440, 20), (160, 440, 20), (180, 440, 20), (200, 440, 20), (220, 440, 20), (240, 440, 20), (260, 440, 20), (280, 440, 20), (300, 440, 20), (320, 440, 20), (340, 440, 20), (360, 440, 20), (380, 440, 20), (400, 440, 20), (420, 440, 20), (440, 440, 20), (460, 440, 20), (480, 440, 20), (500, 440, 20), (520, 440, 20), (540, 440, 20), (560, 440, 20), (580, 440, 20), (600, 440, 20), (620, 440, 20), (0, 460, 20), (20, 460, 20), (40, 460, 20), (60, 460, 20), (80, 460, 20), (100, 460, 20), (120, 460, 20), (140, 460, 20), (160, 460, 20), (180, 460, 20), (200, 460, 20), (220, 460, 20), (240, 460, 20), (260, 460, 20), (280, 460, 20), (300, 460, 20), (320, 460, 20), (340, 460, 20), (360, 460, 20), (380, 460, 20), (400, 460, 20), (420, 460, 20), (440, 460, 20), (460, 460, 20), (480, 460, 20), (500, 460, 20), (520, 460, 20), (540, 460, 20), (560, 460, 20), (580, 460, 20), (600, 460, 20), (620, 460, 20), (0, 480, 20), (20, 480, 20), (40, 480, 20), (60, 480, 20), (80, 480, 20), (100, 480, 20), (120, 480, 20), (140, 480, 20), (160, 480, 20), (180, 480, 20), (200, 480, 20), (220, 480, 20), (240, 480, 20), (260, 480, 20), (280, 480, 20), (300, 480, 20), (320, 480, 20), (340, 480, 20), (360, 480, 20), (380, 480, 20), (400, 480, 20), (420, 480, 20), (440, 480, 20), (460, 480, 20), (480, 480, 20), (500, 480, 20), (520, 480, 20), (540, 480, 20), (560, 480, 20), (580, 480, 20), (600, 480, 20), (620, 480, 20), (0, 500, 20), (20, 500, 20), (40, 500, 20), (60, 500, 20), (80, 500, 20), (100, 500, 20), (120, 500, 20), (140, 500, 20), (160, 500, 20), (180, 500, 20), (200, 500, 20), (220, 500, 20), (240, 500, 20), (260, 500, 20), (280, 500, 20), (300, 500, 20), (320, 500, 20), (340, 500, 20), (360, 500, 20), (380, 500, 20), (400, 500, 20), (420, 500, 20), (440, 500, 20), (460, 500, 20), (480, 500, 20), (500, 500, 20), (520, 500, 20), (540, 500, 20), (560, 500, 20), (580, 500, 20), (600, 500, 20), (620, 500, 20), (0, 520, 20), (20, 520, 20), (40, 520, 20), (60, 520, 20), (80, 520, 20), (100, 520, 20), (120, 520, 20), (140, 520, 20), (160, 520, 20), (180, 520, 20), (200, 520, 20), (220, 520, 20), (240, 520, 20), (260, 520, 20), (280, 520, 20), (300, 520, 20), (320, 520, 20), (340, 520, 20), (360, 520, 20), (380, 520, 20), (400, 520, 20), (420, 520, 20), (440, 520, 20), (460, 520, 20), (480, 520, 20), (500, 520, 20), (520, 520, 20), (540, 520, 20), (560, 520, 20), (580, 520, 20), (600, 520, 20), (620, 520, 20), (0, 540, 20), (20, 540, 20), (40, 540, 20), (60, 540, 20), (80, 540, 20), (100, 540, 20), (120, 540, 20), (140, 540, 20), (160, 540, 20), (180, 540, 20), (200, 540, 20), (220, 540, 20), (240, 540, 20), (260, 540, 20), (280, 540, 20), (300, 540, 20), (320, 540, 20), (340, 540, 20), (360, 540, 20), (380, 540, 20), (400, 540, 20), (420, 540, 20), (440, 540, 20), (460, 540, 20), (480, 540, 20), (500, 540, 20), (520, 540, 20), (540, 540, 20), (560, 540, 20), (580, 540, 20), (600, 540, 20), (620, 540, 20), (0, 560, 20), (20, 560, 20), (40, 560, 20), (60, 560, 20), (80, 560, 20), (100, 560, 20), (120, 560, 20), (140, 560, 20), (160, 560, 20), (180, 560, 20), (200, 560, 20), (220, 560, 20), (240, 560, 20), (260, 560, 20), (280, 560, 20), (300, 560, 20), (320, 560, 20), (340, 560, 20), (360, 560, 20), (380, 560, 20), (400, 560, 20), (420, 560, 20), (440, 560, 20), (460, 560, 20), (480, 560, 20), (500, 560, 20), (520, 560, 20), (540, 560, 20), (560, 560, 20), (580, 560, 20), (600, 560, 20), (620, 560, 20), (0, 580, 20), (20, 580, 20), (40, 580, 20), (60, 580, 20), (80, 580, 20), (100, 580, 20), (120, 580, 20), (140, 580, 20), (160, 580, 20), (180, 580, 20), (200, 580, 20), (220, 580, 20), (240, 580, 20), (260, 580, 20), (280, 580, 20), (300, 580, 20), (320, 580, 20), (340, 580, 20), (360, 580, 20), (380, 580, 20), (400, 580, 20), (420, 580, 20), (440, 580, 20), (460, 580, 20), (480, 580, 20), (500, 580, 20), (520, 580, 20), (540, 580, 20), (560, 580, 20), (580, 580, 20), (600, 580, 20), (620, 580, 20), (0, 600, 20), (20, 600, 20), (40, 600, 20), (60, 600, 20), (80, 600, 20), (100, 600, 20), (120, 600, 20), (140, 600, 20), (160, 600, 20), (180, 600, 20), (200, 600, 20), (220, 600, 20), (240, 600, 20), (260, 600, 20), (280, 600, 20), (300, 600, 20), (320, 600, 20), (340, 600, 20), (360, 600, 20), (380, 600, 20), (400, 600, 20), (420, 600, 20), (440, 600, 20), (460, 600, 20), (480, 600, 20), (500, 600, 20), (520, 600, 20), (540, 600, 20), (560, 600, 20), (580, 600, 20), (600, 600, 20), (620, 600, 20), (0, 620, 20), (20, 620, 20), (40, 620, 20), (60, 620, 20), (80, 620, 20), (100, 620, 20), (120, 620, 20), (140, 620, 20), (160, 620, 20), (180, 620, 20), (200, 620, 20), (220, 620, 20), (240, 620, 20), (260, 620, 20), (280, 620, 20), (300, 620, 20), (320, 620, 20), (340, 620, 20), (360, 620, 20), (380, 620, 20), (400, 620, 20), (420, 620, 20), (440, 620, 20), (460, 620, 20), (480, 620, 20), (500, 620, 20), (520, 620, 20), (540, 620, 20), (560, 620, 20), (580, 620, 20), (600, 620, 20), (620, 620, 20)] color3f[] primvars:displayColor = [(0.2784314, 0.64705884, 1)] } def ComputeGraphSettings "computegraphSettings" { custom token evaluator:type = "pull" custom token graph:path = "/defaultPrim" } def ComputeNode "deformer1" { custom token node:type = "omni.graph.examples.cpp.Deformer1" point3f[] inputs:points.connect = </defaultPrim/inputGrid.points> float inputs:multiplier = 3 point3f[] outputs:points } def ComputeGraph "innerPullGraph" { custom token graph:name = "pullgraph" def ComputeNode "deformer2" { custom token node:type = "omni.graph.examples.cpp.Deformer1" point3f[] inputs:points.connect = </defaultPrim/deformer1.outputs:points> float inputs:multiplier = 10 point3f[] outputs:points } def ComputeNode "deformer3" { custom token node:type = "omni.graph.examples.cpp.Deformer2" point3f[] inputs:points.connect = </defaultPrim/innerPullGraph/deformer2.outputs:points> float inputs:threshold = 10 point3f[] outputs:points } def ComputeGraphSettings "computegraphSettings" { custom token evaluator:type = "pull" } } def Mesh "outputGrid" { uniform bool doubleSided = 1 int[] faceVertexCounts = [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 1, 33, 0, 33, 32, 1, 2, 34, 1, 34, 33, 2, 3, 35, 2, 35, 34, 3, 4, 36, 3, 36, 35, 4, 5, 37, 4, 37, 36, 5, 6, 38, 5, 38, 37, 6, 7, 39, 6, 39, 38, 7, 8, 40, 7, 40, 39, 8, 9, 41, 8, 41, 40, 9, 10, 42, 9, 42, 41, 10, 11, 43, 10, 43, 42, 11, 12, 44, 11, 44, 43, 12, 13, 45, 12, 45, 44, 13, 14, 46, 13, 46, 45, 14, 15, 47, 14, 47, 46, 15, 16, 48, 15, 48, 47, 16, 17, 49, 16, 49, 48, 17, 18, 50, 17, 50, 49, 18, 19, 51, 18, 51, 50, 19, 20, 52, 19, 52, 51, 20, 21, 53, 20, 53, 52, 21, 22, 54, 21, 54, 53, 22, 23, 55, 22, 55, 54, 23, 24, 56, 23, 56, 55, 24, 25, 57, 24, 57, 56, 25, 26, 58, 25, 58, 57, 26, 27, 59, 26, 59, 58, 27, 28, 60, 27, 60, 59, 28, 29, 61, 28, 61, 60, 29, 30, 62, 29, 62, 61, 30, 31, 63, 30, 63, 62, 32, 33, 65, 32, 65, 64, 33, 34, 66, 33, 66, 65, 34, 35, 67, 34, 67, 66, 35, 36, 68, 35, 68, 67, 36, 37, 69, 36, 69, 68, 37, 38, 70, 37, 70, 69, 38, 39, 71, 38, 71, 70, 39, 40, 72, 39, 72, 71, 40, 41, 73, 40, 73, 72, 41, 42, 74, 41, 74, 73, 42, 43, 75, 42, 75, 74, 43, 44, 76, 43, 76, 75, 44, 45, 77, 44, 77, 76, 45, 46, 78, 45, 78, 77, 46, 47, 79, 46, 79, 78, 47, 48, 80, 47, 80, 79, 48, 49, 81, 48, 81, 80, 49, 50, 82, 49, 82, 81, 50, 51, 83, 50, 83, 82, 51, 52, 84, 51, 84, 83, 52, 53, 85, 52, 85, 84, 53, 54, 86, 53, 86, 85, 54, 55, 87, 54, 87, 86, 55, 56, 88, 55, 88, 87, 56, 57, 89, 56, 89, 88, 57, 58, 90, 57, 90, 89, 58, 59, 91, 58, 91, 90, 59, 60, 92, 59, 92, 91, 60, 61, 93, 60, 93, 92, 61, 62, 94, 61, 94, 93, 62, 63, 95, 62, 95, 94, 64, 65, 97, 64, 97, 96, 65, 66, 98, 65, 98, 97, 66, 67, 99, 66, 99, 98, 67, 68, 100, 67, 100, 99, 68, 69, 101, 68, 101, 100, 69, 70, 102, 69, 102, 101, 70, 71, 103, 70, 103, 102, 71, 72, 104, 71, 104, 103, 72, 73, 105, 72, 105, 104, 73, 74, 106, 73, 106, 105, 74, 75, 107, 74, 107, 106, 75, 76, 108, 75, 108, 107, 76, 77, 109, 76, 109, 108, 77, 78, 110, 77, 110, 109, 78, 79, 111, 78, 111, 110, 79, 80, 112, 79, 112, 111, 80, 81, 113, 80, 113, 112, 81, 82, 114, 81, 114, 113, 82, 83, 115, 82, 115, 114, 83, 84, 116, 83, 116, 115, 84, 85, 117, 84, 117, 116, 85, 86, 118, 85, 118, 117, 86, 87, 119, 86, 119, 118, 87, 88, 120, 87, 120, 119, 88, 89, 121, 88, 121, 120, 89, 90, 122, 89, 122, 121, 90, 91, 123, 90, 123, 122, 91, 92, 124, 91, 124, 123, 92, 93, 125, 92, 125, 124, 93, 94, 126, 93, 126, 125, 94, 95, 127, 94, 127, 126, 96, 97, 129, 96, 129, 128, 97, 98, 130, 97, 130, 129, 98, 99, 131, 98, 131, 130, 99, 100, 132, 99, 132, 131, 100, 101, 133, 100, 133, 132, 101, 102, 134, 101, 134, 133, 102, 103, 135, 102, 135, 134, 103, 104, 136, 103, 136, 135, 104, 105, 137, 104, 137, 136, 105, 106, 138, 105, 138, 137, 106, 107, 139, 106, 139, 138, 107, 108, 140, 107, 140, 139, 108, 109, 141, 108, 141, 140, 109, 110, 142, 109, 142, 141, 110, 111, 143, 110, 143, 142, 111, 112, 144, 111, 144, 143, 112, 113, 145, 112, 145, 144, 113, 114, 146, 113, 146, 145, 114, 115, 147, 114, 147, 146, 115, 116, 148, 115, 148, 147, 116, 117, 149, 116, 149, 148, 117, 118, 150, 117, 150, 149, 118, 119, 151, 118, 151, 150, 119, 120, 152, 119, 152, 151, 120, 121, 153, 120, 153, 152, 121, 122, 154, 121, 154, 153, 122, 123, 155, 122, 155, 154, 123, 124, 156, 123, 156, 155, 124, 125, 157, 124, 157, 156, 125, 126, 158, 125, 158, 157, 126, 127, 159, 126, 159, 158, 128, 129, 161, 128, 161, 160, 129, 130, 162, 129, 162, 161, 130, 131, 163, 130, 163, 162, 131, 132, 164, 131, 164, 163, 132, 133, 165, 132, 165, 164, 133, 134, 166, 133, 166, 165, 134, 135, 167, 134, 167, 166, 135, 136, 168, 135, 168, 167, 136, 137, 169, 136, 169, 168, 137, 138, 170, 137, 170, 169, 138, 139, 171, 138, 171, 170, 139, 140, 172, 139, 172, 171, 140, 141, 173, 140, 173, 172, 141, 142, 174, 141, 174, 173, 142, 143, 175, 142, 175, 174, 143, 144, 176, 143, 176, 175, 144, 145, 177, 144, 177, 176, 145, 146, 178, 145, 178, 177, 146, 147, 179, 146, 179, 178, 147, 148, 180, 147, 180, 179, 148, 149, 181, 148, 181, 180, 149, 150, 182, 149, 182, 181, 150, 151, 183, 150, 183, 182, 151, 152, 184, 151, 184, 183, 152, 153, 185, 152, 185, 184, 153, 154, 186, 153, 186, 185, 154, 155, 187, 154, 187, 186, 155, 156, 188, 155, 188, 187, 156, 157, 189, 156, 189, 188, 157, 158, 190, 157, 190, 189, 158, 159, 191, 158, 191, 190, 160, 161, 193, 160, 193, 192, 161, 162, 194, 161, 194, 193, 162, 163, 195, 162, 195, 194, 163, 164, 196, 163, 196, 195, 164, 165, 197, 164, 197, 196, 165, 166, 198, 165, 198, 197, 166, 167, 199, 166, 199, 198, 167, 168, 200, 167, 200, 199, 168, 169, 201, 168, 201, 200, 169, 170, 202, 169, 202, 201, 170, 171, 203, 170, 203, 202, 171, 172, 204, 171, 204, 203, 172, 173, 205, 172, 205, 204, 173, 174, 206, 173, 206, 205, 174, 175, 207, 174, 207, 206, 175, 176, 208, 175, 208, 207, 176, 177, 209, 176, 209, 208, 177, 178, 210, 177, 210, 209, 178, 179, 211, 178, 211, 210, 179, 180, 212, 179, 212, 211, 180, 181, 213, 180, 213, 212, 181, 182, 214, 181, 214, 213, 182, 183, 215, 182, 215, 214, 183, 184, 216, 183, 216, 215, 184, 185, 217, 184, 217, 216, 185, 186, 218, 185, 218, 217, 186, 187, 219, 186, 219, 218, 187, 188, 220, 187, 220, 219, 188, 189, 221, 188, 221, 220, 189, 190, 222, 189, 222, 221, 190, 191, 223, 190, 223, 222, 192, 193, 225, 192, 225, 224, 193, 194, 226, 193, 226, 225, 194, 195, 227, 194, 227, 226, 195, 196, 228, 195, 228, 227, 196, 197, 229, 196, 229, 228, 197, 198, 230, 197, 230, 229, 198, 199, 231, 198, 231, 230, 199, 200, 232, 199, 232, 231, 200, 201, 233, 200, 233, 232, 201, 202, 234, 201, 234, 233, 202, 203, 235, 202, 235, 234, 203, 204, 236, 203, 236, 235, 204, 205, 237, 204, 237, 236, 205, 206, 238, 205, 238, 237, 206, 207, 239, 206, 239, 238, 207, 208, 240, 207, 240, 239, 208, 209, 241, 208, 241, 240, 209, 210, 242, 209, 242, 241, 210, 211, 243, 210, 243, 242, 211, 212, 244, 211, 244, 243, 212, 213, 245, 212, 245, 244, 213, 214, 246, 213, 246, 245, 214, 215, 247, 214, 247, 246, 215, 216, 248, 215, 248, 247, 216, 217, 249, 216, 249, 248, 217, 218, 250, 217, 250, 249, 218, 219, 251, 218, 251, 250, 219, 220, 252, 219, 252, 251, 220, 221, 253, 220, 253, 252, 221, 222, 254, 221, 254, 253, 222, 223, 255, 222, 255, 254, 224, 225, 257, 224, 257, 256, 225, 226, 258, 225, 258, 257, 226, 227, 259, 226, 259, 258, 227, 228, 260, 227, 260, 259, 228, 229, 261, 228, 261, 260, 229, 230, 262, 229, 262, 261, 230, 231, 263, 230, 263, 262, 231, 232, 264, 231, 264, 263, 232, 233, 265, 232, 265, 264, 233, 234, 266, 233, 266, 265, 234, 235, 267, 234, 267, 266, 235, 236, 268, 235, 268, 267, 236, 237, 269, 236, 269, 268, 237, 238, 270, 237, 270, 269, 238, 239, 271, 238, 271, 270, 239, 240, 272, 239, 272, 271, 240, 241, 273, 240, 273, 272, 241, 242, 274, 241, 274, 273, 242, 243, 275, 242, 275, 274, 243, 244, 276, 243, 276, 275, 244, 245, 277, 244, 277, 276, 245, 246, 278, 245, 278, 277, 246, 247, 279, 246, 279, 278, 247, 248, 280, 247, 280, 279, 248, 249, 281, 248, 281, 280, 249, 250, 282, 249, 282, 281, 250, 251, 283, 250, 283, 282, 251, 252, 284, 251, 284, 283, 252, 253, 285, 252, 285, 284, 253, 254, 286, 253, 286, 285, 254, 255, 287, 254, 287, 286, 256, 257, 289, 256, 289, 288, 257, 258, 290, 257, 290, 289, 258, 259, 291, 258, 291, 290, 259, 260, 292, 259, 292, 291, 260, 261, 293, 260, 293, 292, 261, 262, 294, 261, 294, 293, 262, 263, 295, 262, 295, 294, 263, 264, 296, 263, 296, 295, 264, 265, 297, 264, 297, 296, 265, 266, 298, 265, 298, 297, 266, 267, 299, 266, 299, 298, 267, 268, 300, 267, 300, 299, 268, 269, 301, 268, 301, 300, 269, 270, 302, 269, 302, 301, 270, 271, 303, 270, 303, 302, 271, 272, 304, 271, 304, 303, 272, 273, 305, 272, 305, 304, 273, 274, 306, 273, 306, 305, 274, 275, 307, 274, 307, 306, 275, 276, 308, 275, 308, 307, 276, 277, 309, 276, 309, 308, 277, 278, 310, 277, 310, 309, 278, 279, 311, 278, 311, 310, 279, 280, 312, 279, 312, 311, 280, 281, 313, 280, 313, 312, 281, 282, 314, 281, 314, 313, 282, 283, 315, 282, 315, 314, 283, 284, 316, 283, 316, 315, 284, 285, 317, 284, 317, 316, 285, 286, 318, 285, 318, 317, 286, 287, 319, 286, 319, 318, 288, 289, 321, 288, 321, 320, 289, 290, 322, 289, 322, 321, 290, 291, 323, 290, 323, 322, 291, 292, 324, 291, 324, 323, 292, 293, 325, 292, 325, 324, 293, 294, 326, 293, 326, 325, 294, 295, 327, 294, 327, 326, 295, 296, 328, 295, 328, 327, 296, 297, 329, 296, 329, 328, 297, 298, 330, 297, 330, 329, 298, 299, 331, 298, 331, 330, 299, 300, 332, 299, 332, 331, 300, 301, 333, 300, 333, 332, 301, 302, 334, 301, 334, 333, 302, 303, 335, 302, 335, 334, 303, 304, 336, 303, 336, 335, 304, 305, 337, 304, 337, 336, 305, 306, 338, 305, 338, 337, 306, 307, 339, 306, 339, 338, 307, 308, 340, 307, 340, 339, 308, 309, 341, 308, 341, 340, 309, 310, 342, 309, 342, 341, 310, 311, 343, 310, 343, 342, 311, 312, 344, 311, 344, 343, 312, 313, 345, 312, 345, 344, 313, 314, 346, 313, 346, 345, 314, 315, 347, 314, 347, 346, 315, 316, 348, 315, 348, 347, 316, 317, 349, 316, 349, 348, 317, 318, 350, 317, 350, 349, 318, 319, 351, 318, 351, 350, 320, 321, 353, 320, 353, 352, 321, 322, 354, 321, 354, 353, 322, 323, 355, 322, 355, 354, 323, 324, 356, 323, 356, 355, 324, 325, 357, 324, 357, 356, 325, 326, 358, 325, 358, 357, 326, 327, 359, 326, 359, 358, 327, 328, 360, 327, 360, 359, 328, 329, 361, 328, 361, 360, 329, 330, 362, 329, 362, 361, 330, 331, 363, 330, 363, 362, 331, 332, 364, 331, 364, 363, 332, 333, 365, 332, 365, 364, 333, 334, 366, 333, 366, 365, 334, 335, 367, 334, 367, 366, 335, 336, 368, 335, 368, 367, 336, 337, 369, 336, 369, 368, 337, 338, 370, 337, 370, 369, 338, 339, 371, 338, 371, 370, 339, 340, 372, 339, 372, 371, 340, 341, 373, 340, 373, 372, 341, 342, 374, 341, 374, 373, 342, 343, 375, 342, 375, 374, 343, 344, 376, 343, 376, 375, 344, 345, 377, 344, 377, 376, 345, 346, 378, 345, 378, 377, 346, 347, 379, 346, 379, 378, 347, 348, 380, 347, 380, 379, 348, 349, 381, 348, 381, 380, 349, 350, 382, 349, 382, 381, 350, 351, 383, 350, 383, 382, 352, 353, 385, 352, 385, 384, 353, 354, 386, 353, 386, 385, 354, 355, 387, 354, 387, 386, 355, 356, 388, 355, 388, 387, 356, 357, 389, 356, 389, 388, 357, 358, 390, 357, 390, 389, 358, 359, 391, 358, 391, 390, 359, 360, 392, 359, 392, 391, 360, 361, 393, 360, 393, 392, 361, 362, 394, 361, 394, 393, 362, 363, 395, 362, 395, 394, 363, 364, 396, 363, 396, 395, 364, 365, 397, 364, 397, 396, 365, 366, 398, 365, 398, 397, 366, 367, 399, 366, 399, 398, 367, 368, 400, 367, 400, 399, 368, 369, 401, 368, 401, 400, 369, 370, 402, 369, 402, 401, 370, 371, 403, 370, 403, 402, 371, 372, 404, 371, 404, 403, 372, 373, 405, 372, 405, 404, 373, 374, 406, 373, 406, 405, 374, 375, 407, 374, 407, 406, 375, 376, 408, 375, 408, 407, 376, 377, 409, 376, 409, 408, 377, 378, 410, 377, 410, 409, 378, 379, 411, 378, 411, 410, 379, 380, 412, 379, 412, 411, 380, 381, 413, 380, 413, 412, 381, 382, 414, 381, 414, 413, 382, 383, 415, 382, 415, 414, 384, 385, 417, 384, 417, 416, 385, 386, 418, 385, 418, 417, 386, 387, 419, 386, 419, 418, 387, 388, 420, 387, 420, 419, 388, 389, 421, 388, 421, 420, 389, 390, 422, 389, 422, 421, 390, 391, 423, 390, 423, 422, 391, 392, 424, 391, 424, 423, 392, 393, 425, 392, 425, 424, 393, 394, 426, 393, 426, 425, 394, 395, 427, 394, 427, 426, 395, 396, 428, 395, 428, 427, 396, 397, 429, 396, 429, 428, 397, 398, 430, 397, 430, 429, 398, 399, 431, 398, 431, 430, 399, 400, 432, 399, 432, 431, 400, 401, 433, 400, 433, 432, 401, 402, 434, 401, 434, 433, 402, 403, 435, 402, 435, 434, 403, 404, 436, 403, 436, 435, 404, 405, 437, 404, 437, 436, 405, 406, 438, 405, 438, 437, 406, 407, 439, 406, 439, 438, 407, 408, 440, 407, 440, 439, 408, 409, 441, 408, 441, 440, 409, 410, 442, 409, 442, 441, 410, 411, 443, 410, 443, 442, 411, 412, 444, 411, 444, 443, 412, 413, 445, 412, 445, 444, 413, 414, 446, 413, 446, 445, 414, 415, 447, 414, 447, 446, 416, 417, 449, 416, 449, 448, 417, 418, 450, 417, 450, 449, 418, 419, 451, 418, 451, 450, 419, 420, 452, 419, 452, 451, 420, 421, 453, 420, 453, 452, 421, 422, 454, 421, 454, 453, 422, 423, 455, 422, 455, 454, 423, 424, 456, 423, 456, 455, 424, 425, 457, 424, 457, 456, 425, 426, 458, 425, 458, 457, 426, 427, 459, 426, 459, 458, 427, 428, 460, 427, 460, 459, 428, 429, 461, 428, 461, 460, 429, 430, 462, 429, 462, 461, 430, 431, 463, 430, 463, 462, 431, 432, 464, 431, 464, 463, 432, 433, 465, 432, 465, 464, 433, 434, 466, 433, 466, 465, 434, 435, 467, 434, 467, 466, 435, 436, 468, 435, 468, 467, 436, 437, 469, 436, 469, 468, 437, 438, 470, 437, 470, 469, 438, 439, 471, 438, 471, 470, 439, 440, 472, 439, 472, 471, 440, 441, 473, 440, 473, 472, 441, 442, 474, 441, 474, 473, 442, 443, 475, 442, 475, 474, 443, 444, 476, 443, 476, 475, 444, 445, 477, 444, 477, 476, 445, 446, 478, 445, 478, 477, 446, 447, 479, 446, 479, 478, 448, 449, 481, 448, 481, 480, 449, 450, 482, 449, 482, 481, 450, 451, 483, 450, 483, 482, 451, 452, 484, 451, 484, 483, 452, 453, 485, 452, 485, 484, 453, 454, 486, 453, 486, 485, 454, 455, 487, 454, 487, 486, 455, 456, 488, 455, 488, 487, 456, 457, 489, 456, 489, 488, 457, 458, 490, 457, 490, 489, 458, 459, 491, 458, 491, 490, 459, 460, 492, 459, 492, 491, 460, 461, 493, 460, 493, 492, 461, 462, 494, 461, 494, 493, 462, 463, 495, 462, 495, 494, 463, 464, 496, 463, 496, 495, 464, 465, 497, 464, 497, 496, 465, 466, 498, 465, 498, 497, 466, 467, 499, 466, 499, 498, 467, 468, 500, 467, 500, 499, 468, 469, 501, 468, 501, 500, 469, 470, 502, 469, 502, 501, 470, 471, 503, 470, 503, 502, 471, 472, 504, 471, 504, 503, 472, 473, 505, 472, 505, 504, 473, 474, 506, 473, 506, 505, 474, 475, 507, 474, 507, 506, 475, 476, 508, 475, 508, 507, 476, 477, 509, 476, 509, 508, 477, 478, 510, 477, 510, 509, 478, 479, 511, 478, 511, 510, 480, 481, 513, 480, 513, 512, 481, 482, 514, 481, 514, 513, 482, 483, 515, 482, 515, 514, 483, 484, 516, 483, 516, 515, 484, 485, 517, 484, 517, 516, 485, 486, 518, 485, 518, 517, 486, 487, 519, 486, 519, 518, 487, 488, 520, 487, 520, 519, 488, 489, 521, 488, 521, 520, 489, 490, 522, 489, 522, 521, 490, 491, 523, 490, 523, 522, 491, 492, 524, 491, 524, 523, 492, 493, 525, 492, 525, 524, 493, 494, 526, 493, 526, 525, 494, 495, 527, 494, 527, 526, 495, 496, 528, 495, 528, 527, 496, 497, 529, 496, 529, 528, 497, 498, 530, 497, 530, 529, 498, 499, 531, 498, 531, 530, 499, 500, 532, 499, 532, 531, 500, 501, 533, 500, 533, 532, 501, 502, 534, 501, 534, 533, 502, 503, 535, 502, 535, 534, 503, 504, 536, 503, 536, 535, 504, 505, 537, 504, 537, 536, 505, 506, 538, 505, 538, 537, 506, 507, 539, 506, 539, 538, 507, 508, 540, 507, 540, 539, 508, 509, 541, 508, 541, 540, 509, 510, 542, 509, 542, 541, 510, 511, 543, 510, 543, 542, 512, 513, 545, 512, 545, 544, 513, 514, 546, 513, 546, 545, 514, 515, 547, 514, 547, 546, 515, 516, 548, 515, 548, 547, 516, 517, 549, 516, 549, 548, 517, 518, 550, 517, 550, 549, 518, 519, 551, 518, 551, 550, 519, 520, 552, 519, 552, 551, 520, 521, 553, 520, 553, 552, 521, 522, 554, 521, 554, 553, 522, 523, 555, 522, 555, 554, 523, 524, 556, 523, 556, 555, 524, 525, 557, 524, 557, 556, 525, 526, 558, 525, 558, 557, 526, 527, 559, 526, 559, 558, 527, 528, 560, 527, 560, 559, 528, 529, 561, 528, 561, 560, 529, 530, 562, 529, 562, 561, 530, 531, 563, 530, 563, 562, 531, 532, 564, 531, 564, 563, 532, 533, 565, 532, 565, 564, 533, 534, 566, 533, 566, 565, 534, 535, 567, 534, 567, 566, 535, 536, 568, 535, 568, 567, 536, 537, 569, 536, 569, 568, 537, 538, 570, 537, 570, 569, 538, 539, 571, 538, 571, 570, 539, 540, 572, 539, 572, 571, 540, 541, 573, 540, 573, 572, 541, 542, 574, 541, 574, 573, 542, 543, 575, 542, 575, 574, 544, 545, 577, 544, 577, 576, 545, 546, 578, 545, 578, 577, 546, 547, 579, 546, 579, 578, 547, 548, 580, 547, 580, 579, 548, 549, 581, 548, 581, 580, 549, 550, 582, 549, 582, 581, 550, 551, 583, 550, 583, 582, 551, 552, 584, 551, 584, 583, 552, 553, 585, 552, 585, 584, 553, 554, 586, 553, 586, 585, 554, 555, 587, 554, 587, 586, 555, 556, 588, 555, 588, 587, 556, 557, 589, 556, 589, 588, 557, 558, 590, 557, 590, 589, 558, 559, 591, 558, 591, 590, 559, 560, 592, 559, 592, 591, 560, 561, 593, 560, 593, 592, 561, 562, 594, 561, 594, 593, 562, 563, 595, 562, 595, 594, 563, 564, 596, 563, 596, 595, 564, 565, 597, 564, 597, 596, 565, 566, 598, 565, 598, 597, 566, 567, 599, 566, 599, 598, 567, 568, 600, 567, 600, 599, 568, 569, 601, 568, 601, 600, 569, 570, 602, 569, 602, 601, 570, 571, 603, 570, 603, 602, 571, 572, 604, 571, 604, 603, 572, 573, 605, 572, 605, 604, 573, 574, 606, 573, 606, 605, 574, 575, 607, 574, 607, 606, 576, 577, 609, 576, 609, 608, 577, 578, 610, 577, 610, 609, 578, 579, 611, 578, 611, 610, 579, 580, 612, 579, 612, 611, 580, 581, 613, 580, 613, 612, 581, 582, 614, 581, 614, 613, 582, 583, 615, 582, 615, 614, 583, 584, 616, 583, 616, 615, 584, 585, 617, 584, 617, 616, 585, 586, 618, 585, 618, 617, 586, 587, 619, 586, 619, 618, 587, 588, 620, 587, 620, 619, 588, 589, 621, 588, 621, 620, 589, 590, 622, 589, 622, 621, 590, 591, 623, 590, 623, 622, 591, 592, 624, 591, 624, 623, 592, 593, 625, 592, 625, 624, 593, 594, 626, 593, 626, 625, 594, 595, 627, 594, 627, 626, 595, 596, 628, 595, 628, 627, 596, 597, 629, 596, 629, 628, 597, 598, 630, 597, 630, 629, 598, 599, 631, 598, 631, 630, 599, 600, 632, 599, 632, 631, 600, 601, 633, 600, 633, 632, 601, 602, 634, 601, 634, 633, 602, 603, 635, 602, 635, 634, 603, 604, 636, 603, 636, 635, 604, 605, 637, 604, 637, 636, 605, 606, 638, 605, 638, 637, 606, 607, 639, 606, 639, 638, 608, 609, 641, 608, 641, 640, 609, 610, 642, 609, 642, 641, 610, 611, 643, 610, 643, 642, 611, 612, 644, 611, 644, 643, 612, 613, 645, 612, 645, 644, 613, 614, 646, 613, 646, 645, 614, 615, 647, 614, 647, 646, 615, 616, 648, 615, 648, 647, 616, 617, 649, 616, 649, 648, 617, 618, 650, 617, 650, 649, 618, 619, 651, 618, 651, 650, 619, 620, 652, 619, 652, 651, 620, 621, 653, 620, 653, 652, 621, 622, 654, 621, 654, 653, 622, 623, 655, 622, 655, 654, 623, 624, 656, 623, 656, 655, 624, 625, 657, 624, 657, 656, 625, 626, 658, 625, 658, 657, 626, 627, 659, 626, 659, 658, 627, 628, 660, 627, 660, 659, 628, 629, 661, 628, 661, 660, 629, 630, 662, 629, 662, 661, 630, 631, 663, 630, 663, 662, 631, 632, 664, 631, 664, 663, 632, 633, 665, 632, 665, 664, 633, 634, 666, 633, 666, 665, 634, 635, 667, 634, 667, 666, 635, 636, 668, 635, 668, 667, 636, 637, 669, 636, 669, 668, 637, 638, 670, 637, 670, 669, 638, 639, 671, 638, 671, 670, 640, 641, 673, 640, 673, 672, 641, 642, 674, 641, 674, 673, 642, 643, 675, 642, 675, 674, 643, 644, 676, 643, 676, 675, 644, 645, 677, 644, 677, 676, 645, 646, 678, 645, 678, 677, 646, 647, 679, 646, 679, 678, 647, 648, 680, 647, 680, 679, 648, 649, 681, 648, 681, 680, 649, 650, 682, 649, 682, 681, 650, 651, 683, 650, 683, 682, 651, 652, 684, 651, 684, 683, 652, 653, 685, 652, 685, 684, 653, 654, 686, 653, 686, 685, 654, 655, 687, 654, 687, 686, 655, 656, 688, 655, 688, 687, 656, 657, 689, 656, 689, 688, 657, 658, 690, 657, 690, 689, 658, 659, 691, 658, 691, 690, 659, 660, 692, 659, 692, 691, 660, 661, 693, 660, 693, 692, 661, 662, 694, 661, 694, 693, 662, 663, 695, 662, 695, 694, 663, 664, 696, 663, 696, 695, 664, 665, 697, 664, 697, 696, 665, 666, 698, 665, 698, 697, 666, 667, 699, 666, 699, 698, 667, 668, 700, 667, 700, 699, 668, 669, 701, 668, 701, 700, 669, 670, 702, 669, 702, 701, 670, 671, 703, 670, 703, 702, 672, 673, 705, 672, 705, 704, 673, 674, 706, 673, 706, 705, 674, 675, 707, 674, 707, 706, 675, 676, 708, 675, 708, 707, 676, 677, 709, 676, 709, 708, 677, 678, 710, 677, 710, 709, 678, 679, 711, 678, 711, 710, 679, 680, 712, 679, 712, 711, 680, 681, 713, 680, 713, 712, 681, 682, 714, 681, 714, 713, 682, 683, 715, 682, 715, 714, 683, 684, 716, 683, 716, 715, 684, 685, 717, 684, 717, 716, 685, 686, 718, 685, 718, 717, 686, 687, 719, 686, 719, 718, 687, 688, 720, 687, 720, 719, 688, 689, 721, 688, 721, 720, 689, 690, 722, 689, 722, 721, 690, 691, 723, 690, 723, 722, 691, 692, 724, 691, 724, 723, 692, 693, 725, 692, 725, 724, 693, 694, 726, 693, 726, 725, 694, 695, 727, 694, 727, 726, 695, 696, 728, 695, 728, 727, 696, 697, 729, 696, 729, 728, 697, 698, 730, 697, 730, 729, 698, 699, 731, 698, 731, 730, 699, 700, 732, 699, 732, 731, 700, 701, 733, 700, 733, 732, 701, 702, 734, 701, 734, 733, 702, 703, 735, 702, 735, 734, 704, 705, 737, 704, 737, 736, 705, 706, 738, 705, 738, 737, 706, 707, 739, 706, 739, 738, 707, 708, 740, 707, 740, 739, 708, 709, 741, 708, 741, 740, 709, 710, 742, 709, 742, 741, 710, 711, 743, 710, 743, 742, 711, 712, 744, 711, 744, 743, 712, 713, 745, 712, 745, 744, 713, 714, 746, 713, 746, 745, 714, 715, 747, 714, 747, 746, 715, 716, 748, 715, 748, 747, 716, 717, 749, 716, 749, 748, 717, 718, 750, 717, 750, 749, 718, 719, 751, 718, 751, 750, 719, 720, 752, 719, 752, 751, 720, 721, 753, 720, 753, 752, 721, 722, 754, 721, 754, 753, 722, 723, 755, 722, 755, 754, 723, 724, 756, 723, 756, 755, 724, 725, 757, 724, 757, 756, 725, 726, 758, 725, 758, 757, 726, 727, 759, 726, 759, 758, 727, 728, 760, 727, 760, 759, 728, 729, 761, 728, 761, 760, 729, 730, 762, 729, 762, 761, 730, 731, 763, 730, 763, 762, 731, 732, 764, 731, 764, 763, 732, 733, 765, 732, 765, 764, 733, 734, 766, 733, 766, 765, 734, 735, 767, 734, 767, 766, 736, 737, 769, 736, 769, 768, 737, 738, 770, 737, 770, 769, 738, 739, 771, 738, 771, 770, 739, 740, 772, 739, 772, 771, 740, 741, 773, 740, 773, 772, 741, 742, 774, 741, 774, 773, 742, 743, 775, 742, 775, 774, 743, 744, 776, 743, 776, 775, 744, 745, 777, 744, 777, 776, 745, 746, 778, 745, 778, 777, 746, 747, 779, 746, 779, 778, 747, 748, 780, 747, 780, 779, 748, 749, 781, 748, 781, 780, 749, 750, 782, 749, 782, 781, 750, 751, 783, 750, 783, 782, 751, 752, 784, 751, 784, 783, 752, 753, 785, 752, 785, 784, 753, 754, 786, 753, 786, 785, 754, 755, 787, 754, 787, 786, 755, 756, 788, 755, 788, 787, 756, 757, 789, 756, 789, 788, 757, 758, 790, 757, 790, 789, 758, 759, 791, 758, 791, 790, 759, 760, 792, 759, 792, 791, 760, 761, 793, 760, 793, 792, 761, 762, 794, 761, 794, 793, 762, 763, 795, 762, 795, 794, 763, 764, 796, 763, 796, 795, 764, 765, 797, 764, 797, 796, 765, 766, 798, 765, 798, 797, 766, 767, 799, 766, 799, 798, 768, 769, 801, 768, 801, 800, 769, 770, 802, 769, 802, 801, 770, 771, 803, 770, 803, 802, 771, 772, 804, 771, 804, 803, 772, 773, 805, 772, 805, 804, 773, 774, 806, 773, 806, 805, 774, 775, 807, 774, 807, 806, 775, 776, 808, 775, 808, 807, 776, 777, 809, 776, 809, 808, 777, 778, 810, 777, 810, 809, 778, 779, 811, 778, 811, 810, 779, 780, 812, 779, 812, 811, 780, 781, 813, 780, 813, 812, 781, 782, 814, 781, 814, 813, 782, 783, 815, 782, 815, 814, 783, 784, 816, 783, 816, 815, 784, 785, 817, 784, 817, 816, 785, 786, 818, 785, 818, 817, 786, 787, 819, 786, 819, 818, 787, 788, 820, 787, 820, 819, 788, 789, 821, 788, 821, 820, 789, 790, 822, 789, 822, 821, 790, 791, 823, 790, 823, 822, 791, 792, 824, 791, 824, 823, 792, 793, 825, 792, 825, 824, 793, 794, 826, 793, 826, 825, 794, 795, 827, 794, 827, 826, 795, 796, 828, 795, 828, 827, 796, 797, 829, 796, 829, 828, 797, 798, 830, 797, 830, 829, 798, 799, 831, 798, 831, 830, 800, 801, 833, 800, 833, 832, 801, 802, 834, 801, 834, 833, 802, 803, 835, 802, 835, 834, 803, 804, 836, 803, 836, 835, 804, 805, 837, 804, 837, 836, 805, 806, 838, 805, 838, 837, 806, 807, 839, 806, 839, 838, 807, 808, 840, 807, 840, 839, 808, 809, 841, 808, 841, 840, 809, 810, 842, 809, 842, 841, 810, 811, 843, 810, 843, 842, 811, 812, 844, 811, 844, 843, 812, 813, 845, 812, 845, 844, 813, 814, 846, 813, 846, 845, 814, 815, 847, 814, 847, 846, 815, 816, 848, 815, 848, 847, 816, 817, 849, 816, 849, 848, 817, 818, 850, 817, 850, 849, 818, 819, 851, 818, 851, 850, 819, 820, 852, 819, 852, 851, 820, 821, 853, 820, 853, 852, 821, 822, 854, 821, 854, 853, 822, 823, 855, 822, 855, 854, 823, 824, 856, 823, 856, 855, 824, 825, 857, 824, 857, 856, 825, 826, 858, 825, 858, 857, 826, 827, 859, 826, 859, 858, 827, 828, 860, 827, 860, 859, 828, 829, 861, 828, 861, 860, 829, 830, 862, 829, 862, 861, 830, 831, 863, 830, 863, 862, 832, 833, 865, 832, 865, 864, 833, 834, 866, 833, 866, 865, 834, 835, 867, 834, 867, 866, 835, 836, 868, 835, 868, 867, 836, 837, 869, 836, 869, 868, 837, 838, 870, 837, 870, 869, 838, 839, 871, 838, 871, 870, 839, 840, 872, 839, 872, 871, 840, 841, 873, 840, 873, 872, 841, 842, 874, 841, 874, 873, 842, 843, 875, 842, 875, 874, 843, 844, 876, 843, 876, 875, 844, 845, 877, 844, 877, 876, 845, 846, 878, 845, 878, 877, 846, 847, 879, 846, 879, 878, 847, 848, 880, 847, 880, 879, 848, 849, 881, 848, 881, 880, 849, 850, 882, 849, 882, 881, 850, 851, 883, 850, 883, 882, 851, 852, 884, 851, 884, 883, 852, 853, 885, 852, 885, 884, 853, 854, 886, 853, 886, 885, 854, 855, 887, 854, 887, 886, 855, 856, 888, 855, 888, 887, 856, 857, 889, 856, 889, 888, 857, 858, 890, 857, 890, 889, 858, 859, 891, 858, 891, 890, 859, 860, 892, 859, 892, 891, 860, 861, 893, 860, 893, 892, 861, 862, 894, 861, 894, 893, 862, 863, 895, 862, 895, 894, 864, 865, 897, 864, 897, 896, 865, 866, 898, 865, 898, 897, 866, 867, 899, 866, 899, 898, 867, 868, 900, 867, 900, 899, 868, 869, 901, 868, 901, 900, 869, 870, 902, 869, 902, 901, 870, 871, 903, 870, 903, 902, 871, 872, 904, 871, 904, 903, 872, 873, 905, 872, 905, 904, 873, 874, 906, 873, 906, 905, 874, 875, 907, 874, 907, 906, 875, 876, 908, 875, 908, 907, 876, 877, 909, 876, 909, 908, 877, 878, 910, 877, 910, 909, 878, 879, 911, 878, 911, 910, 879, 880, 912, 879, 912, 911, 880, 881, 913, 880, 913, 912, 881, 882, 914, 881, 914, 913, 882, 883, 915, 882, 915, 914, 883, 884, 916, 883, 916, 915, 884, 885, 917, 884, 917, 916, 885, 886, 918, 885, 918, 917, 886, 887, 919, 886, 919, 918, 887, 888, 920, 887, 920, 919, 888, 889, 921, 888, 921, 920, 889, 890, 922, 889, 922, 921, 890, 891, 923, 890, 923, 922, 891, 892, 924, 891, 924, 923, 892, 893, 925, 892, 925, 924, 893, 894, 926, 893, 926, 925, 894, 895, 927, 894, 927, 926, 896, 897, 929, 896, 929, 928, 897, 898, 930, 897, 930, 929, 898, 899, 931, 898, 931, 930, 899, 900, 932, 899, 932, 931, 900, 901, 933, 900, 933, 932, 901, 902, 934, 901, 934, 933, 902, 903, 935, 902, 935, 934, 903, 904, 936, 903, 936, 935, 904, 905, 937, 904, 937, 936, 905, 906, 938, 905, 938, 937, 906, 907, 939, 906, 939, 938, 907, 908, 940, 907, 940, 939, 908, 909, 941, 908, 941, 940, 909, 910, 942, 909, 942, 941, 910, 911, 943, 910, 943, 942, 911, 912, 944, 911, 944, 943, 912, 913, 945, 912, 945, 944, 913, 914, 946, 913, 946, 945, 914, 915, 947, 914, 947, 946, 915, 916, 948, 915, 948, 947, 916, 917, 949, 916, 949, 948, 917, 918, 950, 917, 950, 949, 918, 919, 951, 918, 951, 950, 919, 920, 952, 919, 952, 951, 920, 921, 953, 920, 953, 952, 921, 922, 954, 921, 954, 953, 922, 923, 955, 922, 955, 954, 923, 924, 956, 923, 956, 955, 924, 925, 957, 924, 957, 956, 925, 926, 958, 925, 958, 957, 926, 927, 959, 926, 959, 958, 928, 929, 961, 928, 961, 960, 929, 930, 962, 929, 962, 961, 930, 931, 963, 930, 963, 962, 931, 932, 964, 931, 964, 963, 932, 933, 965, 932, 965, 964, 933, 934, 966, 933, 966, 965, 934, 935, 967, 934, 967, 966, 935, 936, 968, 935, 968, 967, 936, 937, 969, 936, 969, 968, 937, 938, 970, 937, 970, 969, 938, 939, 971, 938, 971, 970, 939, 940, 972, 939, 972, 971, 940, 941, 973, 940, 973, 972, 941, 942, 974, 941, 974, 973, 942, 943, 975, 942, 975, 974, 943, 944, 976, 943, 976, 975, 944, 945, 977, 944, 977, 976, 945, 946, 978, 945, 978, 977, 946, 947, 979, 946, 979, 978, 947, 948, 980, 947, 980, 979, 948, 949, 981, 948, 981, 980, 949, 950, 982, 949, 982, 981, 950, 951, 983, 950, 983, 982, 951, 952, 984, 951, 984, 983, 952, 953, 985, 952, 985, 984, 953, 954, 986, 953, 986, 985, 954, 955, 987, 954, 987, 986, 955, 956, 988, 955, 988, 987, 956, 957, 989, 956, 989, 988, 957, 958, 990, 957, 990, 989, 958, 959, 991, 958, 991, 990, 960, 961, 993, 960, 993, 992, 961, 962, 994, 961, 994, 993, 962, 963, 995, 962, 995, 994, 963, 964, 996, 963, 996, 995, 964, 965, 997, 964, 997, 996, 965, 966, 998, 965, 998, 997, 966, 967, 999, 966, 999, 998, 967, 968, 1000, 967, 1000, 999, 968, 969, 1001, 968, 1001, 1000, 969, 970, 1002, 969, 1002, 1001, 970, 971, 1003, 970, 1003, 1002, 971, 972, 1004, 971, 1004, 1003, 972, 973, 1005, 972, 1005, 1004, 973, 974, 1006, 973, 1006, 1005, 974, 975, 1007, 974, 1007, 1006, 975, 976, 1008, 975, 1008, 1007, 976, 977, 1009, 976, 1009, 1008, 977, 978, 1010, 977, 1010, 1009, 978, 979, 1011, 978, 1011, 1010, 979, 980, 1012, 979, 1012, 1011, 980, 981, 1013, 980, 1013, 1012, 981, 982, 1014, 981, 1014, 1013, 982, 983, 1015, 982, 1015, 1014, 983, 984, 1016, 983, 1016, 1015, 984, 985, 1017, 984, 1017, 1016, 985, 986, 1018, 985, 1018, 1017, 986, 987, 1019, 986, 1019, 1018, 987, 988, 1020, 987, 1020, 1019, 988, 989, 1021, 988, 1021, 1020, 989, 990, 1022, 989, 1022, 1021, 990, 991, 1023, 990, 1023, 1022] color3f[] primvars:displayColor = [(0.784314, 0.64705884, 0.1)] point3f[] points = [(0, 0, 20), (20, 0, 20), (40, 0, 20), (60, 0, 20), (80, 0, 20), (100, 0, 20), (120, 0, 20), (140, 0, 20), (160, 0, 20), (180, 0, 20), (200, 0, 20), (220, 0, 20), (240, 0, 20), (260, 0, 20), (280, 0, 20), (300, 0, 20), (320, 0, 20), (340, 0, 20), (360, 0, 20), (380, 0, 20), (400, 0, 20), (420, 0, 20), (440, 0, 20), (460, 0, 20), (480, 0, 20), (500, 0, 20), (520, 0, 20), (540, 0, 20), (560, 0, 20), (580, 0, 20), (600, 0, 20), (620, 0, 20), (0, 20, 20), (20, 20, 20), (40, 20, 20), (60, 20, 20), (80, 20, 20), (100, 20, 20), (120, 20, 20), (140, 20, 20), (160, 20, 20), (180, 20, 20), (200, 20, 20), (220, 20, 20), (240, 20, 20), (260, 20, 20), (280, 20, 20), (300, 20, 20), (320, 20, 20), (340, 20, 20), (360, 20, 20), (380, 20, 20), (400, 20, 20), (420, 20, 20), (440, 20, 20), (460, 20, 20), (480, 20, 20), (500, 20, 20), (520, 20, 20), (540, 20, 20), (560, 20, 20), (580, 20, 20), (600, 20, 20), (620, 20, 20), (0, 40, 20), (20, 40, 20), (40, 40, 20), (60, 40, 20), (80, 40, 20), (100, 40, 20), (120, 40, 20), (140, 40, 20), (160, 40, 20), (180, 40, 20), (200, 40, 20), (220, 40, 20), (240, 40, 20), (260, 40, 20), (280, 40, 20), (300, 40, 20), (320, 40, 20), (340, 40, 20), (360, 40, 20), (380, 40, 20), (400, 40, 20), (420, 40, 20), (440, 40, 20), (460, 40, 20), (480, 40, 20), (500, 40, 20), (520, 40, 20), (540, 40, 20), (560, 40, 20), (580, 40, 20), (600, 40, 20), (620, 40, 20), (0, 60, 20), (20, 60, 20), (40, 60, 20), (60, 60, 20), (80, 60, 20), (100, 60, 20), (120, 60, 20), (140, 60, 20), (160, 60, 20), (180, 60, 20), (200, 60, 20), (220, 60, 20), (240, 60, 20), (260, 60, 20), (280, 60, 20), (300, 60, 20), (320, 60, 20), (340, 60, 20), (360, 60, 20), (380, 60, 20), (400, 60, 20), (420, 60, 20), (440, 60, 20), (460, 60, 20), (480, 60, 20), (500, 60, 20), (520, 60, 20), (540, 60, 20), (560, 60, 20), (580, 60, 20), (600, 60, 20), (620, 60, 20), (0, 80, 20), (20, 80, 20), (40, 80, 20), (60, 80, 20), (80, 80, 20), (100, 80, 20), (120, 80, 20), (140, 80, 20), (160, 80, 20), (180, 80, 20), (200, 80, 20), (220, 80, 20), (240, 80, 20), (260, 80, 20), (280, 80, 20), (300, 80, 20), (320, 80, 20), (340, 80, 20), (360, 80, 20), (380, 80, 20), (400, 80, 20), (420, 80, 20), (440, 80, 20), (460, 80, 20), (480, 80, 20), (500, 80, 20), (520, 80, 20), (540, 80, 20), (560, 80, 20), (580, 80, 20), (600, 80, 20), (620, 80, 20), (0, 100, 20), (20, 100, 20), (40, 100, 20), (60, 100, 20), (80, 100, 20), (100, 100, 20), (120, 100, 20), (140, 100, 20), (160, 100, 20), (180, 100, 20), (200, 100, 20), (220, 100, 20), (240, 100, 20), (260, 100, 20), (280, 100, 20), (300, 100, 20), (320, 100, 20), (340, 100, 20), (360, 100, 20), (380, 100, 20), (400, 100, 20), (420, 100, 20), (440, 100, 20), (460, 100, 20), (480, 100, 20), (500, 100, 20), (520, 100, 20), (540, 100, 20), (560, 100, 20), (580, 100, 20), (600, 100, 20), (620, 100, 20), (0, 120, 20), (20, 120, 20), (40, 120, 20), (60, 120, 20), (80, 120, 20), (100, 120, 20), (120, 120, 20), (140, 120, 20), (160, 120, 20), (180, 120, 20), (200, 120, 20), (220, 120, 20), (240, 120, 20), (260, 120, 20), (280, 120, 20), (300, 120, 20), (320, 120, 20), (340, 120, 20), (360, 120, 20), (380, 120, 20), (400, 120, 20), (420, 120, 20), (440, 120, 20), (460, 120, 20), (480, 120, 20), (500, 120, 20), (520, 120, 20), (540, 120, 20), (560, 120, 20), (580, 120, 20), (600, 120, 20), (620, 120, 20), (0, 140, 20), (20, 140, 20), (40, 140, 20), (60, 140, 20), (80, 140, 20), (100, 140, 20), (120, 140, 20), (140, 140, 20), (160, 140, 20), (180, 140, 20), (200, 140, 20), (220, 140, 20), (240, 140, 20), (260, 140, 20), (280, 140, 20), (300, 140, 20), (320, 140, 20), (340, 140, 20), (360, 140, 20), (380, 140, 20), (400, 140, 20), (420, 140, 20), (440, 140, 20), (460, 140, 20), (480, 140, 20), (500, 140, 20), (520, 140, 20), (540, 140, 20), (560, 140, 20), (580, 140, 20), (600, 140, 20), (620, 140, 20), (0, 160, 20), (20, 160, 20), (40, 160, 20), (60, 160, 20), (80, 160, 20), (100, 160, 20), (120, 160, 20), (140, 160, 20), (160, 160, 20), (180, 160, 20), (200, 160, 20), (220, 160, 20), (240, 160, 20), (260, 160, 20), (280, 160, 20), (300, 160, 20), (320, 160, 20), (340, 160, 20), (360, 160, 20), (380, 160, 20), (400, 160, 20), (420, 160, 20), (440, 160, 20), (460, 160, 20), (480, 160, 20), (500, 160, 20), (520, 160, 20), (540, 160, 20), (560, 160, 20), (580, 160, 20), (600, 160, 20), (620, 160, 20), (0, 180, 20), (20, 180, 20), (40, 180, 20), (60, 180, 20), (80, 180, 20), (100, 180, 20), (120, 180, 20), (140, 180, 20), (160, 180, 20), (180, 180, 20), (200, 180, 20), (220, 180, 20), (240, 180, 20), (260, 180, 20), (280, 180, 20), (300, 180, 20), (320, 180, 20), (340, 180, 20), (360, 180, 20), (380, 180, 20), (400, 180, 20), (420, 180, 20), (440, 180, 20), (460, 180, 20), (480, 180, 20), (500, 180, 20), (520, 180, 20), (540, 180, 20), (560, 180, 20), (580, 180, 20), (600, 180, 20), (620, 180, 20), (0, 200, 20), (20, 200, 20), (40, 200, 20), (60, 200, 20), (80, 200, 20), (100, 200, 20), (120, 200, 20), (140, 200, 20), (160, 200, 20), (180, 200, 20), (200, 200, 20), (220, 200, 20), (240, 200, 20), (260, 200, 20), (280, 200, 20), (300, 200, 20), (320, 200, 20), (340, 200, 20), (360, 200, 20), (380, 200, 20), (400, 200, 20), (420, 200, 20), (440, 200, 20), (460, 200, 20), (480, 200, 20), (500, 200, 20), (520, 200, 20), (540, 200, 20), (560, 200, 20), (580, 200, 20), (600, 200, 20), (620, 200, 20), (0, 220, 20), (20, 220, 20), (40, 220, 20), (60, 220, 20), (80, 220, 20), (100, 220, 20), (120, 220, 20), (140, 220, 20), (160, 220, 20), (180, 220, 20), (200, 220, 20), (220, 220, 20), (240, 220, 20), (260, 220, 20), (280, 220, 20), (300, 220, 20), (320, 220, 20), (340, 220, 20), (360, 220, 20), (380, 220, 20), (400, 220, 20), (420, 220, 20), (440, 220, 20), (460, 220, 20), (480, 220, 20), (500, 220, 20), (520, 220, 20), (540, 220, 20), (560, 220, 20), (580, 220, 20), (600, 220, 20), (620, 220, 20), (0, 240, 20), (20, 240, 20), (40, 240, 20), (60, 240, 20), (80, 240, 20), (100, 240, 20), (120, 240, 20), (140, 240, 20), (160, 240, 20), (180, 240, 20), (200, 240, 20), (220, 240, 20), (240, 240, 20), (260, 240, 20), (280, 240, 20), (300, 240, 20), (320, 240, 20), (340, 240, 20), (360, 240, 20), (380, 240, 20), (400, 240, 20), (420, 240, 20), (440, 240, 20), (460, 240, 20), (480, 240, 20), (500, 240, 20), (520, 240, 20), (540, 240, 20), (560, 240, 20), (580, 240, 20), (600, 240, 20), (620, 240, 20), (0, 260, 20), (20, 260, 20), (40, 260, 20), (60, 260, 20), (80, 260, 20), (100, 260, 20), (120, 260, 20), (140, 260, 20), (160, 260, 20), (180, 260, 20), (200, 260, 20), (220, 260, 20), (240, 260, 20), (260, 260, 20), (280, 260, 20), (300, 260, 20), (320, 260, 20), (340, 260, 20), (360, 260, 20), (380, 260, 20), (400, 260, 20), (420, 260, 20), (440, 260, 20), (460, 260, 20), (480, 260, 20), (500, 260, 20), (520, 260, 20), (540, 260, 20), (560, 260, 20), (580, 260, 20), (600, 260, 20), (620, 260, 20), (0, 280, 20), (20, 280, 20), (40, 280, 20), (60, 280, 20), (80, 280, 20), (100, 280, 20), (120, 280, 20), (140, 280, 20), (160, 280, 20), (180, 280, 20), (200, 280, 20), (220, 280, 20), (240, 280, 20), (260, 280, 20), (280, 280, 20), (300, 280, 20), (320, 280, 20), (340, 280, 20), (360, 280, 20), (380, 280, 20), (400, 280, 20), (420, 280, 20), (440, 280, 20), (460, 280, 20), (480, 280, 20), (500, 280, 20), (520, 280, 20), (540, 280, 20), (560, 280, 20), (580, 280, 20), (600, 280, 20), (620, 280, 20), (0, 300, 20), (20, 300, 20), (40, 300, 20), (60, 300, 20), (80, 300, 20), (100, 300, 20), (120, 300, 20), (140, 300, 20), (160, 300, 20), (180, 300, 20), (200, 300, 20), (220, 300, 20), (240, 300, 20), (260, 300, 20), (280, 300, 20), (300, 300, 20), (320, 300, 20), (340, 300, 20), (360, 300, 20), (380, 300, 20), (400, 300, 20), (420, 300, 20), (440, 300, 20), (460, 300, 20), (480, 300, 20), (500, 300, 20), (520, 300, 20), (540, 300, 20), (560, 300, 20), (580, 300, 20), (600, 300, 20), (620, 300, 20), (0, 320, 20), (20, 320, 20), (40, 320, 20), (60, 320, 20), (80, 320, 20), (100, 320, 20), (120, 320, 20), (140, 320, 20), (160, 320, 20), (180, 320, 20), (200, 320, 20), (220, 320, 20), (240, 320, 20), (260, 320, 20), (280, 320, 20), (300, 320, 20), (320, 320, 20), (340, 320, 20), (360, 320, 20), (380, 320, 20), (400, 320, 20), (420, 320, 20), (440, 320, 20), (460, 320, 20), (480, 320, 20), (500, 320, 20), (520, 320, 20), (540, 320, 20), (560, 320, 20), (580, 320, 20), (600, 320, 20), (620, 320, 20), (0, 340, 20), (20, 340, 20), (40, 340, 20), (60, 340, 20), (80, 340, 20), (100, 340, 20), (120, 340, 20), (140, 340, 20), (160, 340, 20), (180, 340, 20), (200, 340, 20), (220, 340, 20), (240, 340, 20), (260, 340, 20), (280, 340, 20), (300, 340, 20), (320, 340, 20), (340, 340, 20), (360, 340, 20), (380, 340, 20), (400, 340, 20), (420, 340, 20), (440, 340, 20), (460, 340, 20), (480, 340, 20), (500, 340, 20), (520, 340, 20), (540, 340, 20), (560, 340, 20), (580, 340, 20), (600, 340, 20), (620, 340, 20), (0, 360, 20), (20, 360, 20), (40, 360, 20), (60, 360, 20), (80, 360, 20), (100, 360, 20), (120, 360, 20), (140, 360, 20), (160, 360, 20), (180, 360, 20), (200, 360, 20), (220, 360, 20), (240, 360, 20), (260, 360, 20), (280, 360, 20), (300, 360, 20), (320, 360, 20), (340, 360, 20), (360, 360, 20), (380, 360, 20), (400, 360, 20), (420, 360, 20), (440, 360, 20), (460, 360, 20), (480, 360, 20), (500, 360, 20), (520, 360, 20), (540, 360, 20), (560, 360, 20), (580, 360, 20), (600, 360, 20), (620, 360, 20), (0, 380, 20), (20, 380, 20), (40, 380, 20), (60, 380, 20), (80, 380, 20), (100, 380, 20), (120, 380, 20), (140, 380, 20), (160, 380, 20), (180, 380, 20), (200, 380, 20), (220, 380, 20), (240, 380, 20), (260, 380, 20), (280, 380, 20), (300, 380, 20), (320, 380, 20), (340, 380, 20), (360, 380, 20), (380, 380, 20), (400, 380, 20), (420, 380, 20), (440, 380, 20), (460, 380, 20), (480, 380, 20), (500, 380, 20), (520, 380, 20), (540, 380, 20), (560, 380, 20), (580, 380, 20), (600, 380, 20), (620, 380, 20), (0, 400, 20), (20, 400, 20), (40, 400, 20), (60, 400, 20), (80, 400, 20), (100, 400, 20), (120, 400, 20), (140, 400, 20), (160, 400, 20), (180, 400, 20), (200, 400, 20), (220, 400, 20), (240, 400, 20), (260, 400, 20), (280, 400, 20), (300, 400, 20), (320, 400, 20), (340, 400, 20), (360, 400, 20), (380, 400, 20), (400, 400, 20), (420, 400, 20), (440, 400, 20), (460, 400, 20), (480, 400, 20), (500, 400, 20), (520, 400, 20), (540, 400, 20), (560, 400, 20), (580, 400, 20), (600, 400, 20), (620, 400, 20), (0, 420, 20), (20, 420, 20), (40, 420, 20), (60, 420, 20), (80, 420, 20), (100, 420, 20), (120, 420, 20), (140, 420, 20), (160, 420, 20), (180, 420, 20), (200, 420, 20), (220, 420, 20), (240, 420, 20), (260, 420, 20), (280, 420, 20), (300, 420, 20), (320, 420, 20), (340, 420, 20), (360, 420, 20), (380, 420, 20), (400, 420, 20), (420, 420, 20), (440, 420, 20), (460, 420, 20), (480, 420, 20), (500, 420, 20), (520, 420, 20), (540, 420, 20), (560, 420, 20), (580, 420, 20), (600, 420, 20), (620, 420, 20), (0, 440, 20), (20, 440, 20), (40, 440, 20), (60, 440, 20), (80, 440, 20), (100, 440, 20), (120, 440, 20), (140, 440, 20), (160, 440, 20), (180, 440, 20), (200, 440, 20), (220, 440, 20), (240, 440, 20), (260, 440, 20), (280, 440, 20), (300, 440, 20), (320, 440, 20), (340, 440, 20), (360, 440, 20), (380, 440, 20), (400, 440, 20), (420, 440, 20), (440, 440, 20), (460, 440, 20), (480, 440, 20), (500, 440, 20), (520, 440, 20), (540, 440, 20), (560, 440, 20), (580, 440, 20), (600, 440, 20), (620, 440, 20), (0, 460, 20), (20, 460, 20), (40, 460, 20), (60, 460, 20), (80, 460, 20), (100, 460, 20), (120, 460, 20), (140, 460, 20), (160, 460, 20), (180, 460, 20), (200, 460, 20), (220, 460, 20), (240, 460, 20), (260, 460, 20), (280, 460, 20), (300, 460, 20), (320, 460, 20), (340, 460, 20), (360, 460, 20), (380, 460, 20), (400, 460, 20), (420, 460, 20), (440, 460, 20), (460, 460, 20), (480, 460, 20), (500, 460, 20), (520, 460, 20), (540, 460, 20), (560, 460, 20), (580, 460, 20), (600, 460, 20), (620, 460, 20), (0, 480, 20), (20, 480, 20), (40, 480, 20), (60, 480, 20), (80, 480, 20), (100, 480, 20), (120, 480, 20), (140, 480, 20), (160, 480, 20), (180, 480, 20), (200, 480, 20), (220, 480, 20), (240, 480, 20), (260, 480, 20), (280, 480, 20), (300, 480, 20), (320, 480, 20), (340, 480, 20), (360, 480, 20), (380, 480, 20), (400, 480, 20), (420, 480, 20), (440, 480, 20), (460, 480, 20), (480, 480, 20), (500, 480, 20), (520, 480, 20), (540, 480, 20), (560, 480, 20), (580, 480, 20), (600, 480, 20), (620, 480, 20), (0, 500, 20), (20, 500, 20), (40, 500, 20), (60, 500, 20), (80, 500, 20), (100, 500, 20), (120, 500, 20), (140, 500, 20), (160, 500, 20), (180, 500, 20), (200, 500, 20), (220, 500, 20), (240, 500, 20), (260, 500, 20), (280, 500, 20), (300, 500, 20), (320, 500, 20), (340, 500, 20), (360, 500, 20), (380, 500, 20), (400, 500, 20), (420, 500, 20), (440, 500, 20), (460, 500, 20), (480, 500, 20), (500, 500, 20), (520, 500, 20), (540, 500, 20), (560, 500, 20), (580, 500, 20), (600, 500, 20), (620, 500, 20), (0, 520, 20), (20, 520, 20), (40, 520, 20), (60, 520, 20), (80, 520, 20), (100, 520, 20), (120, 520, 20), (140, 520, 20), (160, 520, 20), (180, 520, 20), (200, 520, 20), (220, 520, 20), (240, 520, 20), (260, 520, 20), (280, 520, 20), (300, 520, 20), (320, 520, 20), (340, 520, 20), (360, 520, 20), (380, 520, 20), (400, 520, 20), (420, 520, 20), (440, 520, 20), (460, 520, 20), (480, 520, 20), (500, 520, 20), (520, 520, 20), (540, 520, 20), (560, 520, 20), (580, 520, 20), (600, 520, 20), (620, 520, 20), (0, 540, 20), (20, 540, 20), (40, 540, 20), (60, 540, 20), (80, 540, 20), (100, 540, 20), (120, 540, 20), (140, 540, 20), (160, 540, 20), (180, 540, 20), (200, 540, 20), (220, 540, 20), (240, 540, 20), (260, 540, 20), (280, 540, 20), (300, 540, 20), (320, 540, 20), (340, 540, 20), (360, 540, 20), (380, 540, 20), (400, 540, 20), (420, 540, 20), (440, 540, 20), (460, 540, 20), (480, 540, 20), (500, 540, 20), (520, 540, 20), (540, 540, 20), (560, 540, 20), (580, 540, 20), (600, 540, 20), (620, 540, 20), (0, 560, 20), (20, 560, 20), (40, 560, 20), (60, 560, 20), (80, 560, 20), (100, 560, 20), (120, 560, 20), (140, 560, 20), (160, 560, 20), (180, 560, 20), (200, 560, 20), (220, 560, 20), (240, 560, 20), (260, 560, 20), (280, 560, 20), (300, 560, 20), (320, 560, 20), (340, 560, 20), (360, 560, 20), (380, 560, 20), (400, 560, 20), (420, 560, 20), (440, 560, 20), (460, 560, 20), (480, 560, 20), (500, 560, 20), (520, 560, 20), (540, 560, 20), (560, 560, 20), (580, 560, 20), (600, 560, 20), (620, 560, 20), (0, 580, 20), (20, 580, 20), (40, 580, 20), (60, 580, 20), (80, 580, 20), (100, 580, 20), (120, 580, 20), (140, 580, 20), (160, 580, 20), (180, 580, 20), (200, 580, 20), (220, 580, 20), (240, 580, 20), (260, 580, 20), (280, 580, 20), (300, 580, 20), (320, 580, 20), (340, 580, 20), (360, 580, 20), (380, 580, 20), (400, 580, 20), (420, 580, 20), (440, 580, 20), (460, 580, 20), (480, 580, 20), (500, 580, 20), (520, 580, 20), (540, 580, 20), (560, 580, 20), (580, 580, 20), (600, 580, 20), (620, 580, 20), (0, 600, 20), (20, 600, 20), (40, 600, 20), (60, 600, 20), (80, 600, 20), (100, 600, 20), (120, 600, 20), (140, 600, 20), (160, 600, 20), (180, 600, 20), (200, 600, 20), (220, 600, 20), (240, 600, 20), (260, 600, 20), (280, 600, 20), (300, 600, 20), (320, 600, 20), (340, 600, 20), (360, 600, 20), (380, 600, 20), (400, 600, 20), (420, 600, 20), (440, 600, 20), (460, 600, 20), (480, 600, 20), (500, 600, 20), (520, 600, 20), (540, 600, 20), (560, 600, 20), (580, 600, 20), (600, 600, 20), (620, 600, 20), (0, 620, 20), (20, 620, 20), (40, 620, 20), (60, 620, 20), (80, 620, 20), (100, 620, 20), (120, 620, 20), (140, 620, 20), (160, 620, 20), (180, 620, 20), (200, 620, 20), (220, 620, 20), (240, 620, 20), (260, 620, 20), (280, 620, 20), (300, 620, 20), (320, 620, 20), (340, 620, 20), (360, 620, 20), (380, 620, 20), (400, 620, 20), (420, 620, 20), (440, 620, 20), (460, 620, 20), (480, 620, 20), (500, 620, 20), (520, 620, 20), (540, 620, 20), (560, 620, 20), (580, 620, 20), (600, 620, 20), (620, 620, 20)] point3f[] points.connect = </defaultPrim/innerPullGraph/deformer3.outputs:points> } }
omniverse-code/kit/exts/omni.graph/data/ExampleGridDeformerPython.usda
#usda 1.0 ( doc = """Generated from Composed Stage of root layer """ ) def Xform "defaultPrim" { def Mesh "inputGrid" { uniform bool doubleSided = 1 int[] faceVertexCounts = [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 1, 33, 0, 33, 32, 1, 2, 34, 1, 34, 33, 2, 3, 35, 2, 35, 34, 3, 4, 36, 3, 36, 35, 4, 5, 37, 4, 37, 36, 5, 6, 38, 5, 38, 37, 6, 7, 39, 6, 39, 38, 7, 8, 40, 7, 40, 39, 8, 9, 41, 8, 41, 40, 9, 10, 42, 9, 42, 41, 10, 11, 43, 10, 43, 42, 11, 12, 44, 11, 44, 43, 12, 13, 45, 12, 45, 44, 13, 14, 46, 13, 46, 45, 14, 15, 47, 14, 47, 46, 15, 16, 48, 15, 48, 47, 16, 17, 49, 16, 49, 48, 17, 18, 50, 17, 50, 49, 18, 19, 51, 18, 51, 50, 19, 20, 52, 19, 52, 51, 20, 21, 53, 20, 53, 52, 21, 22, 54, 21, 54, 53, 22, 23, 55, 22, 55, 54, 23, 24, 56, 23, 56, 55, 24, 25, 57, 24, 57, 56, 25, 26, 58, 25, 58, 57, 26, 27, 59, 26, 59, 58, 27, 28, 60, 27, 60, 59, 28, 29, 61, 28, 61, 60, 29, 30, 62, 29, 62, 61, 30, 31, 63, 30, 63, 62, 32, 33, 65, 32, 65, 64, 33, 34, 66, 33, 66, 65, 34, 35, 67, 34, 67, 66, 35, 36, 68, 35, 68, 67, 36, 37, 69, 36, 69, 68, 37, 38, 70, 37, 70, 69, 38, 39, 71, 38, 71, 70, 39, 40, 72, 39, 72, 71, 40, 41, 73, 40, 73, 72, 41, 42, 74, 41, 74, 73, 42, 43, 75, 42, 75, 74, 43, 44, 76, 43, 76, 75, 44, 45, 77, 44, 77, 76, 45, 46, 78, 45, 78, 77, 46, 47, 79, 46, 79, 78, 47, 48, 80, 47, 80, 79, 48, 49, 81, 48, 81, 80, 49, 50, 82, 49, 82, 81, 50, 51, 83, 50, 83, 82, 51, 52, 84, 51, 84, 83, 52, 53, 85, 52, 85, 84, 53, 54, 86, 53, 86, 85, 54, 55, 87, 54, 87, 86, 55, 56, 88, 55, 88, 87, 56, 57, 89, 56, 89, 88, 57, 58, 90, 57, 90, 89, 58, 59, 91, 58, 91, 90, 59, 60, 92, 59, 92, 91, 60, 61, 93, 60, 93, 92, 61, 62, 94, 61, 94, 93, 62, 63, 95, 62, 95, 94, 64, 65, 97, 64, 97, 96, 65, 66, 98, 65, 98, 97, 66, 67, 99, 66, 99, 98, 67, 68, 100, 67, 100, 99, 68, 69, 101, 68, 101, 100, 69, 70, 102, 69, 102, 101, 70, 71, 103, 70, 103, 102, 71, 72, 104, 71, 104, 103, 72, 73, 105, 72, 105, 104, 73, 74, 106, 73, 106, 105, 74, 75, 107, 74, 107, 106, 75, 76, 108, 75, 108, 107, 76, 77, 109, 76, 109, 108, 77, 78, 110, 77, 110, 109, 78, 79, 111, 78, 111, 110, 79, 80, 112, 79, 112, 111, 80, 81, 113, 80, 113, 112, 81, 82, 114, 81, 114, 113, 82, 83, 115, 82, 115, 114, 83, 84, 116, 83, 116, 115, 84, 85, 117, 84, 117, 116, 85, 86, 118, 85, 118, 117, 86, 87, 119, 86, 119, 118, 87, 88, 120, 87, 120, 119, 88, 89, 121, 88, 121, 120, 89, 90, 122, 89, 122, 121, 90, 91, 123, 90, 123, 122, 91, 92, 124, 91, 124, 123, 92, 93, 125, 92, 125, 124, 93, 94, 126, 93, 126, 125, 94, 95, 127, 94, 127, 126, 96, 97, 129, 96, 129, 128, 97, 98, 130, 97, 130, 129, 98, 99, 131, 98, 131, 130, 99, 100, 132, 99, 132, 131, 100, 101, 133, 100, 133, 132, 101, 102, 134, 101, 134, 133, 102, 103, 135, 102, 135, 134, 103, 104, 136, 103, 136, 135, 104, 105, 137, 104, 137, 136, 105, 106, 138, 105, 138, 137, 106, 107, 139, 106, 139, 138, 107, 108, 140, 107, 140, 139, 108, 109, 141, 108, 141, 140, 109, 110, 142, 109, 142, 141, 110, 111, 143, 110, 143, 142, 111, 112, 144, 111, 144, 143, 112, 113, 145, 112, 145, 144, 113, 114, 146, 113, 146, 145, 114, 115, 147, 114, 147, 146, 115, 116, 148, 115, 148, 147, 116, 117, 149, 116, 149, 148, 117, 118, 150, 117, 150, 149, 118, 119, 151, 118, 151, 150, 119, 120, 152, 119, 152, 151, 120, 121, 153, 120, 153, 152, 121, 122, 154, 121, 154, 153, 122, 123, 155, 122, 155, 154, 123, 124, 156, 123, 156, 155, 124, 125, 157, 124, 157, 156, 125, 126, 158, 125, 158, 157, 126, 127, 159, 126, 159, 158, 128, 129, 161, 128, 161, 160, 129, 130, 162, 129, 162, 161, 130, 131, 163, 130, 163, 162, 131, 132, 164, 131, 164, 163, 132, 133, 165, 132, 165, 164, 133, 134, 166, 133, 166, 165, 134, 135, 167, 134, 167, 166, 135, 136, 168, 135, 168, 167, 136, 137, 169, 136, 169, 168, 137, 138, 170, 137, 170, 169, 138, 139, 171, 138, 171, 170, 139, 140, 172, 139, 172, 171, 140, 141, 173, 140, 173, 172, 141, 142, 174, 141, 174, 173, 142, 143, 175, 142, 175, 174, 143, 144, 176, 143, 176, 175, 144, 145, 177, 144, 177, 176, 145, 146, 178, 145, 178, 177, 146, 147, 179, 146, 179, 178, 147, 148, 180, 147, 180, 179, 148, 149, 181, 148, 181, 180, 149, 150, 182, 149, 182, 181, 150, 151, 183, 150, 183, 182, 151, 152, 184, 151, 184, 183, 152, 153, 185, 152, 185, 184, 153, 154, 186, 153, 186, 185, 154, 155, 187, 154, 187, 186, 155, 156, 188, 155, 188, 187, 156, 157, 189, 156, 189, 188, 157, 158, 190, 157, 190, 189, 158, 159, 191, 158, 191, 190, 160, 161, 193, 160, 193, 192, 161, 162, 194, 161, 194, 193, 162, 163, 195, 162, 195, 194, 163, 164, 196, 163, 196, 195, 164, 165, 197, 164, 197, 196, 165, 166, 198, 165, 198, 197, 166, 167, 199, 166, 199, 198, 167, 168, 200, 167, 200, 199, 168, 169, 201, 168, 201, 200, 169, 170, 202, 169, 202, 201, 170, 171, 203, 170, 203, 202, 171, 172, 204, 171, 204, 203, 172, 173, 205, 172, 205, 204, 173, 174, 206, 173, 206, 205, 174, 175, 207, 174, 207, 206, 175, 176, 208, 175, 208, 207, 176, 177, 209, 176, 209, 208, 177, 178, 210, 177, 210, 209, 178, 179, 211, 178, 211, 210, 179, 180, 212, 179, 212, 211, 180, 181, 213, 180, 213, 212, 181, 182, 214, 181, 214, 213, 182, 183, 215, 182, 215, 214, 183, 184, 216, 183, 216, 215, 184, 185, 217, 184, 217, 216, 185, 186, 218, 185, 218, 217, 186, 187, 219, 186, 219, 218, 187, 188, 220, 187, 220, 219, 188, 189, 221, 188, 221, 220, 189, 190, 222, 189, 222, 221, 190, 191, 223, 190, 223, 222, 192, 193, 225, 192, 225, 224, 193, 194, 226, 193, 226, 225, 194, 195, 227, 194, 227, 226, 195, 196, 228, 195, 228, 227, 196, 197, 229, 196, 229, 228, 197, 198, 230, 197, 230, 229, 198, 199, 231, 198, 231, 230, 199, 200, 232, 199, 232, 231, 200, 201, 233, 200, 233, 232, 201, 202, 234, 201, 234, 233, 202, 203, 235, 202, 235, 234, 203, 204, 236, 203, 236, 235, 204, 205, 237, 204, 237, 236, 205, 206, 238, 205, 238, 237, 206, 207, 239, 206, 239, 238, 207, 208, 240, 207, 240, 239, 208, 209, 241, 208, 241, 240, 209, 210, 242, 209, 242, 241, 210, 211, 243, 210, 243, 242, 211, 212, 244, 211, 244, 243, 212, 213, 245, 212, 245, 244, 213, 214, 246, 213, 246, 245, 214, 215, 247, 214, 247, 246, 215, 216, 248, 215, 248, 247, 216, 217, 249, 216, 249, 248, 217, 218, 250, 217, 250, 249, 218, 219, 251, 218, 251, 250, 219, 220, 252, 219, 252, 251, 220, 221, 253, 220, 253, 252, 221, 222, 254, 221, 254, 253, 222, 223, 255, 222, 255, 254, 224, 225, 257, 224, 257, 256, 225, 226, 258, 225, 258, 257, 226, 227, 259, 226, 259, 258, 227, 228, 260, 227, 260, 259, 228, 229, 261, 228, 261, 260, 229, 230, 262, 229, 262, 261, 230, 231, 263, 230, 263, 262, 231, 232, 264, 231, 264, 263, 232, 233, 265, 232, 265, 264, 233, 234, 266, 233, 266, 265, 234, 235, 267, 234, 267, 266, 235, 236, 268, 235, 268, 267, 236, 237, 269, 236, 269, 268, 237, 238, 270, 237, 270, 269, 238, 239, 271, 238, 271, 270, 239, 240, 272, 239, 272, 271, 240, 241, 273, 240, 273, 272, 241, 242, 274, 241, 274, 273, 242, 243, 275, 242, 275, 274, 243, 244, 276, 243, 276, 275, 244, 245, 277, 244, 277, 276, 245, 246, 278, 245, 278, 277, 246, 247, 279, 246, 279, 278, 247, 248, 280, 247, 280, 279, 248, 249, 281, 248, 281, 280, 249, 250, 282, 249, 282, 281, 250, 251, 283, 250, 283, 282, 251, 252, 284, 251, 284, 283, 252, 253, 285, 252, 285, 284, 253, 254, 286, 253, 286, 285, 254, 255, 287, 254, 287, 286, 256, 257, 289, 256, 289, 288, 257, 258, 290, 257, 290, 289, 258, 259, 291, 258, 291, 290, 259, 260, 292, 259, 292, 291, 260, 261, 293, 260, 293, 292, 261, 262, 294, 261, 294, 293, 262, 263, 295, 262, 295, 294, 263, 264, 296, 263, 296, 295, 264, 265, 297, 264, 297, 296, 265, 266, 298, 265, 298, 297, 266, 267, 299, 266, 299, 298, 267, 268, 300, 267, 300, 299, 268, 269, 301, 268, 301, 300, 269, 270, 302, 269, 302, 301, 270, 271, 303, 270, 303, 302, 271, 272, 304, 271, 304, 303, 272, 273, 305, 272, 305, 304, 273, 274, 306, 273, 306, 305, 274, 275, 307, 274, 307, 306, 275, 276, 308, 275, 308, 307, 276, 277, 309, 276, 309, 308, 277, 278, 310, 277, 310, 309, 278, 279, 311, 278, 311, 310, 279, 280, 312, 279, 312, 311, 280, 281, 313, 280, 313, 312, 281, 282, 314, 281, 314, 313, 282, 283, 315, 282, 315, 314, 283, 284, 316, 283, 316, 315, 284, 285, 317, 284, 317, 316, 285, 286, 318, 285, 318, 317, 286, 287, 319, 286, 319, 318, 288, 289, 321, 288, 321, 320, 289, 290, 322, 289, 322, 321, 290, 291, 323, 290, 323, 322, 291, 292, 324, 291, 324, 323, 292, 293, 325, 292, 325, 324, 293, 294, 326, 293, 326, 325, 294, 295, 327, 294, 327, 326, 295, 296, 328, 295, 328, 327, 296, 297, 329, 296, 329, 328, 297, 298, 330, 297, 330, 329, 298, 299, 331, 298, 331, 330, 299, 300, 332, 299, 332, 331, 300, 301, 333, 300, 333, 332, 301, 302, 334, 301, 334, 333, 302, 303, 335, 302, 335, 334, 303, 304, 336, 303, 336, 335, 304, 305, 337, 304, 337, 336, 305, 306, 338, 305, 338, 337, 306, 307, 339, 306, 339, 338, 307, 308, 340, 307, 340, 339, 308, 309, 341, 308, 341, 340, 309, 310, 342, 309, 342, 341, 310, 311, 343, 310, 343, 342, 311, 312, 344, 311, 344, 343, 312, 313, 345, 312, 345, 344, 313, 314, 346, 313, 346, 345, 314, 315, 347, 314, 347, 346, 315, 316, 348, 315, 348, 347, 316, 317, 349, 316, 349, 348, 317, 318, 350, 317, 350, 349, 318, 319, 351, 318, 351, 350, 320, 321, 353, 320, 353, 352, 321, 322, 354, 321, 354, 353, 322, 323, 355, 322, 355, 354, 323, 324, 356, 323, 356, 355, 324, 325, 357, 324, 357, 356, 325, 326, 358, 325, 358, 357, 326, 327, 359, 326, 359, 358, 327, 328, 360, 327, 360, 359, 328, 329, 361, 328, 361, 360, 329, 330, 362, 329, 362, 361, 330, 331, 363, 330, 363, 362, 331, 332, 364, 331, 364, 363, 332, 333, 365, 332, 365, 364, 333, 334, 366, 333, 366, 365, 334, 335, 367, 334, 367, 366, 335, 336, 368, 335, 368, 367, 336, 337, 369, 336, 369, 368, 337, 338, 370, 337, 370, 369, 338, 339, 371, 338, 371, 370, 339, 340, 372, 339, 372, 371, 340, 341, 373, 340, 373, 372, 341, 342, 374, 341, 374, 373, 342, 343, 375, 342, 375, 374, 343, 344, 376, 343, 376, 375, 344, 345, 377, 344, 377, 376, 345, 346, 378, 345, 378, 377, 346, 347, 379, 346, 379, 378, 347, 348, 380, 347, 380, 379, 348, 349, 381, 348, 381, 380, 349, 350, 382, 349, 382, 381, 350, 351, 383, 350, 383, 382, 352, 353, 385, 352, 385, 384, 353, 354, 386, 353, 386, 385, 354, 355, 387, 354, 387, 386, 355, 356, 388, 355, 388, 387, 356, 357, 389, 356, 389, 388, 357, 358, 390, 357, 390, 389, 358, 359, 391, 358, 391, 390, 359, 360, 392, 359, 392, 391, 360, 361, 393, 360, 393, 392, 361, 362, 394, 361, 394, 393, 362, 363, 395, 362, 395, 394, 363, 364, 396, 363, 396, 395, 364, 365, 397, 364, 397, 396, 365, 366, 398, 365, 398, 397, 366, 367, 399, 366, 399, 398, 367, 368, 400, 367, 400, 399, 368, 369, 401, 368, 401, 400, 369, 370, 402, 369, 402, 401, 370, 371, 403, 370, 403, 402, 371, 372, 404, 371, 404, 403, 372, 373, 405, 372, 405, 404, 373, 374, 406, 373, 406, 405, 374, 375, 407, 374, 407, 406, 375, 376, 408, 375, 408, 407, 376, 377, 409, 376, 409, 408, 377, 378, 410, 377, 410, 409, 378, 379, 411, 378, 411, 410, 379, 380, 412, 379, 412, 411, 380, 381, 413, 380, 413, 412, 381, 382, 414, 381, 414, 413, 382, 383, 415, 382, 415, 414, 384, 385, 417, 384, 417, 416, 385, 386, 418, 385, 418, 417, 386, 387, 419, 386, 419, 418, 387, 388, 420, 387, 420, 419, 388, 389, 421, 388, 421, 420, 389, 390, 422, 389, 422, 421, 390, 391, 423, 390, 423, 422, 391, 392, 424, 391, 424, 423, 392, 393, 425, 392, 425, 424, 393, 394, 426, 393, 426, 425, 394, 395, 427, 394, 427, 426, 395, 396, 428, 395, 428, 427, 396, 397, 429, 396, 429, 428, 397, 398, 430, 397, 430, 429, 398, 399, 431, 398, 431, 430, 399, 400, 432, 399, 432, 431, 400, 401, 433, 400, 433, 432, 401, 402, 434, 401, 434, 433, 402, 403, 435, 402, 435, 434, 403, 404, 436, 403, 436, 435, 404, 405, 437, 404, 437, 436, 405, 406, 438, 405, 438, 437, 406, 407, 439, 406, 439, 438, 407, 408, 440, 407, 440, 439, 408, 409, 441, 408, 441, 440, 409, 410, 442, 409, 442, 441, 410, 411, 443, 410, 443, 442, 411, 412, 444, 411, 444, 443, 412, 413, 445, 412, 445, 444, 413, 414, 446, 413, 446, 445, 414, 415, 447, 414, 447, 446, 416, 417, 449, 416, 449, 448, 417, 418, 450, 417, 450, 449, 418, 419, 451, 418, 451, 450, 419, 420, 452, 419, 452, 451, 420, 421, 453, 420, 453, 452, 421, 422, 454, 421, 454, 453, 422, 423, 455, 422, 455, 454, 423, 424, 456, 423, 456, 455, 424, 425, 457, 424, 457, 456, 425, 426, 458, 425, 458, 457, 426, 427, 459, 426, 459, 458, 427, 428, 460, 427, 460, 459, 428, 429, 461, 428, 461, 460, 429, 430, 462, 429, 462, 461, 430, 431, 463, 430, 463, 462, 431, 432, 464, 431, 464, 463, 432, 433, 465, 432, 465, 464, 433, 434, 466, 433, 466, 465, 434, 435, 467, 434, 467, 466, 435, 436, 468, 435, 468, 467, 436, 437, 469, 436, 469, 468, 437, 438, 470, 437, 470, 469, 438, 439, 471, 438, 471, 470, 439, 440, 472, 439, 472, 471, 440, 441, 473, 440, 473, 472, 441, 442, 474, 441, 474, 473, 442, 443, 475, 442, 475, 474, 443, 444, 476, 443, 476, 475, 444, 445, 477, 444, 477, 476, 445, 446, 478, 445, 478, 477, 446, 447, 479, 446, 479, 478, 448, 449, 481, 448, 481, 480, 449, 450, 482, 449, 482, 481, 450, 451, 483, 450, 483, 482, 451, 452, 484, 451, 484, 483, 452, 453, 485, 452, 485, 484, 453, 454, 486, 453, 486, 485, 454, 455, 487, 454, 487, 486, 455, 456, 488, 455, 488, 487, 456, 457, 489, 456, 489, 488, 457, 458, 490, 457, 490, 489, 458, 459, 491, 458, 491, 490, 459, 460, 492, 459, 492, 491, 460, 461, 493, 460, 493, 492, 461, 462, 494, 461, 494, 493, 462, 463, 495, 462, 495, 494, 463, 464, 496, 463, 496, 495, 464, 465, 497, 464, 497, 496, 465, 466, 498, 465, 498, 497, 466, 467, 499, 466, 499, 498, 467, 468, 500, 467, 500, 499, 468, 469, 501, 468, 501, 500, 469, 470, 502, 469, 502, 501, 470, 471, 503, 470, 503, 502, 471, 472, 504, 471, 504, 503, 472, 473, 505, 472, 505, 504, 473, 474, 506, 473, 506, 505, 474, 475, 507, 474, 507, 506, 475, 476, 508, 475, 508, 507, 476, 477, 509, 476, 509, 508, 477, 478, 510, 477, 510, 509, 478, 479, 511, 478, 511, 510, 480, 481, 513, 480, 513, 512, 481, 482, 514, 481, 514, 513, 482, 483, 515, 482, 515, 514, 483, 484, 516, 483, 516, 515, 484, 485, 517, 484, 517, 516, 485, 486, 518, 485, 518, 517, 486, 487, 519, 486, 519, 518, 487, 488, 520, 487, 520, 519, 488, 489, 521, 488, 521, 520, 489, 490, 522, 489, 522, 521, 490, 491, 523, 490, 523, 522, 491, 492, 524, 491, 524, 523, 492, 493, 525, 492, 525, 524, 493, 494, 526, 493, 526, 525, 494, 495, 527, 494, 527, 526, 495, 496, 528, 495, 528, 527, 496, 497, 529, 496, 529, 528, 497, 498, 530, 497, 530, 529, 498, 499, 531, 498, 531, 530, 499, 500, 532, 499, 532, 531, 500, 501, 533, 500, 533, 532, 501, 502, 534, 501, 534, 533, 502, 503, 535, 502, 535, 534, 503, 504, 536, 503, 536, 535, 504, 505, 537, 504, 537, 536, 505, 506, 538, 505, 538, 537, 506, 507, 539, 506, 539, 538, 507, 508, 540, 507, 540, 539, 508, 509, 541, 508, 541, 540, 509, 510, 542, 509, 542, 541, 510, 511, 543, 510, 543, 542, 512, 513, 545, 512, 545, 544, 513, 514, 546, 513, 546, 545, 514, 515, 547, 514, 547, 546, 515, 516, 548, 515, 548, 547, 516, 517, 549, 516, 549, 548, 517, 518, 550, 517, 550, 549, 518, 519, 551, 518, 551, 550, 519, 520, 552, 519, 552, 551, 520, 521, 553, 520, 553, 552, 521, 522, 554, 521, 554, 553, 522, 523, 555, 522, 555, 554, 523, 524, 556, 523, 556, 555, 524, 525, 557, 524, 557, 556, 525, 526, 558, 525, 558, 557, 526, 527, 559, 526, 559, 558, 527, 528, 560, 527, 560, 559, 528, 529, 561, 528, 561, 560, 529, 530, 562, 529, 562, 561, 530, 531, 563, 530, 563, 562, 531, 532, 564, 531, 564, 563, 532, 533, 565, 532, 565, 564, 533, 534, 566, 533, 566, 565, 534, 535, 567, 534, 567, 566, 535, 536, 568, 535, 568, 567, 536, 537, 569, 536, 569, 568, 537, 538, 570, 537, 570, 569, 538, 539, 571, 538, 571, 570, 539, 540, 572, 539, 572, 571, 540, 541, 573, 540, 573, 572, 541, 542, 574, 541, 574, 573, 542, 543, 575, 542, 575, 574, 544, 545, 577, 544, 577, 576, 545, 546, 578, 545, 578, 577, 546, 547, 579, 546, 579, 578, 547, 548, 580, 547, 580, 579, 548, 549, 581, 548, 581, 580, 549, 550, 582, 549, 582, 581, 550, 551, 583, 550, 583, 582, 551, 552, 584, 551, 584, 583, 552, 553, 585, 552, 585, 584, 553, 554, 586, 553, 586, 585, 554, 555, 587, 554, 587, 586, 555, 556, 588, 555, 588, 587, 556, 557, 589, 556, 589, 588, 557, 558, 590, 557, 590, 589, 558, 559, 591, 558, 591, 590, 559, 560, 592, 559, 592, 591, 560, 561, 593, 560, 593, 592, 561, 562, 594, 561, 594, 593, 562, 563, 595, 562, 595, 594, 563, 564, 596, 563, 596, 595, 564, 565, 597, 564, 597, 596, 565, 566, 598, 565, 598, 597, 566, 567, 599, 566, 599, 598, 567, 568, 600, 567, 600, 599, 568, 569, 601, 568, 601, 600, 569, 570, 602, 569, 602, 601, 570, 571, 603, 570, 603, 602, 571, 572, 604, 571, 604, 603, 572, 573, 605, 572, 605, 604, 573, 574, 606, 573, 606, 605, 574, 575, 607, 574, 607, 606, 576, 577, 609, 576, 609, 608, 577, 578, 610, 577, 610, 609, 578, 579, 611, 578, 611, 610, 579, 580, 612, 579, 612, 611, 580, 581, 613, 580, 613, 612, 581, 582, 614, 581, 614, 613, 582, 583, 615, 582, 615, 614, 583, 584, 616, 583, 616, 615, 584, 585, 617, 584, 617, 616, 585, 586, 618, 585, 618, 617, 586, 587, 619, 586, 619, 618, 587, 588, 620, 587, 620, 619, 588, 589, 621, 588, 621, 620, 589, 590, 622, 589, 622, 621, 590, 591, 623, 590, 623, 622, 591, 592, 624, 591, 624, 623, 592, 593, 625, 592, 625, 624, 593, 594, 626, 593, 626, 625, 594, 595, 627, 594, 627, 626, 595, 596, 628, 595, 628, 627, 596, 597, 629, 596, 629, 628, 597, 598, 630, 597, 630, 629, 598, 599, 631, 598, 631, 630, 599, 600, 632, 599, 632, 631, 600, 601, 633, 600, 633, 632, 601, 602, 634, 601, 634, 633, 602, 603, 635, 602, 635, 634, 603, 604, 636, 603, 636, 635, 604, 605, 637, 604, 637, 636, 605, 606, 638, 605, 638, 637, 606, 607, 639, 606, 639, 638, 608, 609, 641, 608, 641, 640, 609, 610, 642, 609, 642, 641, 610, 611, 643, 610, 643, 642, 611, 612, 644, 611, 644, 643, 612, 613, 645, 612, 645, 644, 613, 614, 646, 613, 646, 645, 614, 615, 647, 614, 647, 646, 615, 616, 648, 615, 648, 647, 616, 617, 649, 616, 649, 648, 617, 618, 650, 617, 650, 649, 618, 619, 651, 618, 651, 650, 619, 620, 652, 619, 652, 651, 620, 621, 653, 620, 653, 652, 621, 622, 654, 621, 654, 653, 622, 623, 655, 622, 655, 654, 623, 624, 656, 623, 656, 655, 624, 625, 657, 624, 657, 656, 625, 626, 658, 625, 658, 657, 626, 627, 659, 626, 659, 658, 627, 628, 660, 627, 660, 659, 628, 629, 661, 628, 661, 660, 629, 630, 662, 629, 662, 661, 630, 631, 663, 630, 663, 662, 631, 632, 664, 631, 664, 663, 632, 633, 665, 632, 665, 664, 633, 634, 666, 633, 666, 665, 634, 635, 667, 634, 667, 666, 635, 636, 668, 635, 668, 667, 636, 637, 669, 636, 669, 668, 637, 638, 670, 637, 670, 669, 638, 639, 671, 638, 671, 670, 640, 641, 673, 640, 673, 672, 641, 642, 674, 641, 674, 673, 642, 643, 675, 642, 675, 674, 643, 644, 676, 643, 676, 675, 644, 645, 677, 644, 677, 676, 645, 646, 678, 645, 678, 677, 646, 647, 679, 646, 679, 678, 647, 648, 680, 647, 680, 679, 648, 649, 681, 648, 681, 680, 649, 650, 682, 649, 682, 681, 650, 651, 683, 650, 683, 682, 651, 652, 684, 651, 684, 683, 652, 653, 685, 652, 685, 684, 653, 654, 686, 653, 686, 685, 654, 655, 687, 654, 687, 686, 655, 656, 688, 655, 688, 687, 656, 657, 689, 656, 689, 688, 657, 658, 690, 657, 690, 689, 658, 659, 691, 658, 691, 690, 659, 660, 692, 659, 692, 691, 660, 661, 693, 660, 693, 692, 661, 662, 694, 661, 694, 693, 662, 663, 695, 662, 695, 694, 663, 664, 696, 663, 696, 695, 664, 665, 697, 664, 697, 696, 665, 666, 698, 665, 698, 697, 666, 667, 699, 666, 699, 698, 667, 668, 700, 667, 700, 699, 668, 669, 701, 668, 701, 700, 669, 670, 702, 669, 702, 701, 670, 671, 703, 670, 703, 702, 672, 673, 705, 672, 705, 704, 673, 674, 706, 673, 706, 705, 674, 675, 707, 674, 707, 706, 675, 676, 708, 675, 708, 707, 676, 677, 709, 676, 709, 708, 677, 678, 710, 677, 710, 709, 678, 679, 711, 678, 711, 710, 679, 680, 712, 679, 712, 711, 680, 681, 713, 680, 713, 712, 681, 682, 714, 681, 714, 713, 682, 683, 715, 682, 715, 714, 683, 684, 716, 683, 716, 715, 684, 685, 717, 684, 717, 716, 685, 686, 718, 685, 718, 717, 686, 687, 719, 686, 719, 718, 687, 688, 720, 687, 720, 719, 688, 689, 721, 688, 721, 720, 689, 690, 722, 689, 722, 721, 690, 691, 723, 690, 723, 722, 691, 692, 724, 691, 724, 723, 692, 693, 725, 692, 725, 724, 693, 694, 726, 693, 726, 725, 694, 695, 727, 694, 727, 726, 695, 696, 728, 695, 728, 727, 696, 697, 729, 696, 729, 728, 697, 698, 730, 697, 730, 729, 698, 699, 731, 698, 731, 730, 699, 700, 732, 699, 732, 731, 700, 701, 733, 700, 733, 732, 701, 702, 734, 701, 734, 733, 702, 703, 735, 702, 735, 734, 704, 705, 737, 704, 737, 736, 705, 706, 738, 705, 738, 737, 706, 707, 739, 706, 739, 738, 707, 708, 740, 707, 740, 739, 708, 709, 741, 708, 741, 740, 709, 710, 742, 709, 742, 741, 710, 711, 743, 710, 743, 742, 711, 712, 744, 711, 744, 743, 712, 713, 745, 712, 745, 744, 713, 714, 746, 713, 746, 745, 714, 715, 747, 714, 747, 746, 715, 716, 748, 715, 748, 747, 716, 717, 749, 716, 749, 748, 717, 718, 750, 717, 750, 749, 718, 719, 751, 718, 751, 750, 719, 720, 752, 719, 752, 751, 720, 721, 753, 720, 753, 752, 721, 722, 754, 721, 754, 753, 722, 723, 755, 722, 755, 754, 723, 724, 756, 723, 756, 755, 724, 725, 757, 724, 757, 756, 725, 726, 758, 725, 758, 757, 726, 727, 759, 726, 759, 758, 727, 728, 760, 727, 760, 759, 728, 729, 761, 728, 761, 760, 729, 730, 762, 729, 762, 761, 730, 731, 763, 730, 763, 762, 731, 732, 764, 731, 764, 763, 732, 733, 765, 732, 765, 764, 733, 734, 766, 733, 766, 765, 734, 735, 767, 734, 767, 766, 736, 737, 769, 736, 769, 768, 737, 738, 770, 737, 770, 769, 738, 739, 771, 738, 771, 770, 739, 740, 772, 739, 772, 771, 740, 741, 773, 740, 773, 772, 741, 742, 774, 741, 774, 773, 742, 743, 775, 742, 775, 774, 743, 744, 776, 743, 776, 775, 744, 745, 777, 744, 777, 776, 745, 746, 778, 745, 778, 777, 746, 747, 779, 746, 779, 778, 747, 748, 780, 747, 780, 779, 748, 749, 781, 748, 781, 780, 749, 750, 782, 749, 782, 781, 750, 751, 783, 750, 783, 782, 751, 752, 784, 751, 784, 783, 752, 753, 785, 752, 785, 784, 753, 754, 786, 753, 786, 785, 754, 755, 787, 754, 787, 786, 755, 756, 788, 755, 788, 787, 756, 757, 789, 756, 789, 788, 757, 758, 790, 757, 790, 789, 758, 759, 791, 758, 791, 790, 759, 760, 792, 759, 792, 791, 760, 761, 793, 760, 793, 792, 761, 762, 794, 761, 794, 793, 762, 763, 795, 762, 795, 794, 763, 764, 796, 763, 796, 795, 764, 765, 797, 764, 797, 796, 765, 766, 798, 765, 798, 797, 766, 767, 799, 766, 799, 798, 768, 769, 801, 768, 801, 800, 769, 770, 802, 769, 802, 801, 770, 771, 803, 770, 803, 802, 771, 772, 804, 771, 804, 803, 772, 773, 805, 772, 805, 804, 773, 774, 806, 773, 806, 805, 774, 775, 807, 774, 807, 806, 775, 776, 808, 775, 808, 807, 776, 777, 809, 776, 809, 808, 777, 778, 810, 777, 810, 809, 778, 779, 811, 778, 811, 810, 779, 780, 812, 779, 812, 811, 780, 781, 813, 780, 813, 812, 781, 782, 814, 781, 814, 813, 782, 783, 815, 782, 815, 814, 783, 784, 816, 783, 816, 815, 784, 785, 817, 784, 817, 816, 785, 786, 818, 785, 818, 817, 786, 787, 819, 786, 819, 818, 787, 788, 820, 787, 820, 819, 788, 789, 821, 788, 821, 820, 789, 790, 822, 789, 822, 821, 790, 791, 823, 790, 823, 822, 791, 792, 824, 791, 824, 823, 792, 793, 825, 792, 825, 824, 793, 794, 826, 793, 826, 825, 794, 795, 827, 794, 827, 826, 795, 796, 828, 795, 828, 827, 796, 797, 829, 796, 829, 828, 797, 798, 830, 797, 830, 829, 798, 799, 831, 798, 831, 830, 800, 801, 833, 800, 833, 832, 801, 802, 834, 801, 834, 833, 802, 803, 835, 802, 835, 834, 803, 804, 836, 803, 836, 835, 804, 805, 837, 804, 837, 836, 805, 806, 838, 805, 838, 837, 806, 807, 839, 806, 839, 838, 807, 808, 840, 807, 840, 839, 808, 809, 841, 808, 841, 840, 809, 810, 842, 809, 842, 841, 810, 811, 843, 810, 843, 842, 811, 812, 844, 811, 844, 843, 812, 813, 845, 812, 845, 844, 813, 814, 846, 813, 846, 845, 814, 815, 847, 814, 847, 846, 815, 816, 848, 815, 848, 847, 816, 817, 849, 816, 849, 848, 817, 818, 850, 817, 850, 849, 818, 819, 851, 818, 851, 850, 819, 820, 852, 819, 852, 851, 820, 821, 853, 820, 853, 852, 821, 822, 854, 821, 854, 853, 822, 823, 855, 822, 855, 854, 823, 824, 856, 823, 856, 855, 824, 825, 857, 824, 857, 856, 825, 826, 858, 825, 858, 857, 826, 827, 859, 826, 859, 858, 827, 828, 860, 827, 860, 859, 828, 829, 861, 828, 861, 860, 829, 830, 862, 829, 862, 861, 830, 831, 863, 830, 863, 862, 832, 833, 865, 832, 865, 864, 833, 834, 866, 833, 866, 865, 834, 835, 867, 834, 867, 866, 835, 836, 868, 835, 868, 867, 836, 837, 869, 836, 869, 868, 837, 838, 870, 837, 870, 869, 838, 839, 871, 838, 871, 870, 839, 840, 872, 839, 872, 871, 840, 841, 873, 840, 873, 872, 841, 842, 874, 841, 874, 873, 842, 843, 875, 842, 875, 874, 843, 844, 876, 843, 876, 875, 844, 845, 877, 844, 877, 876, 845, 846, 878, 845, 878, 877, 846, 847, 879, 846, 879, 878, 847, 848, 880, 847, 880, 879, 848, 849, 881, 848, 881, 880, 849, 850, 882, 849, 882, 881, 850, 851, 883, 850, 883, 882, 851, 852, 884, 851, 884, 883, 852, 853, 885, 852, 885, 884, 853, 854, 886, 853, 886, 885, 854, 855, 887, 854, 887, 886, 855, 856, 888, 855, 888, 887, 856, 857, 889, 856, 889, 888, 857, 858, 890, 857, 890, 889, 858, 859, 891, 858, 891, 890, 859, 860, 892, 859, 892, 891, 860, 861, 893, 860, 893, 892, 861, 862, 894, 861, 894, 893, 862, 863, 895, 862, 895, 894, 864, 865, 897, 864, 897, 896, 865, 866, 898, 865, 898, 897, 866, 867, 899, 866, 899, 898, 867, 868, 900, 867, 900, 899, 868, 869, 901, 868, 901, 900, 869, 870, 902, 869, 902, 901, 870, 871, 903, 870, 903, 902, 871, 872, 904, 871, 904, 903, 872, 873, 905, 872, 905, 904, 873, 874, 906, 873, 906, 905, 874, 875, 907, 874, 907, 906, 875, 876, 908, 875, 908, 907, 876, 877, 909, 876, 909, 908, 877, 878, 910, 877, 910, 909, 878, 879, 911, 878, 911, 910, 879, 880, 912, 879, 912, 911, 880, 881, 913, 880, 913, 912, 881, 882, 914, 881, 914, 913, 882, 883, 915, 882, 915, 914, 883, 884, 916, 883, 916, 915, 884, 885, 917, 884, 917, 916, 885, 886, 918, 885, 918, 917, 886, 887, 919, 886, 919, 918, 887, 888, 920, 887, 920, 919, 888, 889, 921, 888, 921, 920, 889, 890, 922, 889, 922, 921, 890, 891, 923, 890, 923, 922, 891, 892, 924, 891, 924, 923, 892, 893, 925, 892, 925, 924, 893, 894, 926, 893, 926, 925, 894, 895, 927, 894, 927, 926, 896, 897, 929, 896, 929, 928, 897, 898, 930, 897, 930, 929, 898, 899, 931, 898, 931, 930, 899, 900, 932, 899, 932, 931, 900, 901, 933, 900, 933, 932, 901, 902, 934, 901, 934, 933, 902, 903, 935, 902, 935, 934, 903, 904, 936, 903, 936, 935, 904, 905, 937, 904, 937, 936, 905, 906, 938, 905, 938, 937, 906, 907, 939, 906, 939, 938, 907, 908, 940, 907, 940, 939, 908, 909, 941, 908, 941, 940, 909, 910, 942, 909, 942, 941, 910, 911, 943, 910, 943, 942, 911, 912, 944, 911, 944, 943, 912, 913, 945, 912, 945, 944, 913, 914, 946, 913, 946, 945, 914, 915, 947, 914, 947, 946, 915, 916, 948, 915, 948, 947, 916, 917, 949, 916, 949, 948, 917, 918, 950, 917, 950, 949, 918, 919, 951, 918, 951, 950, 919, 920, 952, 919, 952, 951, 920, 921, 953, 920, 953, 952, 921, 922, 954, 921, 954, 953, 922, 923, 955, 922, 955, 954, 923, 924, 956, 923, 956, 955, 924, 925, 957, 924, 957, 956, 925, 926, 958, 925, 958, 957, 926, 927, 959, 926, 959, 958, 928, 929, 961, 928, 961, 960, 929, 930, 962, 929, 962, 961, 930, 931, 963, 930, 963, 962, 931, 932, 964, 931, 964, 963, 932, 933, 965, 932, 965, 964, 933, 934, 966, 933, 966, 965, 934, 935, 967, 934, 967, 966, 935, 936, 968, 935, 968, 967, 936, 937, 969, 936, 969, 968, 937, 938, 970, 937, 970, 969, 938, 939, 971, 938, 971, 970, 939, 940, 972, 939, 972, 971, 940, 941, 973, 940, 973, 972, 941, 942, 974, 941, 974, 973, 942, 943, 975, 942, 975, 974, 943, 944, 976, 943, 976, 975, 944, 945, 977, 944, 977, 976, 945, 946, 978, 945, 978, 977, 946, 947, 979, 946, 979, 978, 947, 948, 980, 947, 980, 979, 948, 949, 981, 948, 981, 980, 949, 950, 982, 949, 982, 981, 950, 951, 983, 950, 983, 982, 951, 952, 984, 951, 984, 983, 952, 953, 985, 952, 985, 984, 953, 954, 986, 953, 986, 985, 954, 955, 987, 954, 987, 986, 955, 956, 988, 955, 988, 987, 956, 957, 989, 956, 989, 988, 957, 958, 990, 957, 990, 989, 958, 959, 991, 958, 991, 990, 960, 961, 993, 960, 993, 992, 961, 962, 994, 961, 994, 993, 962, 963, 995, 962, 995, 994, 963, 964, 996, 963, 996, 995, 964, 965, 997, 964, 997, 996, 965, 966, 998, 965, 998, 997, 966, 967, 999, 966, 999, 998, 967, 968, 1000, 967, 1000, 999, 968, 969, 1001, 968, 1001, 1000, 969, 970, 1002, 969, 1002, 1001, 970, 971, 1003, 970, 1003, 1002, 971, 972, 1004, 971, 1004, 1003, 972, 973, 1005, 972, 1005, 1004, 973, 974, 1006, 973, 1006, 1005, 974, 975, 1007, 974, 1007, 1006, 975, 976, 1008, 975, 1008, 1007, 976, 977, 1009, 976, 1009, 1008, 977, 978, 1010, 977, 1010, 1009, 978, 979, 1011, 978, 1011, 1010, 979, 980, 1012, 979, 1012, 1011, 980, 981, 1013, 980, 1013, 1012, 981, 982, 1014, 981, 1014, 1013, 982, 983, 1015, 982, 1015, 1014, 983, 984, 1016, 983, 1016, 1015, 984, 985, 1017, 984, 1017, 1016, 985, 986, 1018, 985, 1018, 1017, 986, 987, 1019, 986, 1019, 1018, 987, 988, 1020, 987, 1020, 1019, 988, 989, 1021, 988, 1021, 1020, 989, 990, 1022, 989, 1022, 1021, 990, 991, 1023, 990, 1023, 1022] point3f[] points = [(0, 0, 20), (20, 0, 20), (40, 0, 20), (60, 0, 20), (80, 0, 20), (100, 0, 20), (120, 0, 20), (140, 0, 20), (160, 0, 20), (180, 0, 20), (200, 0, 20), (220, 0, 20), (240, 0, 20), (260, 0, 20), (280, 0, 20), (300, 0, 20), (320, 0, 20), (340, 0, 20), (360, 0, 20), (380, 0, 20), (400, 0, 20), (420, 0, 20), (440, 0, 20), (460, 0, 20), (480, 0, 20), (500, 0, 20), (520, 0, 20), (540, 0, 20), (560, 0, 20), (580, 0, 20), (600, 0, 20), (620, 0, 20), (0, 20, 20), (20, 20, 20), (40, 20, 20), (60, 20, 20), (80, 20, 20), (100, 20, 20), (120, 20, 20), (140, 20, 20), (160, 20, 20), (180, 20, 20), (200, 20, 20), (220, 20, 20), (240, 20, 20), (260, 20, 20), (280, 20, 20), (300, 20, 20), (320, 20, 20), (340, 20, 20), (360, 20, 20), (380, 20, 20), (400, 20, 20), (420, 20, 20), (440, 20, 20), (460, 20, 20), (480, 20, 20), (500, 20, 20), (520, 20, 20), (540, 20, 20), (560, 20, 20), (580, 20, 20), (600, 20, 20), (620, 20, 20), (0, 40, 20), (20, 40, 20), (40, 40, 20), (60, 40, 20), (80, 40, 20), (100, 40, 20), (120, 40, 20), (140, 40, 20), (160, 40, 20), (180, 40, 20), (200, 40, 20), (220, 40, 20), (240, 40, 20), (260, 40, 20), (280, 40, 20), (300, 40, 20), (320, 40, 20), (340, 40, 20), (360, 40, 20), (380, 40, 20), (400, 40, 20), (420, 40, 20), (440, 40, 20), (460, 40, 20), (480, 40, 20), (500, 40, 20), (520, 40, 20), (540, 40, 20), (560, 40, 20), (580, 40, 20), (600, 40, 20), (620, 40, 20), (0, 60, 20), (20, 60, 20), (40, 60, 20), (60, 60, 20), (80, 60, 20), (100, 60, 20), (120, 60, 20), (140, 60, 20), (160, 60, 20), (180, 60, 20), (200, 60, 20), (220, 60, 20), (240, 60, 20), (260, 60, 20), (280, 60, 20), (300, 60, 20), (320, 60, 20), (340, 60, 20), (360, 60, 20), (380, 60, 20), (400, 60, 20), (420, 60, 20), (440, 60, 20), (460, 60, 20), (480, 60, 20), (500, 60, 20), (520, 60, 20), (540, 60, 20), (560, 60, 20), (580, 60, 20), (600, 60, 20), (620, 60, 20), (0, 80, 20), (20, 80, 20), (40, 80, 20), (60, 80, 20), (80, 80, 20), (100, 80, 20), (120, 80, 20), (140, 80, 20), (160, 80, 20), (180, 80, 20), (200, 80, 20), (220, 80, 20), (240, 80, 20), (260, 80, 20), (280, 80, 20), (300, 80, 20), (320, 80, 20), (340, 80, 20), (360, 80, 20), (380, 80, 20), (400, 80, 20), (420, 80, 20), (440, 80, 20), (460, 80, 20), (480, 80, 20), (500, 80, 20), (520, 80, 20), (540, 80, 20), (560, 80, 20), (580, 80, 20), (600, 80, 20), (620, 80, 20), (0, 100, 20), (20, 100, 20), (40, 100, 20), (60, 100, 20), (80, 100, 20), (100, 100, 20), (120, 100, 20), (140, 100, 20), (160, 100, 20), (180, 100, 20), (200, 100, 20), (220, 100, 20), (240, 100, 20), (260, 100, 20), (280, 100, 20), (300, 100, 20), (320, 100, 20), (340, 100, 20), (360, 100, 20), (380, 100, 20), (400, 100, 20), (420, 100, 20), (440, 100, 20), (460, 100, 20), (480, 100, 20), (500, 100, 20), (520, 100, 20), (540, 100, 20), (560, 100, 20), (580, 100, 20), (600, 100, 20), (620, 100, 20), (0, 120, 20), (20, 120, 20), (40, 120, 20), (60, 120, 20), (80, 120, 20), (100, 120, 20), (120, 120, 20), (140, 120, 20), (160, 120, 20), (180, 120, 20), (200, 120, 20), (220, 120, 20), (240, 120, 20), (260, 120, 20), (280, 120, 20), (300, 120, 20), (320, 120, 20), (340, 120, 20), (360, 120, 20), (380, 120, 20), (400, 120, 20), (420, 120, 20), (440, 120, 20), (460, 120, 20), (480, 120, 20), (500, 120, 20), (520, 120, 20), (540, 120, 20), (560, 120, 20), (580, 120, 20), (600, 120, 20), (620, 120, 20), (0, 140, 20), (20, 140, 20), (40, 140, 20), (60, 140, 20), (80, 140, 20), (100, 140, 20), (120, 140, 20), (140, 140, 20), (160, 140, 20), (180, 140, 20), (200, 140, 20), (220, 140, 20), (240, 140, 20), (260, 140, 20), (280, 140, 20), (300, 140, 20), (320, 140, 20), (340, 140, 20), (360, 140, 20), (380, 140, 20), (400, 140, 20), (420, 140, 20), (440, 140, 20), (460, 140, 20), (480, 140, 20), (500, 140, 20), (520, 140, 20), (540, 140, 20), (560, 140, 20), (580, 140, 20), (600, 140, 20), (620, 140, 20), (0, 160, 20), (20, 160, 20), (40, 160, 20), (60, 160, 20), (80, 160, 20), (100, 160, 20), (120, 160, 20), (140, 160, 20), (160, 160, 20), (180, 160, 20), (200, 160, 20), (220, 160, 20), (240, 160, 20), (260, 160, 20), (280, 160, 20), (300, 160, 20), (320, 160, 20), (340, 160, 20), (360, 160, 20), (380, 160, 20), (400, 160, 20), (420, 160, 20), (440, 160, 20), (460, 160, 20), (480, 160, 20), (500, 160, 20), (520, 160, 20), (540, 160, 20), (560, 160, 20), (580, 160, 20), (600, 160, 20), (620, 160, 20), (0, 180, 20), (20, 180, 20), (40, 180, 20), (60, 180, 20), (80, 180, 20), (100, 180, 20), (120, 180, 20), (140, 180, 20), (160, 180, 20), (180, 180, 20), (200, 180, 20), (220, 180, 20), (240, 180, 20), (260, 180, 20), (280, 180, 20), (300, 180, 20), (320, 180, 20), (340, 180, 20), (360, 180, 20), (380, 180, 20), (400, 180, 20), (420, 180, 20), (440, 180, 20), (460, 180, 20), (480, 180, 20), (500, 180, 20), (520, 180, 20), (540, 180, 20), (560, 180, 20), (580, 180, 20), (600, 180, 20), (620, 180, 20), (0, 200, 20), (20, 200, 20), (40, 200, 20), (60, 200, 20), (80, 200, 20), (100, 200, 20), (120, 200, 20), (140, 200, 20), (160, 200, 20), (180, 200, 20), (200, 200, 20), (220, 200, 20), (240, 200, 20), (260, 200, 20), (280, 200, 20), (300, 200, 20), (320, 200, 20), (340, 200, 20), (360, 200, 20), (380, 200, 20), (400, 200, 20), (420, 200, 20), (440, 200, 20), (460, 200, 20), (480, 200, 20), (500, 200, 20), (520, 200, 20), (540, 200, 20), (560, 200, 20), (580, 200, 20), (600, 200, 20), (620, 200, 20), (0, 220, 20), (20, 220, 20), (40, 220, 20), (60, 220, 20), (80, 220, 20), (100, 220, 20), (120, 220, 20), (140, 220, 20), (160, 220, 20), (180, 220, 20), (200, 220, 20), (220, 220, 20), (240, 220, 20), (260, 220, 20), (280, 220, 20), (300, 220, 20), (320, 220, 20), (340, 220, 20), (360, 220, 20), (380, 220, 20), (400, 220, 20), (420, 220, 20), (440, 220, 20), (460, 220, 20), (480, 220, 20), (500, 220, 20), (520, 220, 20), (540, 220, 20), (560, 220, 20), (580, 220, 20), (600, 220, 20), (620, 220, 20), (0, 240, 20), (20, 240, 20), (40, 240, 20), (60, 240, 20), (80, 240, 20), (100, 240, 20), (120, 240, 20), (140, 240, 20), (160, 240, 20), (180, 240, 20), (200, 240, 20), (220, 240, 20), (240, 240, 20), (260, 240, 20), (280, 240, 20), (300, 240, 20), (320, 240, 20), (340, 240, 20), (360, 240, 20), (380, 240, 20), (400, 240, 20), (420, 240, 20), (440, 240, 20), (460, 240, 20), (480, 240, 20), (500, 240, 20), (520, 240, 20), (540, 240, 20), (560, 240, 20), (580, 240, 20), (600, 240, 20), (620, 240, 20), (0, 260, 20), (20, 260, 20), (40, 260, 20), (60, 260, 20), (80, 260, 20), (100, 260, 20), (120, 260, 20), (140, 260, 20), (160, 260, 20), (180, 260, 20), (200, 260, 20), (220, 260, 20), (240, 260, 20), (260, 260, 20), (280, 260, 20), (300, 260, 20), (320, 260, 20), (340, 260, 20), (360, 260, 20), (380, 260, 20), (400, 260, 20), (420, 260, 20), (440, 260, 20), (460, 260, 20), (480, 260, 20), (500, 260, 20), (520, 260, 20), (540, 260, 20), (560, 260, 20), (580, 260, 20), (600, 260, 20), (620, 260, 20), (0, 280, 20), (20, 280, 20), (40, 280, 20), (60, 280, 20), (80, 280, 20), (100, 280, 20), (120, 280, 20), (140, 280, 20), (160, 280, 20), (180, 280, 20), (200, 280, 20), (220, 280, 20), (240, 280, 20), (260, 280, 20), (280, 280, 20), (300, 280, 20), (320, 280, 20), (340, 280, 20), (360, 280, 20), (380, 280, 20), (400, 280, 20), (420, 280, 20), (440, 280, 20), (460, 280, 20), (480, 280, 20), (500, 280, 20), (520, 280, 20), (540, 280, 20), (560, 280, 20), (580, 280, 20), (600, 280, 20), (620, 280, 20), (0, 300, 20), (20, 300, 20), (40, 300, 20), (60, 300, 20), (80, 300, 20), (100, 300, 20), (120, 300, 20), (140, 300, 20), (160, 300, 20), (180, 300, 20), (200, 300, 20), (220, 300, 20), (240, 300, 20), (260, 300, 20), (280, 300, 20), (300, 300, 20), (320, 300, 20), (340, 300, 20), (360, 300, 20), (380, 300, 20), (400, 300, 20), (420, 300, 20), (440, 300, 20), (460, 300, 20), (480, 300, 20), (500, 300, 20), (520, 300, 20), (540, 300, 20), (560, 300, 20), (580, 300, 20), (600, 300, 20), (620, 300, 20), (0, 320, 20), (20, 320, 20), (40, 320, 20), (60, 320, 20), (80, 320, 20), (100, 320, 20), (120, 320, 20), (140, 320, 20), (160, 320, 20), (180, 320, 20), (200, 320, 20), (220, 320, 20), (240, 320, 20), (260, 320, 20), (280, 320, 20), (300, 320, 20), (320, 320, 20), (340, 320, 20), (360, 320, 20), (380, 320, 20), (400, 320, 20), (420, 320, 20), (440, 320, 20), (460, 320, 20), (480, 320, 20), (500, 320, 20), (520, 320, 20), (540, 320, 20), (560, 320, 20), (580, 320, 20), (600, 320, 20), (620, 320, 20), (0, 340, 20), (20, 340, 20), (40, 340, 20), (60, 340, 20), (80, 340, 20), (100, 340, 20), (120, 340, 20), (140, 340, 20), (160, 340, 20), (180, 340, 20), (200, 340, 20), (220, 340, 20), (240, 340, 20), (260, 340, 20), (280, 340, 20), (300, 340, 20), (320, 340, 20), (340, 340, 20), (360, 340, 20), (380, 340, 20), (400, 340, 20), (420, 340, 20), (440, 340, 20), (460, 340, 20), (480, 340, 20), (500, 340, 20), (520, 340, 20), (540, 340, 20), (560, 340, 20), (580, 340, 20), (600, 340, 20), (620, 340, 20), (0, 360, 20), (20, 360, 20), (40, 360, 20), (60, 360, 20), (80, 360, 20), (100, 360, 20), (120, 360, 20), (140, 360, 20), (160, 360, 20), (180, 360, 20), (200, 360, 20), (220, 360, 20), (240, 360, 20), (260, 360, 20), (280, 360, 20), (300, 360, 20), (320, 360, 20), (340, 360, 20), (360, 360, 20), (380, 360, 20), (400, 360, 20), (420, 360, 20), (440, 360, 20), (460, 360, 20), (480, 360, 20), (500, 360, 20), (520, 360, 20), (540, 360, 20), (560, 360, 20), (580, 360, 20), (600, 360, 20), (620, 360, 20), (0, 380, 20), (20, 380, 20), (40, 380, 20), (60, 380, 20), (80, 380, 20), (100, 380, 20), (120, 380, 20), (140, 380, 20), (160, 380, 20), (180, 380, 20), (200, 380, 20), (220, 380, 20), (240, 380, 20), (260, 380, 20), (280, 380, 20), (300, 380, 20), (320, 380, 20), (340, 380, 20), (360, 380, 20), (380, 380, 20), (400, 380, 20), (420, 380, 20), (440, 380, 20), (460, 380, 20), (480, 380, 20), (500, 380, 20), (520, 380, 20), (540, 380, 20), (560, 380, 20), (580, 380, 20), (600, 380, 20), (620, 380, 20), (0, 400, 20), (20, 400, 20), (40, 400, 20), (60, 400, 20), (80, 400, 20), (100, 400, 20), (120, 400, 20), (140, 400, 20), (160, 400, 20), (180, 400, 20), (200, 400, 20), (220, 400, 20), (240, 400, 20), (260, 400, 20), (280, 400, 20), (300, 400, 20), (320, 400, 20), (340, 400, 20), (360, 400, 20), (380, 400, 20), (400, 400, 20), (420, 400, 20), (440, 400, 20), (460, 400, 20), (480, 400, 20), (500, 400, 20), (520, 400, 20), (540, 400, 20), (560, 400, 20), (580, 400, 20), (600, 400, 20), (620, 400, 20), (0, 420, 20), (20, 420, 20), (40, 420, 20), (60, 420, 20), (80, 420, 20), (100, 420, 20), (120, 420, 20), (140, 420, 20), (160, 420, 20), (180, 420, 20), (200, 420, 20), (220, 420, 20), (240, 420, 20), (260, 420, 20), (280, 420, 20), (300, 420, 20), (320, 420, 20), (340, 420, 20), (360, 420, 20), (380, 420, 20), (400, 420, 20), (420, 420, 20), (440, 420, 20), (460, 420, 20), (480, 420, 20), (500, 420, 20), (520, 420, 20), (540, 420, 20), (560, 420, 20), (580, 420, 20), (600, 420, 20), (620, 420, 20), (0, 440, 20), (20, 440, 20), (40, 440, 20), (60, 440, 20), (80, 440, 20), (100, 440, 20), (120, 440, 20), (140, 440, 20), (160, 440, 20), (180, 440, 20), (200, 440, 20), (220, 440, 20), (240, 440, 20), (260, 440, 20), (280, 440, 20), (300, 440, 20), (320, 440, 20), (340, 440, 20), (360, 440, 20), (380, 440, 20), (400, 440, 20), (420, 440, 20), (440, 440, 20), (460, 440, 20), (480, 440, 20), (500, 440, 20), (520, 440, 20), (540, 440, 20), (560, 440, 20), (580, 440, 20), (600, 440, 20), (620, 440, 20), (0, 460, 20), (20, 460, 20), (40, 460, 20), (60, 460, 20), (80, 460, 20), (100, 460, 20), (120, 460, 20), (140, 460, 20), (160, 460, 20), (180, 460, 20), (200, 460, 20), (220, 460, 20), (240, 460, 20), (260, 460, 20), (280, 460, 20), (300, 460, 20), (320, 460, 20), (340, 460, 20), (360, 460, 20), (380, 460, 20), (400, 460, 20), (420, 460, 20), (440, 460, 20), (460, 460, 20), (480, 460, 20), (500, 460, 20), (520, 460, 20), (540, 460, 20), (560, 460, 20), (580, 460, 20), (600, 460, 20), (620, 460, 20), (0, 480, 20), (20, 480, 20), (40, 480, 20), (60, 480, 20), (80, 480, 20), (100, 480, 20), (120, 480, 20), (140, 480, 20), (160, 480, 20), (180, 480, 20), (200, 480, 20), (220, 480, 20), (240, 480, 20), (260, 480, 20), (280, 480, 20), (300, 480, 20), (320, 480, 20), (340, 480, 20), (360, 480, 20), (380, 480, 20), (400, 480, 20), (420, 480, 20), (440, 480, 20), (460, 480, 20), (480, 480, 20), (500, 480, 20), (520, 480, 20), (540, 480, 20), (560, 480, 20), (580, 480, 20), (600, 480, 20), (620, 480, 20), (0, 500, 20), (20, 500, 20), (40, 500, 20), (60, 500, 20), (80, 500, 20), (100, 500, 20), (120, 500, 20), (140, 500, 20), (160, 500, 20), (180, 500, 20), (200, 500, 20), (220, 500, 20), (240, 500, 20), (260, 500, 20), (280, 500, 20), (300, 500, 20), (320, 500, 20), (340, 500, 20), (360, 500, 20), (380, 500, 20), (400, 500, 20), (420, 500, 20), (440, 500, 20), (460, 500, 20), (480, 500, 20), (500, 500, 20), (520, 500, 20), (540, 500, 20), (560, 500, 20), (580, 500, 20), (600, 500, 20), (620, 500, 20), (0, 520, 20), (20, 520, 20), (40, 520, 20), (60, 520, 20), (80, 520, 20), (100, 520, 20), (120, 520, 20), (140, 520, 20), (160, 520, 20), (180, 520, 20), (200, 520, 20), (220, 520, 20), (240, 520, 20), (260, 520, 20), (280, 520, 20), (300, 520, 20), (320, 520, 20), (340, 520, 20), (360, 520, 20), (380, 520, 20), (400, 520, 20), (420, 520, 20), (440, 520, 20), (460, 520, 20), (480, 520, 20), (500, 520, 20), (520, 520, 20), (540, 520, 20), (560, 520, 20), (580, 520, 20), (600, 520, 20), (620, 520, 20), (0, 540, 20), (20, 540, 20), (40, 540, 20), (60, 540, 20), (80, 540, 20), (100, 540, 20), (120, 540, 20), (140, 540, 20), (160, 540, 20), (180, 540, 20), (200, 540, 20), (220, 540, 20), (240, 540, 20), (260, 540, 20), (280, 540, 20), (300, 540, 20), (320, 540, 20), (340, 540, 20), (360, 540, 20), (380, 540, 20), (400, 540, 20), (420, 540, 20), (440, 540, 20), (460, 540, 20), (480, 540, 20), (500, 540, 20), (520, 540, 20), (540, 540, 20), (560, 540, 20), (580, 540, 20), (600, 540, 20), (620, 540, 20), (0, 560, 20), (20, 560, 20), (40, 560, 20), (60, 560, 20), (80, 560, 20), (100, 560, 20), (120, 560, 20), (140, 560, 20), (160, 560, 20), (180, 560, 20), (200, 560, 20), (220, 560, 20), (240, 560, 20), (260, 560, 20), (280, 560, 20), (300, 560, 20), (320, 560, 20), (340, 560, 20), (360, 560, 20), (380, 560, 20), (400, 560, 20), (420, 560, 20), (440, 560, 20), (460, 560, 20), (480, 560, 20), (500, 560, 20), (520, 560, 20), (540, 560, 20), (560, 560, 20), (580, 560, 20), (600, 560, 20), (620, 560, 20), (0, 580, 20), (20, 580, 20), (40, 580, 20), (60, 580, 20), (80, 580, 20), (100, 580, 20), (120, 580, 20), (140, 580, 20), (160, 580, 20), (180, 580, 20), (200, 580, 20), (220, 580, 20), (240, 580, 20), (260, 580, 20), (280, 580, 20), (300, 580, 20), (320, 580, 20), (340, 580, 20), (360, 580, 20), (380, 580, 20), (400, 580, 20), (420, 580, 20), (440, 580, 20), (460, 580, 20), (480, 580, 20), (500, 580, 20), (520, 580, 20), (540, 580, 20), (560, 580, 20), (580, 580, 20), (600, 580, 20), (620, 580, 20), (0, 600, 20), (20, 600, 20), (40, 600, 20), (60, 600, 20), (80, 600, 20), (100, 600, 20), (120, 600, 20), (140, 600, 20), (160, 600, 20), (180, 600, 20), (200, 600, 20), (220, 600, 20), (240, 600, 20), (260, 600, 20), (280, 600, 20), (300, 600, 20), (320, 600, 20), (340, 600, 20), (360, 600, 20), (380, 600, 20), (400, 600, 20), (420, 600, 20), (440, 600, 20), (460, 600, 20), (480, 600, 20), (500, 600, 20), (520, 600, 20), (540, 600, 20), (560, 600, 20), (580, 600, 20), (600, 600, 20), (620, 600, 20), (0, 620, 20), (20, 620, 20), (40, 620, 20), (60, 620, 20), (80, 620, 20), (100, 620, 20), (120, 620, 20), (140, 620, 20), (160, 620, 20), (180, 620, 20), (200, 620, 20), (220, 620, 20), (240, 620, 20), (260, 620, 20), (280, 620, 20), (300, 620, 20), (320, 620, 20), (340, 620, 20), (360, 620, 20), (380, 620, 20), (400, 620, 20), (420, 620, 20), (440, 620, 20), (460, 620, 20), (480, 620, 20), (500, 620, 20), (520, 620, 20), (540, 620, 20), (560, 620, 20), (580, 620, 20), (600, 620, 20), (620, 620, 20)] color3f[] primvars:displayColor = [(0.2784314, 0.64705884, 1)] } def OmniGraph "DeformerGraph" { token evaluator:type = "push" int2 fileFormatVersion = (1, 5) def OmniGraphNode "read_prim_attribute" { custom bool inputs:forceUSDRead = 0 custom token inputs:name = "points" custom rel inputs:prim prepend rel inputs:prim = </defaultPrim/inputGrid> custom token inputs:primPath = "" custom timecode inputs:usdTimecode = -1 custom bool inputs:usePath = 0 token node:type = "omni.graph.nodes.ReadPrimAttribute" int node:typeVersion = 1 custom token outputs:value custom uint64 state:target = 0 custom timecode state:usdTimecode = -1 } def OmniGraphNode "testDeformer" { custom token node:type = "omnigraph.examples.deformerPy" custom int node:typeVersion = 1 custom float inputs:multiplier = 3.0 point3f[] inputs:points.connect = </defaultPrim/DeformerGraph/read_prim_attribute.outputs:value> custom point3f[] outputs:points } def OmniGraphNode "write_prim_attribute" ( prepend apiSchemas = ["NodeGraphNodeAPI"] ) { custom uint inputs:execIn custom token inputs:name = "points" custom rel inputs:prim prepend rel inputs:prim = </defaultPrim/outputGrid> custom token inputs:primPath custom bool inputs:usdWriteBack = 1 custom bool inputs:usePath = 0 custom token inputs:value prepend token inputs:value.connect = </defaultPrim/DeformerGraph/testDeformer.outputs:points> token node:type = "omni.graph.nodes.WritePrimAttribute" int node:typeVersion = 1 custom uint outputs:execOut ( customData = { bool isExecution = 1 } ) } } def Mesh "outputGrid" { uniform bool doubleSided = 1 int[] faceVertexCounts = [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 1, 33, 0, 33, 32, 1, 2, 34, 1, 34, 33, 2, 3, 35, 2, 35, 34, 3, 4, 36, 3, 36, 35, 4, 5, 37, 4, 37, 36, 5, 6, 38, 5, 38, 37, 6, 7, 39, 6, 39, 38, 7, 8, 40, 7, 40, 39, 8, 9, 41, 8, 41, 40, 9, 10, 42, 9, 42, 41, 10, 11, 43, 10, 43, 42, 11, 12, 44, 11, 44, 43, 12, 13, 45, 12, 45, 44, 13, 14, 46, 13, 46, 45, 14, 15, 47, 14, 47, 46, 15, 16, 48, 15, 48, 47, 16, 17, 49, 16, 49, 48, 17, 18, 50, 17, 50, 49, 18, 19, 51, 18, 51, 50, 19, 20, 52, 19, 52, 51, 20, 21, 53, 20, 53, 52, 21, 22, 54, 21, 54, 53, 22, 23, 55, 22, 55, 54, 23, 24, 56, 23, 56, 55, 24, 25, 57, 24, 57, 56, 25, 26, 58, 25, 58, 57, 26, 27, 59, 26, 59, 58, 27, 28, 60, 27, 60, 59, 28, 29, 61, 28, 61, 60, 29, 30, 62, 29, 62, 61, 30, 31, 63, 30, 63, 62, 32, 33, 65, 32, 65, 64, 33, 34, 66, 33, 66, 65, 34, 35, 67, 34, 67, 66, 35, 36, 68, 35, 68, 67, 36, 37, 69, 36, 69, 68, 37, 38, 70, 37, 70, 69, 38, 39, 71, 38, 71, 70, 39, 40, 72, 39, 72, 71, 40, 41, 73, 40, 73, 72, 41, 42, 74, 41, 74, 73, 42, 43, 75, 42, 75, 74, 43, 44, 76, 43, 76, 75, 44, 45, 77, 44, 77, 76, 45, 46, 78, 45, 78, 77, 46, 47, 79, 46, 79, 78, 47, 48, 80, 47, 80, 79, 48, 49, 81, 48, 81, 80, 49, 50, 82, 49, 82, 81, 50, 51, 83, 50, 83, 82, 51, 52, 84, 51, 84, 83, 52, 53, 85, 52, 85, 84, 53, 54, 86, 53, 86, 85, 54, 55, 87, 54, 87, 86, 55, 56, 88, 55, 88, 87, 56, 57, 89, 56, 89, 88, 57, 58, 90, 57, 90, 89, 58, 59, 91, 58, 91, 90, 59, 60, 92, 59, 92, 91, 60, 61, 93, 60, 93, 92, 61, 62, 94, 61, 94, 93, 62, 63, 95, 62, 95, 94, 64, 65, 97, 64, 97, 96, 65, 66, 98, 65, 98, 97, 66, 67, 99, 66, 99, 98, 67, 68, 100, 67, 100, 99, 68, 69, 101, 68, 101, 100, 69, 70, 102, 69, 102, 101, 70, 71, 103, 70, 103, 102, 71, 72, 104, 71, 104, 103, 72, 73, 105, 72, 105, 104, 73, 74, 106, 73, 106, 105, 74, 75, 107, 74, 107, 106, 75, 76, 108, 75, 108, 107, 76, 77, 109, 76, 109, 108, 77, 78, 110, 77, 110, 109, 78, 79, 111, 78, 111, 110, 79, 80, 112, 79, 112, 111, 80, 81, 113, 80, 113, 112, 81, 82, 114, 81, 114, 113, 82, 83, 115, 82, 115, 114, 83, 84, 116, 83, 116, 115, 84, 85, 117, 84, 117, 116, 85, 86, 118, 85, 118, 117, 86, 87, 119, 86, 119, 118, 87, 88, 120, 87, 120, 119, 88, 89, 121, 88, 121, 120, 89, 90, 122, 89, 122, 121, 90, 91, 123, 90, 123, 122, 91, 92, 124, 91, 124, 123, 92, 93, 125, 92, 125, 124, 93, 94, 126, 93, 126, 125, 94, 95, 127, 94, 127, 126, 96, 97, 129, 96, 129, 128, 97, 98, 130, 97, 130, 129, 98, 99, 131, 98, 131, 130, 99, 100, 132, 99, 132, 131, 100, 101, 133, 100, 133, 132, 101, 102, 134, 101, 134, 133, 102, 103, 135, 102, 135, 134, 103, 104, 136, 103, 136, 135, 104, 105, 137, 104, 137, 136, 105, 106, 138, 105, 138, 137, 106, 107, 139, 106, 139, 138, 107, 108, 140, 107, 140, 139, 108, 109, 141, 108, 141, 140, 109, 110, 142, 109, 142, 141, 110, 111, 143, 110, 143, 142, 111, 112, 144, 111, 144, 143, 112, 113, 145, 112, 145, 144, 113, 114, 146, 113, 146, 145, 114, 115, 147, 114, 147, 146, 115, 116, 148, 115, 148, 147, 116, 117, 149, 116, 149, 148, 117, 118, 150, 117, 150, 149, 118, 119, 151, 118, 151, 150, 119, 120, 152, 119, 152, 151, 120, 121, 153, 120, 153, 152, 121, 122, 154, 121, 154, 153, 122, 123, 155, 122, 155, 154, 123, 124, 156, 123, 156, 155, 124, 125, 157, 124, 157, 156, 125, 126, 158, 125, 158, 157, 126, 127, 159, 126, 159, 158, 128, 129, 161, 128, 161, 160, 129, 130, 162, 129, 162, 161, 130, 131, 163, 130, 163, 162, 131, 132, 164, 131, 164, 163, 132, 133, 165, 132, 165, 164, 133, 134, 166, 133, 166, 165, 134, 135, 167, 134, 167, 166, 135, 136, 168, 135, 168, 167, 136, 137, 169, 136, 169, 168, 137, 138, 170, 137, 170, 169, 138, 139, 171, 138, 171, 170, 139, 140, 172, 139, 172, 171, 140, 141, 173, 140, 173, 172, 141, 142, 174, 141, 174, 173, 142, 143, 175, 142, 175, 174, 143, 144, 176, 143, 176, 175, 144, 145, 177, 144, 177, 176, 145, 146, 178, 145, 178, 177, 146, 147, 179, 146, 179, 178, 147, 148, 180, 147, 180, 179, 148, 149, 181, 148, 181, 180, 149, 150, 182, 149, 182, 181, 150, 151, 183, 150, 183, 182, 151, 152, 184, 151, 184, 183, 152, 153, 185, 152, 185, 184, 153, 154, 186, 153, 186, 185, 154, 155, 187, 154, 187, 186, 155, 156, 188, 155, 188, 187, 156, 157, 189, 156, 189, 188, 157, 158, 190, 157, 190, 189, 158, 159, 191, 158, 191, 190, 160, 161, 193, 160, 193, 192, 161, 162, 194, 161, 194, 193, 162, 163, 195, 162, 195, 194, 163, 164, 196, 163, 196, 195, 164, 165, 197, 164, 197, 196, 165, 166, 198, 165, 198, 197, 166, 167, 199, 166, 199, 198, 167, 168, 200, 167, 200, 199, 168, 169, 201, 168, 201, 200, 169, 170, 202, 169, 202, 201, 170, 171, 203, 170, 203, 202, 171, 172, 204, 171, 204, 203, 172, 173, 205, 172, 205, 204, 173, 174, 206, 173, 206, 205, 174, 175, 207, 174, 207, 206, 175, 176, 208, 175, 208, 207, 176, 177, 209, 176, 209, 208, 177, 178, 210, 177, 210, 209, 178, 179, 211, 178, 211, 210, 179, 180, 212, 179, 212, 211, 180, 181, 213, 180, 213, 212, 181, 182, 214, 181, 214, 213, 182, 183, 215, 182, 215, 214, 183, 184, 216, 183, 216, 215, 184, 185, 217, 184, 217, 216, 185, 186, 218, 185, 218, 217, 186, 187, 219, 186, 219, 218, 187, 188, 220, 187, 220, 219, 188, 189, 221, 188, 221, 220, 189, 190, 222, 189, 222, 221, 190, 191, 223, 190, 223, 222, 192, 193, 225, 192, 225, 224, 193, 194, 226, 193, 226, 225, 194, 195, 227, 194, 227, 226, 195, 196, 228, 195, 228, 227, 196, 197, 229, 196, 229, 228, 197, 198, 230, 197, 230, 229, 198, 199, 231, 198, 231, 230, 199, 200, 232, 199, 232, 231, 200, 201, 233, 200, 233, 232, 201, 202, 234, 201, 234, 233, 202, 203, 235, 202, 235, 234, 203, 204, 236, 203, 236, 235, 204, 205, 237, 204, 237, 236, 205, 206, 238, 205, 238, 237, 206, 207, 239, 206, 239, 238, 207, 208, 240, 207, 240, 239, 208, 209, 241, 208, 241, 240, 209, 210, 242, 209, 242, 241, 210, 211, 243, 210, 243, 242, 211, 212, 244, 211, 244, 243, 212, 213, 245, 212, 245, 244, 213, 214, 246, 213, 246, 245, 214, 215, 247, 214, 247, 246, 215, 216, 248, 215, 248, 247, 216, 217, 249, 216, 249, 248, 217, 218, 250, 217, 250, 249, 218, 219, 251, 218, 251, 250, 219, 220, 252, 219, 252, 251, 220, 221, 253, 220, 253, 252, 221, 222, 254, 221, 254, 253, 222, 223, 255, 222, 255, 254, 224, 225, 257, 224, 257, 256, 225, 226, 258, 225, 258, 257, 226, 227, 259, 226, 259, 258, 227, 228, 260, 227, 260, 259, 228, 229, 261, 228, 261, 260, 229, 230, 262, 229, 262, 261, 230, 231, 263, 230, 263, 262, 231, 232, 264, 231, 264, 263, 232, 233, 265, 232, 265, 264, 233, 234, 266, 233, 266, 265, 234, 235, 267, 234, 267, 266, 235, 236, 268, 235, 268, 267, 236, 237, 269, 236, 269, 268, 237, 238, 270, 237, 270, 269, 238, 239, 271, 238, 271, 270, 239, 240, 272, 239, 272, 271, 240, 241, 273, 240, 273, 272, 241, 242, 274, 241, 274, 273, 242, 243, 275, 242, 275, 274, 243, 244, 276, 243, 276, 275, 244, 245, 277, 244, 277, 276, 245, 246, 278, 245, 278, 277, 246, 247, 279, 246, 279, 278, 247, 248, 280, 247, 280, 279, 248, 249, 281, 248, 281, 280, 249, 250, 282, 249, 282, 281, 250, 251, 283, 250, 283, 282, 251, 252, 284, 251, 284, 283, 252, 253, 285, 252, 285, 284, 253, 254, 286, 253, 286, 285, 254, 255, 287, 254, 287, 286, 256, 257, 289, 256, 289, 288, 257, 258, 290, 257, 290, 289, 258, 259, 291, 258, 291, 290, 259, 260, 292, 259, 292, 291, 260, 261, 293, 260, 293, 292, 261, 262, 294, 261, 294, 293, 262, 263, 295, 262, 295, 294, 263, 264, 296, 263, 296, 295, 264, 265, 297, 264, 297, 296, 265, 266, 298, 265, 298, 297, 266, 267, 299, 266, 299, 298, 267, 268, 300, 267, 300, 299, 268, 269, 301, 268, 301, 300, 269, 270, 302, 269, 302, 301, 270, 271, 303, 270, 303, 302, 271, 272, 304, 271, 304, 303, 272, 273, 305, 272, 305, 304, 273, 274, 306, 273, 306, 305, 274, 275, 307, 274, 307, 306, 275, 276, 308, 275, 308, 307, 276, 277, 309, 276, 309, 308, 277, 278, 310, 277, 310, 309, 278, 279, 311, 278, 311, 310, 279, 280, 312, 279, 312, 311, 280, 281, 313, 280, 313, 312, 281, 282, 314, 281, 314, 313, 282, 283, 315, 282, 315, 314, 283, 284, 316, 283, 316, 315, 284, 285, 317, 284, 317, 316, 285, 286, 318, 285, 318, 317, 286, 287, 319, 286, 319, 318, 288, 289, 321, 288, 321, 320, 289, 290, 322, 289, 322, 321, 290, 291, 323, 290, 323, 322, 291, 292, 324, 291, 324, 323, 292, 293, 325, 292, 325, 324, 293, 294, 326, 293, 326, 325, 294, 295, 327, 294, 327, 326, 295, 296, 328, 295, 328, 327, 296, 297, 329, 296, 329, 328, 297, 298, 330, 297, 330, 329, 298, 299, 331, 298, 331, 330, 299, 300, 332, 299, 332, 331, 300, 301, 333, 300, 333, 332, 301, 302, 334, 301, 334, 333, 302, 303, 335, 302, 335, 334, 303, 304, 336, 303, 336, 335, 304, 305, 337, 304, 337, 336, 305, 306, 338, 305, 338, 337, 306, 307, 339, 306, 339, 338, 307, 308, 340, 307, 340, 339, 308, 309, 341, 308, 341, 340, 309, 310, 342, 309, 342, 341, 310, 311, 343, 310, 343, 342, 311, 312, 344, 311, 344, 343, 312, 313, 345, 312, 345, 344, 313, 314, 346, 313, 346, 345, 314, 315, 347, 314, 347, 346, 315, 316, 348, 315, 348, 347, 316, 317, 349, 316, 349, 348, 317, 318, 350, 317, 350, 349, 318, 319, 351, 318, 351, 350, 320, 321, 353, 320, 353, 352, 321, 322, 354, 321, 354, 353, 322, 323, 355, 322, 355, 354, 323, 324, 356, 323, 356, 355, 324, 325, 357, 324, 357, 356, 325, 326, 358, 325, 358, 357, 326, 327, 359, 326, 359, 358, 327, 328, 360, 327, 360, 359, 328, 329, 361, 328, 361, 360, 329, 330, 362, 329, 362, 361, 330, 331, 363, 330, 363, 362, 331, 332, 364, 331, 364, 363, 332, 333, 365, 332, 365, 364, 333, 334, 366, 333, 366, 365, 334, 335, 367, 334, 367, 366, 335, 336, 368, 335, 368, 367, 336, 337, 369, 336, 369, 368, 337, 338, 370, 337, 370, 369, 338, 339, 371, 338, 371, 370, 339, 340, 372, 339, 372, 371, 340, 341, 373, 340, 373, 372, 341, 342, 374, 341, 374, 373, 342, 343, 375, 342, 375, 374, 343, 344, 376, 343, 376, 375, 344, 345, 377, 344, 377, 376, 345, 346, 378, 345, 378, 377, 346, 347, 379, 346, 379, 378, 347, 348, 380, 347, 380, 379, 348, 349, 381, 348, 381, 380, 349, 350, 382, 349, 382, 381, 350, 351, 383, 350, 383, 382, 352, 353, 385, 352, 385, 384, 353, 354, 386, 353, 386, 385, 354, 355, 387, 354, 387, 386, 355, 356, 388, 355, 388, 387, 356, 357, 389, 356, 389, 388, 357, 358, 390, 357, 390, 389, 358, 359, 391, 358, 391, 390, 359, 360, 392, 359, 392, 391, 360, 361, 393, 360, 393, 392, 361, 362, 394, 361, 394, 393, 362, 363, 395, 362, 395, 394, 363, 364, 396, 363, 396, 395, 364, 365, 397, 364, 397, 396, 365, 366, 398, 365, 398, 397, 366, 367, 399, 366, 399, 398, 367, 368, 400, 367, 400, 399, 368, 369, 401, 368, 401, 400, 369, 370, 402, 369, 402, 401, 370, 371, 403, 370, 403, 402, 371, 372, 404, 371, 404, 403, 372, 373, 405, 372, 405, 404, 373, 374, 406, 373, 406, 405, 374, 375, 407, 374, 407, 406, 375, 376, 408, 375, 408, 407, 376, 377, 409, 376, 409, 408, 377, 378, 410, 377, 410, 409, 378, 379, 411, 378, 411, 410, 379, 380, 412, 379, 412, 411, 380, 381, 413, 380, 413, 412, 381, 382, 414, 381, 414, 413, 382, 383, 415, 382, 415, 414, 384, 385, 417, 384, 417, 416, 385, 386, 418, 385, 418, 417, 386, 387, 419, 386, 419, 418, 387, 388, 420, 387, 420, 419, 388, 389, 421, 388, 421, 420, 389, 390, 422, 389, 422, 421, 390, 391, 423, 390, 423, 422, 391, 392, 424, 391, 424, 423, 392, 393, 425, 392, 425, 424, 393, 394, 426, 393, 426, 425, 394, 395, 427, 394, 427, 426, 395, 396, 428, 395, 428, 427, 396, 397, 429, 396, 429, 428, 397, 398, 430, 397, 430, 429, 398, 399, 431, 398, 431, 430, 399, 400, 432, 399, 432, 431, 400, 401, 433, 400, 433, 432, 401, 402, 434, 401, 434, 433, 402, 403, 435, 402, 435, 434, 403, 404, 436, 403, 436, 435, 404, 405, 437, 404, 437, 436, 405, 406, 438, 405, 438, 437, 406, 407, 439, 406, 439, 438, 407, 408, 440, 407, 440, 439, 408, 409, 441, 408, 441, 440, 409, 410, 442, 409, 442, 441, 410, 411, 443, 410, 443, 442, 411, 412, 444, 411, 444, 443, 412, 413, 445, 412, 445, 444, 413, 414, 446, 413, 446, 445, 414, 415, 447, 414, 447, 446, 416, 417, 449, 416, 449, 448, 417, 418, 450, 417, 450, 449, 418, 419, 451, 418, 451, 450, 419, 420, 452, 419, 452, 451, 420, 421, 453, 420, 453, 452, 421, 422, 454, 421, 454, 453, 422, 423, 455, 422, 455, 454, 423, 424, 456, 423, 456, 455, 424, 425, 457, 424, 457, 456, 425, 426, 458, 425, 458, 457, 426, 427, 459, 426, 459, 458, 427, 428, 460, 427, 460, 459, 428, 429, 461, 428, 461, 460, 429, 430, 462, 429, 462, 461, 430, 431, 463, 430, 463, 462, 431, 432, 464, 431, 464, 463, 432, 433, 465, 432, 465, 464, 433, 434, 466, 433, 466, 465, 434, 435, 467, 434, 467, 466, 435, 436, 468, 435, 468, 467, 436, 437, 469, 436, 469, 468, 437, 438, 470, 437, 470, 469, 438, 439, 471, 438, 471, 470, 439, 440, 472, 439, 472, 471, 440, 441, 473, 440, 473, 472, 441, 442, 474, 441, 474, 473, 442, 443, 475, 442, 475, 474, 443, 444, 476, 443, 476, 475, 444, 445, 477, 444, 477, 476, 445, 446, 478, 445, 478, 477, 446, 447, 479, 446, 479, 478, 448, 449, 481, 448, 481, 480, 449, 450, 482, 449, 482, 481, 450, 451, 483, 450, 483, 482, 451, 452, 484, 451, 484, 483, 452, 453, 485, 452, 485, 484, 453, 454, 486, 453, 486, 485, 454, 455, 487, 454, 487, 486, 455, 456, 488, 455, 488, 487, 456, 457, 489, 456, 489, 488, 457, 458, 490, 457, 490, 489, 458, 459, 491, 458, 491, 490, 459, 460, 492, 459, 492, 491, 460, 461, 493, 460, 493, 492, 461, 462, 494, 461, 494, 493, 462, 463, 495, 462, 495, 494, 463, 464, 496, 463, 496, 495, 464, 465, 497, 464, 497, 496, 465, 466, 498, 465, 498, 497, 466, 467, 499, 466, 499, 498, 467, 468, 500, 467, 500, 499, 468, 469, 501, 468, 501, 500, 469, 470, 502, 469, 502, 501, 470, 471, 503, 470, 503, 502, 471, 472, 504, 471, 504, 503, 472, 473, 505, 472, 505, 504, 473, 474, 506, 473, 506, 505, 474, 475, 507, 474, 507, 506, 475, 476, 508, 475, 508, 507, 476, 477, 509, 476, 509, 508, 477, 478, 510, 477, 510, 509, 478, 479, 511, 478, 511, 510, 480, 481, 513, 480, 513, 512, 481, 482, 514, 481, 514, 513, 482, 483, 515, 482, 515, 514, 483, 484, 516, 483, 516, 515, 484, 485, 517, 484, 517, 516, 485, 486, 518, 485, 518, 517, 486, 487, 519, 486, 519, 518, 487, 488, 520, 487, 520, 519, 488, 489, 521, 488, 521, 520, 489, 490, 522, 489, 522, 521, 490, 491, 523, 490, 523, 522, 491, 492, 524, 491, 524, 523, 492, 493, 525, 492, 525, 524, 493, 494, 526, 493, 526, 525, 494, 495, 527, 494, 527, 526, 495, 496, 528, 495, 528, 527, 496, 497, 529, 496, 529, 528, 497, 498, 530, 497, 530, 529, 498, 499, 531, 498, 531, 530, 499, 500, 532, 499, 532, 531, 500, 501, 533, 500, 533, 532, 501, 502, 534, 501, 534, 533, 502, 503, 535, 502, 535, 534, 503, 504, 536, 503, 536, 535, 504, 505, 537, 504, 537, 536, 505, 506, 538, 505, 538, 537, 506, 507, 539, 506, 539, 538, 507, 508, 540, 507, 540, 539, 508, 509, 541, 508, 541, 540, 509, 510, 542, 509, 542, 541, 510, 511, 543, 510, 543, 542, 512, 513, 545, 512, 545, 544, 513, 514, 546, 513, 546, 545, 514, 515, 547, 514, 547, 546, 515, 516, 548, 515, 548, 547, 516, 517, 549, 516, 549, 548, 517, 518, 550, 517, 550, 549, 518, 519, 551, 518, 551, 550, 519, 520, 552, 519, 552, 551, 520, 521, 553, 520, 553, 552, 521, 522, 554, 521, 554, 553, 522, 523, 555, 522, 555, 554, 523, 524, 556, 523, 556, 555, 524, 525, 557, 524, 557, 556, 525, 526, 558, 525, 558, 557, 526, 527, 559, 526, 559, 558, 527, 528, 560, 527, 560, 559, 528, 529, 561, 528, 561, 560, 529, 530, 562, 529, 562, 561, 530, 531, 563, 530, 563, 562, 531, 532, 564, 531, 564, 563, 532, 533, 565, 532, 565, 564, 533, 534, 566, 533, 566, 565, 534, 535, 567, 534, 567, 566, 535, 536, 568, 535, 568, 567, 536, 537, 569, 536, 569, 568, 537, 538, 570, 537, 570, 569, 538, 539, 571, 538, 571, 570, 539, 540, 572, 539, 572, 571, 540, 541, 573, 540, 573, 572, 541, 542, 574, 541, 574, 573, 542, 543, 575, 542, 575, 574, 544, 545, 577, 544, 577, 576, 545, 546, 578, 545, 578, 577, 546, 547, 579, 546, 579, 578, 547, 548, 580, 547, 580, 579, 548, 549, 581, 548, 581, 580, 549, 550, 582, 549, 582, 581, 550, 551, 583, 550, 583, 582, 551, 552, 584, 551, 584, 583, 552, 553, 585, 552, 585, 584, 553, 554, 586, 553, 586, 585, 554, 555, 587, 554, 587, 586, 555, 556, 588, 555, 588, 587, 556, 557, 589, 556, 589, 588, 557, 558, 590, 557, 590, 589, 558, 559, 591, 558, 591, 590, 559, 560, 592, 559, 592, 591, 560, 561, 593, 560, 593, 592, 561, 562, 594, 561, 594, 593, 562, 563, 595, 562, 595, 594, 563, 564, 596, 563, 596, 595, 564, 565, 597, 564, 597, 596, 565, 566, 598, 565, 598, 597, 566, 567, 599, 566, 599, 598, 567, 568, 600, 567, 600, 599, 568, 569, 601, 568, 601, 600, 569, 570, 602, 569, 602, 601, 570, 571, 603, 570, 603, 602, 571, 572, 604, 571, 604, 603, 572, 573, 605, 572, 605, 604, 573, 574, 606, 573, 606, 605, 574, 575, 607, 574, 607, 606, 576, 577, 609, 576, 609, 608, 577, 578, 610, 577, 610, 609, 578, 579, 611, 578, 611, 610, 579, 580, 612, 579, 612, 611, 580, 581, 613, 580, 613, 612, 581, 582, 614, 581, 614, 613, 582, 583, 615, 582, 615, 614, 583, 584, 616, 583, 616, 615, 584, 585, 617, 584, 617, 616, 585, 586, 618, 585, 618, 617, 586, 587, 619, 586, 619, 618, 587, 588, 620, 587, 620, 619, 588, 589, 621, 588, 621, 620, 589, 590, 622, 589, 622, 621, 590, 591, 623, 590, 623, 622, 591, 592, 624, 591, 624, 623, 592, 593, 625, 592, 625, 624, 593, 594, 626, 593, 626, 625, 594, 595, 627, 594, 627, 626, 595, 596, 628, 595, 628, 627, 596, 597, 629, 596, 629, 628, 597, 598, 630, 597, 630, 629, 598, 599, 631, 598, 631, 630, 599, 600, 632, 599, 632, 631, 600, 601, 633, 600, 633, 632, 601, 602, 634, 601, 634, 633, 602, 603, 635, 602, 635, 634, 603, 604, 636, 603, 636, 635, 604, 605, 637, 604, 637, 636, 605, 606, 638, 605, 638, 637, 606, 607, 639, 606, 639, 638, 608, 609, 641, 608, 641, 640, 609, 610, 642, 609, 642, 641, 610, 611, 643, 610, 643, 642, 611, 612, 644, 611, 644, 643, 612, 613, 645, 612, 645, 644, 613, 614, 646, 613, 646, 645, 614, 615, 647, 614, 647, 646, 615, 616, 648, 615, 648, 647, 616, 617, 649, 616, 649, 648, 617, 618, 650, 617, 650, 649, 618, 619, 651, 618, 651, 650, 619, 620, 652, 619, 652, 651, 620, 621, 653, 620, 653, 652, 621, 622, 654, 621, 654, 653, 622, 623, 655, 622, 655, 654, 623, 624, 656, 623, 656, 655, 624, 625, 657, 624, 657, 656, 625, 626, 658, 625, 658, 657, 626, 627, 659, 626, 659, 658, 627, 628, 660, 627, 660, 659, 628, 629, 661, 628, 661, 660, 629, 630, 662, 629, 662, 661, 630, 631, 663, 630, 663, 662, 631, 632, 664, 631, 664, 663, 632, 633, 665, 632, 665, 664, 633, 634, 666, 633, 666, 665, 634, 635, 667, 634, 667, 666, 635, 636, 668, 635, 668, 667, 636, 637, 669, 636, 669, 668, 637, 638, 670, 637, 670, 669, 638, 639, 671, 638, 671, 670, 640, 641, 673, 640, 673, 672, 641, 642, 674, 641, 674, 673, 642, 643, 675, 642, 675, 674, 643, 644, 676, 643, 676, 675, 644, 645, 677, 644, 677, 676, 645, 646, 678, 645, 678, 677, 646, 647, 679, 646, 679, 678, 647, 648, 680, 647, 680, 679, 648, 649, 681, 648, 681, 680, 649, 650, 682, 649, 682, 681, 650, 651, 683, 650, 683, 682, 651, 652, 684, 651, 684, 683, 652, 653, 685, 652, 685, 684, 653, 654, 686, 653, 686, 685, 654, 655, 687, 654, 687, 686, 655, 656, 688, 655, 688, 687, 656, 657, 689, 656, 689, 688, 657, 658, 690, 657, 690, 689, 658, 659, 691, 658, 691, 690, 659, 660, 692, 659, 692, 691, 660, 661, 693, 660, 693, 692, 661, 662, 694, 661, 694, 693, 662, 663, 695, 662, 695, 694, 663, 664, 696, 663, 696, 695, 664, 665, 697, 664, 697, 696, 665, 666, 698, 665, 698, 697, 666, 667, 699, 666, 699, 698, 667, 668, 700, 667, 700, 699, 668, 669, 701, 668, 701, 700, 669, 670, 702, 669, 702, 701, 670, 671, 703, 670, 703, 702, 672, 673, 705, 672, 705, 704, 673, 674, 706, 673, 706, 705, 674, 675, 707, 674, 707, 706, 675, 676, 708, 675, 708, 707, 676, 677, 709, 676, 709, 708, 677, 678, 710, 677, 710, 709, 678, 679, 711, 678, 711, 710, 679, 680, 712, 679, 712, 711, 680, 681, 713, 680, 713, 712, 681, 682, 714, 681, 714, 713, 682, 683, 715, 682, 715, 714, 683, 684, 716, 683, 716, 715, 684, 685, 717, 684, 717, 716, 685, 686, 718, 685, 718, 717, 686, 687, 719, 686, 719, 718, 687, 688, 720, 687, 720, 719, 688, 689, 721, 688, 721, 720, 689, 690, 722, 689, 722, 721, 690, 691, 723, 690, 723, 722, 691, 692, 724, 691, 724, 723, 692, 693, 725, 692, 725, 724, 693, 694, 726, 693, 726, 725, 694, 695, 727, 694, 727, 726, 695, 696, 728, 695, 728, 727, 696, 697, 729, 696, 729, 728, 697, 698, 730, 697, 730, 729, 698, 699, 731, 698, 731, 730, 699, 700, 732, 699, 732, 731, 700, 701, 733, 700, 733, 732, 701, 702, 734, 701, 734, 733, 702, 703, 735, 702, 735, 734, 704, 705, 737, 704, 737, 736, 705, 706, 738, 705, 738, 737, 706, 707, 739, 706, 739, 738, 707, 708, 740, 707, 740, 739, 708, 709, 741, 708, 741, 740, 709, 710, 742, 709, 742, 741, 710, 711, 743, 710, 743, 742, 711, 712, 744, 711, 744, 743, 712, 713, 745, 712, 745, 744, 713, 714, 746, 713, 746, 745, 714, 715, 747, 714, 747, 746, 715, 716, 748, 715, 748, 747, 716, 717, 749, 716, 749, 748, 717, 718, 750, 717, 750, 749, 718, 719, 751, 718, 751, 750, 719, 720, 752, 719, 752, 751, 720, 721, 753, 720, 753, 752, 721, 722, 754, 721, 754, 753, 722, 723, 755, 722, 755, 754, 723, 724, 756, 723, 756, 755, 724, 725, 757, 724, 757, 756, 725, 726, 758, 725, 758, 757, 726, 727, 759, 726, 759, 758, 727, 728, 760, 727, 760, 759, 728, 729, 761, 728, 761, 760, 729, 730, 762, 729, 762, 761, 730, 731, 763, 730, 763, 762, 731, 732, 764, 731, 764, 763, 732, 733, 765, 732, 765, 764, 733, 734, 766, 733, 766, 765, 734, 735, 767, 734, 767, 766, 736, 737, 769, 736, 769, 768, 737, 738, 770, 737, 770, 769, 738, 739, 771, 738, 771, 770, 739, 740, 772, 739, 772, 771, 740, 741, 773, 740, 773, 772, 741, 742, 774, 741, 774, 773, 742, 743, 775, 742, 775, 774, 743, 744, 776, 743, 776, 775, 744, 745, 777, 744, 777, 776, 745, 746, 778, 745, 778, 777, 746, 747, 779, 746, 779, 778, 747, 748, 780, 747, 780, 779, 748, 749, 781, 748, 781, 780, 749, 750, 782, 749, 782, 781, 750, 751, 783, 750, 783, 782, 751, 752, 784, 751, 784, 783, 752, 753, 785, 752, 785, 784, 753, 754, 786, 753, 786, 785, 754, 755, 787, 754, 787, 786, 755, 756, 788, 755, 788, 787, 756, 757, 789, 756, 789, 788, 757, 758, 790, 757, 790, 789, 758, 759, 791, 758, 791, 790, 759, 760, 792, 759, 792, 791, 760, 761, 793, 760, 793, 792, 761, 762, 794, 761, 794, 793, 762, 763, 795, 762, 795, 794, 763, 764, 796, 763, 796, 795, 764, 765, 797, 764, 797, 796, 765, 766, 798, 765, 798, 797, 766, 767, 799, 766, 799, 798, 768, 769, 801, 768, 801, 800, 769, 770, 802, 769, 802, 801, 770, 771, 803, 770, 803, 802, 771, 772, 804, 771, 804, 803, 772, 773, 805, 772, 805, 804, 773, 774, 806, 773, 806, 805, 774, 775, 807, 774, 807, 806, 775, 776, 808, 775, 808, 807, 776, 777, 809, 776, 809, 808, 777, 778, 810, 777, 810, 809, 778, 779, 811, 778, 811, 810, 779, 780, 812, 779, 812, 811, 780, 781, 813, 780, 813, 812, 781, 782, 814, 781, 814, 813, 782, 783, 815, 782, 815, 814, 783, 784, 816, 783, 816, 815, 784, 785, 817, 784, 817, 816, 785, 786, 818, 785, 818, 817, 786, 787, 819, 786, 819, 818, 787, 788, 820, 787, 820, 819, 788, 789, 821, 788, 821, 820, 789, 790, 822, 789, 822, 821, 790, 791, 823, 790, 823, 822, 791, 792, 824, 791, 824, 823, 792, 793, 825, 792, 825, 824, 793, 794, 826, 793, 826, 825, 794, 795, 827, 794, 827, 826, 795, 796, 828, 795, 828, 827, 796, 797, 829, 796, 829, 828, 797, 798, 830, 797, 830, 829, 798, 799, 831, 798, 831, 830, 800, 801, 833, 800, 833, 832, 801, 802, 834, 801, 834, 833, 802, 803, 835, 802, 835, 834, 803, 804, 836, 803, 836, 835, 804, 805, 837, 804, 837, 836, 805, 806, 838, 805, 838, 837, 806, 807, 839, 806, 839, 838, 807, 808, 840, 807, 840, 839, 808, 809, 841, 808, 841, 840, 809, 810, 842, 809, 842, 841, 810, 811, 843, 810, 843, 842, 811, 812, 844, 811, 844, 843, 812, 813, 845, 812, 845, 844, 813, 814, 846, 813, 846, 845, 814, 815, 847, 814, 847, 846, 815, 816, 848, 815, 848, 847, 816, 817, 849, 816, 849, 848, 817, 818, 850, 817, 850, 849, 818, 819, 851, 818, 851, 850, 819, 820, 852, 819, 852, 851, 820, 821, 853, 820, 853, 852, 821, 822, 854, 821, 854, 853, 822, 823, 855, 822, 855, 854, 823, 824, 856, 823, 856, 855, 824, 825, 857, 824, 857, 856, 825, 826, 858, 825, 858, 857, 826, 827, 859, 826, 859, 858, 827, 828, 860, 827, 860, 859, 828, 829, 861, 828, 861, 860, 829, 830, 862, 829, 862, 861, 830, 831, 863, 830, 863, 862, 832, 833, 865, 832, 865, 864, 833, 834, 866, 833, 866, 865, 834, 835, 867, 834, 867, 866, 835, 836, 868, 835, 868, 867, 836, 837, 869, 836, 869, 868, 837, 838, 870, 837, 870, 869, 838, 839, 871, 838, 871, 870, 839, 840, 872, 839, 872, 871, 840, 841, 873, 840, 873, 872, 841, 842, 874, 841, 874, 873, 842, 843, 875, 842, 875, 874, 843, 844, 876, 843, 876, 875, 844, 845, 877, 844, 877, 876, 845, 846, 878, 845, 878, 877, 846, 847, 879, 846, 879, 878, 847, 848, 880, 847, 880, 879, 848, 849, 881, 848, 881, 880, 849, 850, 882, 849, 882, 881, 850, 851, 883, 850, 883, 882, 851, 852, 884, 851, 884, 883, 852, 853, 885, 852, 885, 884, 853, 854, 886, 853, 886, 885, 854, 855, 887, 854, 887, 886, 855, 856, 888, 855, 888, 887, 856, 857, 889, 856, 889, 888, 857, 858, 890, 857, 890, 889, 858, 859, 891, 858, 891, 890, 859, 860, 892, 859, 892, 891, 860, 861, 893, 860, 893, 892, 861, 862, 894, 861, 894, 893, 862, 863, 895, 862, 895, 894, 864, 865, 897, 864, 897, 896, 865, 866, 898, 865, 898, 897, 866, 867, 899, 866, 899, 898, 867, 868, 900, 867, 900, 899, 868, 869, 901, 868, 901, 900, 869, 870, 902, 869, 902, 901, 870, 871, 903, 870, 903, 902, 871, 872, 904, 871, 904, 903, 872, 873, 905, 872, 905, 904, 873, 874, 906, 873, 906, 905, 874, 875, 907, 874, 907, 906, 875, 876, 908, 875, 908, 907, 876, 877, 909, 876, 909, 908, 877, 878, 910, 877, 910, 909, 878, 879, 911, 878, 911, 910, 879, 880, 912, 879, 912, 911, 880, 881, 913, 880, 913, 912, 881, 882, 914, 881, 914, 913, 882, 883, 915, 882, 915, 914, 883, 884, 916, 883, 916, 915, 884, 885, 917, 884, 917, 916, 885, 886, 918, 885, 918, 917, 886, 887, 919, 886, 919, 918, 887, 888, 920, 887, 920, 919, 888, 889, 921, 888, 921, 920, 889, 890, 922, 889, 922, 921, 890, 891, 923, 890, 923, 922, 891, 892, 924, 891, 924, 923, 892, 893, 925, 892, 925, 924, 893, 894, 926, 893, 926, 925, 894, 895, 927, 894, 927, 926, 896, 897, 929, 896, 929, 928, 897, 898, 930, 897, 930, 929, 898, 899, 931, 898, 931, 930, 899, 900, 932, 899, 932, 931, 900, 901, 933, 900, 933, 932, 901, 902, 934, 901, 934, 933, 902, 903, 935, 902, 935, 934, 903, 904, 936, 903, 936, 935, 904, 905, 937, 904, 937, 936, 905, 906, 938, 905, 938, 937, 906, 907, 939, 906, 939, 938, 907, 908, 940, 907, 940, 939, 908, 909, 941, 908, 941, 940, 909, 910, 942, 909, 942, 941, 910, 911, 943, 910, 943, 942, 911, 912, 944, 911, 944, 943, 912, 913, 945, 912, 945, 944, 913, 914, 946, 913, 946, 945, 914, 915, 947, 914, 947, 946, 915, 916, 948, 915, 948, 947, 916, 917, 949, 916, 949, 948, 917, 918, 950, 917, 950, 949, 918, 919, 951, 918, 951, 950, 919, 920, 952, 919, 952, 951, 920, 921, 953, 920, 953, 952, 921, 922, 954, 921, 954, 953, 922, 923, 955, 922, 955, 954, 923, 924, 956, 923, 956, 955, 924, 925, 957, 924, 957, 956, 925, 926, 958, 925, 958, 957, 926, 927, 959, 926, 959, 958, 928, 929, 961, 928, 961, 960, 929, 930, 962, 929, 962, 961, 930, 931, 963, 930, 963, 962, 931, 932, 964, 931, 964, 963, 932, 933, 965, 932, 965, 964, 933, 934, 966, 933, 966, 965, 934, 935, 967, 934, 967, 966, 935, 936, 968, 935, 968, 967, 936, 937, 969, 936, 969, 968, 937, 938, 970, 937, 970, 969, 938, 939, 971, 938, 971, 970, 939, 940, 972, 939, 972, 971, 940, 941, 973, 940, 973, 972, 941, 942, 974, 941, 974, 973, 942, 943, 975, 942, 975, 974, 943, 944, 976, 943, 976, 975, 944, 945, 977, 944, 977, 976, 945, 946, 978, 945, 978, 977, 946, 947, 979, 946, 979, 978, 947, 948, 980, 947, 980, 979, 948, 949, 981, 948, 981, 980, 949, 950, 982, 949, 982, 981, 950, 951, 983, 950, 983, 982, 951, 952, 984, 951, 984, 983, 952, 953, 985, 952, 985, 984, 953, 954, 986, 953, 986, 985, 954, 955, 987, 954, 987, 986, 955, 956, 988, 955, 988, 987, 956, 957, 989, 956, 989, 988, 957, 958, 990, 957, 990, 989, 958, 959, 991, 958, 991, 990, 960, 961, 993, 960, 993, 992, 961, 962, 994, 961, 994, 993, 962, 963, 995, 962, 995, 994, 963, 964, 996, 963, 996, 995, 964, 965, 997, 964, 997, 996, 965, 966, 998, 965, 998, 997, 966, 967, 999, 966, 999, 998, 967, 968, 1000, 967, 1000, 999, 968, 969, 1001, 968, 1001, 1000, 969, 970, 1002, 969, 1002, 1001, 970, 971, 1003, 970, 1003, 1002, 971, 972, 1004, 971, 1004, 1003, 972, 973, 1005, 972, 1005, 1004, 973, 974, 1006, 973, 1006, 1005, 974, 975, 1007, 974, 1007, 1006, 975, 976, 1008, 975, 1008, 1007, 976, 977, 1009, 976, 1009, 1008, 977, 978, 1010, 977, 1010, 1009, 978, 979, 1011, 978, 1011, 1010, 979, 980, 1012, 979, 1012, 1011, 980, 981, 1013, 980, 1013, 1012, 981, 982, 1014, 981, 1014, 1013, 982, 983, 1015, 982, 1015, 1014, 983, 984, 1016, 983, 1016, 1015, 984, 985, 1017, 984, 1017, 1016, 985, 986, 1018, 985, 1018, 1017, 986, 987, 1019, 986, 1019, 1018, 987, 988, 1020, 987, 1020, 1019, 988, 989, 1021, 988, 1021, 1020, 989, 990, 1022, 989, 1022, 1021, 990, 991, 1023, 990, 1023, 1022] color3f[] primvars:displayColor = [(0.784314, 0.64705884, 0.1)] point3f[] points = [(0, 0, 20), (20, 0, 20), (40, 0, 20), (60, 0, 20), (80, 0, 20), (100, 0, 20), (120, 0, 20), (140, 0, 20), (160, 0, 20), (180, 0, 20), (200, 0, 20), (220, 0, 20), (240, 0, 20), (260, 0, 20), (280, 0, 20), (300, 0, 20), (320, 0, 20), (340, 0, 20), (360, 0, 20), (380, 0, 20), (400, 0, 20), (420, 0, 20), (440, 0, 20), (460, 0, 20), (480, 0, 20), (500, 0, 20), (520, 0, 20), (540, 0, 20), (560, 0, 20), (580, 0, 20), (600, 0, 20), (620, 0, 20), (0, 20, 20), (20, 20, 20), (40, 20, 20), (60, 20, 20), (80, 20, 20), (100, 20, 20), (120, 20, 20), (140, 20, 20), (160, 20, 20), (180, 20, 20), (200, 20, 20), (220, 20, 20), (240, 20, 20), (260, 20, 20), (280, 20, 20), (300, 20, 20), (320, 20, 20), (340, 20, 20), (360, 20, 20), (380, 20, 20), (400, 20, 20), (420, 20, 20), (440, 20, 20), (460, 20, 20), (480, 20, 20), (500, 20, 20), (520, 20, 20), (540, 20, 20), (560, 20, 20), (580, 20, 20), (600, 20, 20), (620, 20, 20), (0, 40, 20), (20, 40, 20), (40, 40, 20), (60, 40, 20), (80, 40, 20), (100, 40, 20), (120, 40, 20), (140, 40, 20), (160, 40, 20), (180, 40, 20), (200, 40, 20), (220, 40, 20), (240, 40, 20), (260, 40, 20), (280, 40, 20), (300, 40, 20), (320, 40, 20), (340, 40, 20), (360, 40, 20), (380, 40, 20), (400, 40, 20), (420, 40, 20), (440, 40, 20), (460, 40, 20), (480, 40, 20), (500, 40, 20), (520, 40, 20), (540, 40, 20), (560, 40, 20), (580, 40, 20), (600, 40, 20), (620, 40, 20), (0, 60, 20), (20, 60, 20), (40, 60, 20), (60, 60, 20), (80, 60, 20), (100, 60, 20), (120, 60, 20), (140, 60, 20), (160, 60, 20), (180, 60, 20), (200, 60, 20), (220, 60, 20), (240, 60, 20), (260, 60, 20), (280, 60, 20), (300, 60, 20), (320, 60, 20), (340, 60, 20), (360, 60, 20), (380, 60, 20), (400, 60, 20), (420, 60, 20), (440, 60, 20), (460, 60, 20), (480, 60, 20), (500, 60, 20), (520, 60, 20), (540, 60, 20), (560, 60, 20), (580, 60, 20), (600, 60, 20), (620, 60, 20), (0, 80, 20), (20, 80, 20), (40, 80, 20), (60, 80, 20), (80, 80, 20), (100, 80, 20), (120, 80, 20), (140, 80, 20), (160, 80, 20), (180, 80, 20), (200, 80, 20), (220, 80, 20), (240, 80, 20), (260, 80, 20), (280, 80, 20), (300, 80, 20), (320, 80, 20), (340, 80, 20), (360, 80, 20), (380, 80, 20), (400, 80, 20), (420, 80, 20), (440, 80, 20), (460, 80, 20), (480, 80, 20), (500, 80, 20), (520, 80, 20), (540, 80, 20), (560, 80, 20), (580, 80, 20), (600, 80, 20), (620, 80, 20), (0, 100, 20), (20, 100, 20), (40, 100, 20), (60, 100, 20), (80, 100, 20), (100, 100, 20), (120, 100, 20), (140, 100, 20), (160, 100, 20), (180, 100, 20), (200, 100, 20), (220, 100, 20), (240, 100, 20), (260, 100, 20), (280, 100, 20), (300, 100, 20), (320, 100, 20), (340, 100, 20), (360, 100, 20), (380, 100, 20), (400, 100, 20), (420, 100, 20), (440, 100, 20), (460, 100, 20), (480, 100, 20), (500, 100, 20), (520, 100, 20), (540, 100, 20), (560, 100, 20), (580, 100, 20), (600, 100, 20), (620, 100, 20), (0, 120, 20), (20, 120, 20), (40, 120, 20), (60, 120, 20), (80, 120, 20), (100, 120, 20), (120, 120, 20), (140, 120, 20), (160, 120, 20), (180, 120, 20), (200, 120, 20), (220, 120, 20), (240, 120, 20), (260, 120, 20), (280, 120, 20), (300, 120, 20), (320, 120, 20), (340, 120, 20), (360, 120, 20), (380, 120, 20), (400, 120, 20), (420, 120, 20), (440, 120, 20), (460, 120, 20), (480, 120, 20), (500, 120, 20), (520, 120, 20), (540, 120, 20), (560, 120, 20), (580, 120, 20), (600, 120, 20), (620, 120, 20), (0, 140, 20), (20, 140, 20), (40, 140, 20), (60, 140, 20), (80, 140, 20), (100, 140, 20), (120, 140, 20), (140, 140, 20), (160, 140, 20), (180, 140, 20), (200, 140, 20), (220, 140, 20), (240, 140, 20), (260, 140, 20), (280, 140, 20), (300, 140, 20), (320, 140, 20), (340, 140, 20), (360, 140, 20), (380, 140, 20), (400, 140, 20), (420, 140, 20), (440, 140, 20), (460, 140, 20), (480, 140, 20), (500, 140, 20), (520, 140, 20), (540, 140, 20), (560, 140, 20), (580, 140, 20), (600, 140, 20), (620, 140, 20), (0, 160, 20), (20, 160, 20), (40, 160, 20), (60, 160, 20), (80, 160, 20), (100, 160, 20), (120, 160, 20), (140, 160, 20), (160, 160, 20), (180, 160, 20), (200, 160, 20), (220, 160, 20), (240, 160, 20), (260, 160, 20), (280, 160, 20), (300, 160, 20), (320, 160, 20), (340, 160, 20), (360, 160, 20), (380, 160, 20), (400, 160, 20), (420, 160, 20), (440, 160, 20), (460, 160, 20), (480, 160, 20), (500, 160, 20), (520, 160, 20), (540, 160, 20), (560, 160, 20), (580, 160, 20), (600, 160, 20), (620, 160, 20), (0, 180, 20), (20, 180, 20), (40, 180, 20), (60, 180, 20), (80, 180, 20), (100, 180, 20), (120, 180, 20), (140, 180, 20), (160, 180, 20), (180, 180, 20), (200, 180, 20), (220, 180, 20), (240, 180, 20), (260, 180, 20), (280, 180, 20), (300, 180, 20), (320, 180, 20), (340, 180, 20), (360, 180, 20), (380, 180, 20), (400, 180, 20), (420, 180, 20), (440, 180, 20), (460, 180, 20), (480, 180, 20), (500, 180, 20), (520, 180, 20), (540, 180, 20), (560, 180, 20), (580, 180, 20), (600, 180, 20), (620, 180, 20), (0, 200, 20), (20, 200, 20), (40, 200, 20), (60, 200, 20), (80, 200, 20), (100, 200, 20), (120, 200, 20), (140, 200, 20), (160, 200, 20), (180, 200, 20), (200, 200, 20), (220, 200, 20), (240, 200, 20), (260, 200, 20), (280, 200, 20), (300, 200, 20), (320, 200, 20), (340, 200, 20), (360, 200, 20), (380, 200, 20), (400, 200, 20), (420, 200, 20), (440, 200, 20), (460, 200, 20), (480, 200, 20), (500, 200, 20), (520, 200, 20), (540, 200, 20), (560, 200, 20), (580, 200, 20), (600, 200, 20), (620, 200, 20), (0, 220, 20), (20, 220, 20), (40, 220, 20), (60, 220, 20), (80, 220, 20), (100, 220, 20), (120, 220, 20), (140, 220, 20), (160, 220, 20), (180, 220, 20), (200, 220, 20), (220, 220, 20), (240, 220, 20), (260, 220, 20), (280, 220, 20), (300, 220, 20), (320, 220, 20), (340, 220, 20), (360, 220, 20), (380, 220, 20), (400, 220, 20), (420, 220, 20), (440, 220, 20), (460, 220, 20), (480, 220, 20), (500, 220, 20), (520, 220, 20), (540, 220, 20), (560, 220, 20), (580, 220, 20), (600, 220, 20), (620, 220, 20), (0, 240, 20), (20, 240, 20), (40, 240, 20), (60, 240, 20), (80, 240, 20), (100, 240, 20), (120, 240, 20), (140, 240, 20), (160, 240, 20), (180, 240, 20), (200, 240, 20), (220, 240, 20), (240, 240, 20), (260, 240, 20), (280, 240, 20), (300, 240, 20), (320, 240, 20), (340, 240, 20), (360, 240, 20), (380, 240, 20), (400, 240, 20), (420, 240, 20), (440, 240, 20), (460, 240, 20), (480, 240, 20), (500, 240, 20), (520, 240, 20), (540, 240, 20), (560, 240, 20), (580, 240, 20), (600, 240, 20), (620, 240, 20), (0, 260, 20), (20, 260, 20), (40, 260, 20), (60, 260, 20), (80, 260, 20), (100, 260, 20), (120, 260, 20), (140, 260, 20), (160, 260, 20), (180, 260, 20), (200, 260, 20), (220, 260, 20), (240, 260, 20), (260, 260, 20), (280, 260, 20), (300, 260, 20), (320, 260, 20), (340, 260, 20), (360, 260, 20), (380, 260, 20), (400, 260, 20), (420, 260, 20), (440, 260, 20), (460, 260, 20), (480, 260, 20), (500, 260, 20), (520, 260, 20), (540, 260, 20), (560, 260, 20), (580, 260, 20), (600, 260, 20), (620, 260, 20), (0, 280, 20), (20, 280, 20), (40, 280, 20), (60, 280, 20), (80, 280, 20), (100, 280, 20), (120, 280, 20), (140, 280, 20), (160, 280, 20), (180, 280, 20), (200, 280, 20), (220, 280, 20), (240, 280, 20), (260, 280, 20), (280, 280, 20), (300, 280, 20), (320, 280, 20), (340, 280, 20), (360, 280, 20), (380, 280, 20), (400, 280, 20), (420, 280, 20), (440, 280, 20), (460, 280, 20), (480, 280, 20), (500, 280, 20), (520, 280, 20), (540, 280, 20), (560, 280, 20), (580, 280, 20), (600, 280, 20), (620, 280, 20), (0, 300, 20), (20, 300, 20), (40, 300, 20), (60, 300, 20), (80, 300, 20), (100, 300, 20), (120, 300, 20), (140, 300, 20), (160, 300, 20), (180, 300, 20), (200, 300, 20), (220, 300, 20), (240, 300, 20), (260, 300, 20), (280, 300, 20), (300, 300, 20), (320, 300, 20), (340, 300, 20), (360, 300, 20), (380, 300, 20), (400, 300, 20), (420, 300, 20), (440, 300, 20), (460, 300, 20), (480, 300, 20), (500, 300, 20), (520, 300, 20), (540, 300, 20), (560, 300, 20), (580, 300, 20), (600, 300, 20), (620, 300, 20), (0, 320, 20), (20, 320, 20), (40, 320, 20), (60, 320, 20), (80, 320, 20), (100, 320, 20), (120, 320, 20), (140, 320, 20), (160, 320, 20), (180, 320, 20), (200, 320, 20), (220, 320, 20), (240, 320, 20), (260, 320, 20), (280, 320, 20), (300, 320, 20), (320, 320, 20), (340, 320, 20), (360, 320, 20), (380, 320, 20), (400, 320, 20), (420, 320, 20), (440, 320, 20), (460, 320, 20), (480, 320, 20), (500, 320, 20), (520, 320, 20), (540, 320, 20), (560, 320, 20), (580, 320, 20), (600, 320, 20), (620, 320, 20), (0, 340, 20), (20, 340, 20), (40, 340, 20), (60, 340, 20), (80, 340, 20), (100, 340, 20), (120, 340, 20), (140, 340, 20), (160, 340, 20), (180, 340, 20), (200, 340, 20), (220, 340, 20), (240, 340, 20), (260, 340, 20), (280, 340, 20), (300, 340, 20), (320, 340, 20), (340, 340, 20), (360, 340, 20), (380, 340, 20), (400, 340, 20), (420, 340, 20), (440, 340, 20), (460, 340, 20), (480, 340, 20), (500, 340, 20), (520, 340, 20), (540, 340, 20), (560, 340, 20), (580, 340, 20), (600, 340, 20), (620, 340, 20), (0, 360, 20), (20, 360, 20), (40, 360, 20), (60, 360, 20), (80, 360, 20), (100, 360, 20), (120, 360, 20), (140, 360, 20), (160, 360, 20), (180, 360, 20), (200, 360, 20), (220, 360, 20), (240, 360, 20), (260, 360, 20), (280, 360, 20), (300, 360, 20), (320, 360, 20), (340, 360, 20), (360, 360, 20), (380, 360, 20), (400, 360, 20), (420, 360, 20), (440, 360, 20), (460, 360, 20), (480, 360, 20), (500, 360, 20), (520, 360, 20), (540, 360, 20), (560, 360, 20), (580, 360, 20), (600, 360, 20), (620, 360, 20), (0, 380, 20), (20, 380, 20), (40, 380, 20), (60, 380, 20), (80, 380, 20), (100, 380, 20), (120, 380, 20), (140, 380, 20), (160, 380, 20), (180, 380, 20), (200, 380, 20), (220, 380, 20), (240, 380, 20), (260, 380, 20), (280, 380, 20), (300, 380, 20), (320, 380, 20), (340, 380, 20), (360, 380, 20), (380, 380, 20), (400, 380, 20), (420, 380, 20), (440, 380, 20), (460, 380, 20), (480, 380, 20), (500, 380, 20), (520, 380, 20), (540, 380, 20), (560, 380, 20), (580, 380, 20), (600, 380, 20), (620, 380, 20), (0, 400, 20), (20, 400, 20), (40, 400, 20), (60, 400, 20), (80, 400, 20), (100, 400, 20), (120, 400, 20), (140, 400, 20), (160, 400, 20), (180, 400, 20), (200, 400, 20), (220, 400, 20), (240, 400, 20), (260, 400, 20), (280, 400, 20), (300, 400, 20), (320, 400, 20), (340, 400, 20), (360, 400, 20), (380, 400, 20), (400, 400, 20), (420, 400, 20), (440, 400, 20), (460, 400, 20), (480, 400, 20), (500, 400, 20), (520, 400, 20), (540, 400, 20), (560, 400, 20), (580, 400, 20), (600, 400, 20), (620, 400, 20), (0, 420, 20), (20, 420, 20), (40, 420, 20), (60, 420, 20), (80, 420, 20), (100, 420, 20), (120, 420, 20), (140, 420, 20), (160, 420, 20), (180, 420, 20), (200, 420, 20), (220, 420, 20), (240, 420, 20), (260, 420, 20), (280, 420, 20), (300, 420, 20), (320, 420, 20), (340, 420, 20), (360, 420, 20), (380, 420, 20), (400, 420, 20), (420, 420, 20), (440, 420, 20), (460, 420, 20), (480, 420, 20), (500, 420, 20), (520, 420, 20), (540, 420, 20), (560, 420, 20), (580, 420, 20), (600, 420, 20), (620, 420, 20), (0, 440, 20), (20, 440, 20), (40, 440, 20), (60, 440, 20), (80, 440, 20), (100, 440, 20), (120, 440, 20), (140, 440, 20), (160, 440, 20), (180, 440, 20), (200, 440, 20), (220, 440, 20), (240, 440, 20), (260, 440, 20), (280, 440, 20), (300, 440, 20), (320, 440, 20), (340, 440, 20), (360, 440, 20), (380, 440, 20), (400, 440, 20), (420, 440, 20), (440, 440, 20), (460, 440, 20), (480, 440, 20), (500, 440, 20), (520, 440, 20), (540, 440, 20), (560, 440, 20), (580, 440, 20), (600, 440, 20), (620, 440, 20), (0, 460, 20), (20, 460, 20), (40, 460, 20), (60, 460, 20), (80, 460, 20), (100, 460, 20), (120, 460, 20), (140, 460, 20), (160, 460, 20), (180, 460, 20), (200, 460, 20), (220, 460, 20), (240, 460, 20), (260, 460, 20), (280, 460, 20), (300, 460, 20), (320, 460, 20), (340, 460, 20), (360, 460, 20), (380, 460, 20), (400, 460, 20), (420, 460, 20), (440, 460, 20), (460, 460, 20), (480, 460, 20), (500, 460, 20), (520, 460, 20), (540, 460, 20), (560, 460, 20), (580, 460, 20), (600, 460, 20), (620, 460, 20), (0, 480, 20), (20, 480, 20), (40, 480, 20), (60, 480, 20), (80, 480, 20), (100, 480, 20), (120, 480, 20), (140, 480, 20), (160, 480, 20), (180, 480, 20), (200, 480, 20), (220, 480, 20), (240, 480, 20), (260, 480, 20), (280, 480, 20), (300, 480, 20), (320, 480, 20), (340, 480, 20), (360, 480, 20), (380, 480, 20), (400, 480, 20), (420, 480, 20), (440, 480, 20), (460, 480, 20), (480, 480, 20), (500, 480, 20), (520, 480, 20), (540, 480, 20), (560, 480, 20), (580, 480, 20), (600, 480, 20), (620, 480, 20), (0, 500, 20), (20, 500, 20), (40, 500, 20), (60, 500, 20), (80, 500, 20), (100, 500, 20), (120, 500, 20), (140, 500, 20), (160, 500, 20), (180, 500, 20), (200, 500, 20), (220, 500, 20), (240, 500, 20), (260, 500, 20), (280, 500, 20), (300, 500, 20), (320, 500, 20), (340, 500, 20), (360, 500, 20), (380, 500, 20), (400, 500, 20), (420, 500, 20), (440, 500, 20), (460, 500, 20), (480, 500, 20), (500, 500, 20), (520, 500, 20), (540, 500, 20), (560, 500, 20), (580, 500, 20), (600, 500, 20), (620, 500, 20), (0, 520, 20), (20, 520, 20), (40, 520, 20), (60, 520, 20), (80, 520, 20), (100, 520, 20), (120, 520, 20), (140, 520, 20), (160, 520, 20), (180, 520, 20), (200, 520, 20), (220, 520, 20), (240, 520, 20), (260, 520, 20), (280, 520, 20), (300, 520, 20), (320, 520, 20), (340, 520, 20), (360, 520, 20), (380, 520, 20), (400, 520, 20), (420, 520, 20), (440, 520, 20), (460, 520, 20), (480, 520, 20), (500, 520, 20), (520, 520, 20), (540, 520, 20), (560, 520, 20), (580, 520, 20), (600, 520, 20), (620, 520, 20), (0, 540, 20), (20, 540, 20), (40, 540, 20), (60, 540, 20), (80, 540, 20), (100, 540, 20), (120, 540, 20), (140, 540, 20), (160, 540, 20), (180, 540, 20), (200, 540, 20), (220, 540, 20), (240, 540, 20), (260, 540, 20), (280, 540, 20), (300, 540, 20), (320, 540, 20), (340, 540, 20), (360, 540, 20), (380, 540, 20), (400, 540, 20), (420, 540, 20), (440, 540, 20), (460, 540, 20), (480, 540, 20), (500, 540, 20), (520, 540, 20), (540, 540, 20), (560, 540, 20), (580, 540, 20), (600, 540, 20), (620, 540, 20), (0, 560, 20), (20, 560, 20), (40, 560, 20), (60, 560, 20), (80, 560, 20), (100, 560, 20), (120, 560, 20), (140, 560, 20), (160, 560, 20), (180, 560, 20), (200, 560, 20), (220, 560, 20), (240, 560, 20), (260, 560, 20), (280, 560, 20), (300, 560, 20), (320, 560, 20), (340, 560, 20), (360, 560, 20), (380, 560, 20), (400, 560, 20), (420, 560, 20), (440, 560, 20), (460, 560, 20), (480, 560, 20), (500, 560, 20), (520, 560, 20), (540, 560, 20), (560, 560, 20), (580, 560, 20), (600, 560, 20), (620, 560, 20), (0, 580, 20), (20, 580, 20), (40, 580, 20), (60, 580, 20), (80, 580, 20), (100, 580, 20), (120, 580, 20), (140, 580, 20), (160, 580, 20), (180, 580, 20), (200, 580, 20), (220, 580, 20), (240, 580, 20), (260, 580, 20), (280, 580, 20), (300, 580, 20), (320, 580, 20), (340, 580, 20), (360, 580, 20), (380, 580, 20), (400, 580, 20), (420, 580, 20), (440, 580, 20), (460, 580, 20), (480, 580, 20), (500, 580, 20), (520, 580, 20), (540, 580, 20), (560, 580, 20), (580, 580, 20), (600, 580, 20), (620, 580, 20), (0, 600, 20), (20, 600, 20), (40, 600, 20), (60, 600, 20), (80, 600, 20), (100, 600, 20), (120, 600, 20), (140, 600, 20), (160, 600, 20), (180, 600, 20), (200, 600, 20), (220, 600, 20), (240, 600, 20), (260, 600, 20), (280, 600, 20), (300, 600, 20), (320, 600, 20), (340, 600, 20), (360, 600, 20), (380, 600, 20), (400, 600, 20), (420, 600, 20), (440, 600, 20), (460, 600, 20), (480, 600, 20), (500, 600, 20), (520, 600, 20), (540, 600, 20), (560, 600, 20), (580, 600, 20), (600, 600, 20), (620, 600, 20), (0, 620, 20), (20, 620, 20), (40, 620, 20), (60, 620, 20), (80, 620, 20), (100, 620, 20), (120, 620, 20), (140, 620, 20), (160, 620, 20), (180, 620, 20), (200, 620, 20), (220, 620, 20), (240, 620, 20), (260, 620, 20), (280, 620, 20), (300, 620, 20), (320, 620, 20), (340, 620, 20), (360, 620, 20), (380, 620, 20), (400, 620, 20), (420, 620, 20), (440, 620, 20), (460, 620, 20), (480, 620, 20), (500, 620, 20), (520, 620, 20), (540, 620, 20), (560, 620, 20), (580, 620, 20), (600, 620, 20), (620, 620, 20)] point3f[] points.connect = </defaultPrim/testDeformer.outputs:points> } }
omniverse-code/kit/exts/omni.graph/data/ExampleCube.usda
#usda 1.0 ( doc = """Generated from Composed Stage of root layer """ ) def Xform "World" { def Xform "inputPrim" { custom float value = 0.5 } def OmniGraph "graph" { custom token evaluator:type = "push" custom int2 fileFormatVersion = (1, 4) token fabricCacheBacking = "Shared" token pipelineStage = "pipelineStageSimulation" def OmniGraphNode "NoOp" { custom token node:type = "omni.graph.nodes.Noop" custom int node:typeVersion = 1 } } def Cube "Cube" { prepend double size.connect = </World/SimpleNode.outputs:value> } }
omniverse-code/kit/exts/omni.graph/data/ExampleScaleCubeWithOutputPrim.usda
#usda 1.0 ( doc = """Generated from Composed Stage of root layer """ ) def Xform "World" { def Xform "inputPrim" { custom float value = 0.5 } def ComputeNode "SimpleNode" { custom float input:value prepend float input:value.connect = </World/inputPrim.value> custom float multiplier = 3 custom token node:type = "omni.graph.examples.cpp.ScaleCubeWithOutputPrim" custom int node:typeVersion = 1 def Output "output" { custom double output:value } } def Cube "Cube" { prepend double size.connect = </World/SimpleNode/output.output:value> } }