Aardvark.Base


V4l

Constructors

ConstructorDescription
new(x, y, z, w)
Signature: (x:int * y:int * z:int * w:int) -> unit

Creates a new vector from given int elements.

new(v)
Signature: v:int -> unit

Creates a new vector by assigning the given int to all elements.

new(a)
Signature: (a:int []) -> unit

Creates a new vector from given array.

new(a, start)
Signature: (a:int [] * start:int) -> unit

Creates a new vector from given array, starting at specified index.

new(x, y, z, w)
Signature: (x:int64 * y:int64 * z:int64 * w:int64) -> unit

Creates a new vector from given long elements.

new(v)
Signature: v:int64 -> unit

Creates a new vector by assigning the given long to all elements.

new(a)
Signature: (a:int64 []) -> unit

Creates a new vector from given array.

new(a, start)
Signature: (a:int64 [] * start:int) -> unit

Creates a new vector from given array, starting at specified index.

new(x, y, z, w)
Signature: (x:float32 * y:float32 * z:float32 * w:float32) -> unit

Creates a new vector from given float elements.

new(v)
Signature: v:float32 -> unit

Creates a new vector by assigning the given float to all elements.

new(a)
Signature: (a:float32 []) -> unit

Creates a new vector from given array.

new(a, start)
Signature: (a:float32 [] * start:int) -> unit

Creates a new vector from given array, starting at specified index.

new(x, y, z, w)
Signature: (x:float * y:float * z:float * w:float) -> unit

Creates a new vector from given double elements.

new(v)
Signature: v:float -> unit

Creates a new vector by assigning the given double to all elements.

new(a)
Signature: (a:float []) -> unit

Creates a new vector from given array.

new(a, start)
Signature: (a:float [] * start:int) -> unit

Creates a new vector from given array, starting at specified index.

new(index_fun)
Signature: index_fun:Func<int,int64> -> unit

Creates a vector from the results of the supplied function of the index.

new(v)
Signature: v:IVector<float> -> unit
new(v)
Signature: v:V4i -> unit

Construct a vector from another vector of type V4i.

new(v)
Signature: v:V4f -> unit

Construct a vector from another vector of type V4f.

new(v)
Signature: v:V4d -> unit

Construct a vector from another vector of type V4d.

new(v, w)
Signature: (v:V3l * w:int64) -> unit
new(c)
Signature: c:C3b -> unit
new(c)
Signature: c:C3us -> unit
new(c)
Signature: c:C3ui -> unit
new(c)
Signature: c:C4b -> unit
new(c)
Signature: c:C4us -> unit
new(c)
Signature: c:C4ui -> unit

Instance members

Instance memberDescription
Abs
Signature: V4l

Gets a copy of this vector with all elements set to their absolute value.

AllDifferent(v)
Signature: v:V4l -> bool

Returns whether ALL elements of this are Different the corresponding element of v. ATTENTION: For example (a.AllSmaller(b)) is not the same as !(a.AllGreaterOrEqual(b)) but !(a.AnyGreaterOrEqual(b)).

AllDifferent(s)
Signature: s:int64 -> bool

Returns whether ALL elements of v are Different s. ATTENTION: For example (a.AllSmaller(b)) is not the same as !(a.AllGreaterOrEqual(b)) but !(a.AnyGreaterOrEqual(b)).

AllEqual(v)
Signature: v:V4l -> bool

Returns whether ALL elements of this are Equal the corresponding element of v. ATTENTION: For example (a.AllSmaller(b)) is not the same as !(a.AllGreaterOrEqual(b)) but !(a.AnyGreaterOrEqual(b)).

AllEqual(s)
Signature: s:int64 -> bool

Returns whether ALL elements of v are Equal s. ATTENTION: For example (a.AllSmaller(b)) is not the same as !(a.AllGreaterOrEqual(b)) but !(a.AnyGreaterOrEqual(b)).

AllGreater(v)
Signature: v:V4l -> bool

Returns whether ALL elements of this are Greater the corresponding element of v. ATTENTION: For example (a.AllSmaller(b)) is not the same as !(a.AllGreaterOrEqual(b)) but !(a.AnyGreaterOrEqual(b)).

AllGreater(s)
Signature: s:int64 -> bool

Returns whether ALL elements of v are Greater s. ATTENTION: For example (a.AllSmaller(b)) is not the same as !(a.AllGreaterOrEqual(b)) but !(a.AnyGreaterOrEqual(b)).

AllGreaterOrEqual(v)
Signature: v:V4l -> bool

Returns whether ALL elements of this are GreaterOrEqual the corresponding element of v. ATTENTION: For example (a.AllSmaller(b)) is not the same as !(a.AllGreaterOrEqual(b)) but !(a.AnyGreaterOrEqual(b)).

AllGreaterOrEqual(s)
Signature: s:int64 -> bool

Returns whether ALL elements of v are GreaterOrEqual s. ATTENTION: For example (a.AllSmaller(b)) is not the same as !(a.AllGreaterOrEqual(b)) but !(a.AnyGreaterOrEqual(b)).

AllSmaller(v)
Signature: v:V4l -> bool

Returns whether ALL elements of this are Smaller the corresponding element of v. ATTENTION: For example (a.AllSmaller(b)) is not the same as !(a.AllGreaterOrEqual(b)) but !(a.AnyGreaterOrEqual(b)).

AllSmaller(s)
Signature: s:int64 -> bool

Returns whether ALL elements of v are Smaller s. ATTENTION: For example (a.AllSmaller(b)) is not the same as !(a.AllGreaterOrEqual(b)) but !(a.AnyGreaterOrEqual(b)).

AllSmallerOrEqual(v)
Signature: v:V4l -> bool

Returns whether ALL elements of this are SmallerOrEqual the corresponding element of v. ATTENTION: For example (a.AllSmaller(b)) is not the same as !(a.AllGreaterOrEqual(b)) but !(a.AnyGreaterOrEqual(b)).

AllSmallerOrEqual(s)
Signature: s:int64 -> bool

Returns whether ALL elements of v are SmallerOrEqual s. ATTENTION: For example (a.AllSmaller(b)) is not the same as !(a.AllGreaterOrEqual(b)) but !(a.AnyGreaterOrEqual(b)).

AnyDifferent(v)
Signature: v:V4l -> bool

Returns whether AT LEAST ONE element of a is Different the corresponding element of b. ATTENTION: For example (a.AllSmaller(b)) is not the same as !(a.AllGreaterOrEqual(b)) but !(a.AnyGreaterOrEqual(b)).

AnyDifferent(s)
Signature: s:int64 -> bool

Returns whether AT LEAST ONE element of v is Different s. ATTENTION: For example (AllSmaller(a,b)) is not the same as !(AllGreaterOrEqual(a,b)) but !(AnyGreaterOrEqual(a,b)).

AnyEqual(v)
Signature: v:V4l -> bool

Returns whether AT LEAST ONE element of a is Equal the corresponding element of b. ATTENTION: For example (a.AllSmaller(b)) is not the same as !(a.AllGreaterOrEqual(b)) but !(a.AnyGreaterOrEqual(b)).

AnyEqual(s)
Signature: s:int64 -> bool

Returns whether AT LEAST ONE element of v is Equal s. ATTENTION: For example (AllSmaller(a,b)) is not the same as !(AllGreaterOrEqual(a,b)) but !(AnyGreaterOrEqual(a,b)).

AnyGreater(v)
Signature: v:V4l -> bool

Returns whether AT LEAST ONE element of a is Greater the corresponding element of b. ATTENTION: For example (a.AllSmaller(b)) is not the same as !(a.AllGreaterOrEqual(b)) but !(a.AnyGreaterOrEqual(b)).

AnyGreater(s)
Signature: s:int64 -> bool

Returns whether AT LEAST ONE element of v is Greater s. ATTENTION: For example (AllSmaller(a,b)) is not the same as !(AllGreaterOrEqual(a,b)) but !(AnyGreaterOrEqual(a,b)).

AnyGreaterOrEqual(v)
Signature: v:V4l -> bool

Returns whether AT LEAST ONE element of a is GreaterOrEqual the corresponding element of b. ATTENTION: For example (a.AllSmaller(b)) is not the same as !(a.AllGreaterOrEqual(b)) but !(a.AnyGreaterOrEqual(b)).

AnyGreaterOrEqual(s)
Signature: s:int64 -> bool

Returns whether AT LEAST ONE element of v is GreaterOrEqual s. ATTENTION: For example (AllSmaller(a,b)) is not the same as !(AllGreaterOrEqual(a,b)) but !(AnyGreaterOrEqual(a,b)).

AnySmaller(v)
Signature: v:V4l -> bool

Returns whether AT LEAST ONE element of a is Smaller the corresponding element of b. ATTENTION: For example (a.AllSmaller(b)) is not the same as !(a.AllGreaterOrEqual(b)) but !(a.AnyGreaterOrEqual(b)).

AnySmaller(s)
Signature: s:int64 -> bool

Returns whether AT LEAST ONE element of v is Smaller s. ATTENTION: For example (AllSmaller(a,b)) is not the same as !(AllGreaterOrEqual(a,b)) but !(AnyGreaterOrEqual(a,b)).

AnySmallerOrEqual(v)
Signature: v:V4l -> bool

Returns whether AT LEAST ONE element of a is SmallerOrEqual the corresponding element of b. ATTENTION: For example (a.AllSmaller(b)) is not the same as !(a.AllGreaterOrEqual(b)) but !(a.AnyGreaterOrEqual(b)).

AnySmallerOrEqual(s)
Signature: s:int64 -> bool

Returns whether AT LEAST ONE element of v is SmallerOrEqual s. ATTENTION: For example (AllSmaller(a,b)) is not the same as !(AllGreaterOrEqual(a,b)) but !(AnyGreaterOrEqual(a,b)).

ApproxEqual(v, tolerance)
Signature: (v:V4l * tolerance:int64) -> bool

Returns whether this vector is equal to the specified vector within the given tolerance.

Copy(element_fun)
Signature: element_fun:Func<int64,int> -> V4i

Returns a copy with all elements transformed by the supplied function.

Copy(element_index_fun)
Signature: element_index_fun:Func<int64,int,int> -> V4i

Returns a copy with all elements transformed by the supplied function.

Copy(element_fun)
Signature: element_fun:Func<int64,int64> -> V4l

Returns a copy with all elements transformed by the supplied function.

Copy(element_index_fun)
Signature: element_index_fun:Func<int64,int,int64> -> V4l

Returns a copy with all elements transformed by the supplied function.

Copy(element_fun)
Signature: element_fun:Func<int64,float32> -> V4f

Returns a copy with all elements transformed by the supplied function.

Copy(element_index_fun)
Signature: element_index_fun:Func<int64,int,float32> -> V4f

Returns a copy with all elements transformed by the supplied function.

Copy(element_fun)
Signature: element_fun:Func<int64,float> -> V4d

Returns a copy with all elements transformed by the supplied function.

Copy(element_index_fun)
Signature: element_index_fun:Func<int64,int,float> -> V4d

Returns a copy with all elements transformed by the supplied function.

CopyTo(array, start)
Signature: (array:int [] * start:int) -> unit
CopyTo(array, start)
Signature: (array:int64 [] * start:int) -> unit
CopyTo(array, start)
Signature: (array:float32 [] * start:int) -> unit
CopyTo(array, start)
Signature: (array:float [] * start:int) -> unit
CopyTo(array, start, element_fun)
Signature: (array:'T [] * start:int * element_fun:Func<int64,'T>) -> unit
Type parameters: 'T
CopyTo(array, start, element_index_fun)
Signature: (array:'T [] * start:int * element_index_fun:Func<int64,int,'T>) -> unit
Type parameters: 'T
Dim
Signature: int64
Modifiers: abstract
DirFlags()
Signature: unit -> DirFlags
Dot(v)
Signature: v:V4l -> int64

Returns the dot product with the specified vector.

Elements
Signature: IEnumerable<int64>

Enumerates all elements of this vector.

Equals(other)
Signature: other:V4l -> bool
Modifiers: abstract
Equals(other)
Signature: other:obj -> bool
Modifiers: abstract
GetHashCode()
Signature: unit -> int
Modifiers: abstract
GetValue(index)
Signature: index:int64 -> obj
Modifiers: abstract
IIIW
Signature: V4l
IIIX
Signature: V4l
IIIY
Signature: V4l
IIIZ
Signature: V4l
IINW
Signature: V4l
IINX
Signature: V4l
IINY
Signature: V4l
IINZ
Signature: V4l
IIOW
Signature: V4l
IIOX
Signature: V4l
IIOY
Signature: V4l
IIOZ
Signature: V4l
IIPW
Signature: V4l
IIPX
Signature: V4l
IIPY
Signature: V4l
IIPZ
Signature: V4l
IIW
Signature: V3l
IIWI
Signature: V4l
IIWN
Signature: V4l
IIWO
Signature: V4l
IIWP
Signature: V4l
IIWW
Signature: V4l
IIWX
Signature: V4l
IIWY
Signature: V4l
IIWZ
Signature: V4l
IIX
Signature: V3l
IIXI
Signature: V4l
IIXN
Signature: V4l
IIXO
Signature: V4l
IIXP
Signature: V4l
IIXW
Signature: V4l
IIXX
Signature: V4l
IIXY
Signature: V4l
IIXZ
Signature: V4l
IIY
Signature: V3l
IIYI
Signature: V4l
IIYN
Signature: V4l
IIYO
Signature: V4l
IIYP
Signature: V4l
IIYW
Signature: V4l
IIYX
Signature: V4l
IIYY
Signature: V4l
IIYZ
Signature: V4l
IIZ
Signature: V3l
IIZI
Signature: V4l
IIZN
Signature: V4l
IIZO
Signature: V4l
IIZP
Signature: V4l
IIZW
Signature: V4l
IIZX
Signature: V4l
IIZY
Signature: V4l
IIZZ
Signature: V4l
INIW
Signature: V4l
INIX
Signature: V4l
INIY
Signature: V4l
INIZ
Signature: V4l
INNW
Signature: V4l
INNX
Signature: V4l
INNY
Signature: V4l
INNZ
Signature: V4l
INOW
Signature: V4l
INOX
Signature: V4l
INOY
Signature: V4l
INOZ
Signature: V4l
INPW
Signature: V4l
INPX
Signature: V4l
INPY
Signature: V4l
INPZ
Signature: V4l
INW
Signature: V3l
INWI
Signature: V4l
INWN
Signature: V4l
INWO
Signature: V4l
INWP
Signature: V4l
INWW
Signature: V4l
INWX
Signature: V4l
INWY
Signature: V4l
INWZ
Signature: V4l
INX
Signature: V3l
INXI
Signature: V4l
INXN
Signature: V4l
INXO
Signature: V4l
INXP
Signature: V4l
INXW
Signature: V4l
INXX
Signature: V4l
INXY
Signature: V4l
INXZ
Signature: V4l
INY
Signature: V3l
INYI
Signature: V4l
INYN
Signature: V4l
INYO
Signature: V4l
INYP
Signature: V4l
INYW
Signature: V4l
INYX
Signature: V4l
INYY
Signature: V4l
INYZ
Signature: V4l
INZ
Signature: V3l
INZI
Signature: V4l
INZN
Signature: V4l
INZO
Signature: V4l
INZP
Signature: V4l
INZW
Signature: V4l
INZX
Signature: V4l
INZY
Signature: V4l
INZZ
Signature: V4l
IOIW
Signature: V4l
IOIX
Signature: V4l
IOIY
Signature: V4l
IOIZ
Signature: V4l
IONW
Signature: V4l
IONX
Signature: V4l
IONY
Signature: V4l
IONZ
Signature: V4l
IOOW
Signature: V4l
IOOX
Signature: V4l
IOOY
Signature: V4l
IOOZ
Signature: V4l
IOPW
Signature: V4l
IOPX
Signature: V4l
IOPY
Signature: V4l
IOPZ
Signature: V4l
IOW
Signature: V3l
IOWI
Signature: V4l
IOWN
Signature: V4l
IOWO
Signature: V4l
IOWP
Signature: V4l
IOWW
Signature: V4l
IOWX
Signature: V4l
IOWY
Signature: V4l
IOWZ
Signature: V4l
IOX
Signature: V3l
IOXI
Signature: V4l
IOXN
Signature: V4l
IOXO
Signature: V4l
IOXP
Signature: V4l
IOXW
Signature: V4l
IOXX
Signature: V4l
IOXY
Signature: V4l
IOXZ
Signature: V4l
IOY
Signature: V3l
IOYI
Signature: V4l
IOYN
Signature: V4l
IOYO
Signature: V4l
IOYP
Signature: V4l
IOYW
Signature: V4l
IOYX
Signature: V4l
IOYY
Signature: V4l
IOYZ
Signature: V4l
IOZ
Signature: V3l
IOZI
Signature: V4l
IOZN
Signature: V4l
IOZO
Signature: V4l
IOZP
Signature: V4l
IOZW
Signature: V4l
IOZX
Signature: V4l
IOZY
Signature: V4l
IOZZ
Signature: V4l
IPIW
Signature: V4l
IPIX
Signature: V4l
IPIY
Signature: V4l
IPIZ
Signature: V4l
IPNW
Signature: V4l
IPNX
Signature: V4l
IPNY
Signature: V4l
IPNZ
Signature: V4l
IPOW
Signature: V4l
IPOX
Signature: V4l
IPOY
Signature: V4l
IPOZ
Signature: V4l
IPPW
Signature: V4l
IPPX
Signature: V4l
IPPY
Signature: V4l
IPPZ
Signature: V4l
IPW
Signature: V3l
IPWI
Signature: V4l
IPWN
Signature: V4l
IPWO
Signature: V4l
IPWP
Signature: V4l
IPWW
Signature: V4l
IPWX
Signature: V4l
IPWY
Signature: V4l
IPWZ
Signature: V4l
IPX
Signature: V3l
IPXI
Signature: V4l
IPXN
Signature: V4l
IPXO
Signature: V4l
IPXP
Signature: V4l
IPXW
Signature: V4l
IPXX
Signature: V4l
IPXY
Signature: V4l
IPXZ
Signature: V4l
IPY
Signature: V3l
IPYI
Signature: V4l
IPYN
Signature: V4l
IPYO
Signature: V4l
IPYP
Signature: V4l
IPYW
Signature: V4l
IPYX
Signature: V4l
IPYY
Signature: V4l
IPYZ
Signature: V4l
IPZ
Signature: V3l
IPZI
Signature: V4l
IPZN
Signature: V4l
IPZO
Signature: V4l
IPZP
Signature: V4l
IPZW
Signature: V4l
IPZX
Signature: V4l
IPZY
Signature: V4l
IPZZ
Signature: V4l
IsNaN
Signature: bool
Attention: NEVER implement operators <, <=, >=, >, since these are not defined in a Vector space. Use AllSmaller() and similar comparators!
[()]
Signature: unit -> int

Gets or sets element with given index. An IndexOutOfRangeException is thrown for invalid index values.

[()]
Signature: unit -> int64
Modifiers: abstract

By using long indices, the IVector interface is accessed.

IW
Signature: V2l
IWI
Signature: V3l
IWII
Signature: V4l
IWIN
Signature: V4l
IWIO
Signature: V4l
IWIP
Signature: V4l
IWIW
Signature: V4l
IWIX
Signature: V4l
IWIY
Signature: V4l
IWIZ
Signature: V4l
IWN
Signature: V3l
IWNI
Signature: V4l
IWNN
Signature: V4l
IWNO
Signature: V4l
IWNP
Signature: V4l
IWNW
Signature: V4l
IWNX
Signature: V4l
IWNY
Signature: V4l
IWNZ
Signature: V4l
IWO
Signature: V3l
IWOI
Signature: V4l
IWON
Signature: V4l
IWOO
Signature: V4l
IWOP
Signature: V4l
IWOW
Signature: V4l
IWOX
Signature: V4l
IWOY
Signature: V4l
IWOZ
Signature: V4l
IWP
Signature: V3l
IWPI
Signature: V4l
IWPN
Signature: V4l
IWPO
Signature: V4l
IWPP
Signature: V4l
IWPW
Signature: V4l
IWPX
Signature: V4l
IWPY
Signature: V4l
IWPZ
Signature: V4l
IWW
Signature: V3l
IWWI
Signature: V4l
IWWN
Signature: V4l
IWWO
Signature: V4l
IWWP
Signature: V4l
IWWW
Signature: V4l
IWWX
Signature: V4l
IWWY
Signature: V4l
IWWZ
Signature: V4l
IWX
Signature: V3l
IWXI
Signature: V4l
IWXN
Signature: V4l
IWXO
Signature: V4l
IWXP
Signature: V4l
IWXW
Signature: V4l
IWXX
Signature: V4l
IWXY
Signature: V4l
IWXZ
Signature: V4l
IWY
Signature: V3l
IWYI
Signature: V4l
IWYN
Signature: V4l
IWYO
Signature: V4l
IWYP
Signature: V4l
IWYW
Signature: V4l
IWYX
Signature: V4l
IWYY
Signature: V4l
IWYZ
Signature: V4l
IWZ
Signature: V3l
IWZI
Signature: V4l
IWZN
Signature: V4l
IWZO
Signature: V4l
IWZP
Signature: V4l
IWZW
Signature: V4l
IWZX
Signature: V4l
IWZY
Signature: V4l
IWZZ
Signature: V4l
IX
Signature: V2l
IXI
Signature: V3l
IXII
Signature: V4l
IXIN
Signature: V4l
IXIO
Signature: V4l
IXIP
Signature: V4l
IXIW
Signature: V4l
IXIX
Signature: V4l
IXIY
Signature: V4l
IXIZ
Signature: V4l
IXN
Signature: V3l
IXNI
Signature: V4l
IXNN
Signature: V4l
IXNO
Signature: V4l
IXNP
Signature: V4l
IXNW
Signature: V4l
IXNX
Signature: V4l
IXNY
Signature: V4l
IXNZ
Signature: V4l
IXO
Signature: V3l
IXOI
Signature: V4l
IXON
Signature: V4l
IXOO
Signature: V4l
IXOP
Signature: V4l
IXOW
Signature: V4l
IXOX
Signature: V4l
IXOY
Signature: V4l
IXOZ
Signature: V4l
IXP
Signature: V3l
IXPI
Signature: V4l
IXPN
Signature: V4l
IXPO
Signature: V4l
IXPP
Signature: V4l
IXPW
Signature: V4l
IXPX
Signature: V4l
IXPY
Signature: V4l
IXPZ
Signature: V4l
IXW
Signature: V3l
IXWI
Signature: V4l
IXWN
Signature: V4l
IXWO
Signature: V4l
IXWP
Signature: V4l
IXWW
Signature: V4l
IXWX
Signature: V4l
IXWY
Signature: V4l
IXWZ
Signature: V4l
IXX
Signature: V3l
IXXI
Signature: V4l
IXXN
Signature: V4l
IXXO
Signature: V4l
IXXP
Signature: V4l
IXXW
Signature: V4l
IXXX
Signature: V4l
IXXY
Signature: V4l
IXXZ
Signature: V4l
IXY
Signature: V3l
IXYI
Signature: V4l
IXYN
Signature: V4l
IXYO
Signature: V4l
IXYP
Signature: V4l
IXYW
Signature: V4l
IXYX
Signature: V4l
IXYY
Signature: V4l
IXYZ
Signature: V4l
IXZ
Signature: V3l
IXZI
Signature: V4l
IXZN
Signature: V4l
IXZO
Signature: V4l
IXZP
Signature: V4l
IXZW
Signature: V4l
IXZX
Signature: V4l
IXZY
Signature: V4l
IXZZ
Signature: V4l
IY
Signature: V2l
IYI
Signature: V3l
IYII
Signature: V4l
IYIN
Signature: V4l
IYIO
Signature: V4l
IYIP
Signature: V4l
IYIW
Signature: V4l
IYIX
Signature: V4l
IYIY
Signature: V4l
IYIZ
Signature: V4l
IYN
Signature: V3l
IYNI
Signature: V4l
IYNN
Signature: V4l
IYNO
Signature: V4l
IYNP
Signature: V4l
IYNW
Signature: V4l
IYNX
Signature: V4l
IYNY
Signature: V4l
IYNZ
Signature: V4l
IYO
Signature: V3l
IYOI
Signature: V4l
IYON
Signature: V4l
IYOO
Signature: V4l
IYOP
Signature: V4l
IYOW
Signature: V4l
IYOX
Signature: V4l
IYOY
Signature: V4l
IYOZ
Signature: V4l
IYP
Signature: V3l
IYPI
Signature: V4l
IYPN
Signature: V4l
IYPO
Signature: V4l
IYPP
Signature: V4l
IYPW
Signature: V4l
IYPX
Signature: V4l
IYPY
Signature: V4l
IYPZ
Signature: V4l
IYW
Signature: V3l
IYWI
Signature: V4l
IYWN
Signature: V4l
IYWO
Signature: V4l
IYWP
Signature: V4l
IYWW
Signature: V4l
IYWX
Signature: V4l
IYWY
Signature: V4l
IYWZ
Signature: V4l
IYX
Signature: V3l
IYXI
Signature: V4l
IYXN
Signature: V4l
IYXO
Signature: V4l
IYXP
Signature: V4l
IYXW
Signature: V4l
IYXX
Signature: V4l
IYXY
Signature: V4l
IYXZ
Signature: V4l
IYY
Signature: V3l
IYYI
Signature: V4l
IYYN
Signature: V4l
IYYO
Signature: V4l
IYYP
Signature: V4l
IYYW
Signature: V4l
IYYX
Signature: V4l
IYYY
Signature: V4l
IYYZ
Signature: V4l
IYZ
Signature: V3l
IYZI
Signature: V4l
IYZN
Signature: V4l
IYZO
Signature: V4l
IYZP
Signature: V4l
IYZW
Signature: V4l
IYZX
Signature: V4l
IYZY
Signature: V4l
IYZZ
Signature: V4l
IZ
Signature: V2l
IZI
Signature: V3l
IZII
Signature: V4l
IZIN
Signature: V4l
IZIO
Signature: V4l
IZIP
Signature: V4l
IZIW
Signature: V4l
IZIX
Signature: V4l
IZIY
Signature: V4l
IZIZ
Signature: V4l
IZN
Signature: V3l
IZNI
Signature: V4l
IZNN
Signature: V4l
IZNO
Signature: V4l
IZNP
Signature: V4l
IZNW
Signature: V4l
IZNX
Signature: V4l
IZNY
Signature: V4l
IZNZ
Signature: V4l
IZO
Signature: V3l
IZOI
Signature: V4l
IZON
Signature: V4l
IZOO
Signature: V4l
IZOP
Signature: V4l
IZOW
Signature: V4l
IZOX
Signature: V4l
IZOY
Signature: V4l
IZOZ
Signature: V4l
IZP
Signature: V3l
IZPI
Signature: V4l
IZPN
Signature: V4l
IZPO
Signature: V4l
IZPP
Signature: V4l
IZPW
Signature: V4l
IZPX
Signature: V4l
IZPY
Signature: V4l
IZPZ
Signature: V4l
IZW
Signature: V3l
IZWI
Signature: V4l
IZWN
Signature: V4l
IZWO
Signature: V4l
IZWP
Signature: V4l
IZWW
Signature: V4l
IZWX
Signature: V4l
IZWY
Signature: V4l
IZWZ
Signature: V4l
IZX
Signature: V3l
IZXI
Signature: V4l
IZXN
Signature: V4l
IZXO
Signature: V4l
IZXP
Signature: V4l
IZXW
Signature: V4l
IZXX
Signature: V4l
IZXY
Signature: V4l
IZXZ
Signature: V4l
IZY
Signature: V3l
IZYI
Signature: V4l
IZYN
Signature: V4l
IZYO
Signature: V4l
IZYP
Signature: V4l
IZYW
Signature: V4l
IZYX
Signature: V4l
IZYY
Signature: V4l
IZYZ
Signature: V4l
IZZ
Signature: V3l
IZZI
Signature: V4l
IZZN
Signature: V4l
IZZO
Signature: V4l
IZZP
Signature: V4l
IZZW
Signature: V4l
IZZX
Signature: V4l
IZZY
Signature: V4l
IZZZ
Signature: V4l
Length
Signature: float

Returns the length of the vector.

LengthSquared
Signature: float

Returns the squared length of the vector.

LexicalCompare(v1)
Signature: v1:V4l -> int

Compare x-coordinate before y-coordinate, aso.

MajorDim
Signature: int

Returns the index of the largest dimension of the vector.

MinorDim
Signature: int

Returns the index of the smallest dimension of the vector.

Negate()
Signature: unit -> unit

Negates this vector and returns this.

Negated
Signature: V4l

Gets a negated copy of this vector.

NIIW
Signature: V4l
NIIX
Signature: V4l
NIIY
Signature: V4l
NIIZ
Signature: V4l
NINW
Signature: V4l
NINX
Signature: V4l
NINY
Signature: V4l
NINZ
Signature: V4l
NIOW
Signature: V4l
NIOX
Signature: V4l
NIOY
Signature: V4l
NIOZ
Signature: V4l
NIPW
Signature: V4l
NIPX
Signature: V4l
NIPY
Signature: V4l
NIPZ
Signature: V4l
NIW
Signature: V3l
NIWI
Signature: V4l
NIWN
Signature: V4l
NIWO
Signature: V4l
NIWP
Signature: V4l
NIWW
Signature: V4l
NIWX
Signature: V4l
NIWY
Signature: V4l
NIWZ
Signature: V4l
NIX
Signature: V3l
NIXI
Signature: V4l
NIXN
Signature: V4l
NIXO
Signature: V4l
NIXP
Signature: V4l
NIXW
Signature: V4l
NIXX
Signature: V4l
NIXY
Signature: V4l
NIXZ
Signature: V4l
NIY
Signature: V3l
NIYI
Signature: V4l
NIYN
Signature: V4l
NIYO
Signature: V4l
NIYP
Signature: V4l
NIYW
Signature: V4l
NIYX
Signature: V4l
NIYY
Signature: V4l
NIYZ
Signature: V4l
NIZ
Signature: V3l
NIZI
Signature: V4l
NIZN
Signature: V4l
NIZO
Signature: V4l
NIZP
Signature: V4l
NIZW
Signature: V4l
NIZX
Signature: V4l
NIZY
Signature: V4l
NIZZ
Signature: V4l
NNIW
Signature: V4l
NNIX
Signature: V4l
NNIY
Signature: V4l
NNIZ
Signature: V4l
NNNW
Signature: V4l
NNNX
Signature: V4l
NNNY
Signature: V4l
NNNZ
Signature: V4l
NNOW
Signature: V4l
NNOX
Signature: V4l
NNOY
Signature: V4l
NNOZ
Signature: V4l
NNPW
Signature: V4l
NNPX
Signature: V4l
NNPY
Signature: V4l
NNPZ
Signature: V4l
NNW
Signature: V3l
NNWI
Signature: V4l
NNWN
Signature: V4l
NNWO
Signature: V4l
NNWP
Signature: V4l
NNWW
Signature: V4l
NNWX
Signature: V4l
NNWY
Signature: V4l
NNWZ
Signature: V4l
NNX
Signature: V3l
NNXI
Signature: V4l
NNXN
Signature: V4l
NNXO
Signature: V4l
NNXP
Signature: V4l
NNXW
Signature: V4l
NNXX
Signature: V4l
NNXY
Signature: V4l
NNXZ
Signature: V4l
NNY
Signature: V3l
NNYI
Signature: V4l
NNYN
Signature: V4l
NNYO
Signature: V4l
NNYP
Signature: V4l
NNYW
Signature: V4l
NNYX
Signature: V4l
NNYY
Signature: V4l
NNYZ
Signature: V4l
NNZ
Signature: V3l
NNZI
Signature: V4l
NNZN
Signature: V4l
NNZO
Signature: V4l
NNZP
Signature: V4l
NNZW
Signature: V4l
NNZX
Signature: V4l
NNZY
Signature: V4l
NNZZ
Signature: V4l
NOIW
Signature: V4l
NOIX
Signature: V4l
NOIY
Signature: V4l
NOIZ
Signature: V4l
NONW
Signature: V4l
NONX
Signature: V4l
NONY
Signature: V4l
NONZ
Signature: V4l
NOOW
Signature: V4l
NOOX
Signature: V4l
NOOY
Signature: V4l
NOOZ
Signature: V4l
NOPW
Signature: V4l
NOPX
Signature: V4l
NOPY
Signature: V4l
NOPZ
Signature: V4l
Norm(p)
Signature: p:float -> float

Gets the p-norm. This is calculated as the p-th root of (|x|^n + |y|^n + ...).

Norm1
Signature: int64

Returns the Manhattan (or 1-) norm of the vector. This is calculated as |x| + |y| + ...

Norm2
Signature: float

Returns the Euclidean (or 2-) norm of the vector. This is the length of the vector.

NormMax
Signature: int64

Returns the infinite (or maximum) norm of the vector. This is calculated as max(|x|, |y|, ...).

NormMin
Signature: int64

Returns the minimum norm of the vector. This is calculated as min(|x|, |y|, ...).

NOW
Signature: V3l
NOWI
Signature: V4l
NOWN
Signature: V4l
NOWO
Signature: V4l
NOWP
Signature: V4l
NOWW
Signature: V4l
NOWX
Signature: V4l
NOWY
Signature: V4l
NOWZ
Signature: V4l
NOX
Signature: V3l
NOXI
Signature: V4l
NOXN
Signature: V4l
NOXO
Signature: V4l
NOXP
Signature: V4l
NOXW
Signature: V4l
NOXX
Signature: V4l
NOXY
Signature: V4l
NOXZ
Signature: V4l
NOY
Signature: V3l
NOYI
Signature: V4l
NOYN
Signature: V4l
NOYO
Signature: V4l
NOYP
Signature: V4l
NOYW
Signature: V4l
NOYX
Signature: V4l
NOYY
Signature: V4l
NOYZ
Signature: V4l
NOZ
Signature: V3l
NOZI
Signature: V4l
NOZN
Signature: V4l
NOZO
Signature: V4l
NOZP
Signature: V4l
NOZW
Signature: V4l
NOZX
Signature: V4l
NOZY
Signature: V4l
NOZZ
Signature: V4l
NPIW
Signature: V4l
NPIX
Signature: V4l
NPIY
Signature: V4l
NPIZ
Signature: V4l
NPNW
Signature: V4l
NPNX
Signature: V4l
NPNY
Signature: V4l
NPNZ
Signature: V4l
NPOW
Signature: V4l
NPOX
Signature: V4l
NPOY
Signature: V4l
NPOZ
Signature: V4l
NPPW
Signature: V4l
NPPX
Signature: V4l
NPPY
Signature: V4l
NPPZ
Signature: V4l
NPW
Signature: V3l
NPWI
Signature: V4l
NPWN
Signature: V4l
NPWO
Signature: V4l
NPWP
Signature: V4l
NPWW
Signature: V4l
NPWX
Signature: V4l
NPWY
Signature: V4l
NPWZ
Signature: V4l
NPX
Signature: V3l
NPXI
Signature: V4l
NPXN
Signature: V4l
NPXO
Signature: V4l
NPXP
Signature: V4l
NPXW
Signature: V4l
NPXX
Signature: V4l
NPXY
Signature: V4l
NPXZ
Signature: V4l
NPY
Signature: V3l
NPYI
Signature: V4l
NPYN
Signature: V4l
NPYO
Signature: V4l
NPYP
Signature: V4l
NPYW
Signature: V4l
NPYX
Signature: V4l
NPYY
Signature: V4l
NPYZ
Signature: V4l
NPZ
Signature: V3l
NPZI
Signature: V4l
NPZN
Signature: V4l
NPZO
Signature: V4l
NPZP
Signature: V4l
NPZW
Signature: V4l
NPZX
Signature: V4l
NPZY
Signature: V4l
NPZZ
Signature: V4l
NW
Signature: V2l
NWI
Signature: V3l
NWII
Signature: V4l
NWIN
Signature: V4l
NWIO
Signature: V4l
NWIP
Signature: V4l
NWIW
Signature: V4l
NWIX
Signature: V4l
NWIY
Signature: V4l
NWIZ
Signature: V4l
NWN
Signature: V3l
NWNI
Signature: V4l
NWNN
Signature: V4l
NWNO
Signature: V4l
NWNP
Signature: V4l
NWNW
Signature: V4l
NWNX
Signature: V4l
NWNY
Signature: V4l
NWNZ
Signature: V4l
NWO
Signature: V3l
NWOI
Signature: V4l
NWON
Signature: V4l
NWOO
Signature: V4l
NWOP
Signature: V4l
NWOW
Signature: V4l
NWOX
Signature: V4l
NWOY
Signature: V4l
NWOZ
Signature: V4l
NWP
Signature: V3l
NWPI
Signature: V4l
NWPN
Signature: V4l
NWPO
Signature: V4l
NWPP
Signature: V4l
NWPW
Signature: V4l
NWPX
Signature: V4l
NWPY
Signature: V4l
NWPZ
Signature: V4l
NWW
Signature: V3l
NWWI
Signature: V4l
NWWN
Signature: V4l
NWWO
Signature: V4l
NWWP
Signature: V4l
NWWW
Signature: V4l
NWWX
Signature: V4l
NWWY
Signature: V4l
NWWZ
Signature: V4l
NWX
Signature: V3l
NWXI
Signature: V4l
NWXN
Signature: V4l
NWXO
Signature: V4l
NWXP
Signature: V4l
NWXW
Signature: V4l
NWXX
Signature: V4l
NWXY
Signature: V4l
NWXZ
Signature: V4l
NWY
Signature: V3l
NWYI
Signature: V4l
NWYN
Signature: V4l
NWYO
Signature: V4l
NWYP
Signature: V4l
NWYW
Signature: V4l
NWYX
Signature: V4l
NWYY
Signature: V4l
NWYZ
Signature: V4l
NWZ
Signature: V3l
NWZI
Signature: V4l
NWZN
Signature: V4l
NWZO
Signature: V4l
NWZP
Signature: V4l
NWZW
Signature: V4l
NWZX
Signature: V4l
NWZY
Signature: V4l
NWZZ
Signature: V4l
NX
Signature: V2l
NXI
Signature: V3l
NXII
Signature: V4l
NXIN
Signature: V4l
NXIO
Signature: V4l
NXIP
Signature: V4l
NXIW
Signature: V4l
NXIX
Signature: V4l
NXIY
Signature: V4l
NXIZ
Signature: V4l
NXN
Signature: V3l
NXNI
Signature: V4l
NXNN
Signature: V4l
NXNO
Signature: V4l
NXNP
Signature: V4l
NXNW
Signature: V4l
NXNX
Signature: V4l
NXNY
Signature: V4l
NXNZ
Signature: V4l
NXO
Signature: V3l
NXOI
Signature: V4l
NXON
Signature: V4l
NXOO
Signature: V4l
NXOP
Signature: V4l
NXOW
Signature: V4l
NXOX
Signature: V4l
NXOY
Signature: V4l
NXOZ
Signature: V4l
NXP
Signature: V3l
NXPI
Signature: V4l
NXPN
Signature: V4l
NXPO
Signature: V4l
NXPP
Signature: V4l
NXPW
Signature: V4l
NXPX
Signature: V4l
NXPY
Signature: V4l
NXPZ
Signature: V4l
NXW
Signature: V3l
NXWI
Signature: V4l
NXWN
Signature: V4l
NXWO
Signature: V4l
NXWP
Signature: V4l
NXWW
Signature: V4l
NXWX
Signature: V4l
NXWY
Signature: V4l
NXWZ
Signature: V4l
NXX
Signature: V3l
NXXI
Signature: V4l
NXXN
Signature: V4l
NXXO
Signature: V4l
NXXP
Signature: V4l
NXXW
Signature: V4l
NXXX
Signature: V4l
NXXY
Signature: V4l
NXXZ
Signature: V4l
NXY
Signature: V3l
NXYI
Signature: V4l
NXYN
Signature: V4l
NXYO
Signature: V4l
NXYP
Signature: V4l
NXYW
Signature: V4l
NXYX
Signature: V4l
NXYY
Signature: V4l
NXYZ
Signature: V4l
NXZ
Signature: V3l
NXZI
Signature: V4l
NXZN
Signature: V4l
NXZO
Signature: V4l
NXZP
Signature: V4l
NXZW
Signature: V4l
NXZX
Signature: V4l
NXZY
Signature: V4l
NXZZ
Signature: V4l
NY
Signature: V2l
NYI
Signature: V3l
NYII
Signature: V4l
NYIN
Signature: V4l
NYIO
Signature: V4l
NYIP
Signature: V4l
NYIW
Signature: V4l
NYIX
Signature: V4l
NYIY
Signature: V4l
NYIZ
Signature: V4l
NYN
Signature: V3l
NYNI
Signature: V4l
NYNN
Signature: V4l
NYNO
Signature: V4l
NYNP
Signature: V4l
NYNW
Signature: V4l
NYNX
Signature: V4l
NYNY
Signature: V4l
NYNZ
Signature: V4l
NYO
Signature: V3l
NYOI
Signature: V4l
NYON
Signature: V4l
NYOO
Signature: V4l
NYOP
Signature: V4l
NYOW
Signature: V4l
NYOX
Signature: V4l
NYOY
Signature: V4l
NYOZ
Signature: V4l
NYP
Signature: V3l
NYPI
Signature: V4l
NYPN
Signature: V4l
NYPO
Signature: V4l
NYPP
Signature: V4l
NYPW
Signature: V4l
NYPX
Signature: V4l
NYPY
Signature: V4l
NYPZ
Signature: V4l
NYW
Signature: V3l
NYWI
Signature: V4l
NYWN
Signature: V4l
NYWO
Signature: V4l
NYWP
Signature: V4l
NYWW
Signature: V4l
NYWX
Signature: V4l
NYWY
Signature: V4l
NYWZ
Signature: V4l
NYX
Signature: V3l
NYXI
Signature: V4l
NYXN
Signature: V4l
NYXO
Signature: V4l
NYXP
Signature: V4l
NYXW
Signature: V4l
NYXX
Signature: V4l
NYXY
Signature: V4l
NYXZ
Signature: V4l
NYY
Signature: V3l
NYYI
Signature: V4l
NYYN
Signature: V4l
NYYO
Signature: V4l
NYYP
Signature: V4l
NYYW
Signature: V4l
NYYX
Signature: V4l
NYYY
Signature: V4l
NYYZ
Signature: V4l
NYZ
Signature: V3l
NYZI
Signature: V4l
NYZN
Signature: V4l
NYZO
Signature: V4l
NYZP
Signature: V4l
NYZW
Signature: V4l
NYZX
Signature: V4l
NYZY
Signature: V4l
NYZZ
Signature: V4l
NZ
Signature: V2l
NZI
Signature: V3l
NZII
Signature: V4l
NZIN
Signature: V4l
NZIO
Signature: V4l
NZIP
Signature: V4l
NZIW
Signature: V4l
NZIX
Signature: V4l
NZIY
Signature: V4l
NZIZ
Signature: V4l
NZN
Signature: V3l
NZNI
Signature: V4l
NZNN
Signature: V4l
NZNO
Signature: V4l
NZNP
Signature: V4l
NZNW
Signature: V4l
NZNX
Signature: V4l
NZNY
Signature: V4l
NZNZ
Signature: V4l
NZO
Signature: V3l
NZOI
Signature: V4l
NZON
Signature: V4l
NZOO
Signature: V4l
NZOP
Signature: V4l
NZOW
Signature: V4l
NZOX
Signature: V4l
NZOY
Signature: V4l
NZOZ
Signature: V4l
NZP
Signature: V3l
NZPI
Signature: V4l
NZPN
Signature: V4l
NZPO
Signature: V4l
NZPP
Signature: V4l
NZPW
Signature: V4l
NZPX
Signature: V4l
NZPY
Signature: V4l
NZPZ
Signature: V4l
NZW
Signature: V3l
NZWI
Signature: V4l
NZWN
Signature: V4l
NZWO
Signature: V4l
NZWP
Signature: V4l
NZWW
Signature: V4l
NZWX
Signature: V4l
NZWY
Signature: V4l
NZWZ
Signature: V4l
NZX
Signature: V3l
NZXI
Signature: V4l
NZXN
Signature: V4l
NZXO
Signature: V4l
NZXP
Signature: V4l
NZXW
Signature: V4l
NZXX
Signature: V4l
NZXY
Signature: V4l
NZXZ
Signature: V4l
NZY
Signature: V3l
NZYI
Signature: V4l
NZYN
Signature: V4l
NZYO
Signature: V4l
NZYP
Signature: V4l
NZYW
Signature: V4l
NZYX
Signature: V4l
NZYY
Signature: V4l
NZYZ
Signature: V4l
NZZ
Signature: V3l
NZZI
Signature: V4l
NZZN
Signature: V4l
NZZO
Signature: V4l
NZZP
Signature: V4l
NZZW
Signature: V4l
NZZX
Signature: V4l
NZZY
Signature: V4l
NZZZ
Signature: V4l
OIIW
Signature: V4l
OIIX
Signature: V4l
OIIY
Signature: V4l
OIIZ
Signature: V4l
OINW
Signature: V4l
OINX
Signature: V4l
OINY
Signature: V4l
OINZ
Signature: V4l
OIOW
Signature: V4l
OIOX
Signature: V4l
OIOY
Signature: V4l
OIOZ
Signature: V4l
OIPW
Signature: V4l
OIPX
Signature: V4l
OIPY
Signature: V4l
OIPZ
Signature: V4l
OIW
Signature: V3l
OIWI
Signature: V4l
OIWN
Signature: V4l
OIWO
Signature: V4l
OIWP
Signature: V4l
OIWW
Signature: V4l
OIWX
Signature: V4l
OIWY
Signature: V4l
OIWZ
Signature: V4l
OIX
Signature: V3l
OIXI
Signature: V4l
OIXN
Signature: V4l
OIXO
Signature: V4l
OIXP
Signature: V4l
OIXW
Signature: V4l
OIXX
Signature: V4l
OIXY
Signature: V4l
OIXZ
Signature: V4l
OIY
Signature: V3l
OIYI
Signature: V4l
OIYN
Signature: V4l
OIYO
Signature: V4l
OIYP
Signature: V4l
OIYW
Signature: V4l
OIYX
Signature: V4l
OIYY
Signature: V4l
OIYZ
Signature: V4l
OIZ
Signature: V3l
OIZI
Signature: V4l
OIZN
Signature: V4l
OIZO
Signature: V4l
OIZP
Signature: V4l
OIZW
Signature: V4l
OIZX
Signature: V4l
OIZY
Signature: V4l
OIZZ
Signature: V4l
ONIW
Signature: V4l
ONIX
Signature: V4l
ONIY
Signature: V4l
ONIZ
Signature: V4l
ONNW
Signature: V4l
ONNX
Signature: V4l
ONNY
Signature: V4l
ONNZ
Signature: V4l
ONOW
Signature: V4l
ONOX
Signature: V4l
ONOY
Signature: V4l
ONOZ
Signature: V4l
ONPW
Signature: V4l
ONPX
Signature: V4l
ONPY
Signature: V4l
ONPZ
Signature: V4l
ONW
Signature: V3l
ONWI
Signature: V4l
ONWN
Signature: V4l
ONWO
Signature: V4l
ONWP
Signature: V4l
ONWW
Signature: V4l
ONWX
Signature: V4l
ONWY
Signature: V4l
ONWZ
Signature: V4l
ONX
Signature: V3l
ONXI
Signature: V4l
ONXN
Signature: V4l
ONXO
Signature: V4l
ONXP
Signature: V4l
ONXW
Signature: V4l
ONXX
Signature: V4l
ONXY
Signature: V4l
ONXZ
Signature: V4l
ONY
Signature: V3l
ONYI
Signature: V4l
ONYN
Signature: V4l
ONYO
Signature: V4l
ONYP
Signature: V4l
ONYW
Signature: V4l
ONYX
Signature: V4l
ONYY
Signature: V4l
ONYZ
Signature: V4l
ONZ
Signature: V3l
ONZI
Signature: V4l
ONZN
Signature: V4l
ONZO
Signature: V4l
ONZP
Signature: V4l
ONZW
Signature: V4l
ONZX
Signature: V4l
ONZY
Signature: V4l
ONZZ
Signature: V4l
OOIW
Signature: V4l
OOIX
Signature: V4l
OOIY
Signature: V4l
OOIZ
Signature: V4l
OONW
Signature: V4l
OONX
Signature: V4l
OONY
Signature: V4l
OONZ
Signature: V4l
OOOW
Signature: V4l
OOOX
Signature: V4l
OOOY
Signature: V4l
OOOZ
Signature: V4l
OOPW
Signature: V4l
OOPX
Signature: V4l
OOPY
Signature: V4l
OOPZ
Signature: V4l
OOW
Signature: V3l
OOWI
Signature: V4l
OOWN
Signature: V4l
OOWO
Signature: V4l
OOWP
Signature: V4l
OOWW
Signature: V4l
OOWX
Signature: V4l
OOWY
Signature: V4l
OOWZ
Signature: V4l
OOX
Signature: V3l
OOXI
Signature: V4l
OOXN
Signature: V4l
OOXO
Signature: V4l
OOXP
Signature: V4l
OOXW
Signature: V4l
OOXX
Signature: V4l
OOXY
Signature: V4l
OOXZ
Signature: V4l
OOY
Signature: V3l
OOYI
Signature: V4l
OOYN
Signature: V4l
OOYO
Signature: V4l
OOYP
Signature: V4l
OOYW
Signature: V4l
OOYX
Signature: V4l
OOYY
Signature: V4l
OOYZ
Signature: V4l
OOZ
Signature: V3l
OOZI
Signature: V4l
OOZN
Signature: V4l
OOZO
Signature: V4l
OOZP
Signature: V4l
OOZW
Signature: V4l
OOZX
Signature: V4l
OOZY
Signature: V4l
OOZZ
Signature: V4l
OPIW
Signature: V4l
OPIX
Signature: V4l
OPIY
Signature: V4l
OPIZ
Signature: V4l
OPNW
Signature: V4l
OPNX
Signature: V4l
OPNY
Signature: V4l
OPNZ
Signature: V4l
OPOW
Signature: V4l
OPOX
Signature: V4l
OPOY
Signature: V4l
OPOZ
Signature: V4l
OPPW
Signature: V4l
OPPX
Signature: V4l
OPPY
Signature: V4l
OPPZ
Signature: V4l
OPW
Signature: V3l
OPWI
Signature: V4l
OPWN
Signature: V4l
OPWO
Signature: V4l
OPWP
Signature: V4l
OPWW
Signature: V4l
OPWX
Signature: V4l
OPWY
Signature: V4l
OPWZ
Signature: V4l
OPX
Signature: V3l
OPXI
Signature: V4l
OPXN
Signature: V4l
OPXO
Signature: V4l
OPXP
Signature: V4l
OPXW
Signature: V4l
OPXX
Signature: V4l
OPXY
Signature: V4l
OPXZ
Signature: V4l
OPY
Signature: V3l
OPYI
Signature: V4l
OPYN
Signature: V4l
OPYO
Signature: V4l
OPYP
Signature: V4l
OPYW
Signature: V4l
OPYX
Signature: V4l
OPYY
Signature: V4l
OPYZ
Signature: V4l
OPZ
Signature: V3l
OPZI
Signature: V4l
OPZN
Signature: V4l
OPZO
Signature: V4l
OPZP
Signature: V4l
OPZW
Signature: V4l
OPZX
Signature: V4l
OPZY
Signature: V4l
OPZZ
Signature: V4l
OW
Signature: V2l
OWI
Signature: V3l
OWII
Signature: V4l
OWIN
Signature: V4l
OWIO
Signature: V4l
OWIP
Signature: V4l
OWIW
Signature: V4l
OWIX
Signature: V4l
OWIY
Signature: V4l
OWIZ
Signature: V4l
OWN
Signature: V3l
OWNI
Signature: V4l
OWNN
Signature: V4l
OWNO
Signature: V4l
OWNP
Signature: V4l
OWNW
Signature: V4l
OWNX
Signature: V4l
OWNY
Signature: V4l
OWNZ
Signature: V4l
OWO
Signature: V3l
OWOI
Signature: V4l
OWON
Signature: V4l
OWOO
Signature: V4l
OWOP
Signature: V4l
OWOW
Signature: V4l
OWOX
Signature: V4l
OWOY
Signature: V4l
OWOZ
Signature: V4l
OWP
Signature: V3l
OWPI
Signature: V4l
OWPN
Signature: V4l
OWPO
Signature: V4l
OWPP
Signature: V4l
OWPW
Signature: V4l
OWPX
Signature: V4l
OWPY
Signature: V4l
OWPZ
Signature: V4l
OWW
Signature: V3l
OWWI
Signature: V4l
OWWN
Signature: V4l
OWWO
Signature: V4l
OWWP
Signature: V4l
OWWW
Signature: V4l
OWWX
Signature: V4l
OWWY
Signature: V4l
OWWZ
Signature: V4l
OWX
Signature: V3l
OWXI
Signature: V4l
OWXN
Signature: V4l
OWXO
Signature: V4l
OWXP
Signature: V4l
OWXW
Signature: V4l
OWXX
Signature: V4l
OWXY
Signature: V4l
OWXZ
Signature: V4l
OWY
Signature: V3l
OWYI
Signature: V4l
OWYN
Signature: V4l
OWYO
Signature: V4l
OWYP
Signature: V4l
OWYW
Signature: V4l
OWYX
Signature: V4l
OWYY
Signature: V4l
OWYZ
Signature: V4l
OWZ
Signature: V3l
OWZI
Signature: V4l
OWZN
Signature: V4l
OWZO
Signature: V4l
OWZP
Signature: V4l
OWZW
Signature: V4l
OWZX
Signature: V4l
OWZY
Signature: V4l
OWZZ
Signature: V4l
OX
Signature: V2l
OXI
Signature: V3l
OXII
Signature: V4l
OXIN
Signature: V4l
OXIO
Signature: V4l
OXIP
Signature: V4l
OXIW
Signature: V4l
OXIX
Signature: V4l
OXIY
Signature: V4l
OXIZ
Signature: V4l
OXN
Signature: V3l
OXNI
Signature: V4l
OXNN
Signature: V4l
OXNO
Signature: V4l
OXNP
Signature: V4l
OXNW
Signature: V4l
OXNX
Signature: V4l
OXNY
Signature: V4l
OXNZ
Signature: V4l
OXO
Signature: V3l
OXOI
Signature: V4l
OXON
Signature: V4l
OXOO
Signature: V4l
OXOP
Signature: V4l
OXOW
Signature: V4l
OXOX
Signature: V4l
OXOY
Signature: V4l
OXOZ
Signature: V4l
OXP
Signature: V3l
OXPI
Signature: V4l
OXPN
Signature: V4l
OXPO
Signature: V4l
OXPP
Signature: V4l
OXPW
Signature: V4l
OXPX
Signature: V4l
OXPY
Signature: V4l
OXPZ
Signature: V4l
OXW
Signature: V3l
OXWI
Signature: V4l
OXWN
Signature: V4l
OXWO
Signature: V4l
OXWP
Signature: V4l
OXWW
Signature: V4l
OXWX
Signature: V4l
OXWY
Signature: V4l
OXWZ
Signature: V4l
OXX
Signature: V3l
OXXI
Signature: V4l
OXXN
Signature: V4l
OXXO
Signature: V4l
OXXP
Signature: V4l
OXXW
Signature: V4l
OXXX
Signature: V4l
OXXY
Signature: V4l
OXXZ
Signature: V4l
OXY
Signature: V3l
OXYI
Signature: V4l
OXYN
Signature: V4l
OXYO
Signature: V4l
OXYP
Signature: V4l
OXYW
Signature: V4l
OXYX
Signature: V4l
OXYY
Signature: V4l
OXYZ
Signature: V4l
OXZ
Signature: V3l
OXZI
Signature: V4l
OXZN
Signature: V4l
OXZO
Signature: V4l
OXZP
Signature: V4l
OXZW
Signature: V4l
OXZX
Signature: V4l
OXZY
Signature: V4l
OXZZ
Signature: V4l
OY
Signature: V2l
OYI
Signature: V3l
OYII
Signature: V4l
OYIN
Signature: V4l
OYIO
Signature: V4l
OYIP
Signature: V4l
OYIW
Signature: V4l
OYIX
Signature: V4l
OYIY
Signature: V4l
OYIZ
Signature: V4l
OYN
Signature: V3l
OYNI
Signature: V4l
OYNN
Signature: V4l
OYNO
Signature: V4l
OYNP
Signature: V4l
OYNW
Signature: V4l
OYNX
Signature: V4l
OYNY
Signature: V4l
OYNZ
Signature: V4l
OYO
Signature: V3l
OYOI
Signature: V4l
OYON
Signature: V4l
OYOO
Signature: V4l
OYOP
Signature: V4l
OYOW
Signature: V4l
OYOX
Signature: V4l
OYOY
Signature: V4l
OYOZ
Signature: V4l
OYP
Signature: V3l
OYPI
Signature: V4l
OYPN
Signature: V4l
OYPO
Signature: V4l
OYPP
Signature: V4l
OYPW
Signature: V4l
OYPX
Signature: V4l
OYPY
Signature: V4l
OYPZ
Signature: V4l
OYW
Signature: V3l
OYWI
Signature: V4l
OYWN
Signature: V4l
OYWO
Signature: V4l
OYWP
Signature: V4l
OYWW
Signature: V4l
OYWX
Signature: V4l
OYWY
Signature: V4l
OYWZ
Signature: V4l
OYX
Signature: V3l
OYXI
Signature: V4l
OYXN
Signature: V4l
OYXO
Signature: V4l
OYXP
Signature: V4l
OYXW
Signature: V4l
OYXX
Signature: V4l
OYXY
Signature: V4l
OYXZ
Signature: V4l
OYY
Signature: V3l
OYYI
Signature: V4l
OYYN
Signature: V4l
OYYO
Signature: V4l
OYYP
Signature: V4l
OYYW
Signature: V4l
OYYX
Signature: V4l
OYYY
Signature: V4l
OYYZ
Signature: V4l
OYZ
Signature: V3l
OYZI
Signature: V4l
OYZN
Signature: V4l
OYZO
Signature: V4l
OYZP
Signature: V4l
OYZW
Signature: V4l
OYZX
Signature: V4l
OYZY
Signature: V4l
OYZZ
Signature: V4l
OZ
Signature: V2l
OZI
Signature: V3l
OZII
Signature: V4l
OZIN
Signature: V4l
OZIO
Signature: V4l
OZIP
Signature: V4l
OZIW
Signature: V4l
OZIX
Signature: V4l
OZIY
Signature: V4l
OZIZ
Signature: V4l
OZN
Signature: V3l
OZNI
Signature: V4l
OZNN
Signature: V4l
OZNO
Signature: V4l
OZNP
Signature: V4l
OZNW
Signature: V4l
OZNX
Signature: V4l
OZNY
Signature: V4l
OZNZ
Signature: V4l
OZO
Signature: V3l
OZOI
Signature: V4l
OZON
Signature: V4l
OZOO
Signature: V4l
OZOP
Signature: V4l
OZOW
Signature: V4l
OZOX
Signature: V4l
OZOY
Signature: V4l
OZOZ
Signature: V4l
OZP
Signature: V3l
OZPI
Signature: V4l
OZPN
Signature: V4l
OZPO
Signature: V4l
OZPP
Signature: V4l
OZPW
Signature: V4l
OZPX
Signature: V4l
OZPY
Signature: V4l
OZPZ
Signature: V4l
OZW
Signature: V3l
OZWI
Signature: V4l
OZWN
Signature: V4l
OZWO
Signature: V4l
OZWP
Signature: V4l
OZWW
Signature: V4l
OZWX
Signature: V4l
OZWY
Signature: V4l
OZWZ
Signature: V4l
OZX
Signature: V3l
OZXI
Signature: V4l
OZXN
Signature: V4l
OZXO
Signature: V4l
OZXP
Signature: V4l
OZXW
Signature: V4l
OZXX
Signature: V4l
OZXY
Signature: V4l
OZXZ
Signature: V4l
OZY
Signature: V3l
OZYI
Signature: V4l
OZYN
Signature: V4l
OZYO
Signature: V4l
OZYP
Signature: V4l
OZYW
Signature: V4l
OZYX
Signature: V4l
OZYY
Signature: V4l
OZYZ
Signature: V4l
OZZ
Signature: V3l
OZZI
Signature: V4l
OZZN
Signature: V4l
OZZO
Signature: V4l
OZZP
Signature: V4l
OZZW
Signature: V4l
OZZX
Signature: V4l
OZZY
Signature: V4l
OZZZ
Signature: V4l
P_W()
Signature: unit -> unit

Property for the field W. Useful when properties are required, but the field W is recommended for general use.

P_X()
Signature: unit -> unit

Property for the field X. Useful when properties are required, but the field X is recommended for general use.

P_Y()
Signature: unit -> unit

Property for the field Y. Useful when properties are required, but the field Y is recommended for general use.

P_Z()
Signature: unit -> unit

Property for the field Z. Useful when properties are required, but the field Z is recommended for general use.

PIIW
Signature: V4l
PIIX
Signature: V4l
PIIY
Signature: V4l
PIIZ
Signature: V4l
PINW
Signature: V4l
PINX
Signature: V4l
PINY
Signature: V4l
PINZ
Signature: V4l
PIOW
Signature: V4l
PIOX
Signature: V4l
PIOY
Signature: V4l
PIOZ
Signature: V4l
PIPW
Signature: V4l
PIPX
Signature: V4l
PIPY
Signature: V4l
PIPZ
Signature: V4l
PIW
Signature: V3l
PIWI
Signature: V4l
PIWN
Signature: V4l
PIWO
Signature: V4l
PIWP
Signature: V4l
PIWW
Signature: V4l
PIWX
Signature: V4l
PIWY
Signature: V4l
PIWZ
Signature: V4l
PIX
Signature: V3l
PIXI
Signature: V4l
PIXN
Signature: V4l
PIXO
Signature: V4l
PIXP
Signature: V4l
PIXW
Signature: V4l
PIXX
Signature: V4l
PIXY
Signature: V4l
PIXZ
Signature: V4l
PIY
Signature: V3l
PIYI
Signature: V4l
PIYN
Signature: V4l
PIYO
Signature: V4l
PIYP
Signature: V4l
PIYW
Signature: V4l
PIYX
Signature: V4l
PIYY
Signature: V4l
PIYZ
Signature: V4l
PIZ
Signature: V3l
PIZI
Signature: V4l
PIZN
Signature: V4l
PIZO
Signature: V4l
PIZP
Signature: V4l
PIZW
Signature: V4l
PIZX
Signature: V4l
PIZY
Signature: V4l
PIZZ
Signature: V4l
PNIW
Signature: V4l
PNIX
Signature: V4l
PNIY
Signature: V4l
PNIZ
Signature: V4l
PNNW
Signature: V4l
PNNX
Signature: V4l
PNNY
Signature: V4l
PNNZ
Signature: V4l
PNOW
Signature: V4l
PNOX
Signature: V4l
PNOY
Signature: V4l
PNOZ
Signature: V4l
PNPW
Signature: V4l
PNPX
Signature: V4l
PNPY
Signature: V4l
PNPZ
Signature: V4l
PNW
Signature: V3l
PNWI
Signature: V4l
PNWN
Signature: V4l
PNWO
Signature: V4l
PNWP
Signature: V4l
PNWW
Signature: V4l
PNWX
Signature: V4l
PNWY
Signature: V4l
PNWZ
Signature: V4l
PNX
Signature: V3l
PNXI
Signature: V4l
PNXN
Signature: V4l
PNXO
Signature: V4l
PNXP
Signature: V4l
PNXW
Signature: V4l
PNXX
Signature: V4l
PNXY
Signature: V4l
PNXZ
Signature: V4l
PNY
Signature: V3l
PNYI
Signature: V4l
PNYN
Signature: V4l
PNYO
Signature: V4l
PNYP
Signature: V4l
PNYW
Signature: V4l
PNYX
Signature: V4l
PNYY
Signature: V4l
PNYZ
Signature: V4l
PNZ
Signature: V3l
PNZI
Signature: V4l
PNZN
Signature: V4l
PNZO
Signature: V4l
PNZP
Signature: V4l
PNZW
Signature: V4l
PNZX
Signature: V4l
PNZY
Signature: V4l
PNZZ
Signature: V4l
POIW
Signature: V4l
POIX
Signature: V4l
POIY
Signature: V4l
POIZ
Signature: V4l
PONW
Signature: V4l
PONX
Signature: V4l
PONY
Signature: V4l
PONZ
Signature: V4l
POOW
Signature: V4l
POOX
Signature: V4l
POOY
Signature: V4l
POOZ
Signature: V4l
POPW
Signature: V4l
POPX
Signature: V4l
POPY
Signature: V4l
POPZ
Signature: V4l
POW
Signature: V3l
POWI
Signature: V4l
POWN
Signature: V4l
POWO
Signature: V4l
POWP
Signature: V4l
POWW
Signature: V4l
POWX
Signature: V4l
POWY
Signature: V4l
POWZ
Signature: V4l
POX
Signature: V3l
POXI
Signature: V4l
POXN
Signature: V4l
POXO
Signature: V4l
POXP
Signature: V4l
POXW
Signature: V4l
POXX
Signature: V4l
POXY
Signature: V4l
POXZ
Signature: V4l
POY
Signature: V3l
POYI
Signature: V4l
POYN
Signature: V4l
POYO
Signature: V4l
POYP
Signature: V4l
POYW
Signature: V4l
POYX
Signature: V4l
POYY
Signature: V4l
POYZ
Signature: V4l
POZ
Signature: V3l
POZI
Signature: V4l
POZN
Signature: V4l
POZO
Signature: V4l
POZP
Signature: V4l
POZW
Signature: V4l
POZX
Signature: V4l
POZY
Signature: V4l
POZZ
Signature: V4l
PPIW
Signature: V4l
PPIX
Signature: V4l
PPIY
Signature: V4l
PPIZ
Signature: V4l
PPNW
Signature: V4l
PPNX
Signature: V4l
PPNY
Signature: V4l
PPNZ
Signature: V4l
PPOW
Signature: V4l
PPOX
Signature: V4l
PPOY
Signature: V4l
PPOZ
Signature: V4l
PPPW
Signature: V4l
PPPX
Signature: V4l
PPPY
Signature: V4l
PPPZ
Signature: V4l
PPW
Signature: V3l
PPWI
Signature: V4l
PPWN
Signature: V4l
PPWO
Signature: V4l
PPWP
Signature: V4l
PPWW
Signature: V4l
PPWX
Signature: V4l
PPWY
Signature: V4l
PPWZ
Signature: V4l
PPX
Signature: V3l
PPXI
Signature: V4l
PPXN
Signature: V4l
PPXO
Signature: V4l
PPXP
Signature: V4l
PPXW
Signature: V4l
PPXX
Signature: V4l
PPXY
Signature: V4l
PPXZ
Signature: V4l
PPY
Signature: V3l
PPYI
Signature: V4l
PPYN
Signature: V4l
PPYO
Signature: V4l
PPYP
Signature: V4l
PPYW
Signature: V4l
PPYX
Signature: V4l
PPYY
Signature: V4l
PPYZ
Signature: V4l
PPZ
Signature: V3l
PPZI
Signature: V4l
PPZN
Signature: V4l
PPZO
Signature: V4l
PPZP
Signature: V4l
PPZW
Signature: V4l
PPZX
Signature: V4l
PPZY
Signature: V4l
PPZZ
Signature: V4l
PW
Signature: V2l
PWI
Signature: V3l
PWII
Signature: V4l
PWIN
Signature: V4l
PWIO
Signature: V4l
PWIP
Signature: V4l
PWIW
Signature: V4l
PWIX
Signature: V4l
PWIY
Signature: V4l
PWIZ
Signature: V4l
PWN
Signature: V3l
PWNI
Signature: V4l
PWNN
Signature: V4l
PWNO
Signature: V4l
PWNP
Signature: V4l
PWNW
Signature: V4l
PWNX
Signature: V4l
PWNY
Signature: V4l
PWNZ
Signature: V4l
PWO
Signature: V3l
PWOI
Signature: V4l
PWON
Signature: V4l
PWOO
Signature: V4l
PWOP
Signature: V4l
PWOW
Signature: V4l
PWOX
Signature: V4l
PWOY
Signature: V4l
PWOZ
Signature: V4l
PWP
Signature: V3l
PWPI
Signature: V4l
PWPN
Signature: V4l
PWPO
Signature: V4l
PWPP
Signature: V4l
PWPW
Signature: V4l
PWPX
Signature: V4l
PWPY
Signature: V4l
PWPZ
Signature: V4l
PWW
Signature: V3l
PWWI
Signature: V4l
PWWN
Signature: V4l
PWWO
Signature: V4l
PWWP
Signature: V4l
PWWW
Signature: V4l
PWWX
Signature: V4l
PWWY
Signature: V4l
PWWZ
Signature: V4l
PWX
Signature: V3l
PWXI
Signature: V4l
PWXN
Signature: V4l
PWXO
Signature: V4l
PWXP
Signature: V4l
PWXW
Signature: V4l
PWXX
Signature: V4l
PWXY
Signature: V4l
PWXZ
Signature: V4l
PWY
Signature: V3l
PWYI
Signature: V4l
PWYN
Signature: V4l
PWYO
Signature: V4l
PWYP
Signature: V4l
PWYW
Signature: V4l
PWYX
Signature: V4l
PWYY
Signature: V4l
PWYZ
Signature: V4l
PWZ
Signature: V3l
PWZI
Signature: V4l
PWZN
Signature: V4l
PWZO
Signature: V4l
PWZP
Signature: V4l
PWZW
Signature: V4l
PWZX
Signature: V4l
PWZY
Signature: V4l
PWZZ
Signature: V4l
PX
Signature: V2l
PXI
Signature: V3l
PXII
Signature: V4l
PXIN
Signature: V4l
PXIO
Signature: V4l
PXIP
Signature: V4l
PXIW
Signature: V4l
PXIX
Signature: V4l
PXIY
Signature: V4l
PXIZ
Signature: V4l
PXN
Signature: V3l
PXNI
Signature: V4l
PXNN
Signature: V4l
PXNO
Signature: V4l
PXNP
Signature: V4l
PXNW
Signature: V4l
PXNX
Signature: V4l
PXNY
Signature: V4l
PXNZ
Signature: V4l
PXO
Signature: V3l
PXOI
Signature: V4l
PXON
Signature: V4l
PXOO
Signature: V4l
PXOP
Signature: V4l
PXOW
Signature: V4l
PXOX
Signature: V4l
PXOY
Signature: V4l
PXOZ
Signature: V4l
PXP
Signature: V3l
PXPI
Signature: V4l
PXPN
Signature: V4l
PXPO
Signature: V4l
PXPP
Signature: V4l
PXPW
Signature: V4l
PXPX
Signature: V4l
PXPY
Signature: V4l
PXPZ
Signature: V4l
PXW
Signature: V3l
PXWI
Signature: V4l
PXWN
Signature: V4l
PXWO
Signature: V4l
PXWP
Signature: V4l
PXWW
Signature: V4l
PXWX
Signature: V4l
PXWY
Signature: V4l
PXWZ
Signature: V4l
PXX
Signature: V3l
PXXI
Signature: V4l
PXXN
Signature: V4l
PXXO
Signature: V4l
PXXP
Signature: V4l
PXXW
Signature: V4l
PXXX
Signature: V4l
PXXY
Signature: V4l
PXXZ
Signature: V4l
PXY
Signature: V3l
PXYI
Signature: V4l
PXYN
Signature: V4l
PXYO
Signature: V4l
PXYP
Signature: V4l
PXYW
Signature: V4l
PXYX
Signature: V4l
PXYY
Signature: V4l
PXYZ
Signature: V4l
PXZ
Signature: V3l
PXZI
Signature: V4l
PXZN
Signature: V4l
PXZO
Signature: V4l
PXZP
Signature: V4l
PXZW
Signature: V4l
PXZX
Signature: V4l
PXZY
Signature: V4l
PXZZ
Signature: V4l
PY
Signature: V2l
PYI
Signature: V3l
PYII
Signature: V4l
PYIN
Signature: V4l
PYIO
Signature: V4l
PYIP
Signature: V4l
PYIW
Signature: V4l
PYIX
Signature: V4l
PYIY
Signature: V4l
PYIZ
Signature: V4l
PYN
Signature: V3l
PYNI
Signature: V4l
PYNN
Signature: V4l
PYNO
Signature: V4l
PYNP
Signature: V4l
PYNW
Signature: V4l
PYNX
Signature: V4l
PYNY
Signature: V4l
PYNZ
Signature: V4l
PYO
Signature: V3l
PYOI
Signature: V4l
PYON
Signature: V4l
PYOO
Signature: V4l
PYOP
Signature: V4l
PYOW
Signature: V4l
PYOX
Signature: V4l
PYOY
Signature: V4l
PYOZ
Signature: V4l
PYP
Signature: V3l
PYPI
Signature: V4l
PYPN
Signature: V4l
PYPO
Signature: V4l
PYPP
Signature: V4l
PYPW
Signature: V4l
PYPX
Signature: V4l
PYPY
Signature: V4l
PYPZ
Signature: V4l
PYW
Signature: V3l
PYWI
Signature: V4l
PYWN
Signature: V4l
PYWO
Signature: V4l
PYWP
Signature: V4l
PYWW
Signature: V4l
PYWX
Signature: V4l
PYWY
Signature: V4l
PYWZ
Signature: V4l
PYX
Signature: V3l
PYXI
Signature: V4l
PYXN
Signature: V4l
PYXO
Signature: V4l
PYXP
Signature: V4l
PYXW
Signature: V4l
PYXX
Signature: V4l
PYXY
Signature: V4l
PYXZ
Signature: V4l
PYY
Signature: V3l
PYYI
Signature: V4l
PYYN
Signature: V4l
PYYO
Signature: V4l
PYYP
Signature: V4l
PYYW
Signature: V4l
PYYX
Signature: V4l
PYYY
Signature: V4l
PYYZ
Signature: V4l
PYZ
Signature: V3l
PYZI
Signature: V4l
PYZN
Signature: V4l
PYZO
Signature: V4l
PYZP
Signature: V4l
PYZW
Signature: V4l
PYZX
Signature: V4l
PYZY
Signature: V4l
PYZZ
Signature: V4l
PZ
Signature: V2l
PZI
Signature: V3l
PZII
Signature: V4l
PZIN
Signature: V4l
PZIO
Signature: V4l
PZIP
Signature: V4l
PZIW
Signature: V4l
PZIX
Signature: V4l
PZIY
Signature: V4l
PZIZ
Signature: V4l
PZN
Signature: V3l
PZNI
Signature: V4l
PZNN
Signature: V4l
PZNO
Signature: V4l
PZNP
Signature: V4l
PZNW
Signature: V4l
PZNX
Signature: V4l
PZNY
Signature: V4l
PZNZ
Signature: V4l
PZO
Signature: V3l
PZOI
Signature: V4l
PZON
Signature: V4l
PZOO
Signature: V4l
PZOP
Signature: V4l
PZOW
Signature: V4l
PZOX
Signature: V4l
PZOY
Signature: V4l
PZOZ
Signature: V4l
PZP
Signature: V3l
PZPI
Signature: V4l
PZPN
Signature: V4l
PZPO
Signature: V4l
PZPP
Signature: V4l
PZPW
Signature: V4l
PZPX
Signature: V4l
PZPY
Signature: V4l
PZPZ
Signature: V4l
PZW
Signature: V3l
PZWI
Signature: V4l
PZWN
Signature: V4l
PZWO
Signature: V4l
PZWP
Signature: V4l
PZWW
Signature: V4l
PZWX
Signature: V4l
PZWY
Signature: V4l
PZWZ
Signature: V4l
PZX
Signature: V3l
PZXI
Signature: V4l
PZXN
Signature: V4l
PZXO
Signature: V4l
PZXP
Signature: V4l
PZXW
Signature: V4l
PZXX
Signature: V4l
PZXY
Signature: V4l
PZXZ
Signature: V4l
PZY
Signature: V3l
PZYI
Signature: V4l
PZYN
Signature: V4l
PZYO
Signature: V4l
PZYP
Signature: V4l
PZYW
Signature: V4l
PZYX
Signature: V4l
PZYY
Signature: V4l
PZYZ
Signature: V4l
PZZ
Signature: V3l
PZZI
Signature: V4l
PZZN
Signature: V4l
PZZO
Signature: V4l
PZZP
Signature: V4l
PZZW
Signature: V4l
PZZX
Signature: V4l
PZZY
Signature: V4l
PZZZ
Signature: V4l
Set(x, y, z, w)
Signature: (x:int * y:int * z:int * w:int) -> unit

Sets the elements of a vector to the given int elements.

Set(x, y, z, w)
Signature: (x:int64 * y:int64 * z:int64 * w:int64) -> unit

Sets the elements of a vector to the given long elements.

Set(x, y, z, w)
Signature: (x:float32 * y:float32 * z:float32 * w:float32) -> unit

Sets the elements of a vector to the given float elements.

Set(x, y, z, w)
Signature: (x:float * y:float * z:float * w:float) -> unit

Sets the elements of a vector to the given double elements.

SetValue(value, index)
Signature: (value:obj * index:int64) -> unit
Modifiers: abstract
Size4d
Signature: V4d
Modifiers: abstract
ToArray()
Signature: unit -> int64 []
ToC3b()
Signature: unit -> C3b
ToC3ui()
Signature: unit -> C3ui
ToC3us()
Signature: unit -> C3us
ToC4b()
Signature: unit -> C4b
ToC4ui()
Signature: unit -> C4ui
ToC4us()
Signature: unit -> C4us
ToString()
Signature: unit -> string
Modifiers: abstract
ToString(format)
Signature: format:string -> string
ToString(format, fp)
Signature: (format:string * fp:IFormatProvider) -> string
Modifiers: abstract
ToString(...)
Signature: (format:string * fp:IFormatProvider * begin:string * between:string * end:string) -> string

Outputs e.g. a 3D-Vector in the form "(begin)x(between)y(between)z(end)".

ToText(bracketLevel)
Signature: bracketLevel:int -> Text
ToV4d()
Signature: unit -> V4d
ToV4f()
Signature: unit -> V4f
ToV4i()
Signature: unit -> V4i
WI
Signature: V2l
WII
Signature: V3l
WIII
Signature: V4l
WIIN
Signature: V4l
WIIO
Signature: V4l
WIIP
Signature: V4l
WIIW
Signature: V4l
WIIX
Signature: V4l
WIIY
Signature: V4l
WIIZ
Signature: V4l
WIN
Signature: V3l
WINI
Signature: V4l
WINN
Signature: V4l
WINO
Signature: V4l
WINP
Signature: V4l
WINW
Signature: V4l
WINX
Signature: V4l
WINY
Signature: V4l
WINZ
Signature: V4l
WIO
Signature: V3l
WIOI
Signature: V4l
WION
Signature: V4l
WIOO
Signature: V4l
WIOP
Signature: V4l
WIOW
Signature: V4l
WIOX
Signature: V4l
WIOY
Signature: V4l
WIOZ
Signature: V4l
WIP
Signature: V3l
WIPI
Signature: V4l
WIPN
Signature: V4l
WIPO
Signature: V4l
WIPP
Signature: V4l
WIPW
Signature: V4l
WIPX
Signature: V4l
WIPY
Signature: V4l
WIPZ
Signature: V4l
WIW
Signature: V3l
WIWI
Signature: V4l
WIWN
Signature: V4l
WIWO
Signature: V4l
WIWP
Signature: V4l
WIWW
Signature: V4l
WIWX
Signature: V4l
WIWY
Signature: V4l
WIWZ
Signature: V4l
WIX
Signature: V3l
WIXI
Signature: V4l
WIXN
Signature: V4l
WIXO
Signature: V4l
WIXP
Signature: V4l
WIXW
Signature: V4l
WIXX
Signature: V4l
WIXY
Signature: V4l
WIXZ
Signature: V4l
WIY
Signature: V3l
WIYI
Signature: V4l
WIYN
Signature: V4l
WIYO
Signature: V4l
WIYP
Signature: V4l
WIYW
Signature: V4l
WIYX
Signature: V4l
WIYY
Signature: V4l
WIYZ
Signature: V4l
WIZ
Signature: V3l
WIZI
Signature: V4l
WIZN
Signature: V4l
WIZO
Signature: V4l
WIZP
Signature: V4l
WIZW
Signature: V4l
WIZX
Signature: V4l
WIZY
Signature: V4l
WIZZ
Signature: V4l
WN
Signature: V2l
WNI
Signature: V3l
WNII
Signature: V4l
WNIN
Signature: V4l
WNIO
Signature: V4l
WNIP
Signature: V4l
WNIW
Signature: V4l
WNIX
Signature: V4l
WNIY
Signature: V4l
WNIZ
Signature: V4l
WNN
Signature: V3l
WNNI
Signature: V4l
WNNN
Signature: V4l
WNNO
Signature: V4l
WNNP
Signature: V4l
WNNW
Signature: V4l
WNNX
Signature: V4l
WNNY
Signature: V4l
WNNZ
Signature: V4l
WNO
Signature: V3l
WNOI
Signature: V4l
WNON
Signature: V4l
WNOO
Signature: V4l
WNOP
Signature: V4l
WNOW
Signature: V4l
WNOX
Signature: V4l
WNOY
Signature: V4l
WNOZ
Signature: V4l
WNP
Signature: V3l
WNPI
Signature: V4l
WNPN
Signature: V4l
WNPO
Signature: V4l
WNPP
Signature: V4l
WNPW
Signature: V4l
WNPX
Signature: V4l
WNPY
Signature: V4l
WNPZ
Signature: V4l
WNW
Signature: V3l
WNWI
Signature: V4l
WNWN
Signature: V4l
WNWO
Signature: V4l
WNWP
Signature: V4l
WNWW
Signature: V4l
WNWX
Signature: V4l
WNWY
Signature: V4l
WNWZ
Signature: V4l
WNX
Signature: V3l
WNXI
Signature: V4l
WNXN
Signature: V4l
WNXO
Signature: V4l
WNXP
Signature: V4l
WNXW
Signature: V4l
WNXX
Signature: V4l
WNXY
Signature: V4l
WNXZ
Signature: V4l
WNY
Signature: V3l
WNYI
Signature: V4l
WNYN
Signature: V4l
WNYO
Signature: V4l
WNYP
Signature: V4l
WNYW
Signature: V4l
WNYX
Signature: V4l
WNYY
Signature: V4l
WNYZ
Signature: V4l
WNZ
Signature: V3l
WNZI
Signature: V4l
WNZN
Signature: V4l
WNZO
Signature: V4l
WNZP
Signature: V4l
WNZW
Signature: V4l
WNZX
Signature: V4l
WNZY
Signature: V4l
WNZZ
Signature: V4l
WO
Signature: V2l
WOI
Signature: V3l
WOII
Signature: V4l
WOIN
Signature: V4l
WOIO
Signature: V4l
WOIP
Signature: V4l
WOIW
Signature: V4l
WOIX
Signature: V4l
WOIY
Signature: V4l
WOIZ
Signature: V4l
WON
Signature: V3l
WONI
Signature: V4l
WONN
Signature: V4l
WONO
Signature: V4l
WONP
Signature: V4l
WONW
Signature: V4l
WONX
Signature: V4l
WONY
Signature: V4l
WONZ
Signature: V4l
WOO
Signature: V3l
WOOI
Signature: V4l
WOON
Signature: V4l
WOOO
Signature: V4l
WOOP
Signature: V4l
WOOW
Signature: V4l
WOOX
Signature: V4l
WOOY
Signature: V4l
WOOZ
Signature: V4l
WOP
Signature: V3l
WOPI
Signature: V4l
WOPN
Signature: V4l
WOPO
Signature: V4l
WOPP
Signature: V4l
WOPW
Signature: V4l
WOPX
Signature: V4l
WOPY
Signature: V4l
WOPZ
Signature: V4l
WOW
Signature: V3l
WOWI
Signature: V4l
WOWN
Signature: V4l
WOWO
Signature: V4l
WOWP
Signature: V4l
WOWW
Signature: V4l
WOWX
Signature: V4l
WOWY
Signature: V4l
WOWZ
Signature: V4l
WOX
Signature: V3l
WOXI
Signature: V4l
WOXN
Signature: V4l
WOXO
Signature: V4l
WOXP
Signature: V4l
WOXW
Signature: V4l
WOXX
Signature: V4l
WOXY
Signature: V4l
WOXZ
Signature: V4l
WOY
Signature: V3l
WOYI
Signature: V4l
WOYN
Signature: V4l
WOYO
Signature: V4l
WOYP
Signature: V4l
WOYW
Signature: V4l
WOYX
Signature: V4l
WOYY
Signature: V4l
WOYZ
Signature: V4l
WOZ
Signature: V3l
WOZI
Signature: V4l
WOZN
Signature: V4l
WOZO
Signature: V4l
WOZP
Signature: V4l
WOZW
Signature: V4l
WOZX
Signature: V4l
WOZY
Signature: V4l
WOZZ
Signature: V4l
WP
Signature: V2l
WPI
Signature: V3l
WPII
Signature: V4l
WPIN
Signature: V4l
WPIO
Signature: V4l
WPIP
Signature: V4l
WPIW
Signature: V4l
WPIX
Signature: V4l
WPIY
Signature: V4l
WPIZ
Signature: V4l
WPN
Signature: V3l
WPNI
Signature: V4l
WPNN
Signature: V4l
WPNO
Signature: V4l
WPNP
Signature: V4l
WPNW
Signature: V4l
WPNX
Signature: V4l
WPNY
Signature: V4l
WPNZ
Signature: V4l
WPO
Signature: V3l
WPOI
Signature: V4l
WPON
Signature: V4l
WPOO
Signature: V4l
WPOP
Signature: V4l
WPOW
Signature: V4l
WPOX
Signature: V4l
WPOY
Signature: V4l
WPOZ
Signature: V4l
WPP
Signature: V3l
WPPI
Signature: V4l
WPPN
Signature: V4l
WPPO
Signature: V4l
WPPP
Signature: V4l
WPPW
Signature: V4l
WPPX
Signature: V4l
WPPY
Signature: V4l
WPPZ
Signature: V4l
WPW
Signature: V3l
WPWI
Signature: V4l
WPWN
Signature: V4l
WPWO
Signature: V4l
WPWP
Signature: V4l
WPWW
Signature: V4l
WPWX
Signature: V4l
WPWY
Signature: V4l
WPWZ
Signature: V4l
WPX
Signature: V3l
WPXI
Signature: V4l
WPXN
Signature: V4l
WPXO
Signature: V4l
WPXP
Signature: V4l
WPXW
Signature: V4l
WPXX
Signature: V4l
WPXY
Signature: V4l
WPXZ
Signature: V4l
WPY
Signature: V3l
WPYI
Signature: V4l
WPYN
Signature: V4l
WPYO
Signature: V4l
WPYP
Signature: V4l
WPYW
Signature: V4l
WPYX
Signature: V4l
WPYY
Signature: V4l
WPYZ
Signature: V4l
WPZ
Signature: V3l
WPZI
Signature: V4l
WPZN
Signature: V4l
WPZO
Signature: V4l
WPZP
Signature: V4l
WPZW
Signature: V4l
WPZX
Signature: V4l
WPZY
Signature: V4l
WPZZ
Signature: V4l
WW
Signature: V2l
WWI
Signature: V3l
WWII
Signature: V4l
WWIN
Signature: V4l
WWIO
Signature: V4l
WWIP
Signature: V4l
WWIW
Signature: V4l
WWIX
Signature: V4l
WWIY
Signature: V4l
WWIZ
Signature: V4l
WWN
Signature: V3l
WWNI
Signature: V4l
WWNN
Signature: V4l
WWNO
Signature: V4l
WWNP
Signature: V4l
WWNW
Signature: V4l
WWNX
Signature: V4l
WWNY
Signature: V4l
WWNZ
Signature: V4l
WWO
Signature: V3l
WWOI
Signature: V4l
WWON
Signature: V4l
WWOO
Signature: V4l
WWOP
Signature: V4l
WWOW
Signature: V4l
WWOX
Signature: V4l
WWOY
Signature: V4l
WWOZ
Signature: V4l
WWP
Signature: V3l
WWPI
Signature: V4l
WWPN
Signature: V4l
WWPO
Signature: V4l
WWPP
Signature: V4l
WWPW
Signature: V4l
WWPX
Signature: V4l
WWPY
Signature: V4l
WWPZ
Signature: V4l
WWW
Signature: V3l
WWWI
Signature: V4l
WWWN
Signature: V4l
WWWO
Signature: V4l
WWWP
Signature: V4l
WWWW
Signature: V4l
WWWX
Signature: V4l
WWWY
Signature: V4l
WWWZ
Signature: V4l
WWX
Signature: V3l
WWXI
Signature: V4l
WWXN
Signature: V4l
WWXO
Signature: V4l
WWXP
Signature: V4l
WWXW
Signature: V4l
WWXX
Signature: V4l
WWXY
Signature: V4l
WWXZ
Signature: V4l
WWY
Signature: V3l
WWYI
Signature: V4l
WWYN
Signature: V4l
WWYO
Signature: V4l
WWYP
Signature: V4l
WWYW
Signature: V4l
WWYX
Signature: V4l
WWYY
Signature: V4l
WWYZ
Signature: V4l
WWZ
Signature: V3l
WWZI
Signature: V4l
WWZN
Signature: V4l
WWZO
Signature: V4l
WWZP
Signature: V4l
WWZW
Signature: V4l
WWZX
Signature: V4l
WWZY
Signature: V4l
WWZZ
Signature: V4l
WX
Signature: V2l
WXI
Signature: V3l
WXII
Signature: V4l
WXIN
Signature: V4l
WXIO
Signature: V4l
WXIP
Signature: V4l
WXIW
Signature: V4l
WXIX
Signature: V4l
WXIY
Signature: V4l
WXIZ
Signature: V4l
WXN
Signature: V3l
WXNI
Signature: V4l
WXNN
Signature: V4l
WXNO
Signature: V4l
WXNP
Signature: V4l
WXNW
Signature: V4l
WXNX
Signature: V4l
WXNY
Signature: V4l
WXNZ
Signature: V4l
WXO
Signature: V3l
WXOI
Signature: V4l
WXON
Signature: V4l
WXOO
Signature: V4l
WXOP
Signature: V4l
WXOW
Signature: V4l
WXOX
Signature: V4l
WXOY
Signature: V4l
WXOZ
Signature: V4l
WXP
Signature: V3l
WXPI
Signature: V4l
WXPN
Signature: V4l
WXPO
Signature: V4l
WXPP
Signature: V4l
WXPW
Signature: V4l
WXPX
Signature: V4l
WXPY
Signature: V4l
WXPZ
Signature: V4l
WXW
Signature: V3l
WXWI
Signature: V4l
WXWN
Signature: V4l
WXWO
Signature: V4l
WXWP
Signature: V4l
WXWW
Signature: V4l
WXWX
Signature: V4l
WXWY
Signature: V4l
WXWZ
Signature: V4l
WXX
Signature: V3l
WXXI
Signature: V4l
WXXN
Signature: V4l
WXXO
Signature: V4l
WXXP
Signature: V4l
WXXW
Signature: V4l
WXXX
Signature: V4l
WXXY
Signature: V4l
WXXZ
Signature: V4l
WXY
Signature: V3l
WXYI
Signature: V4l
WXYN
Signature: V4l
WXYO
Signature: V4l
WXYP
Signature: V4l
WXYW
Signature: V4l
WXYX
Signature: V4l
WXYY
Signature: V4l
WXYZ
Signature: V4l
WXZ
Signature: V3l
WXZI
Signature: V4l
WXZN
Signature: V4l
WXZO
Signature: V4l
WXZP
Signature: V4l
WXZW
Signature: V4l
WXZX
Signature: V4l
WXZY
Signature: V4l
WXZZ
Signature: V4l
WY
Signature: V2l
WYI
Signature: V3l
WYII
Signature: V4l
WYIN
Signature: V4l
WYIO
Signature: V4l
WYIP
Signature: V4l
WYIW
Signature: V4l
WYIX
Signature: V4l
WYIY
Signature: V4l
WYIZ
Signature: V4l
WYN
Signature: V3l
WYNI
Signature: V4l
WYNN
Signature: V4l
WYNO
Signature: V4l
WYNP
Signature: V4l
WYNW
Signature: V4l
WYNX
Signature: V4l
WYNY
Signature: V4l
WYNZ
Signature: V4l
WYO
Signature: V3l
WYOI
Signature: V4l
WYON
Signature: V4l
WYOO
Signature: V4l
WYOP
Signature: V4l
WYOW
Signature: V4l
WYOX
Signature: V4l
WYOY
Signature: V4l
WYOZ
Signature: V4l
WYP
Signature: V3l
WYPI
Signature: V4l
WYPN
Signature: V4l
WYPO
Signature: V4l
WYPP
Signature: V4l
WYPW
Signature: V4l
WYPX
Signature: V4l
WYPY
Signature: V4l
WYPZ
Signature: V4l
WYW
Signature: V3l
WYWI
Signature: V4l
WYWN
Signature: V4l
WYWO
Signature: V4l
WYWP
Signature: V4l
WYWW
Signature: V4l
WYWX
Signature: V4l
WYWY
Signature: V4l
WYWZ
Signature: V4l
WYX
Signature: V3l
WYXI
Signature: V4l
WYXN
Signature: V4l
WYXO
Signature: V4l
WYXP
Signature: V4l
WYXW
Signature: V4l
WYXX
Signature: V4l
WYXY
Signature: V4l
WYXZ
Signature: V4l
WYY
Signature: V3l
WYYI
Signature: V4l
WYYN
Signature: V4l
WYYO
Signature: V4l
WYYP
Signature: V4l
WYYW
Signature: V4l
WYYX
Signature: V4l
WYYY
Signature: V4l
WYYZ
Signature: V4l
WYZ
Signature: V3l
WYZI
Signature: V4l
WYZN
Signature: V4l
WYZO
Signature: V4l
WYZP
Signature: V4l
WYZW
Signature: V4l
WYZX
Signature: V4l
WYZY
Signature: V4l
WYZZ
Signature: V4l
WZ
Signature: V2l
WZI
Signature: V3l
WZII
Signature: V4l
WZIN
Signature: V4l
WZIO
Signature: V4l
WZIP
Signature: V4l
WZIW
Signature: V4l
WZIX
Signature: V4l
WZIY
Signature: V4l
WZIZ
Signature: V4l
WZN
Signature: V3l
WZNI
Signature: V4l
WZNN
Signature: V4l
WZNO
Signature: V4l
WZNP
Signature: V4l
WZNW
Signature: V4l
WZNX
Signature: V4l
WZNY
Signature: V4l
WZNZ
Signature: V4l
WZO
Signature: V3l
WZOI
Signature: V4l
WZON
Signature: V4l
WZOO
Signature: V4l
WZOP
Signature: V4l
WZOW
Signature: V4l
WZOX
Signature: V4l
WZOY
Signature: V4l
WZOZ
Signature: V4l
WZP
Signature: V3l
WZPI
Signature: V4l
WZPN
Signature: V4l
WZPO
Signature: V4l
WZPP
Signature: V4l
WZPW
Signature: V4l
WZPX
Signature: V4l
WZPY
Signature: V4l
WZPZ
Signature: V4l
WZW
Signature: V3l
WZWI
Signature: V4l
WZWN
Signature: V4l
WZWO
Signature: V4l
WZWP
Signature: V4l
WZWW
Signature: V4l
WZWX
Signature: V4l
WZWY
Signature: V4l
WZWZ
Signature: V4l
WZX
Signature: V3l
WZXI
Signature: V4l
WZXN
Signature: V4l
WZXO
Signature: V4l
WZXP
Signature: V4l
WZXW
Signature: V4l
WZXX
Signature: V4l
WZXY
Signature: V4l
WZXZ
Signature: V4l
WZY
Signature: V3l
WZYI
Signature: V4l
WZYN
Signature: V4l
WZYO
Signature: V4l
WZYP
Signature: V4l
WZYW
Signature: V4l
WZYX
Signature: V4l
WZYY
Signature: V4l
WZYZ
Signature: V4l
WZZ
Signature: V3l
WZZI
Signature: V4l
WZZN
Signature: V4l
WZZO
Signature: V4l
WZZP
Signature: V4l
WZZW
Signature: V4l
WZZX
Signature: V4l
WZZY
Signature: V4l
WZZZ
Signature: V4l
XI
Signature: V2l
XII
Signature: V3l
XIII
Signature: V4l
XIIN
Signature: V4l
XIIO
Signature: V4l
XIIP
Signature: V4l
XIIW
Signature: V4l
XIIX
Signature: V4l
XIIY
Signature: V4l
XIIZ
Signature: V4l
XIN
Signature: V3l
XINI
Signature: V4l
XINN
Signature: V4l
XINO
Signature: V4l
XINP
Signature: V4l
XINW
Signature: V4l
XINX
Signature: V4l
XINY
Signature: V4l
XINZ
Signature: V4l
XIO
Signature: V3l
XIOI
Signature: V4l
XION
Signature: V4l
XIOO
Signature: V4l
XIOP
Signature: V4l
XIOW
Signature: V4l
XIOX
Signature: V4l
XIOY
Signature: V4l
XIOZ
Signature: V4l
XIP
Signature: V3l
XIPI
Signature: V4l
XIPN
Signature: V4l
XIPO
Signature: V4l
XIPP
Signature: V4l
XIPW
Signature: V4l
XIPX
Signature: V4l
XIPY
Signature: V4l
XIPZ
Signature: V4l
XIW
Signature: V3l
XIWI
Signature: V4l
XIWN
Signature: V4l
XIWO
Signature: V4l
XIWP
Signature: V4l
XIWW
Signature: V4l
XIWX
Signature: V4l
XIWY
Signature: V4l
XIWZ
Signature: V4l
XIX
Signature: V3l
XIXI
Signature: V4l
XIXN
Signature: V4l
XIXO
Signature: V4l
XIXP
Signature: V4l
XIXW
Signature: V4l
XIXX
Signature: V4l
XIXY
Signature: V4l
XIXZ
Signature: V4l
XIY
Signature: V3l
XIYI
Signature: V4l
XIYN
Signature: V4l
XIYO
Signature: V4l
XIYP
Signature: V4l
XIYW
Signature: V4l
XIYX
Signature: V4l
XIYY
Signature: V4l
XIYZ
Signature: V4l
XIZ
Signature: V3l
XIZI
Signature: V4l
XIZN
Signature: V4l
XIZO
Signature: V4l
XIZP
Signature: V4l
XIZW
Signature: V4l
XIZX
Signature: V4l
XIZY
Signature: V4l
XIZZ
Signature: V4l
XN
Signature: V2l
XNI
Signature: V3l
XNII
Signature: V4l
XNIN
Signature: V4l
XNIO
Signature: V4l
XNIP
Signature: V4l
XNIW
Signature: V4l
XNIX
Signature: V4l
XNIY
Signature: V4l
XNIZ
Signature: V4l
XNN
Signature: V3l
XNNI
Signature: V4l
XNNN
Signature: V4l
XNNO
Signature: V4l
XNNP
Signature: V4l
XNNW
Signature: V4l
XNNX
Signature: V4l
XNNY
Signature: V4l
XNNZ
Signature: V4l
XNO
Signature: V3l
XNOI
Signature: V4l
XNON
Signature: V4l
XNOO
Signature: V4l
XNOP
Signature: V4l
XNOW
Signature: V4l
XNOX
Signature: V4l
XNOY
Signature: V4l
XNOZ
Signature: V4l
XNP
Signature: V3l
XNPI
Signature: V4l
XNPN
Signature: V4l
XNPO
Signature: V4l
XNPP
Signature: V4l
XNPW
Signature: V4l
XNPX
Signature: V4l
XNPY
Signature: V4l
XNPZ
Signature: V4l
XNW
Signature: V3l
XNWI
Signature: V4l
XNWN
Signature: V4l
XNWO
Signature: V4l
XNWP
Signature: V4l
XNWW
Signature: V4l
XNWX
Signature: V4l
XNWY
Signature: V4l
XNWZ
Signature: V4l
XNX
Signature: V3l
XNXI
Signature: V4l
XNXN
Signature: V4l
XNXO
Signature: V4l
XNXP
Signature: V4l
XNXW
Signature: V4l
XNXX
Signature: V4l
XNXY
Signature: V4l
XNXZ
Signature: V4l
XNY
Signature: V3l
XNYI
Signature: V4l
XNYN
Signature: V4l
XNYO
Signature: V4l
XNYP
Signature: V4l
XNYW
Signature: V4l
XNYX
Signature: V4l
XNYY
Signature: V4l
XNYZ
Signature: V4l
XNZ
Signature: V3l
XNZI
Signature: V4l
XNZN
Signature: V4l
XNZO
Signature: V4l
XNZP
Signature: V4l
XNZW
Signature: V4l
XNZX
Signature: V4l
XNZY
Signature: V4l
XNZZ
Signature: V4l
XO
Signature: V2l
XOI
Signature: V3l
XOII
Signature: V4l
XOIN
Signature: V4l
XOIO
Signature: V4l
XOIP
Signature: V4l
XOIW
Signature: V4l
XOIX
Signature: V4l
XOIY
Signature: V4l
XOIZ
Signature: V4l
XON
Signature: V3l
XONI
Signature: V4l
XONN
Signature: V4l
XONO
Signature: V4l
XONP
Signature: V4l
XONW
Signature: V4l
XONX
Signature: V4l
XONY
Signature: V4l
XONZ
Signature: V4l
XOO
Signature: V3l
XOOI
Signature: V4l
XOON
Signature: V4l
XOOO
Signature: V4l
XOOP
Signature: V4l
XOOW
Signature: V4l
XOOX
Signature: V4l
XOOY
Signature: V4l
XOOZ
Signature: V4l
XOP
Signature: V3l
XOPI
Signature: V4l
XOPN
Signature: V4l
XOPO
Signature: V4l
XOPP
Signature: V4l
XOPW
Signature: V4l
XOPX
Signature: V4l
XOPY
Signature: V4l
XOPZ
Signature: V4l
XOW
Signature: V3l
XOWI
Signature: V4l
XOWN
Signature: V4l
XOWO
Signature: V4l
XOWP
Signature: V4l
XOWW
Signature: V4l
XOWX
Signature: V4l
XOWY
Signature: V4l
XOWZ
Signature: V4l
XOX
Signature: V3l
XOXI
Signature: V4l
XOXN
Signature: V4l
XOXO
Signature: V4l
XOXP
Signature: V4l
XOXW
Signature: V4l
XOXX
Signature: V4l
XOXY
Signature: V4l
XOXZ
Signature: V4l
XOY
Signature: V3l
XOYI
Signature: V4l
XOYN
Signature: V4l
XOYO
Signature: V4l
XOYP
Signature: V4l
XOYW
Signature: V4l
XOYX
Signature: V4l
XOYY
Signature: V4l
XOYZ
Signature: V4l
XOZ
Signature: V3l
XOZI
Signature: V4l
XOZN
Signature: V4l
XOZO
Signature: V4l
XOZP
Signature: V4l
XOZW
Signature: V4l
XOZX
Signature: V4l
XOZY
Signature: V4l
XOZZ
Signature: V4l
XP
Signature: V2l
XPI
Signature: V3l
XPII
Signature: V4l
XPIN
Signature: V4l
XPIO
Signature: V4l
XPIP
Signature: V4l
XPIW
Signature: V4l
XPIX
Signature: V4l
XPIY
Signature: V4l
XPIZ
Signature: V4l
XPN
Signature: V3l
XPNI
Signature: V4l
XPNN
Signature: V4l
XPNO
Signature: V4l
XPNP
Signature: V4l
XPNW
Signature: V4l
XPNX
Signature: V4l
XPNY
Signature: V4l
XPNZ
Signature: V4l
XPO
Signature: V3l
XPOI
Signature: V4l
XPON
Signature: V4l
XPOO
Signature: V4l
XPOP
Signature: V4l
XPOW
Signature: V4l
XPOX
Signature: V4l
XPOY
Signature: V4l
XPOZ
Signature: V4l
XPP
Signature: V3l
XPPI
Signature: V4l
XPPN
Signature: V4l
XPPO
Signature: V4l
XPPP
Signature: V4l
XPPW
Signature: V4l
XPPX
Signature: V4l
XPPY
Signature: V4l
XPPZ
Signature: V4l
XPW
Signature: V3l
XPWI
Signature: V4l
XPWN
Signature: V4l
XPWO
Signature: V4l
XPWP
Signature: V4l
XPWW
Signature: V4l
XPWX
Signature: V4l
XPWY
Signature: V4l
XPWZ
Signature: V4l
XPX
Signature: V3l
XPXI
Signature: V4l
XPXN
Signature: V4l
XPXO
Signature: V4l
XPXP
Signature: V4l
XPXW
Signature: V4l
XPXX
Signature: V4l
XPXY
Signature: V4l
XPXZ
Signature: V4l
XPY
Signature: V3l
XPYI
Signature: V4l
XPYN
Signature: V4l
XPYO
Signature: V4l
XPYP
Signature: V4l
XPYW
Signature: V4l
XPYX
Signature: V4l
XPYY
Signature: V4l
XPYZ
Signature: V4l
XPZ
Signature: V3l
XPZI
Signature: V4l
XPZN
Signature: V4l
XPZO
Signature: V4l
XPZP
Signature: V4l
XPZW
Signature: V4l
XPZX
Signature: V4l
XPZY
Signature: V4l
XPZZ
Signature: V4l
XW
Signature: V2l
XWI
Signature: V3l
XWII
Signature: V4l
XWIN
Signature: V4l
XWIO
Signature: V4l
XWIP
Signature: V4l
XWIW
Signature: V4l
XWIX
Signature: V4l
XWIY
Signature: V4l
XWIZ
Signature: V4l
XWN
Signature: V3l
XWNI
Signature: V4l
XWNN
Signature: V4l
XWNO
Signature: V4l
XWNP
Signature: V4l
XWNW
Signature: V4l
XWNX
Signature: V4l
XWNY
Signature: V4l
XWNZ
Signature: V4l
XWO
Signature: V3l
XWOI
Signature: V4l
XWON
Signature: V4l
XWOO
Signature: V4l
XWOP
Signature: V4l
XWOW
Signature: V4l
XWOX
Signature: V4l
XWOY
Signature: V4l
XWOZ
Signature: V4l
XWP
Signature: V3l
XWPI
Signature: V4l
XWPN
Signature: V4l
XWPO
Signature: V4l
XWPP
Signature: V4l
XWPW
Signature: V4l
XWPX
Signature: V4l
XWPY
Signature: V4l
XWPZ
Signature: V4l
XWW
Signature: V3l
XWWI
Signature: V4l
XWWN
Signature: V4l
XWWO
Signature: V4l
XWWP
Signature: V4l
XWWW
Signature: V4l
XWWX
Signature: V4l
XWWY
Signature: V4l
XWWZ
Signature: V4l
XWX
Signature: V3l
XWXI
Signature: V4l
XWXN
Signature: V4l
XWXO
Signature: V4l
XWXP
Signature: V4l
XWXW
Signature: V4l
XWXX
Signature: V4l
XWXY
Signature: V4l
XWXZ
Signature: V4l
XWY
Signature: V3l
XWYI
Signature: V4l
XWYN
Signature: V4l
XWYO
Signature: V4l
XWYP
Signature: V4l
XWYW
Signature: V4l
XWYX
Signature: V4l
XWYY
Signature: V4l
XWYZ
Signature: V4l
XWZ
Signature: V3l
XWZI
Signature: V4l
XWZN
Signature: V4l
XWZO
Signature: V4l
XWZP
Signature: V4l
XWZW
Signature: V4l
XWZX
Signature: V4l
XWZY
Signature: V4l
XWZZ
Signature: V4l
XX
Signature: V2l
XXI
Signature: V3l
XXII
Signature: V4l
XXIN
Signature: V4l
XXIO
Signature: V4l
XXIP
Signature: V4l
XXIW
Signature: V4l
XXIX
Signature: V4l
XXIY
Signature: V4l
XXIZ
Signature: V4l
XXN
Signature: V3l
XXNI
Signature: V4l
XXNN
Signature: V4l
XXNO
Signature: V4l
XXNP
Signature: V4l
XXNW
Signature: V4l
XXNX
Signature: V4l
XXNY
Signature: V4l
XXNZ
Signature: V4l
XXO
Signature: V3l
XXOI
Signature: V4l
XXON
Signature: V4l
XXOO
Signature: V4l
XXOP
Signature: V4l
XXOW
Signature: V4l
XXOX
Signature: V4l
XXOY
Signature: V4l
XXOZ
Signature: V4l
XXP
Signature: V3l
XXPI
Signature: V4l
XXPN
Signature: V4l
XXPO
Signature: V4l
XXPP
Signature: V4l
XXPW
Signature: V4l
XXPX
Signature: V4l
XXPY
Signature: V4l
XXPZ
Signature: V4l
XXW
Signature: V3l
XXWI
Signature: V4l
XXWN
Signature: V4l
XXWO
Signature: V4l
XXWP
Signature: V4l
XXWW
Signature: V4l
XXWX
Signature: V4l
XXWY
Signature: V4l
XXWZ
Signature: V4l
XXX
Signature: V3l
XXXI
Signature: V4l
XXXN
Signature: V4l
XXXO
Signature: V4l
XXXP
Signature: V4l
XXXW
Signature: V4l
XXXX
Signature: V4l
XXXY
Signature: V4l
XXXZ
Signature: V4l
XXY
Signature: V3l
XXYI
Signature: V4l
XXYN
Signature: V4l
XXYO
Signature: V4l
XXYP
Signature: V4l
XXYW
Signature: V4l
XXYX
Signature: V4l
XXYY
Signature: V4l
XXYZ
Signature: V4l
XXZ
Signature: V3l
XXZI
Signature: V4l
XXZN
Signature: V4l
XXZO
Signature: V4l
XXZP
Signature: V4l
XXZW
Signature: V4l
XXZX
Signature: V4l
XXZY
Signature: V4l
XXZZ
Signature: V4l
XY
Signature: V2l
XYI
Signature: V3l
XYII
Signature: V4l
XYIN
Signature: V4l
XYIO
Signature: V4l
XYIP
Signature: V4l
XYIW
Signature: V4l
XYIX
Signature: V4l
XYIY
Signature: V4l
XYIZ
Signature: V4l
XYN
Signature: V3l
XYNI
Signature: V4l
XYNN
Signature: V4l
XYNO
Signature: V4l
XYNP
Signature: V4l
XYNW
Signature: V4l
XYNX
Signature: V4l
XYNY
Signature: V4l
XYNZ
Signature: V4l
XYO
Signature: V3l
XYOI
Signature: V4l
XYON
Signature: V4l
XYOO
Signature: V4l
XYOP
Signature: V4l
XYOW
Signature: V4l
XYOX
Signature: V4l
XYOY
Signature: V4l
XYOZ
Signature: V4l
XYP
Signature: V3l
XYPI
Signature: V4l
XYPN
Signature: V4l
XYPO
Signature: V4l
XYPP
Signature: V4l
XYPW
Signature: V4l
XYPX
Signature: V4l
XYPY
Signature: V4l
XYPZ
Signature: V4l
XYW
Signature: V3l
XYWI
Signature: V4l
XYWN
Signature: V4l
XYWO
Signature: V4l
XYWP
Signature: V4l
XYWW
Signature: V4l
XYWX
Signature: V4l
XYWY
Signature: V4l
XYWZ
Signature: V4l
XYX
Signature: V3l
XYXI
Signature: V4l
XYXN
Signature: V4l
XYXO
Signature: V4l
XYXP
Signature: V4l
XYXW
Signature: V4l
XYXX
Signature: V4l
XYXY
Signature: V4l
XYXZ
Signature: V4l
XYY
Signature: V3l
XYYI
Signature: V4l
XYYN
Signature: V4l
XYYO
Signature: V4l
XYYP
Signature: V4l
XYYW
Signature: V4l
XYYX
Signature: V4l
XYYY
Signature: V4l
XYYZ
Signature: V4l
XYZ
Signature: V3l
XYZI
Signature: V4l
XYZN
Signature: V4l
XYZO
Signature: V4l
XYZP
Signature: V4l
XYZW
Signature: V4l
XYZX
Signature: V4l
XYZY
Signature: V4l
XYZZ
Signature: V4l
XZ
Signature: V2l
XZI
Signature: V3l
XZII
Signature: V4l
XZIN
Signature: V4l
XZIO
Signature: V4l
XZIP
Signature: V4l
XZIW
Signature: V4l
XZIX
Signature: V4l
XZIY
Signature: V4l
XZIZ
Signature: V4l
XZN
Signature: V3l
XZNI
Signature: V4l
XZNN
Signature: V4l
XZNO
Signature: V4l
XZNP
Signature: V4l
XZNW
Signature: V4l
XZNX
Signature: V4l
XZNY
Signature: V4l
XZNZ
Signature: V4l
XZO
Signature: V3l
XZOI
Signature: V4l
XZON
Signature: V4l
XZOO
Signature: V4l
XZOP
Signature: V4l
XZOW
Signature: V4l
XZOX
Signature: V4l
XZOY
Signature: V4l
XZOZ
Signature: V4l
XZP
Signature: V3l
XZPI
Signature: V4l
XZPN
Signature: V4l
XZPO
Signature: V4l
XZPP
Signature: V4l
XZPW
Signature: V4l
XZPX
Signature: V4l
XZPY
Signature: V4l
XZPZ
Signature: V4l
XZW
Signature: V3l
XZWI
Signature: V4l
XZWN
Signature: V4l
XZWO
Signature: V4l
XZWP
Signature: V4l
XZWW
Signature: V4l
XZWX
Signature: V4l
XZWY
Signature: V4l
XZWZ
Signature: V4l
XZX
Signature: V3l
XZXI
Signature: V4l
XZXN
Signature: V4l
XZXO
Signature: V4l
XZXP
Signature: V4l
XZXW
Signature: V4l
XZXX
Signature: V4l
XZXY
Signature: V4l
XZXZ
Signature: V4l
XZY
Signature: V3l
XZYI
Signature: V4l
XZYN
Signature: V4l
XZYO
Signature: V4l
XZYP
Signature: V4l
XZYW
Signature: V4l
XZYX
Signature: V4l
XZYY
Signature: V4l
XZYZ
Signature: V4l
XZZ
Signature: V3l
XZZI
Signature: V4l
XZZN
Signature: V4l
XZZO
Signature: V4l
XZZP
Signature: V4l
XZZW
Signature: V4l
XZZX
Signature: V4l
XZZY
Signature: V4l
XZZZ
Signature: V4l
YI
Signature: V2l
YII
Signature: V3l
YIII
Signature: V4l
YIIN
Signature: V4l
YIIO
Signature: V4l
YIIP
Signature: V4l
YIIW
Signature: V4l
YIIX
Signature: V4l
YIIY
Signature: V4l
YIIZ
Signature: V4l
YIN
Signature: V3l
YINI
Signature: V4l
YINN
Signature: V4l
YINO
Signature: V4l
YINP
Signature: V4l
YINW
Signature: V4l
YINX
Signature: V4l
YINY
Signature: V4l
YINZ
Signature: V4l
YIO
Signature: V3l
YIOI
Signature: V4l
YION
Signature: V4l
YIOO
Signature: V4l
YIOP
Signature: V4l
YIOW
Signature: V4l
YIOX
Signature: V4l
YIOY
Signature: V4l
YIOZ
Signature: V4l
YIP
Signature: V3l
YIPI
Signature: V4l
YIPN
Signature: V4l
YIPO
Signature: V4l
YIPP
Signature: V4l
YIPW
Signature: V4l
YIPX
Signature: V4l
YIPY
Signature: V4l
YIPZ
Signature: V4l
YIW
Signature: V3l
YIWI
Signature: V4l
YIWN
Signature: V4l
YIWO
Signature: V4l
YIWP
Signature: V4l
YIWW
Signature: V4l
YIWX
Signature: V4l
YIWY
Signature: V4l
YIWZ
Signature: V4l
YIX
Signature: V3l
YIXI
Signature: V4l
YIXN
Signature: V4l
YIXO
Signature: V4l
YIXP
Signature: V4l
YIXW
Signature: V4l
YIXX
Signature: V4l
YIXY
Signature: V4l
YIXZ
Signature: V4l
YIY
Signature: V3l
YIYI
Signature: V4l
YIYN
Signature: V4l
YIYO
Signature: V4l
YIYP
Signature: V4l
YIYW
Signature: V4l
YIYX
Signature: V4l
YIYY
Signature: V4l
YIYZ
Signature: V4l
YIZ
Signature: V3l
YIZI
Signature: V4l
YIZN
Signature: V4l
YIZO
Signature: V4l
YIZP
Signature: V4l
YIZW
Signature: V4l
YIZX
Signature: V4l
YIZY
Signature: V4l
YIZZ
Signature: V4l
YN
Signature: V2l
YNI
Signature: V3l
YNII
Signature: V4l
YNIN
Signature: V4l
YNIO
Signature: V4l
YNIP
Signature: V4l
YNIW
Signature: V4l
YNIX
Signature: V4l
YNIY
Signature: V4l
YNIZ
Signature: V4l
YNN
Signature: V3l
YNNI
Signature: V4l
YNNN
Signature: V4l
YNNO
Signature: V4l
YNNP
Signature: V4l
YNNW
Signature: V4l
YNNX
Signature: V4l
YNNY
Signature: V4l
YNNZ
Signature: V4l
YNO
Signature: V3l
YNOI
Signature: V4l
YNON
Signature: V4l
YNOO
Signature: V4l
YNOP
Signature: V4l
YNOW
Signature: V4l
YNOX
Signature: V4l
YNOY
Signature: V4l
YNOZ
Signature: V4l
YNP
Signature: V3l
YNPI
Signature: V4l
YNPN
Signature: V4l
YNPO
Signature: V4l
YNPP
Signature: V4l
YNPW
Signature: V4l
YNPX
Signature: V4l
YNPY
Signature: V4l
YNPZ
Signature: V4l
YNW
Signature: V3l
YNWI
Signature: V4l
YNWN
Signature: V4l
YNWO
Signature: V4l
YNWP
Signature: V4l
YNWW
Signature: V4l
YNWX
Signature: V4l
YNWY
Signature: V4l
YNWZ
Signature: V4l
YNX
Signature: V3l
YNXI
Signature: V4l
YNXN
Signature: V4l
YNXO
Signature: V4l
YNXP
Signature: V4l
YNXW
Signature: V4l
YNXX
Signature: V4l
YNXY
Signature: V4l
YNXZ
Signature: V4l
YNY
Signature: V3l
YNYI
Signature: V4l
YNYN
Signature: V4l
YNYO
Signature: V4l
YNYP
Signature: V4l
YNYW
Signature: V4l
YNYX
Signature: V4l
YNYY
Signature: V4l
YNYZ
Signature: V4l
YNZ
Signature: V3l
YNZI
Signature: V4l
YNZN
Signature: V4l
YNZO
Signature: V4l
YNZP
Signature: V4l
YNZW
Signature: V4l
YNZX
Signature: V4l
YNZY
Signature: V4l
YNZZ
Signature: V4l
YO
Signature: V2l
YOI
Signature: V3l
YOII
Signature: V4l
YOIN
Signature: V4l
YOIO
Signature: V4l
YOIP
Signature: V4l
YOIW
Signature: V4l
YOIX
Signature: V4l
YOIY
Signature: V4l
YOIZ
Signature: V4l
YON
Signature: V3l
YONI
Signature: V4l
YONN
Signature: V4l
YONO
Signature: V4l
YONP
Signature: V4l
YONW
Signature: V4l
YONX
Signature: V4l
YONY
Signature: V4l
YONZ
Signature: V4l
YOO
Signature: V3l
YOOI
Signature: V4l
YOON
Signature: V4l
YOOO
Signature: V4l
YOOP
Signature: V4l
YOOW
Signature: V4l
YOOX
Signature: V4l
YOOY
Signature: V4l
YOOZ
Signature: V4l
YOP
Signature: V3l
YOPI
Signature: V4l
YOPN
Signature: V4l
YOPO
Signature: V4l
YOPP
Signature: V4l
YOPW
Signature: V4l
YOPX
Signature: V4l
YOPY
Signature: V4l
YOPZ
Signature: V4l
YOW
Signature: V3l
YOWI
Signature: V4l
YOWN
Signature: V4l
YOWO
Signature: V4l
YOWP
Signature: V4l
YOWW
Signature: V4l
YOWX
Signature: V4l
YOWY
Signature: V4l
YOWZ
Signature: V4l
YOX
Signature: V3l
YOXI
Signature: V4l
YOXN
Signature: V4l
YOXO
Signature: V4l
YOXP
Signature: V4l
YOXW
Signature: V4l
YOXX
Signature: V4l
YOXY
Signature: V4l
YOXZ
Signature: V4l
YOY
Signature: V3l
YOYI
Signature: V4l
YOYN
Signature: V4l
YOYO
Signature: V4l
YOYP
Signature: V4l
YOYW
Signature: V4l
YOYX
Signature: V4l
YOYY
Signature: V4l
YOYZ
Signature: V4l
YOZ
Signature: V3l
YOZI
Signature: V4l
YOZN
Signature: V4l
YOZO
Signature: V4l
YOZP
Signature: V4l
YOZW
Signature: V4l
YOZX
Signature: V4l
YOZY
Signature: V4l
YOZZ
Signature: V4l
YP
Signature: V2l
YPI
Signature: V3l
YPII
Signature: V4l
YPIN
Signature: V4l
YPIO
Signature: V4l
YPIP
Signature: V4l
YPIW
Signature: V4l
YPIX
Signature: V4l
YPIY
Signature: V4l
YPIZ
Signature: V4l
YPN
Signature: V3l
YPNI
Signature: V4l
YPNN
Signature: V4l
YPNO
Signature: V4l
YPNP
Signature: V4l
YPNW
Signature: V4l
YPNX
Signature: V4l
YPNY
Signature: V4l
YPNZ
Signature: V4l
YPO
Signature: V3l
YPOI
Signature: V4l
YPON
Signature: V4l
YPOO
Signature: V4l
YPOP
Signature: V4l
YPOW
Signature: V4l
YPOX
Signature: V4l
YPOY
Signature: V4l
YPOZ
Signature: V4l
YPP
Signature: V3l
YPPI
Signature: V4l
YPPN
Signature: V4l
YPPO
Signature: V4l
YPPP
Signature: V4l
YPPW
Signature: V4l
YPPX
Signature: V4l
YPPY
Signature: V4l
YPPZ
Signature: V4l
YPW
Signature: V3l
YPWI
Signature: V4l
YPWN
Signature: V4l
YPWO
Signature: V4l
YPWP
Signature: V4l
YPWW
Signature: V4l
YPWX
Signature: V4l
YPWY
Signature: V4l
YPWZ
Signature: V4l
YPX
Signature: V3l
YPXI
Signature: V4l
YPXN
Signature: V4l
YPXO
Signature: V4l
YPXP
Signature: V4l
YPXW
Signature: V4l
YPXX
Signature: V4l
YPXY
Signature: V4l
YPXZ
Signature: V4l
YPY
Signature: V3l
YPYI
Signature: V4l
YPYN
Signature: V4l
YPYO
Signature: V4l
YPYP
Signature: V4l
YPYW
Signature: V4l
YPYX
Signature: V4l
YPYY
Signature: V4l
YPYZ
Signature: V4l
YPZ
Signature: V3l
YPZI
Signature: V4l
YPZN
Signature: V4l
YPZO
Signature: V4l
YPZP
Signature: V4l
YPZW
Signature: V4l
YPZX
Signature: V4l
YPZY
Signature: V4l
YPZZ
Signature: V4l
YW
Signature: V2l
YWI
Signature: V3l
YWII
Signature: V4l
YWIN
Signature: V4l
YWIO
Signature: V4l
YWIP
Signature: V4l
YWIW
Signature: V4l
YWIX
Signature: V4l
YWIY
Signature: V4l
YWIZ
Signature: V4l
YWN
Signature: V3l
YWNI
Signature: V4l
YWNN
Signature: V4l
YWNO
Signature: V4l
YWNP
Signature: V4l
YWNW
Signature: V4l
YWNX
Signature: V4l
YWNY
Signature: V4l
YWNZ
Signature: V4l
YWO
Signature: V3l
YWOI
Signature: V4l
YWON
Signature: V4l
YWOO
Signature: V4l
YWOP
Signature: V4l
YWOW
Signature: V4l
YWOX
Signature: V4l
YWOY
Signature: V4l
YWOZ
Signature: V4l
YWP
Signature: V3l
YWPI
Signature: V4l
YWPN
Signature: V4l
YWPO
Signature: V4l
YWPP
Signature: V4l
YWPW
Signature: V4l
YWPX
Signature: V4l
YWPY
Signature: V4l
YWPZ
Signature: V4l
YWW
Signature: V3l
YWWI
Signature: V4l
YWWN
Signature: V4l
YWWO
Signature: V4l
YWWP
Signature: V4l
YWWW
Signature: V4l
YWWX
Signature: V4l
YWWY
Signature: V4l
YWWZ
Signature: V4l
YWX
Signature: V3l
YWXI
Signature: V4l
YWXN
Signature: V4l
YWXO
Signature: V4l
YWXP
Signature: V4l
YWXW
Signature: V4l
YWXX
Signature: V4l
YWXY
Signature: V4l
YWXZ
Signature: V4l
YWY
Signature: V3l
YWYI
Signature: V4l
YWYN
Signature: V4l
YWYO
Signature: V4l
YWYP
Signature: V4l
YWYW
Signature: V4l
YWYX
Signature: V4l
YWYY
Signature: V4l
YWYZ
Signature: V4l
YWZ
Signature: V3l
YWZI
Signature: V4l
YWZN
Signature: V4l
YWZO
Signature: V4l
YWZP
Signature: V4l
YWZW
Signature: V4l
YWZX
Signature: V4l
YWZY
Signature: V4l
YWZZ
Signature: V4l
YX
Signature: V2l
YXI
Signature: V3l
YXII
Signature: V4l
YXIN
Signature: V4l
YXIO
Signature: V4l
YXIP
Signature: V4l
YXIW
Signature: V4l
YXIX
Signature: V4l
YXIY
Signature: V4l
YXIZ
Signature: V4l
YXN
Signature: V3l
YXNI
Signature: V4l
YXNN
Signature: V4l
YXNO
Signature: V4l
YXNP
Signature: V4l
YXNW
Signature: V4l
YXNX
Signature: V4l
YXNY
Signature: V4l
YXNZ
Signature: V4l
YXO
Signature: V3l
YXOI
Signature: V4l
YXON
Signature: V4l
YXOO
Signature: V4l
YXOP
Signature: V4l
YXOW
Signature: V4l
YXOX
Signature: V4l
YXOY
Signature: V4l
YXOZ
Signature: V4l
YXP
Signature: V3l
YXPI
Signature: V4l
YXPN
Signature: V4l
YXPO
Signature: V4l
YXPP
Signature: V4l
YXPW
Signature: V4l
YXPX
Signature: V4l
YXPY
Signature: V4l
YXPZ
Signature: V4l
YXW
Signature: V3l
YXWI
Signature: V4l
YXWN
Signature: V4l
YXWO
Signature: V4l
YXWP
Signature: V4l
YXWW
Signature: V4l
YXWX
Signature: V4l
YXWY
Signature: V4l
YXWZ
Signature: V4l
YXX
Signature: V3l
YXXI
Signature: V4l
YXXN
Signature: V4l
YXXO
Signature: V4l
YXXP
Signature: V4l
YXXW
Signature: V4l
YXXX
Signature: V4l
YXXY
Signature: V4l
YXXZ
Signature: V4l
YXY
Signature: V3l
YXYI
Signature: V4l
YXYN
Signature: V4l
YXYO
Signature: V4l
YXYP
Signature: V4l
YXYW
Signature: V4l
YXYX
Signature: V4l
YXYY
Signature: V4l
YXYZ
Signature: V4l
YXZ
Signature: V3l
YXZI
Signature: V4l
YXZN
Signature: V4l
YXZO
Signature: V4l
YXZP
Signature: V4l
YXZW
Signature: V4l
YXZX
Signature: V4l
YXZY
Signature: V4l
YXZZ
Signature: V4l
YY
Signature: V2l
YYI
Signature: V3l
YYII
Signature: V4l
YYIN
Signature: V4l
YYIO
Signature: V4l
YYIP
Signature: V4l
YYIW
Signature: V4l
YYIX
Signature: V4l
YYIY
Signature: V4l
YYIZ
Signature: V4l
YYN
Signature: V3l
YYNI
Signature: V4l
YYNN
Signature: V4l
YYNO
Signature: V4l
YYNP
Signature: V4l
YYNW
Signature: V4l
YYNX
Signature: V4l
YYNY
Signature: V4l
YYNZ
Signature: V4l
YYO
Signature: V3l
YYOI
Signature: V4l
YYON
Signature: V4l
YYOO
Signature: V4l
YYOP
Signature: V4l
YYOW
Signature: V4l
YYOX
Signature: V4l
YYOY
Signature: V4l
YYOZ
Signature: V4l
YYP
Signature: V3l
YYPI
Signature: V4l
YYPN
Signature: V4l
YYPO
Signature: V4l
YYPP
Signature: V4l
YYPW
Signature: V4l
YYPX
Signature: V4l
YYPY
Signature: V4l
YYPZ
Signature: V4l
YYW
Signature: V3l
YYWI
Signature: V4l
YYWN
Signature: V4l
YYWO
Signature: V4l
YYWP
Signature: V4l
YYWW
Signature: V4l
YYWX
Signature: V4l
YYWY
Signature: V4l
YYWZ
Signature: V4l
YYX
Signature: V3l
YYXI
Signature: V4l
YYXN
Signature: V4l
YYXO
Signature: V4l
YYXP
Signature: V4l
YYXW
Signature: V4l
YYXX
Signature: V4l
YYXY
Signature: V4l
YYXZ
Signature: V4l
YYY
Signature: V3l
YYYI
Signature: V4l
YYYN
Signature: V4l
YYYO
Signature: V4l
YYYP
Signature: V4l
YYYW
Signature: V4l
YYYX
Signature: V4l
YYYY
Signature: V4l
YYYZ
Signature: V4l
YYZ
Signature: V3l
YYZI
Signature: V4l
YYZN
Signature: V4l
YYZO
Signature: V4l
YYZP
Signature: V4l
YYZW
Signature: V4l
YYZX
Signature: V4l
YYZY
Signature: V4l
YYZZ
Signature: V4l
YZ
Signature: V2l
YZI
Signature: V3l
YZII
Signature: V4l
YZIN
Signature: V4l
YZIO
Signature: V4l
YZIP
Signature: V4l
YZIW
Signature: V4l
YZIX
Signature: V4l
YZIY
Signature: V4l
YZIZ
Signature: V4l
YZN
Signature: V3l
YZNI
Signature: V4l
YZNN
Signature: V4l
YZNO
Signature: V4l
YZNP
Signature: V4l
YZNW
Signature: V4l
YZNX
Signature: V4l
YZNY
Signature: V4l
YZNZ
Signature: V4l
YZO
Signature: V3l
YZOI
Signature: V4l
YZON
Signature: V4l
YZOO
Signature: V4l
YZOP
Signature: V4l
YZOW
Signature: V4l
YZOX
Signature: V4l
YZOY
Signature: V4l
YZOZ
Signature: V4l
YZP
Signature: V3l
YZPI
Signature: V4l
YZPN
Signature: V4l
YZPO
Signature: V4l
YZPP
Signature: V4l
YZPW
Signature: V4l
YZPX
Signature: V4l
YZPY
Signature: V4l
YZPZ
Signature: V4l
YZW
Signature: V3l
YZWI
Signature: V4l
YZWN
Signature: V4l
YZWO
Signature: V4l
YZWP
Signature: V4l
YZWW
Signature: V4l
YZWX
Signature: V4l
YZWY
Signature: V4l
YZWZ
Signature: V4l
YZX
Signature: V3l
YZXI
Signature: V4l
YZXN
Signature: V4l
YZXO
Signature: V4l
YZXP
Signature: V4l
YZXW
Signature: V4l
YZXX
Signature: V4l
YZXY
Signature: V4l
YZXZ
Signature: V4l
YZY
Signature: V3l
YZYI
Signature: V4l
YZYN
Signature: V4l
YZYO
Signature: V4l
YZYP
Signature: V4l
YZYW
Signature: V4l
YZYX
Signature: V4l
YZYY
Signature: V4l
YZYZ
Signature: V4l
YZZ
Signature: V3l
YZZI
Signature: V4l
YZZN
Signature: V4l
YZZO
Signature: V4l
YZZP
Signature: V4l
YZZW
Signature: V4l
YZZX
Signature: V4l
YZZY
Signature: V4l
YZZZ
Signature: V4l
ZI
Signature: V2l
ZII
Signature: V3l
ZIII
Signature: V4l
ZIIN
Signature: V4l
ZIIO
Signature: V4l
ZIIP
Signature: V4l
ZIIW
Signature: V4l
ZIIX
Signature: V4l
ZIIY
Signature: V4l
ZIIZ
Signature: V4l
ZIN
Signature: V3l
ZINI
Signature: V4l
ZINN
Signature: V4l
ZINO
Signature: V4l
ZINP
Signature: V4l
ZINW
Signature: V4l
ZINX
Signature: V4l
ZINY
Signature: V4l
ZINZ
Signature: V4l
ZIO
Signature: V3l
ZIOI
Signature: V4l
ZION
Signature: V4l
ZIOO
Signature: V4l
ZIOP
Signature: V4l
ZIOW
Signature: V4l
ZIOX
Signature: V4l
ZIOY
Signature: V4l
ZIOZ
Signature: V4l
ZIP
Signature: V3l
ZIPI
Signature: V4l
ZIPN
Signature: V4l
ZIPO
Signature: V4l
ZIPP
Signature: V4l
ZIPW
Signature: V4l
ZIPX
Signature: V4l
ZIPY
Signature: V4l
ZIPZ
Signature: V4l
ZIW
Signature: V3l
ZIWI
Signature: V4l
ZIWN
Signature: V4l
ZIWO
Signature: V4l
ZIWP
Signature: V4l
ZIWW
Signature: V4l
ZIWX
Signature: V4l
ZIWY
Signature: V4l
ZIWZ
Signature: V4l
ZIX
Signature: V3l
ZIXI
Signature: V4l
ZIXN
Signature: V4l
ZIXO
Signature: V4l
ZIXP
Signature: V4l
ZIXW
Signature: V4l
ZIXX
Signature: V4l
ZIXY
Signature: V4l
ZIXZ
Signature: V4l
ZIY
Signature: V3l
ZIYI
Signature: V4l
ZIYN
Signature: V4l
ZIYO
Signature: V4l
ZIYP
Signature: V4l
ZIYW
Signature: V4l
ZIYX
Signature: V4l
ZIYY
Signature: V4l
ZIYZ
Signature: V4l
ZIZ
Signature: V3l
ZIZI
Signature: V4l
ZIZN
Signature: V4l
ZIZO
Signature: V4l
ZIZP
Signature: V4l
ZIZW
Signature: V4l
ZIZX
Signature: V4l
ZIZY
Signature: V4l
ZIZZ
Signature: V4l
ZN
Signature: V2l
ZNI
Signature: V3l
ZNII
Signature: V4l
ZNIN
Signature: V4l
ZNIO
Signature: V4l
ZNIP
Signature: V4l
ZNIW
Signature: V4l
ZNIX
Signature: V4l
ZNIY
Signature: V4l
ZNIZ
Signature: V4l
ZNN
Signature: V3l
ZNNI
Signature: V4l
ZNNN
Signature: V4l
ZNNO
Signature: V4l
ZNNP
Signature: V4l
ZNNW
Signature: V4l
ZNNX
Signature: V4l
ZNNY
Signature: V4l
ZNNZ
Signature: V4l
ZNO
Signature: V3l
ZNOI
Signature: V4l
ZNON
Signature: V4l
ZNOO
Signature: V4l
ZNOP
Signature: V4l
ZNOW
Signature: V4l
ZNOX
Signature: V4l
ZNOY
Signature: V4l
ZNOZ
Signature: V4l
ZNP
Signature: V3l
ZNPI
Signature: V4l
ZNPN
Signature: V4l
ZNPO
Signature: V4l
ZNPP
Signature: V4l
ZNPW
Signature: V4l
ZNPX
Signature: V4l
ZNPY
Signature: V4l
ZNPZ
Signature: V4l
ZNW
Signature: V3l
ZNWI
Signature: V4l
ZNWN
Signature: V4l
ZNWO
Signature: V4l
ZNWP
Signature: V4l
ZNWW
Signature: V4l
ZNWX
Signature: V4l
ZNWY
Signature: V4l
ZNWZ
Signature: V4l
ZNX
Signature: V3l
ZNXI
Signature: V4l
ZNXN
Signature: V4l
ZNXO
Signature: V4l
ZNXP
Signature: V4l
ZNXW
Signature: V4l
ZNXX
Signature: V4l
ZNXY
Signature: V4l
ZNXZ
Signature: V4l
ZNY
Signature: V3l
ZNYI
Signature: V4l
ZNYN
Signature: V4l
ZNYO
Signature: V4l
ZNYP
Signature: V4l
ZNYW
Signature: V4l
ZNYX
Signature: V4l
ZNYY
Signature: V4l
ZNYZ
Signature: V4l
ZNZ
Signature: V3l
ZNZI
Signature: V4l
ZNZN
Signature: V4l
ZNZO
Signature: V4l
ZNZP
Signature: V4l
ZNZW
Signature: V4l
ZNZX
Signature: V4l
ZNZY
Signature: V4l
ZNZZ
Signature: V4l
ZO
Signature: V2l
ZOI
Signature: V3l
ZOII
Signature: V4l
ZOIN
Signature: V4l
ZOIO
Signature: V4l
ZOIP
Signature: V4l
ZOIW
Signature: V4l
ZOIX
Signature: V4l
ZOIY
Signature: V4l
ZOIZ
Signature: V4l
ZON
Signature: V3l
ZONI
Signature: V4l
ZONN
Signature: V4l
ZONO
Signature: V4l
ZONP
Signature: V4l
ZONW
Signature: V4l
ZONX
Signature: V4l
ZONY
Signature: V4l
ZONZ
Signature: V4l
ZOO
Signature: V3l
ZOOI
Signature: V4l
ZOON
Signature: V4l
ZOOO
Signature: V4l
ZOOP
Signature: V4l
ZOOW
Signature: V4l
ZOOX
Signature: V4l
ZOOY
Signature: V4l
ZOOZ
Signature: V4l
ZOP
Signature: V3l
ZOPI
Signature: V4l
ZOPN
Signature: V4l
ZOPO
Signature: V4l
ZOPP
Signature: V4l
ZOPW
Signature: V4l
ZOPX
Signature: V4l
ZOPY
Signature: V4l
ZOPZ
Signature: V4l
ZOW
Signature: V3l
ZOWI
Signature: V4l
ZOWN
Signature: V4l
ZOWO
Signature: V4l
ZOWP
Signature: V4l
ZOWW
Signature: V4l
ZOWX
Signature: V4l
ZOWY
Signature: V4l
ZOWZ
Signature: V4l
ZOX
Signature: V3l
ZOXI
Signature: V4l
ZOXN
Signature: V4l
ZOXO
Signature: V4l
ZOXP
Signature: V4l
ZOXW
Signature: V4l
ZOXX
Signature: V4l
ZOXY
Signature: V4l
ZOXZ
Signature: V4l
ZOY
Signature: V3l
ZOYI
Signature: V4l
ZOYN
Signature: V4l
ZOYO
Signature: V4l
ZOYP
Signature: V4l
ZOYW
Signature: V4l
ZOYX
Signature: V4l
ZOYY
Signature: V4l
ZOYZ
Signature: V4l
ZOZ
Signature: V3l
ZOZI
Signature: V4l
ZOZN
Signature: V4l
ZOZO
Signature: V4l
ZOZP
Signature: V4l
ZOZW
Signature: V4l
ZOZX
Signature: V4l
ZOZY
Signature: V4l
ZOZZ
Signature: V4l
ZP
Signature: V2l
ZPI
Signature: V3l
ZPII
Signature: V4l
ZPIN
Signature: V4l
ZPIO
Signature: V4l
ZPIP
Signature: V4l
ZPIW
Signature: V4l
ZPIX
Signature: V4l
ZPIY
Signature: V4l
ZPIZ
Signature: V4l
ZPN
Signature: V3l
ZPNI
Signature: V4l
ZPNN
Signature: V4l
ZPNO
Signature: V4l
ZPNP
Signature: V4l
ZPNW
Signature: V4l
ZPNX
Signature: V4l
ZPNY
Signature: V4l
ZPNZ
Signature: V4l
ZPO
Signature: V3l
ZPOI
Signature: V4l
ZPON
Signature: V4l
ZPOO
Signature: V4l
ZPOP
Signature: V4l
ZPOW
Signature: V4l
ZPOX
Signature: V4l
ZPOY
Signature: V4l
ZPOZ
Signature: V4l
ZPP
Signature: V3l
ZPPI
Signature: V4l
ZPPN
Signature: V4l
ZPPO
Signature: V4l
ZPPP
Signature: V4l
ZPPW
Signature: V4l
ZPPX
Signature: V4l
ZPPY
Signature: V4l
ZPPZ
Signature: V4l
ZPW
Signature: V3l
ZPWI
Signature: V4l
ZPWN
Signature: V4l
ZPWO
Signature: V4l
ZPWP
Signature: V4l
ZPWW
Signature: V4l
ZPWX
Signature: V4l
ZPWY
Signature: V4l
ZPWZ
Signature: V4l
ZPX
Signature: V3l
ZPXI
Signature: V4l
ZPXN
Signature: V4l
ZPXO
Signature: V4l
ZPXP
Signature: V4l
ZPXW
Signature: V4l
ZPXX
Signature: V4l
ZPXY
Signature: V4l
ZPXZ
Signature: V4l
ZPY
Signature: V3l
ZPYI
Signature: V4l
ZPYN
Signature: V4l
ZPYO
Signature: V4l
ZPYP
Signature: V4l
ZPYW
Signature: V4l
ZPYX
Signature: V4l
ZPYY
Signature: V4l
ZPYZ
Signature: V4l
ZPZ
Signature: V3l
ZPZI
Signature: V4l
ZPZN
Signature: V4l
ZPZO
Signature: V4l
ZPZP
Signature: V4l
ZPZW
Signature: V4l
ZPZX
Signature: V4l
ZPZY
Signature: V4l
ZPZZ
Signature: V4l
ZW
Signature: V2l
ZWI
Signature: V3l
ZWII
Signature: V4l
ZWIN
Signature: V4l
ZWIO
Signature: V4l
ZWIP
Signature: V4l
ZWIW
Signature: V4l
ZWIX
Signature: V4l
ZWIY
Signature: V4l
ZWIZ
Signature: V4l
ZWN
Signature: V3l
ZWNI
Signature: V4l
ZWNN
Signature: V4l
ZWNO
Signature: V4l
ZWNP
Signature: V4l
ZWNW
Signature: V4l
ZWNX
Signature: V4l
ZWNY
Signature: V4l
ZWNZ
Signature: V4l
ZWO
Signature: V3l
ZWOI
Signature: V4l
ZWON
Signature: V4l
ZWOO
Signature: V4l
ZWOP
Signature: V4l
ZWOW
Signature: V4l
ZWOX
Signature: V4l
ZWOY
Signature: V4l
ZWOZ
Signature: V4l
ZWP
Signature: V3l
ZWPI
Signature: V4l
ZWPN
Signature: V4l
ZWPO
Signature: V4l
ZWPP
Signature: V4l
ZWPW
Signature: V4l
ZWPX
Signature: V4l
ZWPY
Signature: V4l
ZWPZ
Signature: V4l
ZWW
Signature: V3l
ZWWI
Signature: V4l
ZWWN
Signature: V4l
ZWWO
Signature: V4l
ZWWP
Signature: V4l
ZWWW
Signature: V4l
ZWWX
Signature: V4l
ZWWY
Signature: V4l
ZWWZ
Signature: V4l
ZWX
Signature: V3l
ZWXI
Signature: V4l
ZWXN
Signature: V4l
ZWXO
Signature: V4l
ZWXP
Signature: V4l
ZWXW
Signature: V4l
ZWXX
Signature: V4l
ZWXY
Signature: V4l
ZWXZ
Signature: V4l
ZWY
Signature: V3l
ZWYI
Signature: V4l
ZWYN
Signature: V4l
ZWYO
Signature: V4l
ZWYP
Signature: V4l
ZWYW
Signature: V4l
ZWYX
Signature: V4l
ZWYY
Signature: V4l
ZWYZ
Signature: V4l
ZWZ
Signature: V3l
ZWZI
Signature: V4l
ZWZN
Signature: V4l
ZWZO
Signature: V4l
ZWZP
Signature: V4l
ZWZW
Signature: V4l
ZWZX
Signature: V4l
ZWZY
Signature: V4l
ZWZZ
Signature: V4l
ZX
Signature: V2l
ZXI
Signature: V3l
ZXII
Signature: V4l
ZXIN
Signature: V4l
ZXIO
Signature: V4l
ZXIP
Signature: V4l
ZXIW
Signature: V4l
ZXIX
Signature: V4l
ZXIY
Signature: V4l
ZXIZ
Signature: V4l
ZXN
Signature: V3l
ZXNI
Signature: V4l
ZXNN
Signature: V4l
ZXNO
Signature: V4l
ZXNP
Signature: V4l
ZXNW
Signature: V4l
ZXNX
Signature: V4l
ZXNY
Signature: V4l
ZXNZ
Signature: V4l
ZXO
Signature: V3l
ZXOI
Signature: V4l
ZXON
Signature: V4l
ZXOO
Signature: V4l
ZXOP
Signature: V4l
ZXOW
Signature: V4l
ZXOX
Signature: V4l
ZXOY
Signature: V4l
ZXOZ
Signature: V4l
ZXP
Signature: V3l
ZXPI
Signature: V4l
ZXPN
Signature: V4l
ZXPO
Signature: V4l
ZXPP
Signature: V4l
ZXPW
Signature: V4l
ZXPX
Signature: V4l
ZXPY
Signature: V4l
ZXPZ
Signature: V4l
ZXW
Signature: V3l
ZXWI
Signature: V4l
ZXWN
Signature: V4l
ZXWO
Signature: V4l
ZXWP
Signature: V4l
ZXWW
Signature: V4l
ZXWX
Signature: V4l
ZXWY
Signature: V4l
ZXWZ
Signature: V4l
ZXX
Signature: V3l
ZXXI
Signature: V4l
ZXXN
Signature: V4l
ZXXO
Signature: V4l
ZXXP
Signature: V4l
ZXXW
Signature: V4l
ZXXX
Signature: V4l
ZXXY
Signature: V4l
ZXXZ
Signature: V4l
ZXY
Signature: V3l
ZXYI
Signature: V4l
ZXYN
Signature: V4l
ZXYO
Signature: V4l
ZXYP
Signature: V4l
ZXYW
Signature: V4l
ZXYX
Signature: V4l
ZXYY
Signature: V4l
ZXYZ
Signature: V4l
ZXZ
Signature: V3l
ZXZI
Signature: V4l
ZXZN
Signature: V4l
ZXZO
Signature: V4l
ZXZP
Signature: V4l
ZXZW
Signature: V4l
ZXZX
Signature: V4l
ZXZY
Signature: V4l
ZXZZ
Signature: V4l
ZY
Signature: V2l
ZYI
Signature: V3l
ZYII
Signature: V4l
ZYIN
Signature: V4l
ZYIO
Signature: V4l
ZYIP
Signature: V4l
ZYIW
Signature: V4l
ZYIX
Signature: V4l
ZYIY
Signature: V4l
ZYIZ
Signature: V4l
ZYN
Signature: V3l
ZYNI
Signature: V4l
ZYNN
Signature: V4l
ZYNO
Signature: V4l
ZYNP
Signature: V4l
ZYNW
Signature: V4l
ZYNX
Signature: V4l
ZYNY
Signature: V4l
ZYNZ
Signature: V4l
ZYO
Signature: V3l
ZYOI
Signature: V4l
ZYON
Signature: V4l
ZYOO
Signature: V4l
ZYOP
Signature: V4l
ZYOW
Signature: V4l
ZYOX
Signature: V4l
ZYOY
Signature: V4l
ZYOZ
Signature: V4l
ZYP
Signature: V3l
ZYPI
Signature: V4l
ZYPN
Signature: V4l
ZYPO
Signature: V4l
ZYPP
Signature: V4l
ZYPW
Signature: V4l
ZYPX
Signature: V4l
ZYPY
Signature: V4l
ZYPZ
Signature: V4l
ZYW
Signature: V3l
ZYWI
Signature: V4l
ZYWN
Signature: V4l
ZYWO
Signature: V4l
ZYWP
Signature: V4l
ZYWW
Signature: V4l
ZYWX
Signature: V4l
ZYWY
Signature: V4l
ZYWZ
Signature: V4l
ZYX
Signature: V3l
ZYXI
Signature: V4l
ZYXN
Signature: V4l
ZYXO
Signature: V4l
ZYXP
Signature: V4l
ZYXW
Signature: V4l
ZYXX
Signature: V4l
ZYXY
Signature: V4l
ZYXZ
Signature: V4l
ZYY
Signature: V3l
ZYYI
Signature: V4l
ZYYN
Signature: V4l
ZYYO
Signature: V4l
ZYYP
Signature: V4l
ZYYW
Signature: V4l
ZYYX
Signature: V4l
ZYYY
Signature: V4l
ZYYZ
Signature: V4l
ZYZ
Signature: V3l
ZYZI
Signature: V4l
ZYZN
Signature: V4l
ZYZO
Signature: V4l
ZYZP
Signature: V4l
ZYZW
Signature: V4l
ZYZX
Signature: V4l
ZYZY
Signature: V4l
ZYZZ
Signature: V4l
ZZ
Signature: V2l
ZZI
Signature: V3l
ZZII
Signature: V4l
ZZIN
Signature: V4l
ZZIO
Signature: V4l
ZZIP
Signature: V4l
ZZIW
Signature: V4l
ZZIX
Signature: V4l
ZZIY
Signature: V4l
ZZIZ
Signature: V4l
ZZN
Signature: V3l
ZZNI
Signature: V4l
ZZNN
Signature: V4l
ZZNO
Signature: V4l
ZZNP
Signature: V4l
ZZNW
Signature: V4l
ZZNX
Signature: V4l
ZZNY
Signature: V4l
ZZNZ
Signature: V4l
ZZO
Signature: V3l
ZZOI
Signature: V4l
ZZON
Signature: V4l
ZZOO
Signature: V4l
ZZOP
Signature: V4l
ZZOW
Signature: V4l
ZZOX
Signature: V4l
ZZOY
Signature: V4l
ZZOZ
Signature: V4l
ZZP
Signature: V3l
ZZPI
Signature: V4l
ZZPN
Signature: V4l
ZZPO
Signature: V4l
ZZPP
Signature: V4l
ZZPW
Signature: V4l
ZZPX
Signature: V4l
ZZPY
Signature: V4l
ZZPZ
Signature: V4l
ZZW
Signature: V3l
ZZWI
Signature: V4l
ZZWN
Signature: V4l
ZZWO
Signature: V4l
ZZWP
Signature: V4l
ZZWW
Signature: V4l
ZZWX
Signature: V4l
ZZWY
Signature: V4l
ZZWZ
Signature: V4l
ZZX
Signature: V3l
ZZXI
Signature: V4l
ZZXN
Signature: V4l
ZZXO
Signature: V4l
ZZXP
Signature: V4l
ZZXW
Signature: V4l
ZZXX
Signature: V4l
ZZXY
Signature: V4l
ZZXZ
Signature: V4l
ZZY
Signature: V3l
ZZYI
Signature: V4l
ZZYN
Signature: V4l
ZZYO
Signature: V4l
ZZYP
Signature: V4l
ZZYW
Signature: V4l
ZZYX
Signature: V4l
ZZYY
Signature: V4l
ZZYZ
Signature: V4l
ZZZ
Signature: V3l
ZZZI
Signature: V4l
ZZZN
Signature: V4l
ZZZO
Signature: V4l
ZZZP
Signature: V4l
ZZZW
Signature: V4l
ZZZX
Signature: V4l
ZZZY
Signature: V4l
ZZZZ
Signature: V4l

Static members

Static memberDescription
Add(a, b)
Signature: (a:V4l * b:V4l) -> V4l

Returns component-wise sum of two vectors.

Add(v, s)
Signature: (v:V4l * s:int64) -> V4l

Returns component-wise sum of vector and scalar.

Add(s, v)
Signature: (s:int64 * v:V4l) -> V4l

Returns component-wise sum of scalar and vector.

AllDifferent(a, b)
Signature: (a:V4l * b:V4l) -> bool

Returns whether ALL elements of a are Different the corresponding element of b. ATTENTION: For example (AllSmaller(a,b)) is not the same as !(AllGreaterOrEqual(a,b)) but !(AnyGreaterOrEqual(a,b)).

AllDifferent(v, s)
Signature: (v:V4l * s:int64) -> bool

Returns whether ALL elements of v are Different s. ATTENTION: For example (AllSmaller(a,b)) is not the same as !(AllGreaterOrEqual(a,b)) but !(AnyGreaterOrEqual(a,b)).

AllDifferent(s, v)
Signature: (s:int64 * v:V4l) -> bool

Returns whether a is Different ALL elements of v. ATTENTION: For example (AllSmaller(a,b)) is not the same as !(AllGreaterOrEqual(a,b)) but !(AnyGreaterOrEqual(a,b)).

AllEqual(a, b)
Signature: (a:V4l * b:V4l) -> bool

Returns whether ALL elements of a are Equal the corresponding element of b. ATTENTION: For example (AllSmaller(a,b)) is not the same as !(AllGreaterOrEqual(a,b)) but !(AnyGreaterOrEqual(a,b)).

AllEqual(v, s)
Signature: (v:V4l * s:int64) -> bool

Returns whether ALL elements of v are Equal s. ATTENTION: For example (AllSmaller(a,b)) is not the same as !(AllGreaterOrEqual(a,b)) but !(AnyGreaterOrEqual(a,b)).

AllEqual(s, v)
Signature: (s:int64 * v:V4l) -> bool

Returns whether a is Equal ALL elements of v. ATTENTION: For example (AllSmaller(a,b)) is not the same as !(AllGreaterOrEqual(a,b)) but !(AnyGreaterOrEqual(a,b)).

AllGreater(a, b)
Signature: (a:V4l * b:V4l) -> bool

Returns whether ALL elements of a are Greater the corresponding element of b. ATTENTION: For example (AllSmaller(a,b)) is not the same as !(AllGreaterOrEqual(a,b)) but !(AnyGreaterOrEqual(a,b)).

AllGreater(v, s)
Signature: (v:V4l * s:int64) -> bool

Returns whether ALL elements of v are Greater s. ATTENTION: For example (AllSmaller(a,b)) is not the same as !(AllGreaterOrEqual(a,b)) but !(AnyGreaterOrEqual(a,b)).

AllGreater(s, v)
Signature: (s:int64 * v:V4l) -> bool

Returns whether a is Greater ALL elements of v. ATTENTION: For example (AllSmaller(a,b)) is not the same as !(AllGreaterOrEqual(a,b)) but !(AnyGreaterOrEqual(a,b)).

AllGreaterOrEqual(a, b)
Signature: (a:V4l * b:V4l) -> bool

Returns whether ALL elements of a are GreaterOrEqual the corresponding element of b. ATTENTION: For example (AllSmaller(a,b)) is not the same as !(AllGreaterOrEqual(a,b)) but !(AnyGreaterOrEqual(a,b)).

AllGreaterOrEqual(v, s)
Signature: (v:V4l * s:int64) -> bool

Returns whether ALL elements of v are GreaterOrEqual s. ATTENTION: For example (AllSmaller(a,b)) is not the same as !(AllGreaterOrEqual(a,b)) but !(AnyGreaterOrEqual(a,b)).

AllGreaterOrEqual(s, v)
Signature: (s:int64 * v:V4l) -> bool

Returns whether a is GreaterOrEqual ALL elements of v. ATTENTION: For example (AllSmaller(a,b)) is not the same as !(AllGreaterOrEqual(a,b)) but !(AnyGreaterOrEqual(a,b)).

AllSmaller(a, b)
Signature: (a:V4l * b:V4l) -> bool

Returns whether ALL elements of a are Smaller the corresponding element of b. ATTENTION: For example (AllSmaller(a,b)) is not the same as !(AllGreaterOrEqual(a,b)) but !(AnyGreaterOrEqual(a,b)).

AllSmaller(v, s)
Signature: (v:V4l * s:int64) -> bool

Returns whether ALL elements of v are Smaller s. ATTENTION: For example (AllSmaller(a,b)) is not the same as !(AllGreaterOrEqual(a,b)) but !(AnyGreaterOrEqual(a,b)).

AllSmaller(s, v)
Signature: (s:int64 * v:V4l) -> bool

Returns whether a is Smaller ALL elements of v. ATTENTION: For example (AllSmaller(a,b)) is not the same as !(AllGreaterOrEqual(a,b)) but !(AnyGreaterOrEqual(a,b)).

AllSmallerOrEqual(a, b)
Signature: (a:V4l * b:V4l) -> bool

Returns whether ALL elements of a are SmallerOrEqual the corresponding element of b. ATTENTION: For example (AllSmaller(a,b)) is not the same as !(AllGreaterOrEqual(a,b)) but !(AnyGreaterOrEqual(a,b)).

AllSmallerOrEqual(v, s)
Signature: (v:V4l * s:int64) -> bool

Returns whether ALL elements of v are SmallerOrEqual s. ATTENTION: For example (AllSmaller(a,b)) is not the same as !(AllGreaterOrEqual(a,b)) but !(AnyGreaterOrEqual(a,b)).

AllSmallerOrEqual(s, v)
Signature: (s:int64 * v:V4l) -> bool

Returns whether a is SmallerOrEqual ALL elements of v. ATTENTION: For example (AllSmaller(a,b)) is not the same as !(AllGreaterOrEqual(a,b)) but !(AnyGreaterOrEqual(a,b)).

AnyDifferent(a, b)
Signature: (a:V4l * b:V4l) -> bool

Returns whether AT LEAST ONE element of a is Different the corresponding element of b. ATTENTION: For example (AllSmaller(a,b)) is not the same as !(AllGreaterOrEqual(a,b)) but !(AnyGreaterOrEqual(a,b)).

AnyDifferent(v, s)
Signature: (v:V4l * s:int64) -> bool

Returns whether AT LEAST ONE element of v is Different s. ATTENTION: For example (AllSmaller(a,b)) is not the same as !(AllGreaterOrEqual(a,b)) but !(AnyGreaterOrEqual(a,b)).

AnyDifferent(s, v)
Signature: (s:int64 * v:V4l) -> bool

Returns whether a is Different AT LEAST ONE element of v. ATTENTION: For example (AllSmaller(a,b)) is not the same as !(AllGreaterOrEqual(a,b)) but !(AnyGreaterOrEqual(a,b)).

AnyEqual(a, b)
Signature: (a:V4l * b:V4l) -> bool

Returns whether AT LEAST ONE element of a is Equal the corresponding element of b. ATTENTION: For example (AllSmaller(a,b)) is not the same as !(AllGreaterOrEqual(a,b)) but !(AnyGreaterOrEqual(a,b)).

AnyEqual(v, s)
Signature: (v:V4l * s:int64) -> bool

Returns whether AT LEAST ONE element of v is Equal s. ATTENTION: For example (AllSmaller(a,b)) is not the same as !(AllGreaterOrEqual(a,b)) but !(AnyGreaterOrEqual(a,b)).

AnyEqual(s, v)
Signature: (s:int64 * v:V4l) -> bool

Returns whether a is Equal AT LEAST ONE element of v. ATTENTION: For example (AllSmaller(a,b)) is not the same as !(AllGreaterOrEqual(a,b)) but !(AnyGreaterOrEqual(a,b)).

AnyGreater(a, b)
Signature: (a:V4l * b:V4l) -> bool

Returns whether AT LEAST ONE element of a is Greater the corresponding element of b. ATTENTION: For example (AllSmaller(a,b)) is not the same as !(AllGreaterOrEqual(a,b)) but !(AnyGreaterOrEqual(a,b)).

AnyGreater(v, s)
Signature: (v:V4l * s:int64) -> bool

Returns whether AT LEAST ONE element of v is Greater s. ATTENTION: For example (AllSmaller(a,b)) is not the same as !(AllGreaterOrEqual(a,b)) but !(AnyGreaterOrEqual(a,b)).

AnyGreater(s, v)
Signature: (s:int64 * v:V4l) -> bool

Returns whether a is Greater AT LEAST ONE element of v. ATTENTION: For example (AllSmaller(a,b)) is not the same as !(AllGreaterOrEqual(a,b)) but !(AnyGreaterOrEqual(a,b)).

AnyGreaterOrEqual(a, b)
Signature: (a:V4l * b:V4l) -> bool

Returns whether AT LEAST ONE element of a is GreaterOrEqual the corresponding element of b. ATTENTION: For example (AllSmaller(a,b)) is not the same as !(AllGreaterOrEqual(a,b)) but !(AnyGreaterOrEqual(a,b)).

AnyGreaterOrEqual(v, s)
Signature: (v:V4l * s:int64) -> bool

Returns whether AT LEAST ONE element of v is GreaterOrEqual s. ATTENTION: For example (AllSmaller(a,b)) is not the same as !(AllGreaterOrEqual(a,b)) but !(AnyGreaterOrEqual(a,b)).

AnyGreaterOrEqual(s, v)
Signature: (s:int64 * v:V4l) -> bool

Returns whether a is GreaterOrEqual AT LEAST ONE element of v. ATTENTION: For example (AllSmaller(a,b)) is not the same as !(AllGreaterOrEqual(a,b)) but !(AnyGreaterOrEqual(a,b)).

AnySmaller(a, b)
Signature: (a:V4l * b:V4l) -> bool

Returns whether AT LEAST ONE element of a is Smaller the corresponding element of b. ATTENTION: For example (AllSmaller(a,b)) is not the same as !(AllGreaterOrEqual(a,b)) but !(AnyGreaterOrEqual(a,b)).

AnySmaller(v, s)
Signature: (v:V4l * s:int64) -> bool

Returns whether AT LEAST ONE element of v is Smaller s. ATTENTION: For example (AllSmaller(a,b)) is not the same as !(AllGreaterOrEqual(a,b)) but !(AnyGreaterOrEqual(a,b)).

AnySmaller(s, v)
Signature: (s:int64 * v:V4l) -> bool

Returns whether a is Smaller AT LEAST ONE element of v. ATTENTION: For example (AllSmaller(a,b)) is not the same as !(AllGreaterOrEqual(a,b)) but !(AnyGreaterOrEqual(a,b)).

AnySmallerOrEqual(a, b)
Signature: (a:V4l * b:V4l) -> bool

Returns whether AT LEAST ONE element of a is SmallerOrEqual the corresponding element of b. ATTENTION: For example (AllSmaller(a,b)) is not the same as !(AllGreaterOrEqual(a,b)) but !(AnyGreaterOrEqual(a,b)).

AnySmallerOrEqual(v, s)
Signature: (v:V4l * s:int64) -> bool

Returns whether AT LEAST ONE element of v is SmallerOrEqual s. ATTENTION: For example (AllSmaller(a,b)) is not the same as !(AllGreaterOrEqual(a,b)) but !(AnyGreaterOrEqual(a,b)).

AnySmallerOrEqual(s, v)
Signature: (s:int64 * v:V4l) -> bool

Returns whether a is SmallerOrEqual AT LEAST ONE element of v. ATTENTION: For example (AllSmaller(a,b)) is not the same as !(AllGreaterOrEqual(a,b)) but !(AnyGreaterOrEqual(a,b)).

ApproxEqual(a, b, tolerance)
Signature: (a:V4l * b:V4l * tolerance:int64) -> bool

Returns whether the given vectors are equal within the given tolerance.

Distance(a, b)
Signature: (a:V4l * b:V4l) -> float

Returns the distance between the given points.

Distance(a, b, p)
Signature: (a:V4l * b:V4l * p:float) -> float

Returns the p-distance between two vectors.

Distance1(a, b)
Signature: (a:V4l * b:V4l) -> float

Returns the Manhatten (or 1-) distance between two vectors.

DistanceMax(a, b)
Signature: (a:V4l * b:V4l) -> int64

Returns the maximal absolute distance between the components of the two vectors.

DistanceMin(a, b)
Signature: (a:V4l * b:V4l) -> int64

Returns the minimal absolute distance between the components of the two vectors.

DistanceSquared(a, b)
Signature: (a:V4l * b:V4l) -> float

Returns the squared distance between the given points.

Divide(a, b)
Signature: (a:V4l * b:V4l) -> V4l

Returns component-wise fraction of two vectors.

Divide(v, s)
Signature: (v:V4l * s:int64) -> V4l

Returns component-wise fraction of vector and scalar.

Divide(s, v)
Signature: (s:int64 * v:V4l) -> V4l

Returns component-wise fraction of scalar and vector.

Dot(a, b)
Signature: (a:V4l * b:V4l) -> int64

Returns the dot product of two vectors.

LexicalCompare(v0, v1)
Signature: (v0:V4l * v1:V4l) -> int

Compare x-coordinate before y-coordinate, aso.

Max(v0, v1)
Signature: (v0:V4l * v1:V4l) -> V4l

Returns the componentwise maximum vector.

Min(v0, v1)
Signature: (v0:V4l * v1:V4l) -> V4l

Returns the componentwise minimum vector.

Multiply(a, b)
Signature: (a:V4l * b:V4l) -> V4l

Returns component-wise product of two vectors.

Multiply(v, s)
Signature: (v:V4l * s:int64) -> V4l

Returns component-wise product of vector and scalar.

Multiply(s, v)
Signature: (s:int64 * v:V4l) -> V4l

Returns component-wise product of scalar and vector.

Negate(v)
Signature: v:V4l -> V4l

Returns a negated copy of the specified vector.

op_Addition(a, b)
Signature: (a:V4l * b:V4l) -> V4l

Returns component-wise sum of two vectors.

op_Addition(v, s)
Signature: (v:V4l * s:int64) -> V4l

Returns component-wise sum of vector and scalar.

op_Addition(s, v)
Signature: (s:int64 * v:V4l) -> V4l

Returns component-wise sum of scalar and vector.

op_Division(a, b)
Signature: (a:V4l * b:V4l) -> V4l

Returns component-wise fraction of two vectors.

op_Division(v, s)
Signature: (v:V4l * s:int64) -> V4l

Returns component-wise fraction of vector and scalar.

op_Division(s, v)
Signature: (s:int64 * v:V4l) -> V4l

Returns component-wise fraction of scalar and vector.

op_Equality(a, b)
Signature: (a:V4l * b:V4l) -> bool
op_Equality(v, s)
Signature: (v:V4l * s:int64) -> bool
op_Equality(s, v)
Signature: (s:int64 * v:V4l) -> bool
op_Explicit(v)
Signature: v:V4i -> V4l
op_Explicit(v)
Signature: v:V4l -> int []
op_Explicit(v)
Signature: (v:int []) -> V4l
op_Explicit(v)
Signature: v:V4l -> int64 []
op_Explicit(v)
Signature: (v:int64 []) -> V4l
op_Explicit(v)
Signature: v:V4f -> V4l
op_Explicit(v)
Signature: v:V4l -> float32 []
op_Explicit(v)
Signature: (v:float32 []) -> V4l
op_Explicit(v)
Signature: v:V4d -> V4l
op_Explicit(v)
Signature: v:V4l -> float []
op_Explicit(v)
Signature: (v:float []) -> V4l
op_Explicit(v)
Signature: v:V4l -> C3b
op_Explicit(v)
Signature: v:V4l -> C3us
op_Explicit(v)
Signature: v:V4l -> C3ui
op_Explicit(v)
Signature: v:V4l -> C4b
op_Explicit(v)
Signature: v:V4l -> C4us
op_Explicit(v)
Signature: v:V4l -> C4ui
op_Inequality(a, b)
Signature: (a:V4l * b:V4l) -> bool
op_Inequality(v, s)
Signature: (v:V4l * s:int64) -> bool
op_Inequality(s, v)
Signature: (s:int64 * v:V4l) -> bool
op_Multiply(a, b)
Signature: (a:V4l * b:V4l) -> V4l

Returns component-wise product of two vectors.

op_Multiply(v, s)
Signature: (v:V4l * s:int64) -> V4l

Returns component-wise product of vector and scalar.

op_Multiply(s, v)
Signature: (s:int64 * v:V4l) -> V4l

Returns component-wise product of scalar and vector.

op_Subtraction(a, b)
Signature: (a:V4l * b:V4l) -> V4l

Returns component-wise difference of two vectors.

op_Subtraction(v, s)
Signature: (v:V4l * s:int64) -> V4l

Returns component-wise difference of vector and scalar.

op_Subtraction(s, v)
Signature: (s:int64 * v:V4l) -> V4l

Returns component-wise difference of scalar and vector.

op_UnaryNegation(v)
Signature: v:V4l -> V4l

Returns a negated copy of the specified vector.

Parse(s)
Signature: s:string -> V4l
Parse(t)
Signature: t:Text -> V4l
Parse(t, bracketLevel)
Signature: (t:Text * bracketLevel:int) -> V4l
Subtract(a, b)
Signature: (a:V4l * b:V4l) -> V4l

Returns component-wise difference of two vectors.

Subtract(v, s)
Signature: (v:V4l * s:int64) -> V4l

Returns component-wise difference of vector and scalar.

Subtract(s, v)
Signature: (s:int64 * v:V4l) -> V4l

Returns component-wise difference of scalar and vector.

Fork me on GitHub